ChatClientDlg.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:5k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ChatClientDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ChatClient.h"
  5. #include "ChatClientDlg.h"
  6. #include "ChatSocket.h"
  7. #include "SetupDlg.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAboutDlg dialog used for App About
  15. class CAboutDlg : public CDialog
  16. {
  17. public:
  18. CAboutDlg();
  19. // Dialog Data
  20. //{{AFX_DATA(CAboutDlg)
  21. enum { IDD = IDD_ABOUTBOX };
  22. //}}AFX_DATA
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CAboutDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. //{{AFX_MSG(CAboutDlg)
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  35. {
  36. //{{AFX_DATA_INIT(CAboutDlg)
  37. //}}AFX_DATA_INIT
  38. }
  39. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CDialog::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CAboutDlg)
  43. //}}AFX_DATA_MAP
  44. }
  45. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  46. //{{AFX_MSG_MAP(CAboutDlg)
  47. // No message handlers
  48. //}}AFX_MSG_MAP
  49. END_MESSAGE_MAP()
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CChatClientDlg dialog
  52. CChatClientDlg::CChatClientDlg(CWnd* pParent /*=NULL*/)
  53. : CDialog(CChatClientDlg::IDD, pParent)
  54. {
  55. //{{AFX_DATA_INIT(CChatClientDlg)
  56. m_strMsg = _T("");
  57. m_strClientName = _T("");
  58. //}}AFX_DATA_INIT
  59. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  60. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  61. }
  62. void CChatClientDlg::DoDataExchange(CDataExchange* pDX)
  63. {
  64. CDialog::DoDataExchange(pDX);
  65. //{{AFX_DATA_MAP(CChatClientDlg)
  66. DDX_Control(pDX, IDC_LIST_MSGS, m_ctrlMsgs);
  67. DDX_Text(pDX, IDC_MSG, m_strMsg);
  68. //}}AFX_DATA_MAP
  69. }
  70. BEGIN_MESSAGE_MAP(CChatClientDlg, CDialog)
  71. //{{AFX_MSG_MAP(CChatClientDlg)
  72. ON_WM_SYSCOMMAND()
  73. ON_WM_PAINT()
  74. ON_WM_QUERYDRAGICON()
  75. ON_BN_CLICKED(IDC_SEND, OnSend)
  76. //}}AFX_MSG_MAP
  77. END_MESSAGE_MAP()
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CChatClientDlg message handlers
  80. BOOL CChatClientDlg::OnInitDialog()
  81. {
  82. CDialog::OnInitDialog();
  83. // Add "About..." menu item to system menu.
  84. // IDM_ABOUTBOX must be in the system command range.
  85. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  86. ASSERT(IDM_ABOUTBOX < 0xF000);
  87. CMenu* pSysMenu = GetSystemMenu(FALSE);
  88. if (pSysMenu != NULL)
  89. {
  90. CString strAboutMenu;
  91. strAboutMenu.LoadString(IDS_ABOUTBOX);
  92. if (!strAboutMenu.IsEmpty())
  93. {
  94. pSysMenu->AppendMenu(MF_SEPARATOR);
  95. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  96. }
  97. }
  98. // Set the icon for this dialog.  The framework does this automatically
  99. //  when the application's main window is not a dialog
  100. SetIcon(m_hIcon, TRUE); // Set big icon
  101. SetIcon(m_hIcon, FALSE); // Set small icon
  102. // TODO: Add extra initialization here
  103. //显示登录对话框
  104. CSetupDlg dlg;
  105. if(dlg.DoModal()==IDOK)
  106. {
  107. //创建一个新的Socket
  108. m_pSocket = new CChatSocket(this);
  109. if (!m_pSocket->Create())
  110. {
  111. delete m_pSocket;
  112. m_pSocket = NULL;
  113. AfxMessageBox("create socket failed");
  114. return FALSE;
  115. }
  116. //连接服务器
  117. while (!m_pSocket->Connect(dlg.m_strServer,dlg.m_nPort + 700))
  118. {
  119. if (AfxMessageBox("Failed to connect to servernTry again?",MB_YESNO) == IDNO)
  120. {
  121. delete m_pSocket;
  122. m_pSocket = NULL;
  123. return FALSE;
  124. }
  125. }
  126. m_strClientName = dlg.m_strName;
  127. }
  128. else
  129. return FALSE;
  130. //发送登录消息给服务器
  131. SendMsg("进入聊天室");
  132. return TRUE;  // return TRUE  unless you set the focus to a control
  133. }
  134. void CChatClientDlg::OnSysCommand(UINT nID, LPARAM lParam)
  135. {
  136. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  137. {
  138. CAboutDlg dlgAbout;
  139. dlgAbout.DoModal();
  140. }
  141. else
  142. {
  143. CDialog::OnSysCommand(nID, lParam);
  144. }
  145. }
  146. // If you add a minimize button to your dialog, you will need the code below
  147. //  to draw the icon.  For MFC applications using the document/view model,
  148. //  this is automatically done for you by the framework.
  149. void CChatClientDlg::OnPaint() 
  150. {
  151. if (IsIconic())
  152. {
  153. CPaintDC dc(this); // device context for painting
  154. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  155. // Center icon in client rectangle
  156. int cxIcon = GetSystemMetrics(SM_CXICON);
  157. int cyIcon = GetSystemMetrics(SM_CYICON);
  158. CRect rect;
  159. GetClientRect(&rect);
  160. int x = (rect.Width() - cxIcon + 1) / 2;
  161. int y = (rect.Height() - cyIcon + 1) / 2;
  162. // Draw the icon
  163. dc.DrawIcon(x, y, m_hIcon);
  164. }
  165. else
  166. {
  167. CDialog::OnPaint();
  168. }
  169. }
  170. // The system calls this to obtain the cursor to display while the user drags
  171. //  the minimized window.
  172. HCURSOR CChatClientDlg::OnQueryDragIcon()
  173. {
  174. return (HCURSOR) m_hIcon;
  175. }
  176. //接收数据
  177. void CChatClientDlg::ProcessPendingRead()
  178. {
  179. //定义缓冲区
  180. char buffer[BUFFER_SIZE];
  181. //接收数据
  182. int nReceived = m_pSocket->Receive(buffer,BUFFER_SIZE,0);
  183. buffer[nReceived] = 0;
  184. //将数据在列表框中显示出来
  185. CString str;
  186. str.Format("%s",buffer);
  187. m_ctrlMsgs.AddString(str);
  188. }
  189. void CChatClientDlg::OnSend() 
  190. {
  191. UpdateData(TRUE);
  192. SendMsg(m_strMsg);
  193. }
  194. //发送数据到服务器
  195. void CChatClientDlg::SendMsg(CString strMsg)
  196. {
  197. CString str;
  198. str.Format("%s:%s",m_strClientName,strMsg);
  199. m_pSocket->Send(str.GetBuffer(0),str.GetLength(),0);
  200. }