scribvw.h
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:3k
源码类别:

DNA

开发平台:

Visual C++

  1. // ScribVw.h : interface of the CScribbleView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. class CScribbleView : public CScrollView
  14. {
  15. protected: // create from serialization only
  16. CScribbleView();
  17. DECLARE_DYNCREATE(CScribbleView)
  18. // Attributes
  19. public:
  20. CScribbleDoc* GetDocument();
  21. protected:
  22. CStroke*    m_pStrokeCur;   // the stroke in progress
  23. CPoint      m_ptPrev;       // the last mouse pt in the stroke in progress
  24. // Operations
  25. public:
  26. void ResyncScrollSizes();       // ensure scroll info is up-to-date
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CScribbleView)
  30. public:
  31. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  32. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33. virtual void OnInitialUpdate();
  34. virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo = NULL);
  35. protected:
  36. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  37. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  38. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  39. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  40. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. public:
  44. void PrintTitlePage(CDC* pDC, CPrintInfo* pInfo);
  45. void PrintPageHeader(CDC* pDC, CPrintInfo* pInfo, CString& strHeader);
  46. virtual ~CScribbleView();
  47. #ifdef _DEBUG
  48. virtual void AssertValid() const;
  49. virtual void Dump(CDumpContext& dc) const;
  50. #endif
  51. protected:
  52. // Generated message map functions
  53. protected:
  54. //{{AFX_MSG(CScribbleView)
  55. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  56. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  57. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  58. afx_msg void OnCancelEditSrvr();
  59. afx_msg void OnSize(UINT nType, int cx, int cy);
  60. //}}AFX_MSG
  61. DECLARE_MESSAGE_MAP()
  62. };
  63. #ifndef _DEBUG  // debug version in ScribVw.cpp
  64. inline CScribbleDoc* CScribbleView::GetDocument()
  65.    { return (CScribbleDoc*)m_pDocument; }
  66. #endif
  67. /////////////////////////////////////////////////////////////////////////////