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
922 B

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // finish page
  4. //
  5. // 12-19-97 sburns
  6. #ifndef FINISH_HPP_INCLUDED
  7. #define FINISH_HPP_INCLUDED
  8. #include "MultiLineEditBoxThatForwardsEnterKey.hpp"
  9. class FinishPage : public WizardPage
  10. {
  11. public:
  12. FinishPage();
  13. protected:
  14. virtual ~FinishPage();
  15. // Dialog overrides
  16. virtual
  17. bool
  18. OnCommand(
  19. HWND windowFrom,
  20. unsigned controlIdFrom,
  21. unsigned code);
  22. virtual
  23. void
  24. OnInit();
  25. // PropertyPage overrides
  26. virtual
  27. bool
  28. OnSetActive();
  29. virtual
  30. bool
  31. OnWizFinish();
  32. private:
  33. bool needToKillSelection;
  34. MultiLineEditBoxThatForwardsEnterKey multiLineEdit;
  35. // not defined; no copying allowed
  36. FinishPage(const FinishPage&);
  37. const FinishPage& operator=(const FinishPage&);
  38. };
  39. #endif // FINISH_HPP_INCLUDED