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.

100 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1994-1998 Microsoft Corporation
  3. Module Name :
  4. w3accts.h
  5. Abstract:
  6. WWW Accounts Property Page
  7. Author:
  8. Ronald Meijer (ronaldm)
  9. Project:
  10. Internet Services Manager
  11. Revision History:
  12. --*/
  13. #ifndef __W3ACCTS_H__
  14. #define __W3ACCTS_H__
  15. class CW3AccountsPage : public CInetPropertyPage
  16. /*++
  17. Class Description:
  18. WWW Accounts property page
  19. Public Interface:
  20. CW3AccountsPage : Constructor
  21. ~CW3AccountsPage : Destructor
  22. --*/
  23. {
  24. DECLARE_DYNCREATE(CW3AccountsPage)
  25. //
  26. // Construction
  27. //
  28. public:
  29. CW3AccountsPage(CInetPropertySheet * pSheet = NULL);
  30. ~CW3AccountsPage();
  31. //
  32. // Dialog Data
  33. //
  34. protected:
  35. //{{AFX_DATA(CW3AccountsPage)
  36. enum { IDD = IDD_ACCOUNTS };
  37. CButton m_button_RemoveAdministrator;
  38. CButton m_button_Add;
  39. //}}AFX_DATA
  40. CAccessEntryListBox m_list_Administrators;
  41. //
  42. // Overrides
  43. //
  44. protected:
  45. virtual HRESULT FetchLoadedValues();
  46. virtual HRESULT SaveInfo();
  47. // ClassWizard generate virtual function overrides
  48. //{{AFX_VIRTUAL(CW3AccountsPage)
  49. protected:
  50. virtual void DoDataExchange(CDataExchange * pDX);
  51. //}}AFX_VIRTUAL
  52. //
  53. // Implementation
  54. //
  55. protected:
  56. // Generated message map functions
  57. //{{AFX_MSG(CW3AccountsPage)
  58. virtual BOOL OnInitDialog();
  59. afx_msg void OnButtonAdd();
  60. afx_msg void OnButtonDelete();
  61. afx_msg void OnSelchangeListAdministrators();
  62. //}}AFX_MSG
  63. afx_msg void OnItemChanged();
  64. DECLARE_MESSAGE_MAP()
  65. BOOL SetAdminRemoveState();
  66. private:
  67. CRMCListBoxResources m_ListBoxRes;
  68. CObListPlus m_oblSID;
  69. };
  70. #endif // __W3ACCTS_H__