stackedbarchartitem.cpp
85 lines
| 2.8 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 "stackedbarchartitem_p.h" | ||
sauimone
|
r118 | #include "bar_p.h" | ||
sauimone
|
r820 | #include "barlabel_p.h" | ||
sauimone
|
r962 | #include "qbarset_p.h" | ||
#include "qbarseries_p.h" | ||||
sauimone
|
r214 | #include "qbarset.h" | ||
sauimone
|
r96 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r677 | StackedBarChartItem::StackedBarChartItem(QBarSeries *series, ChartPresenter *presenter) : | ||
Tero Ahola
|
r737 | BarChartItem(series, presenter) | ||
sauimone
|
r96 | { | ||
} | ||||
sauimone
|
r694 | QVector<QRectF> StackedBarChartItem::calculateLayout() | ||
sauimone
|
r96 | { | ||
sauimone
|
r694 | QVector<QRectF> layout; | ||
sauimone
|
r839 | // Use temporary qreals for accurancy | ||
Michal Klocek
|
r679 | |||
sauimone
|
r674 | // Domain: | ||
sauimone
|
r839 | qreal range = m_domainMaxY - m_domainMinY; | ||
Michal Klocek
|
r679 | qreal height = geometry().height(); | ||
qreal width = geometry().width(); | ||||
sauimone
|
r839 | qreal scale = (height / range); | ||
sauimone
|
r763 | qreal categotyCount = m_series->categoryCount(); | ||
Tero Ahola
|
r737 | qreal barWidth = width / (categotyCount * 2); | ||
qreal xStep = width / categotyCount; | ||||
sauimone
|
r976 | qreal xPos = xStep / 2 - barWidth / 2 + geometry().topLeft().x(); | ||
Michal Klocek
|
r679 | |||
sauimone
|
r473 | int itemIndex(0); | ||
Michal Klocek
|
r679 | for (int category = 0; category < categotyCount; category++) { | ||
sauimone
|
r976 | qreal yPos = height + scale * m_domainMinY + geometry().topLeft().y(); | ||
sauimone
|
r763 | for (int set=0; set < m_series->barsetCount(); set++) { | ||
sauimone
|
r962 | QBarSet* barSet = m_series->d_func()->barsetAt(set); | ||
sauimone
|
r817 | |||
sauimone
|
r1167 | qreal barHeight = barSet->at(category).y() * scale; | ||
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
|
r820 | BarLabel* label = m_labels.at(itemIndex); | ||
sauimone
|
r263 | |||
sauimone
|
r1167 | if (!qFuzzyIsNull(barSet->at(category).y())) { | ||
label->setText(QString::number(barSet->at(category).y())); | ||||
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()); | ||
sauimone
|
r263 | itemIndex++; | ||
yPos -= barHeight; | ||||
} | ||||
xPos += xStep; | ||||
sauimone
|
r119 | } | ||
sauimone
|
r817 | |||
sauimone
|
r694 | return layout; | ||
sauimone
|
r96 | } | ||
sauimone
|
r666 | #include "moc_stackedbarchartitem_p.cpp" | ||
sauimone
|
r288 | |||
sauimone
|
r96 | QTCOMMERCIALCHART_END_NAMESPACE | ||