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

对话框与窗口

开发平台:

Visual C++

  1. // ReportMultilinePaintManager.cpp: implementation of the CReportMultilinePaintManager 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 "ReportMultilinePaintManager.h"
  22. //////////////////////////////////////////////////////////////////////
  23. // Construction/Destruction
  24. //////////////////////////////////////////////////////////////////////
  25. CReportMultilinePaintManager::CReportMultilinePaintManager()
  26. {
  27. m_bFixedRowHeight = FALSE;
  28. }
  29. CReportMultilinePaintManager::~CReportMultilinePaintManager()
  30. {
  31. }
  32. int CReportMultilinePaintManager::GetRowHeight(CDC* pDC, CXTPReportRow* pRow, int nTotalWidth)
  33. {
  34. if (pRow->IsGroupRow() || !pRow->IsItemsVisible())
  35. return CXTPReportPaintManager::GetRowHeight(pDC, pRow, nTotalWidth);
  36. CXTPReportColumns* pColumns = pRow->GetControl()->GetColumns();
  37. int nColumnCount = pColumns->GetCount();
  38. XTP_REPORTRECORDITEM_DRAWARGS drawArgs;
  39. drawArgs.pControl = pRow->GetControl();
  40. drawArgs.pDC = pDC;
  41. drawArgs.pRow = pRow;
  42. int nHeight = 0;
  43. for (int nColumn = 0; nColumn < nColumnCount; nColumn++)
  44. {
  45. CXTPReportColumn* pColumn = pColumns->GetAt(nColumn);
  46. if (pColumn && pColumn->IsVisible())
  47. {
  48. CXTPReportRecordItem* pItem = pRow->GetRecord()->GetItem(pColumn);
  49. drawArgs.pItem = pItem;
  50. XTP_REPORTRECORDITEM_METRICS itemMetrics;
  51. pRow->GetItemMetrics(&drawArgs, &itemMetrics);
  52. CXTPFontDC fnt(pDC, itemMetrics.pFont);
  53. int nWidth = pDC->IsPrinting()? pColumn->GetPrintWidth(nTotalWidth): pColumn->GetWidth();
  54. CRect rcItem(0, 0, nWidth - 4, 0);
  55. pRow->ShiftTreeIndent(rcItem, pColumn);
  56. pItem->GetCaptionRect(&drawArgs, rcItem);
  57. pDC->DrawText(pItem->GetCaption(pColumn), rcItem, DT_WORDBREAK|DT_CALCRECT);
  58. nHeight = max(nHeight, rcItem.Height());
  59. }
  60. }
  61. return max(nHeight + 5, m_nRowHeight) + (IsGridVisible(FALSE)? 1: 0);
  62. }
  63. void CReportMultilinePaintManager::DrawItemCaption(XTP_REPORTRECORDITEM_DRAWARGS* pDrawArgs, XTP_REPORTRECORDITEM_METRICS* pMetrics)
  64. {
  65. CRect& rcItem = pDrawArgs->rcItem;
  66. CDC* pDC = pDrawArgs->pDC;
  67. CString strText = pMetrics->strText;
  68. // draw item text
  69. if(!strText.IsEmpty())
  70. {
  71. rcItem.DeflateRect(2, 1, 2, 0);
  72. pDC->DrawText(strText, rcItem, pDrawArgs->nTextAlign|DT_WORDBREAK);
  73. }
  74. }