-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCustomizePage1.h
108 lines (84 loc) · 2.33 KB
/
CustomizePage1.h
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// CustomizePage1.h : header file
//
// $Id$
//////////////////////////////////////////////////////////////////////
#ifndef __CUSTOMIZEPAGE1_H__
#define __CUSTOMIZEPAGE1_H__
/////////////////////////////////////////////////////////////////////////////
// CCustomizePage1 dialog
#include "Layout/ETSLayout.h"
#ifndef baseCustomizePage1
#define baseCustomizePage1 ETSLayoutPropertyPage
#endif
class CCustomizePage1 : public baseCustomizePage1
{
DECLARE_DYNCREATE(CCustomizePage1)
DECLARE_LAYOUT();
// Construction
public:
CCustomizePage1();
~CCustomizePage1();
// Dialog Data
//{{AFX_DATA(CCustomizePage1)
enum { IDD = IDD_CUSTOMIZE_PG1 };
CComboBox m_cboDatabase;
CString m_strDefaultDatabase;
BOOL m_bApplyOpen;
BOOL m_bApplyOnlyDef;
//}}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CCustomizePage1)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CCustomizePage1)
afx_msg void OnBrowseDb();
afx_msg void OnEditchangeCbDb();
afx_msg void OnSelchangeCbDb();
afx_msg void OnEditupdateCbDb();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
virtual BOOL OnInitDialog();
afx_msg void OnBApplyOpen();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
void UpdateButtons();
};
/////////////////////////////////////////////////////////////////////////////
// CCustomizePage2 dialog
#ifndef baseCustomizePage2
#define baseCustomizePage2 ETSLayoutPropertyPage
#endif
class CCustomizePage2 : public baseCustomizePage2
{
DECLARE_DYNCREATE(CCustomizePage2)
DECLARE_LAYOUT();
// Construction
public:
CCustomizePage2();
~CCustomizePage2();
// Dialog Data
//{{AFX_DATA(CCustomizePage2)
enum { IDD = IDD_CUSTOMIZE_PG2 };
// NOTE - ClassWizard will add data members here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CCustomizePage2)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CCustomizePage2)
// NOTE: the ClassWizard will add member functions here
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#endif // __CUSTOMIZEPAGE1_H__