OverWriteView.h
上传用户:hngjqc
上传日期:2007-01-02
资源大小:25k
文件大小:2k
源码类别:

RichEdit

开发平台:

Visual C++

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