58 lines
1.1 KiB
C++
58 lines
1.1 KiB
C++
// SetPage.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSetPage dialog
|
|
|
|
class CSetPage : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(CSetPage)
|
|
|
|
// Construction
|
|
public:
|
|
CSetPage();
|
|
~CSetPage();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CSetPage)
|
|
enum { IDD = IDD_SETPAGE };
|
|
CSpinButtonCtrl m_spinsetmru;
|
|
BOOL m_setlastfile;
|
|
BOOL m_setsort;
|
|
BOOL m_setcol;
|
|
BOOL m_setexp;
|
|
BOOL m_setimp;
|
|
BOOL m_setwin;
|
|
int m_setmru;
|
|
CString m_setcity;
|
|
CString m_setcountry;
|
|
CString m_setemail;
|
|
CString m_setstate;
|
|
CString m_setweb;
|
|
CString m_setzip;
|
|
BOOL m_setusemru;
|
|
CString m_setprefix;
|
|
BOOL m_settray;
|
|
CString m_setcomp;
|
|
BOOL m_setpos;
|
|
BOOL m_setstart;
|
|
BOOL m_setdelete;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(CSetPage)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CSetPage)
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|