MiniCADDoc.h
上传用户:netltd
上传日期:2013-02-12
资源大小:7234k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // MiniCADDoc.h : interface of the CMiniCADDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MINICADDOC_H__7F09879E_D806_11D2_8830_E0646867975D__INCLUDED_)
  5. #define AFX_MINICADDOC_H__7F09879E_D806_11D2_8830_E0646867975D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "MiniCAD.h"
  10. #include "MyManageGraphObj.h"
  11. class CMiniCADDoc : public CDocument
  12. {
  13. protected: // create from serialization only
  14. CMiniCADDoc();
  15. DECLARE_DYNCREATE(CMiniCADDoc)
  16. // Attributes
  17. protected:
  18. CMiniCADApp* pApp;
  19. public:
  20. BOOL DocumentReady;      //文档准备就绪标志
  21. UINT CurrentCommand;     //当前绘图命令 
  22. public:
  23. CFileInfo      FileInfo;
  24. public:
  25. CCommandStack      m_CommandStack;
  26. CManageFileLayer   m_ManageFileLayer;
  27. CManageGraphObject m_ManageGraphObject;
  28. // Operations
  29. public:
  30.     BOOL SaveDocument();
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CMiniCADDoc)
  34. public:
  35. virtual BOOL OnNewDocument();
  36. virtual void Serialize(CArchive& ar);
  37. virtual void OnCloseDocument();
  38. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. public:
  42. virtual ~CMiniCADDoc();
  43. #ifdef _DEBUG
  44. virtual void AssertValid() const;
  45. virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CMiniCADDoc)
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_MINICADDOC_H__7F09879E_D806_11D2_8830_E0646867975D__INCLUDED_)