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

对话框与窗口

开发平台:

Visual C++

  1. // GUI_ExplorerTree.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 "GUI_Explorer.h"
  22. #include "GUI_ExplorerTree.h"
  23. #include "MainFrm.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGUI_ExplorerTree
  31. IMPLEMENT_DYNCREATE(CGUI_ExplorerTree, CView)
  32. CGUI_ExplorerTree::CGUI_ExplorerTree()
  33. {
  34. }
  35. CGUI_ExplorerTree::~CGUI_ExplorerTree()
  36. {
  37. }
  38. BEGIN_MESSAGE_MAP(CGUI_ExplorerTree, CView)
  39. //{{AFX_MSG_MAP(CGUI_ExplorerTree)
  40. ON_WM_CREATE()
  41. ON_WM_SIZE()
  42. //}}AFX_MSG_MAP
  43. ON_BN_CLICKED(IDC_CAPT_BUTTON, OnCaptionButton)
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CGUI_ExplorerTree drawing
  47. void CGUI_ExplorerTree::OnDraw(CDC* /*pDC*/)
  48. {
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CGUI_ExplorerTree diagnostics
  52. #ifdef _DEBUG
  53. void CGUI_ExplorerTree::AssertValid() const
  54. {
  55. CView::AssertValid();
  56. }
  57. void CGUI_ExplorerTree::Dump(CDumpContext& dc) const
  58. {
  59. CView::Dump(dc);
  60. }
  61. #endif //_DEBUG
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CGUI_ExplorerTree message handlers
  64. BOOL CGUI_ExplorerTree::PreCreateWindow(CREATESTRUCT& cs)
  65. {
  66. // TODO: Add your specialized code here and/or call the base class
  67. cs.dwExStyle |= WS_EX_STATICEDGE;
  68. cs.style |= WS_CLIPCHILDREN|WS_CLIPSIBLINGS;
  69. return CView::PreCreateWindow(cs);
  70. }
  71. int CGUI_ExplorerTree::OnCreate(LPCREATESTRUCT lpCreateStruct)
  72. {
  73. if (CView::OnCreate(lpCreateStruct) == -1)
  74. return -1;
  75. // Create the caption.
  76. if (!m_wndCaption.Create( this, _T("Folder List"), CPWS_EX_RAISED_EDGE | CPWS_EX_CLOSEBUTTON,
  77. WS_VISIBLE | SS_CENTER | SS_CENTERIMAGE, CRect(0,0,0,0), IDC_CAPT_BUTTON ))
  78. {
  79. TRACE0( "Unable to create caption.n" );
  80. return -1;
  81. }
  82. if( !m_shellTree.Create(WS_VISIBLE, CRect(0,0,0,0), this, IDC_TREE_VIEW))
  83. {
  84. TRACE0( "Unable to create tree control.n" );
  85. return -1;
  86. }
  87. // make the parent of the selected item visible if found.
  88. HTREEITEM hItem = m_shellTree.GetSelectedItem();
  89. HTREEITEM hItemParent = m_shellTree.GetParentItem(hItem);
  90. m_shellTree.EnsureVisible(hItemParent? hItemParent: hItem);
  91. return 0;
  92. }
  93. void CGUI_ExplorerTree::OnSize(UINT nType, int cx, int cy)
  94. {
  95. CView::OnSize(nType, cx, cy);
  96. // TODO: Add your message handler code here
  97. if( m_wndCaption.GetSafeHwnd()) {
  98. m_wndCaption.MoveWindow( 0, 0, cx, 19 );
  99. }
  100. if( m_shellTree.GetSafeHwnd()) {
  101. m_shellTree.MoveWindow( 0, 19, cx, cy-19 );
  102. }
  103. }
  104. void CGUI_ExplorerTree::OnCaptionButton()
  105. {
  106. CMainFrame* pMainFrame = (CMainFrame*)GetParentFrame();
  107. ASSERT_VALID(pMainFrame);
  108. pMainFrame->GetSplitterWnd().HideColumn(0);
  109. }
  110. void CGUI_ExplorerTree::SelectParentItem()
  111. {
  112. if (::IsWindow(m_shellTree))
  113. {
  114. HTREEITEM htItem = m_shellTree.GetSelectedItem();
  115. if (htItem != m_shellTree.GetRootItem())
  116. {
  117. m_shellTree.SelectItem(m_shellTree.GetParentItem(htItem));
  118. m_shellTree.SetFocus();
  119. }
  120. }
  121. }