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

Windows编程

开发平台:

Visual C++

  1. // trackvw.h : interface of the CTrackerView 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 CTrackerView : public CView
  14. {
  15. protected: // create from serialization only
  16. CTrackerView();
  17. DECLARE_DYNCREATE(CTrackerView)
  18. // Attributes
  19. public:
  20. CTrackerDoc* GetDocument();
  21. // Operations
  22. public:
  23. // Implementation
  24. public:
  25. virtual ~CTrackerView();
  26. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  32. // Printing support
  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. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CTrackerView)
  40. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  41. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  42. afx_msg void OnViewSethandlesize();
  43. afx_msg void OnViewSetminimumsize();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. #ifndef _DEBUG  // debug version in trackvw.cpp
  48. inline CTrackerDoc* CTrackerView::GetDocument()
  49.    { return (CTrackerDoc*) m_pDocument; }
  50. #endif
  51. /////////////////////////////////////////////////////////////////////////////