ChatEdit.cpp
上传用户:fjjkzlh
上传日期:2010-04-06
资源大小:469k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // ChatEdit.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "five.h"
  5. #include "ChatEdit.h"
  6. #include "Table.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CChatEdit
  14. CChatEdit::CChatEdit()
  15. {
  16. }
  17. CChatEdit::~CChatEdit()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CChatEdit, CEdit)
  21. //{{AFX_MSG_MAP(CChatEdit)
  22. ON_WM_KEYDOWN()
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CChatEdit message handlers
  27. void CChatEdit::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) 
  28. {
  29.     // TODO: Add your message handler code here and/or call default
  30.     if ( '6' == nChar )
  31.     {
  32.         CTable *pTable = (CTable *)( AfxGetMainWnd()->GetDlgItem( IDC_TABLE ) );
  33.         // 发送聊天信息
  34.         TCHAR str[128];
  35.         GetWindowText( str, 128 );
  36.         pTable->Chat( str );
  37.         // 写入聊天记录
  38.         CEdit *pEdit = (CEdit *)( AfxGetMainWnd()->GetDlgItem( IDC_EDT_CHAT ) );
  39.         CString strAdd;
  40.         strAdd.Format( _T("你 说:%srn"), str );
  41.         pEdit->SetSel( -1, -1, TRUE );
  42.         pEdit->ReplaceSel( str );
  43.         SetWindowText( _T("") );
  44.     }
  45.     else
  46.     {
  47.         CEdit::OnKeyDown(nChar, nRepCnt, nFlags);
  48.     }
  49. }