WizSheet.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. #if !defined(AFX_SAMPWIZP_H__99E7B18F_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_)
  13. #define AFX_SAMPWIZP_H__99E7B18F_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_
  14. #include "ResizableSheetEx.h"
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. #include "IntroPg.h"
  19. #include "IntroPgNew.h"
  20. #include "Int1.h"
  21. #include "Int2.h"
  22. #include "Complete.h"
  23. #include "CompleteNew.h"
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CWizard97Sheet
  26. class CWizard97Sheet : public CResizableSheetEx
  27. {
  28. DECLARE_DYNAMIC(CWizard97Sheet)
  29. // Construction
  30. public:
  31. CWizard97Sheet(BOOL bOldStyle);
  32. // Attributes
  33. public:
  34. CIntroPage m_Intro;
  35. CIntroPageNew m_IntroNew;
  36. CInterior1 m_Interior1;
  37. CInterior2 m_Interior2;
  38. CCompletion m_Completion;
  39. CCompletionNew m_CompletionNew;
  40. CBitmap m_bmpWatermark;
  41. CBitmap m_bmpHeader;
  42. // Operations
  43. public:
  44. // Overrides
  45. // ClassWizard generated virtual function overrides
  46. //{{AFX_VIRTUAL(CWizard97Sheet)
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. public:
  50. virtual ~CWizard97Sheet();
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CWizard97Sheet)
  54. virtual BOOL OnInitDialog();
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_SAMPWIZP_H__99E7B18F_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_)