This repository has been archived on 2024-03-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ContactBook/PrefPage.h
2024-03-20 09:28:18 -05:00

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()
};
/////////////////////////////////////////////////////////////////////////////