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.

64 lines
955 B

  1. // Copyright (c) 1997-2001 Microsoft Corporation
  2. //
  3. // File: FinishPage.h
  4. //
  5. // Synopsis: Declares the Finish Page for the CYS
  6. // wizard
  7. //
  8. // History: 02/03/2001 JeffJon Created
  9. #ifndef __CYS_FINISHPAGE_H
  10. #define __CYS_FINISHPAGE_H
  11. class FinishPage : public WizardPage
  12. {
  13. public:
  14. // Constructor
  15. FinishPage();
  16. // Destructor
  17. virtual
  18. ~FinishPage();
  19. protected:
  20. // Dialog overrides
  21. virtual
  22. void
  23. OnInit();
  24. // PropertyPage overrides
  25. virtual
  26. bool
  27. OnSetActive();
  28. virtual
  29. bool
  30. OnWizFinish();
  31. virtual
  32. bool
  33. OnHelp();
  34. virtual
  35. bool
  36. OnQueryCancel();
  37. private:
  38. void
  39. OpenLogFile(const String& logName);
  40. // not defined: no copying allowed
  41. FinishPage(const FinishPage&);
  42. const FinishPage& operator=(const FinishPage&);
  43. };
  44. #endif // __CYS_FINISHPAGE_H