home *** CD-ROM | disk | FTP | other *** search
- // Pages.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "resource.h"
- #include "Pages.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- IMPLEMENT_DYNCREATE(CColorPage, CPropertyPage)
- IMPLEMENT_DYNCREATE(CComparePage, CPropertyPage)
- IMPLEMENT_DYNCREATE(CFontPage, CPropertyPage)
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CColorPage property page
-
- CColorPage::CColorPage() : CPropertyPage(CColorPage::IDD)
- {
- //{{AFX_DATA_INIT(CColorPage)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
-
- CColorPage::~CColorPage()
- {
- }
-
- void CColorPage::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CColorPage)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CColorPage, CPropertyPage)
- //{{AFX_MSG_MAP(CColorPage)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CComparePage property page
-
- CComparePage::CComparePage() : CPropertyPage(CComparePage::IDD)
- {
- //{{AFX_DATA_INIT(CComparePage)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
-
- CComparePage::~CComparePage()
- {
- }
-
- void CComparePage::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CComparePage)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CComparePage, CPropertyPage)
- //{{AFX_MSG_MAP(CComparePage)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CFontPage property page
-
- CFontPage::CFontPage() : CPropertyPage(CFontPage::IDD)
- {
- //{{AFX_DATA_INIT(CFontPage)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
-
- CFontPage::~CFontPage()
- {
- }
-
- void CFontPage::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CFontPage)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CFontPage, CPropertyPage)
- //{{AFX_MSG_MAP(CFontPage)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-