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

书籍源码

开发平台:

Visual C++

  1. // ex91View.h : interface of the CEx91View class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_EX91VIEW_H__037F7976_A7F6_4AF3_891A_8412018ED266__INCLUDED_)
  5. #define AFX_EX91VIEW_H__037F7976_A7F6_4AF3_891A_8412018ED266__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CEx91View : public CView
  10. {
  11. protected: // create from serialization only
  12. CEx91View();
  13. DECLARE_DYNCREATE(CEx91View)
  14. // Attributes
  15. public:
  16. CEx91Doc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CEx91View)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. virtual void OnInitialUpdate();
  26. protected:
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. int y;
  34. int x;
  35. virtual ~CEx91View();
  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(CEx91View)
  44. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. #ifndef _DEBUG  // debug version in ex91View.cpp
  49. inline CEx91Doc* CEx91View::GetDocument()
  50.    { return (CEx91Doc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_EX91VIEW_H__037F7976_A7F6_4AF3_891A_8412018ED266__INCLUDED_)