FileTreeView.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // FileTreeView.cpp : implementation file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "TabbedView.h"
  22. #include "FileTreeView.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CFileTreeView
  30. IMPLEMENT_DYNCREATE(CFileTreeView, CTreeView)
  31. CFileTreeView::CFileTreeView()
  32. {
  33. }
  34. CFileTreeView::~CFileTreeView()
  35. {
  36. }
  37. BEGIN_MESSAGE_MAP(CFileTreeView, CTreeView)
  38. //{{AFX_MSG_MAP(CFileTreeView)
  39. ON_WM_CREATE()
  40. //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CFileTreeView drawing
  44. void CFileTreeView::OnDraw(CDC*)
  45. {
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CFileTreeView diagnostics
  49. #ifdef _DEBUG
  50. void CFileTreeView::AssertValid() const
  51. {
  52. CTreeView::AssertValid();
  53. }
  54. void CFileTreeView::Dump(CDumpContext& dc) const
  55. {
  56. CTreeView::Dump(dc);
  57. }
  58. #endif //_DEBUG
  59. BOOL CFileTreeView::PreCreateWindow(CREATESTRUCT& cs)
  60. {
  61. cs.style |= TVS_HASLINES | TVS_LINESATROOT | TVS_HASBUTTONS | TVS_SHOWSELALWAYS;
  62. return CTreeView::PreCreateWindow(cs);
  63. }
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CFileTreeView message handlers
  66. int CFileTreeView::OnCreate(LPCREATESTRUCT lpCreateStruct)
  67. {
  68. if (CTreeView::OnCreate(lpCreateStruct) == -1)
  69. return -1;
  70. // load the tree images bitmap and add it to the image list.
  71. if (!CreateImageList(m_ilSolutionView, IDB_FILETREE))
  72. return 0;
  73. // Set the image list for the tree control.
  74. GetTreeCtrl().SetImageList( &m_ilSolutionView, TVSIL_NORMAL );
  75. // add the parent item, make it bold
  76. HTREEITEM htiParent = GetTreeCtrl().InsertItem(_T("Solution 'XtremeDemo': 1 project(s)"));
  77. HTREEITEM htiChild; // child item
  78. htiChild = GetTreeCtrl().InsertItem (_T("XtremeDemo Files"), 1, 1, htiParent);
  79. GetTreeCtrl().SetItemState (htiChild, TVIS_BOLD, TVIS_BOLD);
  80. // add the children of the parent item
  81. HTREEITEM hti = GetTreeCtrl().InsertItem(_T("Source Files"), 2, 3, htiChild);
  82. GetTreeCtrl().InsertItem(_T("ChildFrm.cpp"), 4, 4, hti);
  83. GetTreeCtrl().InsertItem(_T("MainFrm.cpp"), 4, 4, hti);
  84. GetTreeCtrl().InsertItem(_T("StdAfx.cpp"), 4, 4, hti);
  85. GetTreeCtrl().InsertItem(_T("XtremeDemo.cpp"), 4, 4, hti);
  86. GetTreeCtrl().InsertItem(_T("XtremeDemo.rc"), 4, 4, hti);
  87. GetTreeCtrl().InsertItem(_T("XtremeDemoDoc.cpp"), 4, 4, hti);
  88. GetTreeCtrl().InsertItem(_T("XtremeDemoView.cpp"), 4, 4, hti);
  89. GetTreeCtrl().Expand(hti, TVE_EXPAND);
  90. hti = GetTreeCtrl().InsertItem(_T("Header Files"), 2, 3, htiChild);
  91. GetTreeCtrl().InsertItem(_T("ChildFrm.h"), 5, 5, hti);
  92. GetTreeCtrl().InsertItem(_T("MainFrm.h"), 5, 5, hti);
  93. GetTreeCtrl().InsertItem(_T("Resource.rc"), 5, 5, hti);
  94. GetTreeCtrl().InsertItem(_T("StdAfx.h"), 5, 5, hti);
  95. GetTreeCtrl().InsertItem(_T("XtremeDemo.h"), 5, 5, hti);
  96. GetTreeCtrl().InsertItem(_T("XtremeDemoDoc.h"), 5, 5, hti);
  97. GetTreeCtrl().InsertItem(_T("XtremeDemoView.h"), 5, 5, hti);
  98. hti = GetTreeCtrl().InsertItem(_T("Resource Files"), 2, 3, htiChild);
  99. GetTreeCtrl().InsertItem(_T("Toolbar.bmp"), 5, 5, hti);
  100. GetTreeCtrl().InsertItem(_T("XtremeDemo.ico"), 5, 5, hti);
  101. GetTreeCtrl().InsertItem(_T("XtremeDemo.rc2"), 5, 5, hti);
  102. GetTreeCtrl().InsertItem(_T("XtremeDemoDoc.ico"), 5, 5, hti);
  103. GetTreeCtrl().InsertItem(_T("ReadMe.txt"), 5, 5, htiChild);
  104. GetTreeCtrl().InsertItem(_T("External Dependencies"), 2, 3, htiChild);
  105. GetTreeCtrl().Expand(htiParent, TVE_EXPAND);
  106. GetTreeCtrl().Expand(htiChild, TVE_EXPAND);
  107. return 0;
  108. }