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

书籍源码

开发平台:

Visual C++

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