Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.2 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997-2001.
  5. //
  6. // File: Wiz97Sht.h
  7. //
  8. // Contents:
  9. //
  10. //----------------------------------------------------------------------------
  11. // Wiz97Sht.h: interface for the CWizard97PropertySheet class.
  12. //
  13. //////////////////////////////////////////////////////////////////////
  14. #if !defined(AFX_WIZ97SHT_H__386C7214_A248_11D1_8618_00C04FB94F17__INCLUDED_)
  15. #define AFX_WIZ97SHT_H__386C7214_A248_11D1_8618_00C04FB94F17__INCLUDED_
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif // _MSC_VER >= 1000
  19. #define NUM_PAGES 10
  20. class CWizard97PropertyPage; // Forward definition
  21. class CWizard97PropertySheet
  22. {
  23. public:
  24. void AddPage( CWizard97PropertyPage *pPage );
  25. CWizard97PropertySheet(UINT nIDCaption, UINT nIDWaterMark, UINT nIDBanner);
  26. virtual ~CWizard97PropertySheet();
  27. INT_PTR DoWizard(HWND hParent);
  28. //private:
  29. CString m_title;
  30. PROPSHEETHEADER m_psh;
  31. HPROPSHEETPAGE m_pPageArr[NUM_PAGES];
  32. CWizard97PropertyPage* m_pPagePtr[NUM_PAGES];
  33. int m_nPageCount;
  34. };
  35. #endif // !defined(AFX_WIZ97SHT_H__386C7214_A248_11D1_8618_00C04FB94F17__INCLUDED_)