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.

97 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1994-1998 Microsoft Corporation
  3. Module Name :
  4. defws.h
  5. Abstract:
  6. Default Web Site Dialog
  7. Author:
  8. Ronald Meijer (ronaldm)
  9. Project:
  10. Internet Services Manager
  11. Revision History:
  12. --*/
  13. #ifndef __DEFWS_H__
  14. #define __DEFWS_H__
  15. class CDefWebSitePage : public CInetPropertyPage
  16. /*++
  17. Class Description:
  18. WWW Errors property page
  19. Public Interface:
  20. CDefWebSitePage : Constructor
  21. CDefWebSitePage : Destructor
  22. --*/
  23. {
  24. DECLARE_DYNCREATE(CDefWebSitePage)
  25. //
  26. // Construction
  27. //
  28. public:
  29. CDefWebSitePage(CInetPropertySheet * pSheet = NULL);
  30. ~CDefWebSitePage();
  31. //
  32. // Dialog Data
  33. //
  34. protected:
  35. //{{AFX_DATA(CDefWebSitePage)
  36. enum { IDD = IDD_DEFAULT_SITE };
  37. CComboBox m_combo_WebSites;
  38. //}}AFX_DATA
  39. DWORD m_dwDownlevelInstance;
  40. //
  41. // Overrides
  42. //
  43. protected:
  44. virtual HRESULT FetchLoadedValues();
  45. virtual HRESULT SaveInfo();
  46. // ClassWizard generate virtual function overrides
  47. //{{AFX_VIRTUAL(CDefWebSitePage)
  48. protected:
  49. virtual void DoDataExchange(CDataExchange * pDX);
  50. //}}AFX_VIRTUAL
  51. //
  52. // Implementation
  53. //
  54. protected:
  55. // Generated message map functions
  56. //{{AFX_MSG(CDefWebSitePage)
  57. virtual BOOL OnInitDialog();
  58. afx_msg void OnSelchangeComboWebsites();
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. HRESULT BuildInstanceList();
  62. DWORD FetchInstanceSelected();
  63. private:
  64. CDWordArray m_rgdwInstances;
  65. };
  66. #endif // __DEFWS_H__