ROOTPAGE.H
上传用户:btxinjin
上传日期:2007-01-04
资源大小:83k
文件大小:1k
源码类别:

Web服务器

开发平台:

Visual C++

  1. // RootPage.h : Interface for CRootPage class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1997-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CRootPage dialog
  14. class CHttpSvrDoc;
  15. class CRootPage : public CPropertyPage
  16. {
  17. DECLARE_DYNCREATE(CRootPage)
  18. CRootPage();
  19. // Construction
  20. public:
  21. CHttpSvrDoc* m_pDoc;
  22. CRootPage( CHttpSvrDoc* pDoc );
  23. ~CRootPage();
  24. // Dialog Data
  25. //{{AFX_DATA(CRootPage)
  26. enum { IDD = IDD_ROOTPAGE };
  27. CString m_strRoot;
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generate virtual function overrides
  31. //{{AFX_VIRTUAL(CRootPage)
  32. public:
  33. virtual void OnOK();
  34. virtual BOOL OnKillActive();
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CRootPage)
  42. afx_msg void OnReset();
  43. afx_msg void OnChangeRootDir();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };