CB32 1.2 sources
This commit is contained in:
parent
cf25bc7627
commit
fd87f89a19
100 changed files with 14543 additions and 0 deletions
47
PrefPage.h
Normal file
47
PrefPage.h
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
// 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()
|
||||
};
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
Reference in a new issue