WZDTVIEW.H
上传用户:leishk
上传日期:2022-03-16
资源大小:3649k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // WzdTView.h : interface of the CWzdTreeView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined WZDTREEVIEW_H
  5. #define WZDTREEVIEW_H
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include <afxcview.h>
  10. class CWzdTreeView : public CTreeView
  11. {
  12. protected: // create from serialization only
  13. CWzdTreeView();
  14. DECLARE_DYNCREATE(CWzdTreeView)
  15. // Attributes
  16. public:
  17. CWzdDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CWzdTreeView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. virtual void OnInitialUpdate();
  27. protected:
  28. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  29. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  31. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CWzdTreeView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CWzdTreeView)
  44. afx_msg void OnSelchanged(NMHDR* pNMHDR, LRESULT* pResult);
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. private:
  48. CImageList m_ImageList;
  49. void AddBranch(HTREEITEM hTreeItem, CList<CWzdInfo*,CWzdInfo*> *pList);
  50. HTREEITEM AddLeaf(HTREEITEM hTreeItem, CWzdInfo *pInfo);
  51. HTREEITEM FindTreeItem(HTREEITEM hTreeItem, long nObjectID);
  52. };
  53. #ifndef _DEBUG  // debug version in WzdTView.cpp
  54. inline CWzdDoc* CWzdTreeView::GetDocument()
  55.    { return (CWzdDoc*)m_pDocument; }
  56. #endif
  57. /////////////////////////////////////////////////////////////////////////////
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  60. #endif