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

Web服务器

开发平台:

Visual C++

  1. // NamePage.cpp : implementation 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. #include "stdafx.h"
  13. #include "httpsvr.h"
  14. #include "NamePage.h"
  15. #include "HttpDoc.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CNamePage property page
  23. IMPLEMENT_DYNCREATE(CNamePage, CPropertyPage)
  24. CNamePage::CNamePage() : CPropertyPage(CNamePage::IDD)
  25. {
  26. }
  27. CNamePage::CNamePage( CHttpSvrDoc* pDoc )
  28. : CPropertyPage(CNamePage::IDD)
  29. {
  30. //{{AFX_DATA_INIT(CNamePage)
  31. m_strName = _T("");
  32. m_nNameSetting = -1;
  33. m_uPort = 0;
  34. //}}AFX_DATA_INIT
  35. m_pDoc = pDoc;
  36. }
  37. CNamePage::~CNamePage()
  38. {
  39. }
  40. void CNamePage::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CPropertyPage::DoDataExchange(pDX);
  43. //{{AFX_DATA_MAP(CNamePage)
  44. DDX_Text(pDX, IDC_SVRNAME, m_strName);
  45. DDX_Radio(pDX, IDC_DEFNAME, m_nNameSetting);
  46. DDX_Text(pDX, IDC_PORT, m_uPort);
  47. DDV_MinMaxUInt(pDX, m_uPort, 0, 65535);
  48. //}}AFX_DATA_MAP
  49. }
  50. BEGIN_MESSAGE_MAP(CNamePage, CPropertyPage)
  51. //{{AFX_MSG_MAP(CNamePage)
  52. ON_BN_CLICKED(IDC_DEFNAME, OnDefName)
  53. ON_BN_CLICKED(IDC_USENAME, OnUseName)
  54. //}}AFX_MSG_MAP
  55. END_MESSAGE_MAP()
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CNamePage message handlers
  58. BOOL CNamePage::OnInitDialog()
  59. {
  60. CPropertyPage::OnInitDialog();
  61. CWnd* pwndEdit = GetDlgItem( IDC_SVRNAME );
  62. pwndEdit->EnableWindow( (m_nNameSetting?TRUE:FALSE) );
  63. return TRUE;  // return TRUE unless you set the focus to a control
  64.   // EXCEPTION: OCX Property Pages should return FALSE
  65. }
  66. void CNamePage::OnDefName()
  67. {
  68. // disable the edit control....
  69. CWnd* pwndEdit = GetDlgItem( IDC_SVRNAME );
  70. if ( pwndEdit )
  71. pwndEdit->EnableWindow( FALSE );
  72. }
  73. void CNamePage::OnUseName()
  74. {
  75. // enable the edit control and move to it....
  76. CWnd* pwndEdit = GetDlgItem( IDC_SVRNAME );
  77. if ( pwndEdit )
  78. {
  79. pwndEdit->EnableWindow( TRUE );
  80. pwndEdit->SetFocus();
  81. }
  82. }
  83. void CNamePage::OnOK()
  84. {
  85. BOOL bModified = FALSE;
  86. CString strNewName;
  87. if ( m_nNameSetting && !m_strName.IsEmpty() )
  88. strNewName = m_strName;
  89. else
  90. {
  91. strNewName = ((CHttpSvrApp*)AfxGetApp())->m_strDefSvr;
  92. m_nNameSetting = 0;
  93. }
  94. // see if anything has changed....
  95. if ( m_pDoc->m_nSvrName != m_nNameSetting )
  96. {
  97. m_pDoc->m_nSvrName = m_nNameSetting;
  98. bModified = TRUE;
  99. }
  100. if ( strNewName.CompareNoCase(m_pDoc->m_strServer) )
  101. {
  102. m_pDoc->m_strServer = strNewName;
  103. bModified = TRUE;
  104. }
  105. // if the port has changed, we need to reset the listen socket....
  106. if ( m_pDoc->m_uPort != m_uPort )
  107. {
  108. m_pDoc->m_uPort = m_uPort;
  109. m_pDoc->m_bResetListen = bModified = TRUE;
  110. }
  111. if ( bModified )
  112. m_pDoc->SetModifiedFlag( TRUE );
  113. CPropertyPage::OnOK();
  114. }