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

组合框控件

开发平台:

Visual C++

  1. // CntrItem.h : interface of the CPropCntrItem class
  2. //
  3. #if !defined(AFX_CNTRITEM_H__1AAE1FEC_9BE8_45A1_A347_CD3931BB6A49__INCLUDED_)
  4. #define AFX_CNTRITEM_H__1AAE1FEC_9BE8_45A1_A347_CD3931BB6A49__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. class CPropDoc;
  9. class CPropView;
  10. class CPropCntrItem : public CRichEditCntrItem
  11. {
  12. DECLARE_SERIAL(CPropCntrItem)
  13. // Constructors
  14. public:
  15. CPropCntrItem(REOBJECT* preo = NULL, CPropDoc* pContainer = NULL);
  16. // Note: pContainer is allowed to be NULL to enable IMPLEMENT_SERIALIZE.
  17. //  IMPLEMENT_SERIALIZE requires the class have a constructor with
  18. //  zero arguments.  Normally, OLE items are constructed with a
  19. //  non-NULL document pointer.
  20. // Attributes
  21. public:
  22. CPropDoc* GetDocument()
  23. { return (CPropDoc*)CRichEditCntrItem::GetDocument(); }
  24. CPropView* GetActiveView()
  25. { return (CPropView*)CRichEditCntrItem::GetActiveView(); }
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CPropCntrItem)
  28. public:
  29. protected:
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. ~CPropCntrItem();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_CNTRITEM_H__1AAE1FEC_9BE8_45A1_A347_CD3931BB6A49__INCLUDED_)