Scribvw.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ScribVw.h : interface of the CScribbleView class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. class CScribbleView : public CScrollView
  21. {
  22. protected: // create from serialization only
  23. CScribbleView();
  24. DECLARE_DYNCREATE(CScribbleView)
  25. // Attributes
  26. public:
  27. CScribbleDoc* GetDocument();
  28. protected:
  29. CStroke*    m_pStrokeCur;   // the stroke in progress
  30. CPoint      m_ptPrev;       // the last mouse pt in the stroke in progress
  31. void Line(CDC& dc, CPoint pt1, CPoint pt2);
  32. void DPtoLP(CDC& dc, CPoint* pt);
  33. // Operations
  34. public:
  35. void ResyncScrollSizes();       // ensure scroll info is up-to-date
  36. // Overrides
  37. // ClassWizard generated virtual function overrides
  38. //{{AFX_VIRTUAL(CScribbleView)
  39. public:
  40. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  41. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  42. virtual void OnInitialUpdate();
  43. virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo = NULL);
  44. protected:
  45. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  46. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  47. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  48. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  49. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  50. //}}AFX_VIRTUAL
  51. // Implementation
  52. public:
  53. void PrintTitlePage(CDC* pDC, CPrintInfo* pInfo);
  54. void PrintPageHeader(CDC* pDC, CPrintInfo* pInfo, CString& strHeader);
  55. void OnFilePrintPreview();
  56. virtual ~CScribbleView();
  57. #ifdef _DEBUG
  58. virtual void AssertValid() const;
  59. virtual void Dump(CDumpContext& dc) const;
  60. #endif
  61. protected:
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CScribbleView)
  65. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  66. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  67. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  68. afx_msg void OnCancelEditSrvr();
  69. afx_msg void OnSize(UINT nType, int cx, int cy);
  70. //}}AFX_MSG
  71. DECLARE_MESSAGE_MAP()
  72. };
  73. #ifndef _DEBUG  // debug version in ScribVw.cpp
  74. inline CScribbleDoc* CScribbleView::GetDocument()
  75. { return (CScribbleDoc*)m_pDocument; }
  76. #endif
  77. /////////////////////////////////////////////////////////////////////////////