systemmsgview.h
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. /*******************************************************************************
  2. ServerTreeView.h
  3. 系统消息视图
  4. 修改历史:
  5.     2002-07-02
  6. 创建文件
  7. 2002-07-05
  8. 增加一个RichEdit到SystemMsgView中
  9. *******************************************************************************/
  10. #if !defined(AFX_SYSTEMMSGVIEW_H__17C68F26_D4DB_491E_AD98_28E7238D3259__INCLUDED_)
  11. #define AFX_SYSTEMMSGVIEW_H__17C68F26_D4DB_491E_AD98_28E7238D3259__INCLUDED_
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15. // systemmsgview.h : header file
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CSystemMsgView view
  19. #include "RichEditCtrlEx.h"
  20. class CSystemMsgView : public CView
  21. {
  22. protected:
  23. CSystemMsgView();           // protected constructor used by dynamic creation
  24. DECLARE_DYNCREATE(CSystemMsgView)
  25. // Attributes
  26. public:
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CSystemMsgView)
  32. protected:
  33. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. virtual ~CSystemMsgView();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CSystemMsgView)
  45. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  46. afx_msg void OnSize(UINT nType, int cx, int cy);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. private:
  50. CRichEditCtrlEx m_SystemMsg;
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_SYSTEMMSGVIEW_H__17C68F26_D4DB_491E_AD98_28E7238D3259__INCLUDED_)