home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 21 / IOPROG_21.ISO / SOFT / WIZPROP.ZIP / WizPropertySheet.h < prev   
Encoding:
C/C++ Source or Header  |  1998-02-03  |  1.2 KB  |  50 lines

  1. // WizPropertySheet.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CWizPropertySheet
  6. #ifndef __WIZ_PROP_SHEET__
  7. #define __WIZ_PROP_SHEET__
  8.  
  9. #include "WizPropertyPage.h"
  10.  
  11. class CWizPropertySheet : public CPropertySheet
  12. {
  13.     DECLARE_DYNAMIC(CWizPropertySheet)
  14.  
  15. // Construction
  16. public:
  17.     void EnablePages(BOOL bEnable, int nStart, int nEnd = -1);
  18.     CWizPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  19.     CWizPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  20.     
  21.     void AddPage( CWizPropertyPage *pPage );
  22.  
  23.  
  24. // Attributes
  25. public:
  26.  
  27. // Operations
  28. public:
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CWizPropertySheet)
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CWizPropertySheet();
  38.  
  39.     // Generated message map functions
  40. protected:
  41.     //{{AFX_MSG(CWizPropertySheet)
  42.         // NOTE - the ClassWizard will add and remove member functions here.
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45.  
  46.     //friend class CPropertyPage;
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50. #endif