propDoc.h
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:2k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // propDoc.h : interface of the CPropDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PROPDOC_H__1DF8090C_06FC_4707_82FE_2002ED13D20B__INCLUDED_)
  5. #define AFX_PROPDOC_H__1DF8090C_06FC_4707_82FE_2002ED13D20B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CPropDoc : public CRichEditDoc
  10. {
  11. protected: // create from serialization only
  12. CPropDoc();
  13. DECLARE_DYNCREATE(CPropDoc)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CPropDoc)
  21. public:
  22. virtual BOOL OnNewDocument();
  23. virtual void Serialize(CArchive& ar);
  24. virtual void SetTitle(LPCTSTR lpszTitle);
  25. virtual BOOL SaveModified( );
  26. //}}AFX_VIRTUAL
  27. virtual CRichEditCntrItem* CreateClientItem(REOBJECT* preo) const;
  28. // Implementation
  29. public:
  30. virtual ~CPropDoc();
  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(CPropDoc)
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //    DO NOT EDIT what you see in these blocks of generated code !
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_PROPDOC_H__1DF8090C_06FC_4707_82FE_2002ED13D20B__INCLUDED_)