-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathOptionSheet.h
79 lines (67 loc) · 2.21 KB
/
OptionSheet.h
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#if !defined(AFX_OPTIONSHEET_H__A4F56FEC_7655_4648_86FC_0F6E10F32ABA__INCLUDED_)
#define AFX_OPTIONSHEET_H__A4F56FEC_7655_4648_86FC_0F6E10F32ABA__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// OptionSheet.h : header file
//
#include "OptionsConnectionPage.h"
#include "OptionsDialUpPage.h"
#include "OptionsFileManagementPage.h"
#include "OptionsGeneralPage.h"
#include "OptionsGraphLogPage.h"
#include "OptionsLoginPage.h"
#include "OptionsMirrorPage.h"
#include "OptionsMonitorPage.h"
#include "OptionsOtherPage.h"
#include "OptionsProtocolPage.h"
#include "OptionsProxyPage.h"
#include "OptionsSchedulePage.h"
#include "OptionsSoundPage.h"
/////////////////////////////////////////////////////////////////////////////
// COptionSheet
class COptionSheet : public CPropertySheet
{
DECLARE_DYNAMIC(COptionSheet)
// Construction
public:
COptionSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
COptionSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(COptionSheet)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~COptionSheet();
COptionsConnectionPage m_pageConnection;
COptionsDialUpPage m_pageDialUp;
COptionsFileManagementPage m_pageFileManagement;
COptionsGeneralPage m_pageGeneral;
COptionsGraphLogPage m_pageGraphLog;
COptionsLoginPage m_pageLogin;
COptionsMirrorPage m_pageMirror;
COptionsMonitorPage m_pageMonitor;
COptionsOtherPage m_pageOther;
COptionsProtocolPage m_pageProtocol;
COptionsProxyPage m_pageProxy;
COptionsSchedulePage m_pageSchedule;
COptionsSoundPage m_pageSound;
// Generated message map functions
protected:
//{{AFX_MSG(COptionSheet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
void prv_SetupSheet();
void prv_AddPages();
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_OPTIONSHEET_H__A4F56FEC_7655_4648_86FC_0F6E10F32ABA__INCLUDED_)