-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCustomizeSheet.h
60 lines (45 loc) · 1.2 KB
/
CustomizeSheet.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
// CustomizeSheet.h : header file
//
// This class defines custom modal property sheet
// CCustomizeSheet.
//
// $Id$
//////////////////////////////////////////////////////////////////////
#ifndef __CUSTOMIZESHEET_H__
#define __CUSTOMIZESHEET_H__
#include "CustomizePage1.h"
/////////////////////////////////////////////////////////////////////////////
// CCustomizeSheet
#include "Layout/ETSLayout.h"
#ifndef baseCustomizeSheet
#define baseCustomizeSheet ETSLayoutPropertySheet
#endif
class CCustomizeSheet : public baseCustomizeSheet
{
DECLARE_DYNAMIC(CCustomizeSheet)
// Construction
public:
CCustomizeSheet(CWnd* pWndParent = NULL);
// Attributes
public:
CCustomizePage1 m_Page1;
CCustomizePage2 m_Page2;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCustomizeSheet)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CCustomizeSheet();
// Generated message map functions
protected:
//{{AFX_MSG(CCustomizeSheet)
virtual BOOL OnInitDialog();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif // __CUSTOMIZESHEET_H__