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

对话框与窗口

开发平台:

Visual C++

  1. // ResourceViewPane.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_VisualStudio.h"
  22. #include "ResourceViewPane.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CResourceViewPane
  30. CResourceViewPane::CResourceViewPane()
  31. {
  32. }
  33. CResourceViewPane::~CResourceViewPane()
  34. {
  35. }
  36. BEGIN_MESSAGE_MAP(CResourceViewPane, CWnd)
  37. //{{AFX_MSG_MAP(CResourceViewPane)
  38. ON_WM_CREATE()
  39. ON_WM_SIZE()
  40. //}}AFX_MSG_MAP
  41. ON_WM_SETFOCUS()
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CResourceViewPane message handlers
  45. int CResourceViewPane::OnCreate(LPCREATESTRUCT lpCreateStruct)
  46. {
  47. if (CWnd::OnCreate(lpCreateStruct) == -1)
  48. return -1;
  49. if (m_wndResourceView.GetSafeHwnd() == 0)
  50. {
  51. if (!m_wndResourceView.Create( WS_VISIBLE | TVS_HASLINES | TVS_LINESATROOT | TVS_HASBUTTONS | TVS_SHOWSELALWAYS,
  52. CRect(0,0,0,0), this, 0xFF ))
  53. {
  54. TRACE0( "Unable to create tree control.n" );
  55. return 0;
  56. }
  57. m_wndResourceView.ModifyStyleEx(0, WS_EX_STATICEDGE);
  58. // load the tree images bitmap and add it to the image list.
  59. if (!CreateImageList(m_ilResourceView, IDB_RESTREE))
  60. return 0;
  61. // Set the image list for the tree control.
  62. m_wndResourceView.SetImageList( &m_ilResourceView, TVSIL_NORMAL );
  63. // add the parent item
  64. HTREEITEM htItem = m_wndResourceView.InsertItem(_T("XtremeDemo resources"), 0, 1);
  65. m_wndResourceView.SetItemState(htItem, TVIS_BOLD, TVIS_BOLD);
  66. HTREEITEM hti = m_wndResourceView.InsertItem(_T("Accelerator"), 0, 1, htItem);
  67. m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 2, 2, hti);
  68. m_wndResourceView.Expand(hti, TVE_EXPAND);
  69. hti = m_wndResourceView.InsertItem(_T("Dialog"), 0, 1, htItem);
  70. m_wndResourceView.InsertItem(_T("IDD_ABOUTBOX"), 3, 3, hti);
  71. m_wndResourceView.Expand(hti, TVE_EXPAND);
  72. hti = m_wndResourceView.InsertItem(_T("Icon"), 0, 1, htItem);
  73. m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 4, 4, hti);
  74. m_wndResourceView.InsertItem(_T("IDR_XTREMETYPE"), 4, 4, hti);
  75. m_wndResourceView.Expand(hti, TVE_EXPAND);
  76. hti = m_wndResourceView.InsertItem(_T("Menu"), 0, 1, htItem);
  77. m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 5, 5, hti);
  78. m_wndResourceView.InsertItem(_T("IDR_XTREMETYPE"), 5, 5, hti);
  79. hti = m_wndResourceView.InsertItem(_T("String Table"), 0, 1, htItem);
  80. m_wndResourceView.InsertItem(_T("String Table"), 6, 6, hti);
  81. hti = m_wndResourceView.InsertItem(_T("Toolbar"), 0, 1, htItem);
  82. m_wndResourceView.InsertItem(_T("IDR_MAINFRAME"), 7, 7, hti);
  83. hti = m_wndResourceView.InsertItem(_T("Version"), 0, 1, htItem);
  84. m_wndResourceView.InsertItem(_T("VS_VERSION_INFO"), 8, 8, hti);
  85. m_wndResourceView.Expand (htItem, TVE_EXPAND);
  86. }
  87. return 0;
  88. }
  89. void CResourceViewPane::OnSize(UINT nType, int cx, int cy)
  90. {
  91. CWnd::OnSize(nType, cx, cy);
  92. if (m_wndResourceView.GetSafeHwnd())
  93. {
  94. m_wndResourceView.MoveWindow(0, 0, cx, cy);
  95. }
  96. }
  97. void CResourceViewPane::OnSetFocus(CWnd* /*pOldWnd*/)
  98. {
  99. m_wndResourceView.SetFocus();
  100. }