TPS_DemoView.h
上传用户:qifu0001
上传日期:2007-01-02
资源大小:52k
文件大小:1k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // TPS_DemoView.h : interface of the CTPS_DemoView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CTPS_DemoView : public CView
  5. {
  6. protected: // create from serialization only
  7. CTPS_DemoView();
  8. DECLARE_DYNCREATE(CTPS_DemoView)
  9. // Attributes
  10. public:
  11. CTPS_DemoDoc* GetDocument();
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CTPS_DemoView)
  17. public:
  18. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  19. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  20. protected:
  21. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  22. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  23. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CTPS_DemoView();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. protected:
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CTPS_DemoView)
  36. // NOTE - the ClassWizard will add and remove member functions here.
  37. //    DO NOT EDIT what you see in these blocks of generated code !
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. #ifndef _DEBUG  // debug version in TPS_DemoView.cpp
  42. inline CTPS_DemoDoc* CTPS_DemoView::GetDocument()
  43.    { return (CTPS_DemoDoc*)m_pDocument; }
  44. #endif
  45. /////////////////////////////////////////////////////////////////////////////