summaryrefslogtreecommitdiff
path: root/win/propssht.h
blob: 884f43a9da2b76eedf5a8098e34578be10709d96 (plain)
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
// PropsSht.h : header file
//
// This class defines custom modal property sheet 
// CPropertiesSheet.
 
#ifndef __PROPSSHT_H__
#define __PROPSSHT_H__

#include "PropsPgs.h"

/////////////////////////////////////////////////////////////////////////////
// CPropertiesSheet

class CPropertiesSheet : public CPropertySheet
{
	DECLARE_DYNAMIC(CPropertiesSheet)

// Construction
public:
	CPropertiesSheet(CWnd* pWndParent = NULL);

// Attributes
public:
	CPropertiesGeneral	m_PageGeneral;
	CPropertiesSummary	m_PageSummary;
	CPropertiesPieces	m_PagePieces;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPropertiesSheet)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CPropertiesSheet();

// Generated message map functions
protected:
	//{{AFX_MSG(CPropertiesSheet)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

#endif	// __PROPSSHT_H__