summaryrefslogtreecommitdiffabout
path: root/HostPropertyPages.h
Unidiff
Diffstat (limited to 'HostPropertyPages.h') (more/less context) (ignore whitespace changes)
-rw-r--r--HostPropertyPages.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/HostPropertyPages.h b/HostPropertyPages.h
new file mode 100644
index 0000000..4c4218a
--- a/dev/null
+++ b/HostPropertyPages.h
@@ -0,0 +1,58 @@
1// HostPropertyPages.h : header file
2//
3
4/////////////////////////////////////////////////////////////////////////////
5// CHostPropertyPages
6
7class CGeneralPage;
8class CSettingsPage;
9class CActionPage;
10class CBrother;
11class CBigBrotherView;
12class CHostPropertyPages : public CPropertySheet
13{
14 DECLARE_DYNAMIC(CHostPropertyPages)
15
16// Construction
17public:
18 CButton m_OK;
19 CPoint m_InitialPosition;
20 CBigBrotherView* m_Daddy;
21 void UpdateBrother();
22 CBrother* m_Brother;
23 void SetBrother(CBrother* b);
24 void CreatePages();
25 CActionPage* m_Action;
26 CSettingsPage* m_Settings;
27 CGeneralPage* m_General;
28 CHostPropertyPages(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
29 CHostPropertyPages(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
30
31// Attributes
32public:
33
34// Operations
35public:
36
37// Overrides
38 // ClassWizard generated virtual function overrides
39 //{{AFX_VIRTUAL(CHostPropertyPages)
40 public:
41 virtual BOOL OnInitDialog();
42 //}}AFX_VIRTUAL
43
44// Implementation
45public:
46 virtual ~CHostPropertyPages();
47
48 // Generated message map functions
49protected:
50 //{{AFX_MSG(CHostPropertyPages)
51 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
52 afx_msg void OnDestroy();
53 afx_msg void OnOK();
54 //}}AFX_MSG
55 DECLARE_MESSAGE_MAP()
56};
57
58/////////////////////////////////////////////////////////////////////////////