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

绘图程序

开发平台:

Visual C++

  1. // MiniCADView.h : interface of the CMiniCADView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MINICADVIEW_H__7F0987A0_D806_11D2_8830_E0646867975D__INCLUDED_)
  5. #define AFX_MINICADVIEW_H__7F0987A0_D806_11D2_8830_E0646867975D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "MiniCAD.h"
  10. #include "MainFrm.h"
  11. #include "MiniCADDoc.h"
  12. class CMiniCADView : public CScrollView
  13. {
  14. protected: 
  15. CMiniCADView();
  16. DECLARE_DYNCREATE(CMiniCADView)
  17. public:
  18. CMiniCADDoc* GetDocument();
  19. void DrawCursor(CDC* pDC, CPoint OldPoint, CPoint NewPoint, int style); 
  20. protected:
  21. CMiniCADApp* pApp;
  22. CMainFrame* pMainWnd;
  23.    
  24. SIZE size;         //滚动视(客户区)的尺寸
  25. float Proportion;  //图形缩放比例,因各个视图的比例不一样,所以不在CADInfo.h中定义
  26. //Operations
  27. public:
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CMiniCADView)
  31. public:
  32. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33. virtual void OnInitialUpdate();
  34. virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo = NULL);
  35. protected:
  36. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  37. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  38. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  39. virtual void OnDraw(CDC* pDC);
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. public:
  43. virtual ~CMiniCADView();
  44. #ifdef _DEBUG
  45. virtual void AssertValid() const;
  46. virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48. protected:
  49. // Generated message map functions
  50. protected:
  51. //{{AFX_MSG(CMiniCADView)
  52. afx_msg void OnDrawCircle();
  53. afx_msg void OnDrawLine();
  54. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  55. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  56. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  57. afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  58. afx_msg void OnDestroy();
  59. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  60. afx_msg void OnZoomout();
  61. afx_msg void OnZoomin();
  62. afx_msg void OnSelchangeColor();
  63. afx_msg void OnSelchangeLinestyle();
  64. afx_msg void OnDrawRect();
  65. afx_msg void OnSize(UINT nType, int cx, int cy);
  66. afx_msg void OnViewRedraw();
  67. afx_msg void OnDrawSelect();
  68. afx_msg void OnEditUndo();
  69. afx_msg void OnEditRedo();
  70. afx_msg void OnDrawArc();
  71. afx_msg void OnDrawText();
  72. afx_msg void OnUpdateDrawSelect(CCmdUI* pCmdUI);
  73. afx_msg void OnUpdateDrawLine(CCmdUI* pCmdUI);
  74. afx_msg void OnUpdateDrawRect(CCmdUI* pCmdUI);
  75. afx_msg void OnUpdateDrawCircle(CCmdUI* pCmdUI);
  76. afx_msg void OnUpdateDrawArc(CCmdUI* pCmdUI);
  77. afx_msg void OnUpdateDrawText(CCmdUI* pCmdUI);
  78. afx_msg void OnUpdateEditRedo(CCmdUI* pCmdUI);
  79. afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
  80. afx_msg void OnUpdateChangeDelete(CCmdUI* pCmdUI);
  81. afx_msg void OnEraseBkgnd (CDC* pDC);
  82. afx_msg void OnSelchangeFilesize();
  83. afx_msg void OnDrawMultiline();
  84. afx_msg void OnDrawPolygon();
  85. afx_msg void OnDrawEllipse();
  86. afx_msg void OnModifyDelete();
  87. afx_msg void OnModifyCopy();
  88. afx_msg void OnModifyCut();
  89. afx_msg void OnModifyCuttoangle();
  90. afx_msg void OnModifyLengthento();
  91. afx_msg void OnModifyJoin();
  92. afx_msg void OnModifyMirror();
  93. afx_msg void OnModifyVertical();
  94. afx_msg void OnDrawDot();
  95. afx_msg void OnDrawCurve();
  96. afx_msg void OnModifyMove();
  97. afx_msg void OnModifyRotate();
  98. afx_msg void OnDrawDefineline();
  99. afx_msg void OnModifyExcursion();
  100. afx_msg void OnEditCopy();
  101. afx_msg void OnEditCut();
  102. afx_msg void OnEditPaste();
  103. afx_msg void OnFormatDrawingAttribute();
  104. afx_msg void OnToolSelect();
  105. //}}AFX_MSG
  106. DECLARE_MESSAGE_MAP()
  107. };
  108. #ifndef _DEBUG  // debug version in MiniCADView.cpp
  109. inline CMiniCADDoc* CMiniCADView::GetDocument()
  110.    { return (CMiniCADDoc*)m_pDocument; }
  111. #endif
  112. /////////////////////////////////////////////////////////////////////////////
  113. //{{AFX_INSERT_LOCATION}}
  114. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  115. #endif // !defined(AFX_MINICADVIEW_H__7F0987A0_D806_11D2_8830_E0646867975D__INCLUDED_)