SCRIBVW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

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. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CScribbleView)
  29. public:
  30. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  31. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  32. virtual void OnInitialUpdate();
  33. protected:
  34. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  35. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  36. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  37. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  38. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. public:
  42. void PrintTitlePage(CDC* pDC, CPrintInfo* pInfo);
  43. void PrintPageHeader(CDC* pDC, CPrintInfo* pInfo, CString& strHeader);
  44. virtual ~CScribbleView();
  45. #ifdef _DEBUG
  46. virtual void AssertValid() const;
  47. virtual void Dump(CDumpContext& dc) const;
  48. #endif
  49. protected:
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CScribbleView)
  53. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  54. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  55. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. #ifndef _DEBUG  // debug version in ScribVw.cpp
  60. inline CScribbleDoc* CScribbleView::GetDocument()
  61.    { return (CScribbleDoc*)m_pDocument; }
  62. #endif
  63. /////////////////////////////////////////////////////////////////////////////