home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / wizard97 / wizsheet.h < prev   
Encoding:
C/C++ Source or Header  |  1998-03-27  |  2.1 KB  |  74 lines

  1. // WizSheet.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #if !defined(AFX_SAMPWIZP_H__99E7B18F_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_)
  14. #define AFX_SAMPWIZP_H__99E7B18F_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_
  15.  
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19.  
  20. #include "IntroPg.h"
  21. #include "Int1.h"
  22. #include "Int2.h"
  23. #include "Complete.h"
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CWizard97Sheet
  27.  
  28. class CWizard97Sheet : public CPropertySheetEx
  29. {
  30.     DECLARE_DYNAMIC(CWizard97Sheet)
  31.  
  32. // Construction
  33. public:
  34.     CWizard97Sheet(UINT nIDCaption, CWnd* pParentWnd = NULL,
  35.             UINT iSelectPage = 0, HBITMAP hbmWatermark = NULL,
  36.             HPALETTE hpalWatermark = NULL, HBITMAP hbmHeader = NULL);
  37.     CWizard97Sheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL,
  38.             UINT iSelectPage = 0, HBITMAP hbmWatermark = NULL,
  39.             HPALETTE hpalWatermark = NULL, HBITMAP hbmHeader = NULL);
  40.  
  41. // Attributes
  42. public:
  43.     CIntroPage m_Intro;
  44.     CInterior1 m_Interior1;
  45.     CInterior2 m_Interior2;
  46.     CCompletion m_Completion;
  47.  
  48. // Operations
  49. public:
  50.  
  51. // Overrides
  52.     // ClassWizard generated virtual function overrides
  53.     //{{AFX_VIRTUAL(CWizard97Sheet)
  54.     //}}AFX_VIRTUAL
  55.  
  56. // Implementation
  57. public:
  58.     virtual ~CWizard97Sheet();
  59.  
  60.     // Generated message map functions
  61. protected:
  62.     //{{AFX_MSG(CWizard97Sheet)
  63.         // NOTE - the ClassWizard will add and remove member functions here.
  64.     //}}AFX_MSG
  65.     DECLARE_MESSAGE_MAP()
  66. };
  67.  
  68. /////////////////////////////////////////////////////////////////////////////
  69.  
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  72.  
  73. #endif // !defined(AFX_SAMPWIZP_H__99E7B18F_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_)
  74.