TestView.h
上传用户:kesuntpe
上传日期:2007-01-02
资源大小:29k
文件大小:2k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // TestView.h : interface of the CTestView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TESTVIEW_H__82366F2D_66CD_11D2_89CB_CB294B116A69__INCLUDED_)
  5. #define AFX_TESTVIEW_H__82366F2D_66CD_11D2_89CB_CB294B116A69__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "TreeViewExt.h"
  10. class CTestView : public CTreeView, CTreeViewExt<int>
  11. {
  12. protected: // create from serialization only
  13. CTestView();
  14. DECLARE_DYNCREATE(CTestView)
  15. // Attributes
  16. public:
  17. CTestDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CTestView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual void OnInitialUpdate(); // called first time after construct
  28. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  29. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. virtual ~CTestView();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CTestView)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //    DO NOT EDIT what you see in these blocks of generated code !
  45. //}}AFX_MSG
  46. afx_msg LONG OnDataAvailable(WPARAM wParam, LPARAM lParam);
  47. // CTreeViewExt overrides
  48. public:
  49. CTreeCtrl& GetTreeCtrl() const { return CTreeView::GetTreeCtrl(); }
  50. virtual void GetRootItems(list<TreeData>& List);
  51. virtual void GetChildItems(list<TreeData>::iterator it, list<TreeData>& List);
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. #ifndef _DEBUG  // debug version in TestView.cpp
  55. inline CTestDoc* CTestView::GetDocument()
  56.    { return (CTestDoc*)m_pDocument; }
  57. #endif
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_TESTVIEW_H__82366F2D_66CD_11D2_89CB_CB294B116A69__INCLUDED_)