summaryrefslogtreecommitdiffabout
path: root/HostPropertyPages.h
blob: 4c4218aaaef15c18d4ffa24198d8ef435f2b4622 (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
51
52
53
54
55
56
57
58
// HostPropertyPages.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CHostPropertyPages

class CGeneralPage;
class CSettingsPage;
class CActionPage;
class CBrother;
class CBigBrotherView;
class CHostPropertyPages : public CPropertySheet
{
	DECLARE_DYNAMIC(CHostPropertyPages)

// Construction
public:
	CButton m_OK;
	CPoint m_InitialPosition;
	CBigBrotherView* m_Daddy;
	void UpdateBrother();
	CBrother* m_Brother;
	void SetBrother(CBrother* b);
	void CreatePages();
	CActionPage* m_Action;
	CSettingsPage* m_Settings;
	CGeneralPage* m_General;
	CHostPropertyPages(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
	CHostPropertyPages(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CHostPropertyPages)
	public:
	virtual BOOL OnInitDialog();
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CHostPropertyPages();

	// Generated message map functions
protected:
	//{{AFX_MSG(CHostPropertyPages)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnDestroy();
	afx_msg void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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