47 lines
1 KiB
C++
47 lines
1 KiB
C++
// PrefPage.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPrefPage
|
|
#include "SetPage.h"
|
|
#include "ColPage.h"
|
|
#include "OrdPage.h"
|
|
|
|
class CPrefPage : public CPropertySheet
|
|
{
|
|
DECLARE_DYNAMIC(CPrefPage)
|
|
|
|
// Construction
|
|
public:
|
|
CPrefPage(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
|
CPrefPage(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
|
|
|
// Attributes
|
|
public:
|
|
CSetPage m_prefset;
|
|
CColPage m_prefcol;
|
|
COrdPage m_preford;
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CPrefPage)
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CPrefPage();
|
|
void AddCtrlPages(void);
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
HICON m_hIcn;
|
|
//{{AFX_MSG(CPrefPage)
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|