home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Programare / skincraft / SkinCrafter_v1.4.12_Demo.msi / _49E29CB9A65AABBF653C1037E1AA74B6 / _8119044B599B42D5A72F65B77BF93333 < prev    next >
Encoding:
Text File  |  2004-06-29  |  1.4 KB  |  66 lines

  1.  
  2. /******************************************************************
  3.  
  4. $Archive: $
  5. $Workfile: $
  6. $Author: $
  7. $Date: $
  8. $Revision: $
  9.  
  10. *******************************************************************/
  11.  
  12. #if !defined (__MyPropertySheet_h)
  13. #define __MyPropertySheet_h
  14.  
  15. #include "MyPropertyPage1.h"
  16. #include "MyPropertyPage2.h"
  17. #include "MyPropertyPage3.h"
  18. #include "MyPropertyPage4.h"
  19. #include "MyPropertyPage5.h"
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMyPropertySheet
  23.  
  24. class CMyPropertySheet : public CPropertySheet
  25. {
  26.     DECLARE_DYNAMIC(CMyPropertySheet)
  27.  
  28. // Construction
  29. public:
  30.     CMyPropertySheet(CWnd* pWndParent = NULL);
  31.  
  32. // Attributes
  33. public:
  34.     CMyPropertyPage1 m_Page1;
  35.     CMyPropertyPage2 m_Page2;
  36.     CMyPropertyPage3 m_Page3;
  37.     CMyPropertyPage4 m_Page4;
  38.     CMyPropertyPage5 m_Page5;
  39. //    int customNumber;
  40. //    CString customSkinNames[10];
  41. // Operations
  42. public:
  43.  
  44. // Overrides
  45.     // ClassWizard generated virtual function overrides
  46.     //{{AFX_VIRTUAL(CMyPropertySheet)
  47.     //}}AFX_VIRTUAL
  48.  
  49. // Implementation
  50. public:
  51.     virtual ~CMyPropertySheet();
  52.  
  53. // Generated message map functions
  54. protected:
  55.     //{{AFX_MSG(CMyPropertySheet)
  56.     afx_msg BOOL OnInitDialog();
  57.     afx_msg void OnSysCommand( UINT nID, LPARAM lParam );
  58.     afx_msg void OnFileOpen();
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64.  
  65. #endif // __MyPropertySheet_h
  66.