GraphicView.h
上传用户:mcdz888
上传日期:2022-08-05
资源大小:118k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // GraphicView.h : interface of the CGraphicView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_GRAPHICVIEW_H__D258BB50_7D22_4D2E_AC67_0E8E8AD88491__INCLUDED_)
  5. #define AFX_GRAPHICVIEW_H__D258BB50_7D22_4D2E_AC67_0E8E8AD88491__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CGraphicView : public CView
  10. {
  11. protected: // create from serialization only
  12. CGraphicView();
  13. DECLARE_DYNCREATE(CGraphicView)
  14. // Attributes
  15. public:
  16. CGraphicDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CGraphicView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CGraphicView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CGraphicView)
  41. afx_msg void OnDot();
  42. afx_msg void OnLine();
  43. afx_msg void OnRectangle();
  44. afx_msg void OnEllipse();
  45. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  46. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  47. afx_msg void OnSetting();
  48. afx_msg void OnColor();
  49. afx_msg void OnFont();
  50. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. private:
  54. CString m_strFontName;
  55. CFont m_font;
  56. COLORREF m_clr;
  57. int m_nLineStyle;
  58. UINT m_nLineWidth;
  59. CPoint m_ptOrigin;
  60. UINT m_nDrawType;
  61. };
  62. #ifndef _DEBUG  // debug version in GraphicView.cpp
  63. inline CGraphicDoc* CGraphicView::GetDocument()
  64.    { return (CGraphicDoc*)m_pDocument; }
  65. #endif
  66. /////////////////////////////////////////////////////////////////////////////
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  69. #endif // !defined(AFX_GRAPHICVIEW_H__D258BB50_7D22_4D2E_AC67_0E8E8AD88491__INCLUDED_)