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

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // failure page
  4. //
  5. // 12-22-97 sburns
  6. #ifndef FAILUREPAGE_HPP_INCLUDED
  7. #define FAILUREPAGE_HPP_INCLUDED
  8. #include "MultiLineEditBoxThatForwardsEnterKey.hpp"
  9. class FailurePage : public DCPromoWizardPage
  10. {
  11. public:
  12. FailurePage();
  13. protected:
  14. virtual ~FailurePage();
  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. // DCPromoWizardPage overrides
  30. virtual
  31. int
  32. Validate();
  33. private:
  34. bool needToKillSelection;
  35. MultiLineEditBoxThatForwardsEnterKey multiLineEdit;
  36. // not defined; no copying allowed
  37. FailurePage(const FailurePage&);
  38. const FailurePage& operator=(const FailurePage&);
  39. };
  40. #endif // FAILUREPAGE_HPP_INCLUDED