SRVRITEM.H
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // srvritem.h : interface of the CWordPadSrvrItem class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 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 CWordPadDoc;
  13. class CWordPadView;
  14. class CEmbeddedItem : public COleServerItem
  15. {
  16. DECLARE_DYNAMIC(CEmbeddedItem)
  17. // Constructors
  18. public:
  19. CEmbeddedItem(CWordPadDoc* pContainerDoc, int nBeg = 0, int nEnd = -1);
  20. // Attributes
  21. int m_nBeg;
  22. int m_nEnd;
  23. LPDATAOBJECT m_lpRichDataObj;
  24. CWordPadDoc* GetDocument() const
  25. { return (CWordPadDoc*) COleServerItem::GetDocument(); }
  26. CWordPadView* GetView() const;
  27. // Implementation
  28. public:
  29. BOOL OnDrawEx(CDC* pDC, CSize& rSize, BOOL bOutput);
  30. virtual BOOL OnDraw(CDC* pDC, CSize& rSize);
  31. virtual BOOL OnGetExtent(DVASPECT dwDrawAspect, CSize& rSize);
  32. protected:
  33. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  34. };
  35. /////////////////////////////////////////////////////////////////////////////