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.

75 lines
1.2 KiB

  1. // Copyright (c) 1997-2001 Microsoft Corporation
  2. //
  3. // File: FileServerPage.h
  4. //
  5. // Synopsis: Declares the File Server page
  6. // for the CYS Wizard
  7. //
  8. // History: 02/08/2001 JeffJon Created
  9. #ifndef __CYS_FILESERVERPAGE_H
  10. #define __CYS_FILESERVERPAGE_H
  11. #include "CYSWizardPage.h"
  12. class FileServerPage : public CYSWizardPage
  13. {
  14. public:
  15. // Constructor
  16. FileServerPage();
  17. // Destructor
  18. virtual
  19. ~FileServerPage();
  20. // Dialog overrides
  21. virtual
  22. void
  23. OnInit();
  24. // PropertyPage overrides
  25. virtual
  26. bool
  27. OnSetActive();
  28. virtual
  29. bool
  30. OnCommand(
  31. HWND windowFrom,
  32. unsigned controlIDFrom,
  33. unsigned code);
  34. protected:
  35. // CYSWizardPage overrides
  36. virtual
  37. int
  38. Validate();
  39. void
  40. SetControlState();
  41. private:
  42. void
  43. UpdateQuotaControls(
  44. unsigned controlIDFrom,
  45. unsigned editboxID);
  46. // not defined: no copying allowed
  47. FileServerPage(const FileServerPage&);
  48. const FileServerPage& operator=(const FileServerPage&);
  49. };
  50. #endif // __CYS_FILESERVERPAGE_H