percentbarchartitem.cpp
94 lines
| 3.3 KiB
| text/x-c
|
CppLexer
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** Copyright (C) 2012 Digia Plc | ||||
** All rights reserved. | ||||
** For any questions to Digia, please use contact form at http://qt.digia.com | ||||
** | ||||
** This file is part of the Qt Commercial Charts Add-on. | ||||
** | ||||
** $QT_BEGIN_LICENSE$ | ||||
** Licensees holding valid Qt Commercial licenses may use this file in | ||||
** accordance with the Qt Commercial License Agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and Digia. | ||||
** | ||||
** If you have questions regarding the use of this file, please use | ||||
** contact form at http://qt.digia.com | ||||
** $QT_END_LICENSE$ | ||||
** | ||||
****************************************************************************/ | ||||
sauimone
|
r666 | #include "percentbarchartitem_p.h" | ||
sauimone
|
r118 | #include "bar_p.h" | ||
sauimone
|
r962 | #include "qbarseries_p.h" | ||
sauimone
|
r214 | #include "qbarset.h" | ||
sauimone
|
r850 | #include <QDebug> | ||
sauimone
|
r101 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Tero Ahola
|
r737 | PercentBarChartItem::PercentBarChartItem(QBarSeries *series, ChartPresenter *presenter) : | ||
Michal Klocek
|
r677 | BarChartItem(series, presenter) | ||
sauimone
|
r101 | { | ||
} | ||||
sauimone
|
r694 | QVector<QRectF> PercentBarChartItem::calculateLayout() | ||
sauimone
|
r101 | { | ||
sauimone
|
r694 | QVector<QRectF> layout; | ||
sauimone
|
r165 | |||
sauimone
|
r839 | // Use temporary qreals for accurancy | ||
sauimone
|
r763 | qreal categoryCount = m_series->categoryCount(); | ||
sauimone
|
r1228 | qreal setCount = m_series->barsetCount(); | ||
sauimone
|
r101 | |||
sauimone
|
r1228 | // Domain: | ||
qreal width = geometry().width(); | ||||
qreal height = geometry().height(); | ||||
qreal rangeY = m_domainMaxY - m_domainMinY; | ||||
qreal rangeX = m_domainMaxX - m_domainMinX; | ||||
qreal scaleY = (height / rangeY); | ||||
qreal scaleX = (width / rangeX); | ||||
qreal categoryWidth = width / categoryCount; | ||||
sauimone
|
r1285 | qreal barWidth = categoryWidth - categoryWidth * m_series->d_func()->barMargin(); | ||
sauimone
|
r850 | |||
sauimone
|
r473 | int itemIndex(0); | ||
Tero Ahola
|
r737 | for (int category = 0; category < categoryCount; category++) { | ||
sauimone
|
r962 | qreal colSum = m_series->d_func()->categorySum(category); | ||
sauimone
|
r850 | qreal percentage = (100 / colSum); | ||
sauimone
|
r1228 | qreal yPos = height + scaleY * m_domainMinY + geometry().topLeft().y(); | ||
for (int set=0; set < setCount; set++) { | ||||
sauimone
|
r962 | QBarSet* barSet = m_series->d_func()->barsetAt(set); | ||
sauimone
|
r1228 | |||
qreal xPos = (barSet->at(category).x() - m_domainMinX) * scaleX + m_rect.left() - barWidth/2; | ||||
qreal barHeight = barSet->at(category).y() * percentage * scaleY; | ||||
sauimone
|
r763 | Bar* bar = m_bars.at(itemIndex); | ||
sauimone
|
r817 | bar->setPen(barSet->pen()); | ||
bar->setBrush(barSet->brush()); | ||||
Tero Ahola
|
r737 | QRectF rect(xPos, yPos-barHeight, barWidth, barHeight); | ||
sauimone
|
r694 | layout.append(rect); | ||
sauimone
|
r654 | |||
sauimone
|
r1246 | QGraphicsSimpleTextItem* label = m_labels.at(itemIndex); | ||
sauimone
|
r263 | |||
sauimone
|
r962 | if (!qFuzzyIsNull(m_series->d_func()->valueAt(set,category))) { | ||
int p = m_series->d_func()->percentageAt(set,category) * 100; | ||||
sauimone
|
r280 | QString vString(QString::number(p)); | ||
vString.truncate(3); | ||||
sauimone
|
r276 | vString.append("%"); | ||
sauimone
|
r820 | label->setText(vString); | ||
sauimone
|
r276 | } else { | ||
sauimone
|
r820 | label->setText(QString("")); | ||
sauimone
|
r276 | } | ||
sauimone
|
r263 | |||
sauimone
|
r820 | label->setPos(xPos + (rect.width()/2 - label->boundingRect().width()/2) | ||
,yPos - barHeight/2 - label->boundingRect().height()/2); | ||||
sauimone
|
r839 | label->setFont(barSet->labelFont()); | ||
Tero Ahola
|
r1306 | label->setBrush(barSet->labelBrush()); | ||
sauimone
|
r263 | itemIndex++; | ||
yPos -= barHeight; | ||||
} | ||||
sauimone
|
r126 | } | ||
sauimone
|
r694 | return layout; | ||
sauimone
|
r101 | } | ||
sauimone
|
r666 | #include "moc_percentbarchartitem_p.cpp" | ||
sauimone
|
r288 | |||
sauimone
|
r101 | QTCOMMERCIALCHART_END_NAMESPACE | ||