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.

75 lines
1.2 KiB

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