SHAPEDOC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // shapesdoc.h : interface of the CShapesDoc 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. #include <afxtempl.h>
  13. class CShapesDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16. CShapesDoc();
  17. DECLARE_DYNCREATE(CShapesDoc)
  18. // Attributes
  19. public:
  20. CTypedPtrList<CObList, CShape*> m_shapeList;
  21. // Operations
  22. public:
  23. void AddShape(CShape* pShapeNew);
  24. CShape* HitTest(CPoint pt);
  25. // Overrides
  26. // ClassWizard generate virtual function overrides
  27. //{{AFX_VIRTUAL(CShapesDoc)
  28. protected:
  29. virtual BOOL OnNewDocument();
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CShapesDoc();
  34. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CShapesDoc)
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////