CAD2006View.h
上传用户:ckg1000
上传日期:2013-01-26
资源大小:630k
文件大小:3k
源码类别:

CAD

开发平台:

Visual C++

  1. // CAD2006View.h : interface of the CCAD2006View class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CAD2006VIEW_H__91ADEF59_5816_4846_83F0_89C66429DCDD__INCLUDED_)
  5. #define AFX_CAD2006VIEW_H__91ADEF59_5816_4846_83F0_89C66429DCDD__INCLUDED_
  6. #include "NewEdit.h" // Added by ClassView
  7. #include "CAD2006Doc.h" // Added by ClassView
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. enum OPENCLOSE{open,close};
  12. enum BUTTONDOWN{first,second,third};
  13. class CCAD2006View : public CView
  14. {
  15. protected: // create from serialization only
  16. CCAD2006View();
  17. DECLARE_DYNCREATE(CCAD2006View)
  18. // Attributes
  19. public:
  20. CCAD2006Doc* GetDocument();
  21. OPENCLOSE m_openclose;
  22. BUTTONDOWN m_state;
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CCAD2006View)
  28. public:
  29. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  30. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31. protected:
  32. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  33. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  34. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. void ShowShape(CString str);
  39. bool ZoomLineSelect(CPoint point);
  40. bool ZoomPolygonSelect(CPoint point);
  41. bool ZoomTrigonSelect(CPoint point);
  42. bool EllipseSelect(CPoint point);
  43. bool PolygonSelect(CPoint point);
  44. bool RectSelect(CPoint point);
  45. bool CircleSelect(CPoint point);
  46. bool LineSelect(CPoint point);
  47. bool TrigonSelect(CPoint point);
  48. virtual ~CCAD2006View();
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. protected:
  54. // Generated message map functions
  55. protected:
  56. //{{AFX_MSG(CCAD2006View)
  57. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  58. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  59. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  60. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  61. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  62. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  63. afx_msg void OnFileSave();
  64. afx_msg void OnFileOpen();
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. #ifndef _DEBUG  // debug version in CAD2006View.cpp
  69. inline CCAD2006Doc* CCAD2006View::GetDocument()
  70.    { return (CCAD2006Doc*)m_pDocument; }
  71. #endif
  72. /////////////////////////////////////////////////////////////////////////////
  73. //{{AFX_INSERT_LOCATION}}
  74. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  75. #endif // !defined(AFX_CAD2006VIEW_H__91ADEF59_5816_4846_83F0_89C66429DCDD__INCLUDED_)