CHATVW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // chatvw.h : interface of the CChatView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CChatView : public CEditView
  13. {
  14. protected: // create from serialization only
  15. CChatView();
  16. DECLARE_DYNCREATE(CChatView)
  17. // Attributes
  18. public:
  19. CChatDoc* GetDocument();
  20. // Operations
  21. public:
  22. void Message(LPCTSTR lpszMessage);
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CChatView)
  26. public:
  27. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  28. protected:
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CChatView();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CChatView)
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. #ifndef _DEBUG  // debug version in chatvw.cpp
  46. inline CChatDoc* CChatView::GetDocument()
  47.    { return (CChatDoc*)m_pDocument; }
  48. #endif
  49. /////////////////////////////////////////////////////////////////////////////