-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathColorSheet.h
More file actions
51 lines (40 loc) · 1.15 KB
/
Copy pathColorSheet.h
File metadata and controls
51 lines (40 loc) · 1.15 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
47
48
49
50
51
#ifndef I_COLORSHEET__
#define I_COLORSHEET__
// ColorSheet.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CColorSheet
#include "agecolorpage.h"
#include "depthcolorpage.h"
class CColorSheet : public CPropertySheet
{
DECLARE_DYNAMIC(CColorSheet)
CAgeColorPage m_AgePage;
CDepthColorPage m_DepthPage;
// Construction
public:
// CColorSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
//StartScheme 0=age, 1=depth
CColorSheet(UINT nIDCaption, int iStartColorScheme,CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
// Attributes
public:
BOOL IsDirty();
int m_iRecommendedColorSchemeIndex;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CColorSheet)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CColorSheet();
// Generated message map functions
protected:
//{{AFX_MSG(CColorSheet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif