home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- // NAME.......: WizPropertyPage.CPP
- // PURPOSE....: base class for wizard property page
- // WRITTEN....: 96/09/27 by Darko Juvan
- // DESCRIPTION:
- //
- // This code and information is provided "as is" without warranty of any
- // kind, either expressed or implied, including but not limited to the
- // implied warranties of merchantability and/or fitness for a particular
- // purpose..
- //
- // Copyright (c) 1998 Multiactive Software Inc. All Rights Reserved.
- //
- //////////////////////////////////////////////////////////////////////////////
-
- #include "stdafx.h"
- #include "resource.h"
- #include "WizPropertySheet.h"
- #include "WizPropertyPage.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- IMPLEMENT_DYNCREATE(CWizPropertyPage, CPropertyPage)
-
- //////////////////////////////////////////////////////////////////////////////
- //
- // FUNCTION...: CWizPropertyPage()
- //
- // DESCRIPTION: constructor
- //
- //////////////////////////////////////////////////////////////////////////////
- CWizPropertyPage::CWizPropertyPage(CWizPropertySheet* pWizSheet, UINT id)
- : CPropertyPage(id)
- {
- //Wizard property sheet pointer
- m_pWizSheet = pWizSheet;
- }
-
- //////////////////////////////////////////////////////////////////////////////
- //
- // FUNCTION...: CWizPropertyPage()
- //
- // DESCRIPTION: constructor
- //
- //////////////////////////////////////////////////////////////////////////////
- CWizPropertyPage::CWizPropertyPage(UINT id)
- : CPropertyPage(id)
- {
- }
-
- //////////////////////////////////////////////////////////////////////////////
- //
- // FUNCTION...: ~CWizPropertyPage()
- //
- // DESCRIPTION: destructor
- //
- //////////////////////////////////////////////////////////////////////////////
- CWizPropertyPage::~CWizPropertyPage()
- {
- }
-
- //////////////////////////////////////////////////////////////////////////////
- //
- // FUNCTION...: DoDataExchange()
- //
- // DESCRIPTION: MFC
- //
- //////////////////////////////////////////////////////////////////////////////
- void CWizPropertyPage::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CWizPropertyPage)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CWizPropertyPage, CPropertyPage)
- //{{AFX_MSG_MAP(CWizPropertyPage)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CWizPropertyPage message handlers
-