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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. /************************************
  2.   REVISION LOG ENTRY
  3.   Revision By: Mihai Filimon
  4.   Revised on 12/6/98 11:44:47
  5.   Comments: TreeListCtrl.h : header file
  6.  ************************************/
  7. #if !defined(AFX_TREELISTCTRL_H__1443D951_8CF6_11D2_8540_FFEB82F3240B__INCLUDED_)
  8. #define AFX_TREELISTCTRL_H__1443D951_8CF6_11D2_8540_FFEB82F3240B__INCLUDED_
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CTreeListCtrl window
  14. #include <afxcmn.h>
  15. class CControlsWnd_CGroup;
  16. class CTreeListCtrl : public CListCtrl
  17. {
  18. // Construction
  19. public:
  20. CTreeListCtrl();
  21. // Attributes
  22. public:
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CTreeListCtrl)
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual CString GetGroup(int nItem);
  32. virtual DWORD GetUserData(int nItem);
  33. virtual CString GetValue(int nItem);
  34. virtual CString GetName(int nItem);
  35. virtual void SetValue(int nItem, LPCTSTR lpszValue);
  36. virtual void UpdateGroup(CControlsWnd_CGroup* pGroup, LPCTSTR lpszGroupName);
  37. virtual int OnInsertItemVrt(int nItem, LPCTSTR lpszItemName, LPARAM lParam, LPCTSTR lpszGroup);
  38. virtual BOOL Init(CListCtrl* pParent);
  39. virtual ~CTreeListCtrl();
  40. // Generated message map functions
  41. protected:
  42. int m_nColumnName;
  43. int m_nColumnValue;
  44. int m_nColumnGroup;
  45. //{{AFX_MSG(CTreeListCtrl)
  46. // NOTE - the ClassWizard will add and remove member functions here.
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_TREELISTCTRL_H__1443D951_8CF6_11D2_8540_FFEB82F3240B__INCLUDED_)