ZoomPartView.h
上传用户:aokegd
上传日期:2009-12-14
资源大小:1276k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ZoomPartView.h : interface of the CZoomPartView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ZOOMPARTVIEW_H__28182EED_735B_11D6_8F32_00E04CE76240__INCLUDED_)
  5. #define AFX_ZOOMPARTVIEW_H__28182EED_735B_11D6_8F32_00E04CE76240__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CZoomPartView : public CView
  10. {
  11. protected: // create from serialization only
  12. CZoomPartView();
  13. DECLARE_DYNCREATE(CZoomPartView)
  14. // Attributes
  15. public:
  16. CZoomPartDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CZoomPartView)
  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 ~CZoomPartView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. CSize m_sizeDest;
  39. CSize m_sizeSource;
  40. CBitmap * m_pBitmap;
  41. CDC * m_pdcMem;
  42. int oldx,oldy,s,d;   //s确定被放大区域,d确定放大显示区域,放大倍率=d/s
  43. bool recover;
  44. long mana;
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CZoomPartView)
  48. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  49. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  50. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. #ifndef _DEBUG  // debug version in ZoomPartView.cpp
  55. inline CZoomPartDoc* CZoomPartView::GetDocument()
  56.    { return (CZoomPartDoc*)m_pDocument; }
  57. #endif
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_ZOOMPARTVIEW_H__28182EED_735B_11D6_8F32_00E04CE76240__INCLUDED_)