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

对话框与窗口

开发平台:

Visual C++

  1. // ResourceViewRecord.cpp: implementation of the CResourceViewRecord class.
  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 "ResourceEditor.h"
  22. #include "ResourceViewRecord.h"
  23. #include <XTPResource.h>
  24. #ifdef _DEBUG
  25. #undef THIS_FILE
  26. static char THIS_FILE[]=__FILE__;
  27. #define new DEBUG_NEW
  28. #endif
  29. #define DECLARE_CODEJOCK_RESOURCE(Module, nIDResource) _T(Module), _T(#nIDResource), nIDResource, 0,
  30. #define DECLARE_CODEJOCK_RESOURCE_CHILD(Module, nIDResourceParent, nIDResource) _T(Module), _T(#nIDResource), nIDResource, nIDResourceParent,
  31. const struct 
  32. {
  33. LPCTSTR lpszModule;
  34. LPCTSTR lpszResourceName;
  35. DWORD dwResource;
  36. DWORD dwResourceParent;
  37. Resources[] = 
  38. {
  39. #include "ResourceViewRecord.inl" 
  40. };
  41. //////////////////////////////////////////////////////////////////////
  42. // Construction/Destruction
  43. //////////////////////////////////////////////////////////////////////
  44. CString GetResourceName(DWORD dwId, DWORD dwParent)
  45. {
  46. if ((dwId > 1000) || (dwParent != 0))
  47. {
  48. for (int i = 0; i < _countof(Resources); i++)
  49. {
  50. if ((Resources[i].dwResource == dwId) && 
  51. (dwParent == 0 || dwId > 1000 || dwParent == Resources[i].dwResourceParent))
  52. {
  53. return Resources[i].lpszResourceName;
  54. }
  55. }
  56. }
  57. CString str;
  58. str.Format(_T("%i"), dwId);
  59. return str;
  60. }
  61. CString GetResourceModule(DWORD dwId)
  62. {
  63. for (int i = 0; i < _countof(Resources); i++)
  64. {
  65. ASSERT(Resources[i].dwResource > 1000 || Resources[i].dwResourceParent != 0);
  66. if (Resources[i].dwResource == dwId && Resources[i].dwResourceParent == 0)
  67. {
  68. return Resources[i].lpszModule;
  69. }
  70. }
  71. return _T("");
  72. }
  73.  
  74. CResourceViewRecord::CResourceViewRecord(CString strResource, ResourceType resType, DWORD dwId, CString strValue)
  75. {
  76. AddItem(new CXTPReportRecordItemText(GetResourceModule(dwId)));
  77. CXTPReportRecordItem* pItem = AddItem(new CXTPReportRecordItemNumber(dwId));
  78. if (dwId != 0)
  79. {
  80. pItem->SetTooltip(GetResourceName(dwId));
  81. }
  82. CString strOriginal;
  83. if (resType == resString) XTPResourceManager()->LoadString(&strOriginal, dwId);
  84. CXTPPropExchangeXMLNode::PreformatString(strOriginal, FALSE);
  85. AddItem(new CXTPReportRecordItemText(strOriginal));
  86. AddItem(new CXTPReportRecordItemText(strValue));
  87. pItem = AddItem(new CXTPReportRecordItemText(strResource));
  88. pItem->SetIconIndex(resType == resString ? 6: resType == resMenu? 5: resType == resDialog? 3: -1);
  89. m_pSection = NULL;
  90. m_resType = resType;
  91. m_pBaseRecord = NULL;
  92. }
  93. CResourceViewRecord::~CResourceViewRecord()
  94. {
  95. CMDTARGET_RELEASE(m_pSection); 
  96. }
  97. DWORD CResourceViewRecord::GetId()
  98. {
  99. return (DWORD)((CXTPReportRecordItemNumber*)GetItem(1))->GetValue();
  100. }