maindoc.h
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:1k
源码类别:

DNA

开发平台:

Visual C++

  1. // maindoc.h : interface of the CMainDoc 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 CRectItem;
  13. class CMainDoc : public COleLinkingDoc
  14. {
  15. protected: // create from serialization only
  16. CMainDoc();
  17. DECLARE_DYNCREATE(CMainDoc)
  18. // Attributes
  19. public:
  20. static CLIPFORMAT m_cfPrivate;
  21. CSize m_sizeDoc;
  22. CSize& GetDocumentSize();
  23. BOOL m_bNeedUpdate;
  24. // Operations
  25. public:
  26. CRectItem* CreateItem();    // this document only stores CRectItems
  27. void DeleteItem(CRectItem* pItem);
  28. void AdjustItemPosition(CRectItem* pItem);
  29. // Implementation
  30. public:
  31. virtual ~CMainDoc();
  32. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  33. virtual void OnShowViews(BOOL bVisible);
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CMainDoc)
  41. afx_msg void OnEditClearAll();
  42. afx_msg void OnUpdateEditClearAll(CCmdUI* pCmdUI);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////