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.

63 lines
1.1 KiB

  1. // Copyright (c) 2001 Microsoft Corporation
  2. //
  3. // File: DecisionPage.h
  4. //
  5. // Synopsis: Declares the Decision Page for the CYS
  6. // wizard. This page lets the user choose
  7. // between the express and custom paths.
  8. //
  9. // History: 02/08/2001 JeffJon Created
  10. #ifndef __CYS_DECISIONPAGE_H
  11. #define __CYS_DECISIONPAGE_H
  12. #include "CYSWizardPage.h"
  13. class DecisionPage : public CYSWizardPage
  14. {
  15. public:
  16. // Constructor
  17. DecisionPage();
  18. // Destructor
  19. virtual
  20. ~DecisionPage();
  21. // Dialog overrides
  22. virtual
  23. void
  24. OnInit();
  25. virtual
  26. bool
  27. OnSetActive();
  28. bool
  29. OnCommand(
  30. HWND windowFrom,
  31. unsigned controlIDFrom,
  32. unsigned code);
  33. protected:
  34. // CYSWizardPage overrides
  35. virtual
  36. int
  37. Validate();
  38. private:
  39. // not defined: no copying allowed
  40. DecisionPage(const DecisionPage&);
  41. const DecisionPage& operator=(const DecisionPage&);
  42. };
  43. #endif // __CYS_DECISIONPAGE_H