home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************/
- /* */
- /* TurboCAD for Windows */
- /* Copyright (c) 1993 - 2001 */
- /* International Microcomputer Software, Inc. */
- /* (IMSI) */
- /* All rights reserved. */
- /* */
- /******************************************************************/
-
- // PaperSpaceWizard.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "resource.h"
- #include "PaperSpaceWizard.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CPaperSpaceWizard
-
- IMPLEMENT_DYNAMIC(CPaperSpaceWizard, CPropertySheet)
-
- CPaperSpaceWizard::CPaperSpaceWizard(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
- :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
- {
- // add all the pages of the wizard
- AddPage(&m_Begin);
- AddPage(&m_PaperOrientation);
-
- // set the WIZARD97 flag so we'll get the new look
- m_psh.dwFlags |= PSH_WIZARD;//PSH_WIZARD97;
- }
-
- CPaperSpaceWizard::CPaperSpaceWizard(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
- :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
- {
- // add all the pages of the wizard
- AddPage(&m_Begin);
- AddPage(&m_PaperOrientation);
- }
-
- CPaperSpaceWizard::~CPaperSpaceWizard()
- {
- }
-
-
- BEGIN_MESSAGE_MAP(CPaperSpaceWizard, CPropertySheet)
- //{{AFX_MSG_MAP(CPaperSpaceWizard)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CPaperSpaceWizard message handlers
-