TreeViewDlg.cpp
上传用户:wrlxzs
上传日期:2022-03-24
资源大小:20k
文件大小:8k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // TreeViewDlg.cpp : implementation file
  2. // Download by http://www.codefans.net
  3. #include "stdafx.h"
  4. #include "TreeView.h"
  5. #include "TreeViewDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTreeViewDlg dialog
  13. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  14. //构造函数
  15. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  16. CTreeViewDlg::CTreeViewDlg(CWnd* pParent /*=NULL*/)
  17. : CDialog(CTreeViewDlg::IDD, pParent)
  18. {
  19. //{{AFX_DATA_INIT(CTreeViewDlg)
  20. //}}AFX_DATA_INIT
  21. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  22. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  23. }
  24. void CTreeViewDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CTreeViewDlg)
  28. DDX_Control(pDX, IDC_TREE, m_tree);
  29. DDX_Control(pDX, IDC_LIST, m_list);
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(CTreeViewDlg, CDialog)
  33. //{{AFX_MSG_MAP(CTreeViewDlg)
  34. ON_WM_PAINT()
  35. ON_WM_QUERYDRAGICON()
  36. ON_NOTIFY(TVN_ITEMEXPANDED, IDC_TREE, OnItemexpandedTree)
  37. ON_NOTIFY(TVN_SELCHANGED, IDC_TREE, OnSelchangedTree)
  38. ON_NOTIFY(TVN_SELCHANGING, IDC_TREE, OnSelchangingTree)
  39. ON_NOTIFY(NM_CLICK, IDC_TREE, OnClickTree)
  40. //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CTreeViewDlg message handlers
  44. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  45. //函数功能:初始化
  46. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  47. BOOL CTreeViewDlg::OnInitDialog()
  48. {
  49. CDialog::OnInitDialog();
  50. // Set the icon for this dialog.  The framework does this automatically
  51. //  when the application's main window is not a dialog
  52. SetIcon(m_hIcon, TRUE); // Set big icon
  53. SetIcon(m_hIcon, FALSE); // Set small icon
  54. // TODO: Add extra initialization here
  55.   m_ImageList.Create(32,32,ILC_COLOR32,10,30);
  56. m_list.SetImageList(&m_ImageList,LVSIL_NORMAL);
  57. DWORD dwStyle = GetWindowLong(m_tree.m_hWnd,GWL_STYLE);
  58. dwStyle |= TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT;
  59. SetWindowLong(m_tree.m_hWnd,GWL_STYLE,dwStyle);
  60.     m_hRoot = m_tree.InsertItem("我的电脑");
  61. GetLogicalDrives(m_hRoot);
  62. GetDriveDir(m_hRoot);
  63. m_tree.Expand(m_hRoot,TVE_EXPAND);
  64. return TRUE;  // return TRUE  unless you set the focus to a control
  65. }
  66. // If you add a minimize button to your dialog, you will need the code below
  67. //  to draw the icon.  For MFC applications using the document/view model,
  68. //  this is automatically done for you by the framework.
  69. void CTreeViewDlg::OnPaint() 
  70. {
  71. if (IsIconic())
  72. {
  73. CPaintDC dc(this); // device context for painting
  74. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  75. // Center icon in client rectangle
  76. int cxIcon = GetSystemMetrics(SM_CXICON);
  77. int cyIcon = GetSystemMetrics(SM_CYICON);
  78. CRect rect;
  79. GetClientRect(&rect);
  80. int x = (rect.Width() - cxIcon + 1) / 2;
  81. int y = (rect.Height() - cyIcon + 1) / 2;
  82. // Draw the icon
  83. dc.DrawIcon(x, y, m_hIcon);
  84. }
  85. else
  86. {
  87. CDialog::OnPaint();
  88. }
  89. }
  90. // The system calls this to obtain the cursor to display while the user drags
  91. //  the minimized window.
  92. HCURSOR CTreeViewDlg::OnQueryDragIcon()
  93. {
  94. return (HCURSOR) m_hIcon;
  95. }
  96. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  97. //函数功能:获取驱动器
  98. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  99. void CTreeViewDlg::GetLogicalDrives(HTREEITEM hParent)
  100. {
  101.     size_t szAllDriveStrings = GetLogicalDriveStrings(0,NULL);
  102. char *pDriveStrings = new char[szAllDriveStrings + sizeof(_T(""))];
  103. GetLogicalDriveStrings(szAllDriveStrings,pDriveStrings);
  104. size_t szDriveString = strlen(pDriveStrings);
  105. while(szDriveString > 0)
  106. {
  107. m_tree.InsertItem(pDriveStrings,hParent);
  108. pDriveStrings += szDriveString + 1;
  109. szDriveString = strlen(pDriveStrings);
  110. }
  111. }
  112. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  113. //函数功能:添加子项
  114. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  115. void CTreeViewDlg::GetDriveDir(HTREEITEM hParent)
  116. {
  117.     HTREEITEM hChild = m_tree.GetChildItem(hParent);
  118. while(hChild)
  119. {
  120.         CString strText = m_tree.GetItemText(hChild);
  121. if(strText.Right(1) != "\")
  122. strText += _T("\");
  123. strText += "*.*";
  124. CFileFind file;
  125.     BOOL bContinue = file.FindFile(strText);
  126. while(bContinue)
  127. {
  128.             bContinue = file.FindNextFile();
  129. if(file.IsDirectory() && !file.IsDots())
  130.         m_tree.InsertItem(file.GetFileName(),hChild);
  131. }
  132. GetDriveDir(hChild);
  133. hChild = m_tree.GetNextItem(hChild,TVGN_NEXT);
  134. }
  135. }
  136. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  137. //函数功能:展开事件函数
  138. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  139. void CTreeViewDlg::OnItemexpandedTree(NMHDR* pNMHDR, LRESULT* pResult) 
  140. {
  141. NM_TREEVIEW* pNMTreeView = (NM_TREEVIEW*)pNMHDR;
  142. // TODO: Add your control notification handler code here
  143. TVITEM item = pNMTreeView->itemNew;
  144. if(item.hItem == m_hRoot)
  145. return;
  146.     HTREEITEM hChild = m_tree.GetChildItem(item.hItem);
  147. while(hChild)
  148. {
  149. AddSubDir(hChild);
  150. hChild = m_tree.GetNextItem(hChild,TVGN_NEXT);
  151. }
  152. *pResult = 0;
  153. }
  154. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  155. //函数功能:获取树项目全跟径
  156. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  157. CString CTreeViewDlg::GetFullPath(HTREEITEM hCurrent)
  158. {
  159.     CString strTemp;
  160. CString strReturn = "";
  161. while(hCurrent != m_hRoot)
  162. {
  163. strTemp = m_tree.GetItemText(hCurrent);
  164. if(strTemp.Right(1) != "\")
  165. strTemp += "\";
  166. strReturn = strTemp  + strReturn;
  167. hCurrent = m_tree.GetParentItem(hCurrent);
  168. }
  169. return strReturn;
  170. }
  171. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  172. //添加子目录
  173. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  174. void CTreeViewDlg::AddSubDir(HTREEITEM hParent)
  175. {
  176.     CString strPath = GetFullPath(hParent);
  177. if(strPath.Right(1) != "\")
  178. strPath += "\";
  179. strPath += "*.*";
  180. CFileFind file;
  181. BOOL bContinue = file.FindFile(strPath);
  182. while(bContinue)
  183. {
  184. bContinue = file.FindNextFile();
  185. if(file.IsDirectory() && !file.IsDots())
  186.     m_tree.InsertItem(file.GetFileName(),hParent);
  187. }
  188. }
  189. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  190. //函数功能:选中事件
  191. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  192. void CTreeViewDlg::OnSelchangedTree(NMHDR* pNMHDR, LRESULT* pResult) 
  193. {
  194. m_list.DeleteAllItems();
  195. NM_TREEVIEW* pNMTreeView = (NM_TREEVIEW*)pNMHDR;
  196. TVITEM item = pNMTreeView->itemNew;
  197. if(item.hItem == m_hRoot)
  198. return;
  199. CString str = GetFullPath(item.hItem);
  200.     if(str.Right(1) != "\")
  201.    str += "\";
  202. str += "*.*";
  203. CFileFind file;
  204. BOOL bContinue = file.FindFile(str);
  205. while(bContinue)
  206. {
  207. bContinue = file.FindNextFile();
  208. if(!file.IsDirectory() && !file.IsDots())
  209. {
  210.     SHFILEINFO info;
  211. CString temp = str;
  212. int index = temp.Find("*.*");
  213. temp.Delete(index,3);
  214.     SHGetFileInfo(temp + file.GetFileName(),0,&info,sizeof(&info),SHGFI_DISPLAYNAME | SHGFI_ICON);
  215.     int i = m_ImageList.Add(info.hIcon);
  216.     m_list.InsertItem(i,info.szDisplayName,i);
  217. }
  218. }
  219. *pResult = 0;
  220. }
  221. void CTreeViewDlg::OnSelchangingTree(NMHDR* pNMHDR, LRESULT* pResult) 
  222. {
  223. *pResult = 0;
  224. }
  225. void CTreeViewDlg::OnClickTree(NMHDR* pNMHDR, LRESULT* pResult) 
  226. {
  227. // TODO: Add your control notification handler code here
  228. *pResult = 0;
  229. }