Update the changelog
[opencv] / apps / Hawk / FuncDialog.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/// FuncDialog.cpp : implementation file
41 //
42
43 #include "stdafx.h"
44 #include "hawk.h"
45 #include "FuncDialog.h"
46
47 #ifdef _DEBUG
48 #define new DEBUG_NEW
49 #undef THIS_FILE
50 static char THIS_FILE[] = __FILE__;
51 #endif
52
53 /////////////////////////////////////////////////////////////////////////////
54 // CFuncDialog dialog
55
56
57 CFuncDialog::CFuncDialog(CWnd* pParent /*=NULL*/)
58         : CDialog(CFuncDialog::IDD, pParent)
59 {
60         //{{AFX_DATA_INIT(CFuncDialog)
61                 // NOTE: the ClassWizard will add member initialization here
62         //}}AFX_DATA_INIT
63 }
64
65
66 void CFuncDialog::DoDataExchange(CDataExchange* pDX)
67 {
68         CDialog::DoDataExchange(pDX);
69         //{{AFX_DATA_MAP(CFuncDialog)
70                 // NOTE: the ClassWizard will add DDX and DDV calls here
71         //}}AFX_DATA_MAP
72 }
73
74
75 BEGIN_MESSAGE_MAP(CFuncDialog, CDialog)
76         //{{AFX_MSG_MAP(CFuncDialog)
77         ON_LBN_SELCHANGE(IDC_FUNCLIST, OnSelchangeFunclist)
78         //}}AFX_MSG_MAP
79 END_MESSAGE_MAP()
80
81 /////////////////////////////////////////////////////////////////////////////
82 // CFuncDialog message handlers
83
84 void CFuncDialog::SetModuleName(LPCTSTR name)
85 {
86     m_moduleName = name;
87     if(IsWindow(m_hWnd))
88         UpdateModuleName();
89 }
90
91 BOOL CFuncDialog::OnInitDialog() 
92 {
93         CDialog::OnInitDialog();
94         
95     UpdateModuleName();
96     UpdateItems();
97         
98         return TRUE;  // return TRUE unless you set the focus to a control
99                       // EXCEPTION: OCX Property Pages should return FALSE
100 }
101
102 void CFuncDialog::SetItems(CStringArray* names)
103 {
104     m_items = names;
105 }
106
107 CString CFuncDialog::GetCurrentItem()
108 {
109     return m_current;
110 }
111
112 void CFuncDialog::UpdateModuleName()
113 {
114     CStatic* pStatic = (CStatic*)GetDlgItem(IDC_FUNCSTATIC);
115     pStatic->SetWindowText(m_moduleName);
116 }
117
118 void CFuncDialog::UpdateItems()
119 {
120     CListBox* pList = (CListBox*)GetDlgItem(IDC_FUNCLIST);
121     int count = pList->GetCount();
122
123     for(int i = 0; i < m_items->GetSize(); i++)
124     {
125         int e = pList->AddString(m_items->GetData()[i]);
126     }
127     pList->SetCurSel(0);
128     pList->UpdateWindow();
129 }
130
131 void CFuncDialog::OnOK() 
132 {
133     CListBox* pList = (CListBox*)GetDlgItem(IDC_FUNCLIST);
134     pList->GetText(pList->GetCurSel(), m_current);
135         
136         CDialog::OnOK();
137 }
138
139 void CFuncDialog::OnCancel() 
140 {
141     m_current.Empty();  
142         CDialog::OnCancel();
143 }
144
145 void CFuncDialog::OnSelchangeFunclist() 
146 {
147     CHawkApp* app = (CHawkApp*)AfxGetApp();
148     CStatic* tip = (CStatic*)GetDlgItem(IDC_FUNCTIP);
149     CListBox* pList = (CListBox*)GetDlgItem(IDC_FUNCLIST);
150     CString current;
151     pList->GetText(pList->GetCurSel(), current);
152
153     current = app->GenDecl(current);
154     tip->SetWindowText(current);
155 }