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.

64 lines
1.2 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Windows NT Secure Server Roles Security Configuration Wizard
  4. //
  5. // Microsoft Windows
  6. // Copyright (C) Microsoft Corporation, 1992 - 2002
  7. //
  8. // File: finish.h
  9. //
  10. // History: 2-Oct-01 EricB created
  11. //
  12. //-----------------------------------------------------------------------------
  13. #ifndef FINISH_H_INCLUDED
  14. #define FINISH_H_INCLUDED
  15. //#include "MultiLineEditBoxThatForwardsEnterKey.hpp"
  16. class FinishPage : public WizardPage
  17. {
  18. public:
  19. FinishPage();
  20. protected:
  21. virtual ~FinishPage();
  22. // Dialog overrides
  23. virtual
  24. bool
  25. OnCommand(
  26. HWND windowFrom,
  27. unsigned controlIdFrom,
  28. unsigned code);
  29. virtual
  30. void
  31. OnInit();
  32. // PropertyPage overrides
  33. virtual
  34. bool
  35. OnSetActive();
  36. virtual
  37. bool
  38. OnWizFinish();
  39. private:
  40. // bool needToKillSelection;
  41. // MultiLineEditBoxThatForwardsEnterKey multiLineEdit;
  42. // not defined; no copying allowed
  43. FinishPage(const FinishPage&);
  44. const FinishPage& operator=(const FinishPage&);
  45. };
  46. #endif // FINISH_H_INCLUDED