home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c06 / lab05 / ex01 / pages.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  2.6 KB  |  123 lines

  1. // Pages.h : header file
  2. //
  3.  
  4. #ifndef __PAGES_H__
  5. #define __PAGES_H__
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CColorPage dialog
  9.  
  10. class CColorPage : public CPropertyPage
  11. {
  12.     DECLARE_DYNCREATE(CColorPage)
  13.  
  14. // Construction
  15. public:
  16.     CColorPage();
  17.     ~CColorPage();
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CColorPage)
  21.     enum { IDD = IDD_PAGE_COLORS };
  22.         // NOTE - ClassWizard will add data members here.
  23.         //    DO NOT EDIT what you see in these blocks of generated code !
  24.     //}}AFX_DATA
  25.  
  26.  
  27. // Overrides
  28.     // ClassWizard generate virtual function overrides
  29.     //{{AFX_VIRTUAL(CColorPage)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CColorPage)
  38.         // NOTE: the ClassWizard will add member functions here
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41.  
  42. };
  43.  
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CComparePage dialog
  47.  
  48. class CComparePage : public CPropertyPage
  49. {
  50.     DECLARE_DYNCREATE(CComparePage)
  51.  
  52. // Construction
  53. public:
  54.     CComparePage();
  55.     ~CComparePage();
  56.  
  57. // Dialog Data
  58.     //{{AFX_DATA(CComparePage)
  59.     enum { IDD = IDD_PAGE_COMPARE };
  60.         // NOTE - ClassWizard will add data members here.
  61.         //    DO NOT EDIT what you see in these blocks of generated code !
  62.     //}}AFX_DATA
  63.  
  64.  
  65. // Overrides
  66.     // ClassWizard generate virtual function overrides
  67.     //{{AFX_VIRTUAL(CComparePage)
  68.     protected:
  69.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  70.     //}}AFX_VIRTUAL
  71.  
  72. // Implementation
  73. protected:
  74.     // Generated message map functions
  75.     //{{AFX_MSG(CComparePage)
  76.         // NOTE: the ClassWizard will add member functions here
  77.     //}}AFX_MSG
  78.     DECLARE_MESSAGE_MAP()
  79.  
  80. };
  81.  
  82.  
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CFontPage dialog
  85.  
  86. class CFontPage : public CPropertyPage
  87. {
  88.     DECLARE_DYNCREATE(CFontPage)
  89.  
  90. // Construction
  91. public:
  92.     CFontPage();
  93.     ~CFontPage();
  94.  
  95. // Dialog Data
  96.     //{{AFX_DATA(CFontPage)
  97.     enum { IDD = IDD_PAGE_FONT };
  98.         // NOTE - ClassWizard will add data members here.
  99.         //    DO NOT EDIT what you see in these blocks of generated code !
  100.     //}}AFX_DATA
  101.  
  102.  
  103. // Overrides
  104.     // ClassWizard generate virtual function overrides
  105.     //{{AFX_VIRTUAL(CFontPage)
  106.     protected:
  107.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  108.     //}}AFX_VIRTUAL
  109.  
  110. // Implementation
  111. protected:
  112.     // Generated message map functions
  113.     //{{AFX_MSG(CFontPage)
  114.         // NOTE: the ClassWizard will add member functions here
  115.     //}}AFX_MSG
  116.     DECLARE_MESSAGE_MAP()
  117.  
  118. };
  119.  
  120.  
  121.  
  122. #endif // __PAGES_H__
  123.