home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1998 October / dpcb1098.iso / Business / Maxim / MAX5 / data.z / WizPropertySheet.h < prev    next >
C/C++ Source or Header  |  1998-05-15  |  2KB  |  74 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. // NAME.......: WizPropertySheet.h                                               
  3. // PURPOSE....: base class for wizard property sheet
  4. // WRITTEN....: 96/09/27 by Darko Juvan
  5. // DESCRIPTION: 
  6. //
  7. // This code and information is provided "as is" without warranty of any
  8. // kind, either expressed or implied, including but not limited to the
  9. // implied warranties of merchantability and/or fitness for a particular
  10. // purpose..
  11. //
  12. // Copyright (c) 1998  Multiactive Software Inc.  All Rights Reserved.
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15.  
  16. #ifndef __CWizPropertySheet
  17. #define __CWizPropertySheet
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CWizPropertySheet
  21. class CWizPropertySheet : public CPropertySheet
  22. {
  23.     DECLARE_DYNAMIC(CWizPropertySheet)
  24.  
  25. // Construction
  26. public:
  27.     CWizPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  28.     CWizPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  29.     CWizPropertySheet();
  30. // Attributes
  31. public:
  32.     CBitmap m_bmp;
  33.  
  34.     CString m_text1;
  35.     CString m_text2;
  36.     CString m_text3;
  37.     CString m_text4;
  38.     CString m_text5;
  39.     CString m_text6;
  40.  
  41.     CString m_date;
  42.     CString m_time1;     
  43.     CString    m_time2;
  44.     CString m_text; 
  45.     short    m_personal;
  46.     short    m_alarm;
  47.     short    m_alarm_time;
  48.     short    m_iconType; 
  49.     CString m_priority;
  50.     short    m_completed; 
  51.  
  52. // Operations
  53. public:
  54.  
  55. // Overrides
  56.     // ClassWizard generated virtual function overrides
  57.     //{{AFX_VIRTUAL(CWizPropertySheet)
  58.     //}}AFX_VIRTUAL
  59.  
  60. // Implementation
  61. public:
  62.     virtual ~CWizPropertySheet();
  63.  
  64.     // Generated message map functions
  65. protected:
  66.     //{{AFX_MSG(CWizPropertySheet)
  67.     afx_msg void OnPaint();
  68.     //}}AFX_MSG
  69.     DECLARE_MESSAGE_MAP()
  70. };
  71.  
  72. /////////////////////////////////////////////////////////////////////////////
  73. #endif //__CWizPropertySheet
  74.