IEEdit.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // IEEdit.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "IE.h"
  5. #include "IEEdit.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CIEEdit
  13. CIEEdit::CIEEdit()
  14. {
  15. this->OnAddress = NULL;
  16. this->wParam = NULL;
  17. }
  18. CIEEdit::~CIEEdit()
  19. {
  20. }
  21. BEGIN_MESSAGE_MAP(CIEEdit, CEdit)
  22. //{{AFX_MSG_MAP(CIEEdit)
  23. ON_WM_CHAR()
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CIEEdit message handlers
  28. void CIEEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) 
  29. {
  30. if( nChar == VK_RETURN && this->OnAddress )
  31. this->OnAddress( this->wParam );
  32. else
  33. CEdit::OnChar(nChar, nRepCnt, nFlags);
  34. }