Message.cpp
上传用户:sanxfzhen
上传日期:2014-12-28
资源大小:2324k
文件大小:2k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // Message.cpp: implementation of the CMessage class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "Message.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char THIS_FILE[]=__FILE__;
  9. #define new DEBUG_NEW
  10. #endif
  11. CWnd* CMessage::m_pWndInfo;
  12. CWnd* CMessage::m_pWndStatusInfo;
  13. //////////////////////////////////////////////////////////////////////
  14. // Construction/Destruction
  15. //////////////////////////////////////////////////////////////////////
  16. CMessage::CMessage()
  17. {
  18. }
  19. CMessage::~CMessage()
  20. {
  21. }
  22. void CMessage::SetStatusWnd(CWnd *pWnd)
  23. {
  24. m_pWndStatusInfo=pWnd;
  25. }
  26. void CMessage::SetOutputWnd(CWnd *pWnd)
  27. {
  28. m_pWndInfo=pWnd;
  29. }
  30. void CMessage::PrintError(CString strInfo)
  31. {
  32. if(m_pWndInfo!=NULL)
  33. {
  34. CString str;
  35. m_pWndInfo->GetWindowText(str);
  36. str+="------------------error-----------------rn";
  37. str=str+strInfo+"rn";
  38. m_pWndInfo->SetWindowText(str);
  39. CEditView *pView=(CEditView*)m_pWndInfo;
  40. CEdit& edit=pView->GetEditCtrl();
  41. edit.LineScroll(edit.GetLineCount(), 0);
  42. }
  43. }
  44. void CMessage::PrintInfo(CString strInfo)
  45. {
  46. if(m_pWndInfo!=NULL)
  47. {
  48. CString str;
  49. m_pWndInfo->GetWindowText(str);
  50. str=str+strInfo+"rn";
  51. m_pWndInfo->SetWindowText(str);
  52. CEditView *pView=(CEditView*)m_pWndInfo;
  53. CEdit& edit=pView->GetEditCtrl();
  54. edit.LineScroll(edit.GetLineCount(), 0);
  55. }
  56. }
  57. void CMessage::PrintStatusInfo(CString strInfo)
  58. {
  59. if (m_pWndStatusInfo!=NULL)
  60. m_pWndStatusInfo->SetWindowText(strInfo);
  61. }
  62. void CMessage::ClearInfo()
  63. {
  64. if (m_pWndStatusInfo!=NULL)
  65. m_pWndStatusInfo->SetWindowText("");
  66. if(m_pWndInfo!=NULL)
  67. m_pWndInfo->SetWindowText("");
  68. }