-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSearchCommentsDialog.h
More file actions
46 lines (42 loc) · 1.23 KB
/
Copy pathSearchCommentsDialog.h
File metadata and controls
46 lines (42 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SearchCommentsDialog.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSearchCommentsDialog dialog
#include "colorwidget.h"
class CRealFolder;
class COnStationView;
class CSearchCommentsDialog : public CDialog
{
// Construction
public:
CSearchCommentsDialog(COnStationView *view,CRealFolder *folder,CWnd* pParent = NULL); // standard constructor
CRealFolder * m_Folder;
COnStationView * m_pView;
// Dialog Data
//{{AFX_DATA(CSearchCommentsDialog)
enum { IDD = IDD_SEARCHCOMMENTSDIALOG };
CString m_szCommentText;
CString m_szTypeString;
BOOL m_bColorToShot;
BOOL m_bColorFromShot;
BOOL m_bPlaceTag;
//}}AFX_DATA
int m_iColorIndex;
CColorWidget m_ColorWidget;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSearchCommentsDialog)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSearchCommentsDialog)
virtual void OnOK();
virtual BOOL OnInitDialog();
afx_msg void OnDisplayresults();
afx_msg LONG OnColorChange(UINT,LONG lParam);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};