CntrItem.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. // CntrItem.h : interface of the CMyCntrItem class
  2. //
  3. #if !defined(AFX_CNTRITEM_H__7F3281A9_8789_489C_AD7A_CF8755E23CF1__INCLUDED_)
  4. #define AFX_CNTRITEM_H__7F3281A9_8789_489C_AD7A_CF8755E23CF1__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. class CMyDoc;
  9. class CMyView;
  10. class CMyCntrItem : public COleClientItem
  11. {
  12. DECLARE_SERIAL(CMyCntrItem)
  13. // Constructors
  14. public:
  15. CMyCntrItem(CMyDoc* 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. CMyDoc* GetDocument()
  23. { return (CMyDoc*)COleClientItem::GetDocument(); }
  24. CMyView* GetActiveView()
  25. { return (CMyView*)COleClientItem::GetActiveView(); }
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CMyCntrItem)
  28. public:
  29. virtual void OnChange(OLE_NOTIFICATION wNotification, DWORD dwParam);
  30. virtual void OnActivate();
  31. protected:
  32. virtual void OnGetItemPosition(CRect& rPosition);
  33. virtual void OnDeactivateUI(BOOL bUndoable);
  34. virtual BOOL OnChangeItemPosition(const CRect& rectPos);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. ~CMyCntrItem();
  39. #ifdef _DEBUG
  40. virtual void AssertValid() const;
  41. virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43. virtual void Serialize(CArchive& ar);
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_CNTRITEM_H__7F3281A9_8789_489C_AD7A_CF8755E23CF1__INCLUDED_)