CNTRITEM.H
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // cntritem.h : interface of the CDrawItem class
  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 CDrawDoc;
  13. class CDrawView;
  14. class CDrawItem : public COleClientItem
  15. {
  16. DECLARE_SERIAL(CDrawItem)
  17. // Constructors
  18. public:
  19. CDrawItem(CDrawDoc* pContainer = NULL, CDrawOleObj* pDrawObj = NULL);
  20. // Note: pContainer is allowed to be NULL to enable IMPLEMENT_SERIALIZE
  21. //  IMPLEMENT_SERIALIZE requires the class have a constructor with
  22. //  zero arguments.  Normally, OLE items are constructed with a
  23. //  non-NULL document pointer.
  24. // Attributes
  25. public:
  26. CDrawDoc* GetDocument()
  27. { return (CDrawDoc*)COleClientItem::GetDocument(); }
  28. CDrawView* GetActiveView()
  29. { return (CDrawView*)COleClientItem::GetActiveView(); }
  30. CDrawOleObj* m_pDrawObj;    // back pointer to OLE draw object
  31. // Operations
  32. BOOL UpdateExtent();
  33. // Implementation
  34. public:
  35. ~CDrawItem();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. virtual void Serialize(CArchive& ar);
  41. virtual void OnGetItemPosition(CRect& rPosition);
  42. protected:
  43. virtual void OnChange(OLE_NOTIFICATION wNotification, DWORD dwParam);
  44. virtual BOOL OnChangeItemPosition(const CRect& rectPos);
  45. virtual void OnDeactivateUI(BOOL bUndoable);
  46. virtual void OnActivate();
  47. };
  48. /////////////////////////////////////////////////////////////////////////////