summaryrefslogtreecommitdiffabout
path: root/GeneralPage.h
Unidiff
Diffstat (limited to 'GeneralPage.h') (more/less context) (ignore whitespace changes)
-rw-r--r--GeneralPage.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/GeneralPage.h b/GeneralPage.h
new file mode 100644
index 0000000..e0153ee
--- a/dev/null
+++ b/GeneralPage.h
@@ -0,0 +1,52 @@
1// GeneralPage.h : header file
2//
3
4/////////////////////////////////////////////////////////////////////////////
5// CGeneralPage dialog
6
7class CHostPropertyPages;
8class CGeneralPage : public CPropertyPage
9{
10 DECLARE_DYNCREATE(CGeneralPage)
11
12// Construction
13public:
14 void SetupControls();
15 void UpdateBrother();
16 void UpdatePage();
17 CHostPropertyPages* m_dad;
18 CGeneralPage();
19 ~CGeneralPage();
20
21// Dialog Data
22 //{{AFX_DATA(CGeneralPage)
23 enum { IDD = IDD_PROPS_GENERAL };
24 CButtonm_LogActivityCtl;
25 CEditm_HostCtl;
26 CEditm_DescCtl;
27 CStringm_Desc;
28 CStringm_Host;
29 int m_LogActivity;
30 //}}AFX_DATA
31
32
33// Overrides
34 // ClassWizard generate virtual function overrides
35 //{{AFX_VIRTUAL(CGeneralPage)
36 public:
37 virtual BOOL OnSetActive();
38 virtual BOOL OnKillActive();
39 protected:
40 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
41 //}}AFX_VIRTUAL
42
43// Implementation
44protected:
45 // Generated message map functions
46 //{{AFX_MSG(CGeneralPage)
47 afx_msg void OnChangeHost();
48 afx_msg void OnLogActivity();
49 //}}AFX_MSG
50 DECLARE_MESSAGE_MAP()
51
52};