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.

59 lines
809 B

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // new tree page
  4. //
  5. // 1-7-98 sburns
  6. #ifndef TREEPAGE_HPP_INCLUDED
  7. #define TREEPAGE_HPP_INCLUDED
  8. class TreePage : public DCPromoWizardPage
  9. {
  10. public:
  11. TreePage();
  12. protected:
  13. virtual ~TreePage();
  14. // Dialog overrides
  15. virtual
  16. bool
  17. OnCommand(
  18. HWND windowFrom,
  19. unsigned controlIDFrom,
  20. unsigned code);
  21. virtual
  22. void
  23. OnInit();
  24. // PropertyPage overrides
  25. virtual
  26. bool
  27. OnSetActive();
  28. // DCPromoWizardPage overrides
  29. virtual
  30. int
  31. Validate();
  32. // private:
  33. // not defined; no copying allowed
  34. TreePage(const TreePage&);
  35. const TreePage& operator=(const TreePage&);
  36. };
  37. #endif // TREEPAGE_HPP_INCLUDED