ServerView.h
上传用户:guangzhiyw
上传日期:2007-01-09
资源大小:495k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // ServerView.h : interface of the CServerView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SERVERVIEW_H__C318997F_4DB1_11D5_B121_A3A17EBFEA00__INCLUDED_)
  5. #define AFX_SERVERVIEW_H__C318997F_4DB1_11D5_B121_A3A17EBFEA00__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CServerDoc;
  10. class CServerView : public CEditView
  11. {
  12. protected: // create from serialization only
  13. CServerView();
  14. DECLARE_DYNCREATE(CServerView)
  15. // Attributes
  16. public:
  17. CServerDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CServerView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. void ShowMessage(CString str);
  30. virtual ~CServerView();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. protected:
  36. CCriticalSection m_criticalShowMess;
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CServerView)
  40. afx_msg void OnEditCopy();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. #ifndef _DEBUG  // debug version in ServerView.cpp
  45. inline CServerDoc* CServerView::GetDocument()
  46.    { return (CServerDoc*)m_pDocument; }
  47. #endif
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_SERVERVIEW_H__C318997F_4DB1_11D5_B121_A3A17EBFEA00__INCLUDED_)