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

界面编程

开发平台:

Visual C++

  1. // cntritem.h : interface of the CWordPadCntrItem 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 CWordPadCntrItem : public CRichEditCntrItem
  15. {
  16. DECLARE_SERIAL(CWordPadCntrItem)
  17. // Constructors
  18. public:
  19. CWordPadCntrItem(REOBJECT* preo = NULL, CWordPadDoc* pContainer = 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. CWordPadDoc* GetDocument()
  27. { return (CWordPadDoc*)COleClientItem::GetDocument(); }
  28. CWordPadView* GetActiveView()
  29. { return (CWordPadView*)COleClientItem::GetActiveView(); }
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CWordPadCntrItem)
  32. public:
  33. protected:
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. #ifdef _DEBUG
  38. virtual void AssertValid() const;
  39. virtual void Dump(CDumpContext& dc) const;
  40. #endif
  41. };
  42. /////////////////////////////////////////////////////////////////////////////