home *** CD-ROM | disk | FTP | other *** search
-
- /******************************************************************
-
- $Archive: $
- $Workfile: $
- $Author: $
- $Date: $
- $Revision: $
-
- *******************************************************************/
-
- #if !defined (__MyPropertySheet_h)
- #define __MyPropertySheet_h
-
- #include "MyPropertyPage1.h"
- #include "MyPropertyPage2.h"
- #include "MyPropertyPage3.h"
- #include "MyPropertyPage4.h"
- #include "MyPropertyPage5.h"
-
- /////////////////////////////////////////////////////////////////////////////
- // CMyPropertySheet
-
- class CMyPropertySheet : public CPropertySheet
- {
- DECLARE_DYNAMIC(CMyPropertySheet)
-
- // Construction
- public:
- CMyPropertySheet(CWnd* pWndParent = NULL);
-
- // Attributes
- public:
- CMyPropertyPage1 m_Page1;
- CMyPropertyPage2 m_Page2;
- CMyPropertyPage3 m_Page3;
- CMyPropertyPage4 m_Page4;
- CMyPropertyPage5 m_Page5;
- // int customNumber;
- // CString customSkinNames[10];
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMyPropertySheet)
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CMyPropertySheet();
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMyPropertySheet)
- afx_msg BOOL OnInitDialog();
- afx_msg void OnSysCommand( UINT nID, LPARAM lParam );
- afx_msg void OnFileOpen();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-
- #endif // __MyPropertySheet_h
-