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

Windows编程

开发平台:

Visual C++

  1. // sendvw.h : header file
  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 CSendView : public CEditView
  13. {
  14. protected:
  15. CSendView();           // protected constructor used by dynamic creation
  16. DECLARE_DYNCREATE(CSendView)
  17. // Attributes
  18. public:
  19. BOOL m_bSendRandomMessages;
  20. UINT m_TimerID;
  21. CChatDoc* GetDocument();
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CSendView)
  27. public:
  28. virtual BOOL DestroyWindow();
  29. protected:
  30. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  31. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. virtual ~CSendView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CSendView)
  43. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  44. afx_msg void OnTimer(UINT nIDEvent);
  45. afx_msg void OnAutochatter();
  46. afx_msg void OnUpdateAutochatter(CCmdUI* pCmdUI);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. #ifndef _DEBUG  // debug version in sendvw.cpp
  51. inline CChatDoc* CSendView::GetDocument()
  52.    { return (CChatDoc*)m_pDocument; }
  53. #endif
  54. /////////////////////////////////////////////////////////////////////////////