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

Web服务器

开发平台:

Visual C++

  1. // NamePage.h : interface of the CNamePage 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. // CNamePage dialog
  14. class CHttpSvrDoc;
  15. class CNamePage : public CPropertyPage
  16. {
  17. DECLARE_DYNCREATE(CNamePage)
  18. // Construction
  19. public:
  20.  CNamePage( CHttpSvrDoc* pDoc );
  21. CHttpSvrDoc* m_pDoc;
  22. CNamePage();
  23. ~CNamePage();
  24. // Dialog Data
  25. //{{AFX_DATA(CNamePage)
  26. enum { IDD = IDD_NAMEPAGE };
  27. CString m_strName;
  28. int     m_nNameSetting;
  29. UINT    m_uPort;
  30. //}}AFX_DATA
  31. // Overrides
  32. // ClassWizard generate virtual function overrides
  33. //{{AFX_VIRTUAL(CNamePage)
  34. public:
  35. virtual void OnOK();
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. // Generated message map functions
  42. //{{AFX_MSG(CNamePage)
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnDefName();
  45. afx_msg void OnUseName();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };