Source code of Windows XP (NT5)
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.

71 lines
1.2 KiB

  1. // Copyright (c) 1997-2001 Microsoft Corporation
  2. //
  3. // File: BeforeBeginPage.h
  4. //
  5. // Synopsis: Declares the Before You Begin Page for the CYS
  6. // wizard. This page tells the user what they need
  7. // to do before running CYS.
  8. //
  9. // History: 03/14/2001 JeffJon Created
  10. #ifndef __CYS_BEFOREBEGINPAGE_H
  11. #define __CYS_BEFOREBEGINPAGE_H
  12. #include "CYSWizardPage.h"
  13. class BeforeBeginPage : public CYSWizardPage
  14. {
  15. public:
  16. // Constructor
  17. BeforeBeginPage();
  18. // Destructor
  19. virtual
  20. ~BeforeBeginPage();
  21. // Dialog overrides
  22. virtual
  23. void
  24. OnInit();
  25. virtual
  26. bool
  27. OnSetActive();
  28. protected:
  29. // CYSWizardPage overrides
  30. virtual
  31. int
  32. Validate();
  33. // Message handlers
  34. bool
  35. OnNotify(
  36. HWND windowFrom,
  37. unsigned controlIDFrom,
  38. unsigned code,
  39. LPARAM lParam);
  40. private:
  41. void
  42. InitializeBulletedList();
  43. HFONT bulletFont;
  44. // not defined: no copying allowed
  45. BeforeBeginPage(const BeforeBeginPage&);
  46. const BeforeBeginPage& operator=(const BeforeBeginPage&);
  47. };
  48. #endif // __CYS_BEFOREBEGINPAGE_H