summaryrefslogtreecommitdiffabout
path: root/HostPropertyPages.h
authorMichael Krelin <hacker@klever.net>2004-07-05 01:53:09 (UTC)
committer Michael Krelin <hacker@klever.net>2004-07-05 01:53:09 (UTC)
commitfb8b43dbce8bc310718614384297aeaabb9a3cbb (patch) (side-by-side diff)
treeaf9d2c2b71ddffff93a97a02fe26611096b78645 /HostPropertyPages.h
downloadbigbrother-fb8b43dbce8bc310718614384297aeaabb9a3cbb.zip
bigbrother-fb8b43dbce8bc310718614384297aeaabb9a3cbb.tar.gz
bigbrother-fb8b43dbce8bc310718614384297aeaabb9a3cbb.tar.bz2
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/bigbrother/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
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 @@
+// 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()
+};
+
+/////////////////////////////////////////////////////////////////////////////