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. UINT CurrentCommand;     //当前绘图命令 
  21. public:
  22. COLORREF PenColor;      
  23. int      LineStyle;     
  24. COLORREF BackColor;     
  25. public:
  26. CFileInfo      FileInfo;
  27. CCommandStack  m_CommandStack;
  28. int            DocumentIndex;   //文档的序号
  29. public:
  30. CManageGraphObject m_ManageGraphObject;
  31. // Operations
  32. public:
  33.     BOOL SaveDocument();
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CMiniCADDoc)
  37. public:
  38. virtual BOOL OnNewDocument();
  39. virtual void Serialize(CArchive& ar);
  40. virtual void OnCloseDocument();
  41. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. public:
  45. virtual ~CMiniCADDoc();
  46. #ifdef _DEBUG
  47. virtual void AssertValid() const;
  48. virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CMiniCADDoc)
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_MINICADDOC_H__7F09879E_D806_11D2_8830_E0646867975D__INCLUDED_)