EditDoc.h
上传用户:shilei2004
上传日期:2020-07-18
资源大小:83k
文件大小:2k
源码类别:

RichEdit

开发平台:

Visual C++

  1. // EditDoc.h : interface of the CEditDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EDITDOC_H__5A0AEC6E_8654_4075_916B_8EBE06F32493__INCLUDED_)
  5. #define AFX_EDITDOC_H__5A0AEC6E_8654_4075_916B_8EBE06F32493__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CEditDoc : public CRichEditDoc
  10. {
  11. protected: // create from serialization only
  12. CEditDoc();
  13. DECLARE_DYNCREATE(CEditDoc)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CEditDoc)
  21. public:
  22. virtual BOOL OnNewDocument();
  23. virtual void Serialize(CArchive& ar);
  24. //}}AFX_VIRTUAL
  25. virtual CRichEditCntrItem* CreateClientItem(REOBJECT* preo) const;
  26. virtual BOOL DoSave(LPCTSTR lpszPathName, BOOL bReplace=TRUE );
  27. // Implementation
  28. public:
  29. virtual ~CEditDoc();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CEditDoc)
  38. // NOTE - the ClassWizard will add and remove member functions here.
  39. //    DO NOT EDIT what you see in these blocks of generated code !
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_EDITDOC_H__5A0AEC6E_8654_4075_916B_8EBE06F32493__INCLUDED_)