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

对话框与窗口

开发平台:

Visual C++

  1. // ExplorerView.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 "DockingContainers.h"
  22. #include "ExplorerView.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CExplorerView
  30. CExplorerView::CExplorerView()
  31. {
  32. m_nToolBarID = IDR_EXPLORER_BAR;
  33. }
  34. CExplorerView::~CExplorerView()
  35. {
  36. }
  37. BEGIN_MESSAGE_MAP(CExplorerView, CPaneView)
  38. //{{AFX_MSG_MAP(CExplorerView)
  39. ON_COMMAND_RANGE(ID_EXPLORER_PARENT, ID_EXPLORER_SEARCH, OnExplorerCommand)
  40. //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CExplorerView message handlers
  44. CWnd* CExplorerView::OnCreateView()
  45. {
  46. if (!m_wndExplorer.Create( WS_VISIBLE | TVS_HASLINES | TVS_LINESATROOT | TVS_HASBUTTONS | TVS_SHOWSELALWAYS,
  47. CRect(0,0,0,0), this, 0xFF ))
  48. {
  49. TRACE0( "Unable to create tree control.n" );
  50. return NULL;
  51. }
  52. //m_wndExplorer.ModifyStyleEx(0, WS_EX_STATICEDGE);
  53. // add the parent item, make it bold
  54. HTREEITEM htiParent = m_wndExplorer.InsertItem(_T("Codejock Software"));
  55. m_wndExplorer.SetItemState (htiParent, TVIS_BOLD, TVIS_BOLD);
  56. HTREEITEM htiChild; // child item
  57. htiChild = m_wndExplorer.InsertItem (_T("Library"), 1, 1, htiParent);
  58. // add the children of the parent item
  59. HTREEITEM hti = m_wndExplorer.InsertItem(_T("Icons"), 2, 3, htiChild);
  60. m_wndExplorer.InsertItem(_T("Temporary Files"), 4, 4, htiChild);
  61. m_wndExplorer.InsertItem(_T("New Files"), 4, 4, htiChild);
  62. m_wndExplorer.Expand(hti, TVE_EXPAND);
  63. hti = m_wndExplorer.InsertItem(_T("Deleted Items"), 2, 3, htiParent);
  64. m_wndExplorer.Expand(htiParent, TVE_EXPAND);
  65. m_wndExplorer.Expand(htiChild, TVE_EXPAND);
  66. return &m_wndExplorer;
  67. }
  68. void CExplorerView::OnExplorerCommand(UINT)
  69. {
  70. // TODO: Add your command handler code here
  71. }