ex61View.h
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ex61View.h : interface of the CEx61View class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EX61VIEW_H__93831A68_CE4A_4B61_8B51_5864FEECD969__INCLUDED_)
  5. #define AFX_EX61VIEW_H__93831A68_CE4A_4B61_8B51_5864FEECD969__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CEx61View : public CView
  10. {
  11. protected: // create from serialization only
  12. CEx61View();
  13. DECLARE_DYNCREATE(CEx61View)
  14. // Attributes
  15. public:
  16. CEx61Doc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CEx61View)
  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. int flag;
  33. virtual ~CEx61View();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. BOOL m_bEditPaste;
  42. //{{AFX_MSG(CEx61View)
  43. afx_msg void OnEllipse();
  44. afx_msg void OnRectangle();
  45. afx_msg void OnUpdateEllipse(CCmdUI* pCmdUI);
  46. afx_msg void OnUpdateRectangle(CCmdUI* pCmdUI);
  47. afx_msg void OnEditCopy();
  48. afx_msg void OnEditCut();
  49. afx_msg void OnEditPaste();
  50. afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI);
  51. afx_msg void OnText();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. #ifndef _DEBUG  // debug version in ex61View.cpp
  56. inline CEx61Doc* CEx61View::GetDocument()
  57.    { return (CEx61Doc*)m_pDocument; }
  58. #endif
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_EX61VIEW_H__93831A68_CE4A_4B61_8B51_5864FEECD969__INCLUDED_)