barchartitem.cpp
230 lines
| 6.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 "barchartitem_p.h" | ||
sauimone
|
r126 | #include "bar_p.h" | ||
sauimone
|
r240 | #include "qbarset.h" | ||
sauimone
|
r962 | #include "qbarset_p.h" | ||
sauimone
|
r1586 | #include "qabstractbarseries.h" | ||
#include "qabstractbarseries_p.h" | ||||
sauimone
|
r487 | #include "qchart.h" | ||
sauimone
|
r594 | #include "chartpresenter_p.h" | ||
sauimone
|
r671 | #include "chartanimator_p.h" | ||
Michal Klocek
|
r679 | #include "chartdataset_p.h" | ||
sauimone
|
r839 | #include <QPainter> | ||
sauimone
|
r126 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
sauimone
|
r1584 | BarChartItem::BarChartItem(QAbstractBarSeries *series, ChartPresenter *presenter) : | ||
Michal Klocek
|
r677 | ChartItem(presenter), | ||
sauimone
|
r763 | m_series(series) | ||
sauimone
|
r126 | { | ||
sauimone
|
r852 | setFlag(ItemClipsChildrenToShape); | ||
sauimone
|
r962 | connect(series->d_func(), SIGNAL(updatedBars()), this, SLOT(handleLayoutChanged())); | ||
sauimone
|
r1339 | connect(series->d_func(), SIGNAL(labelsVisibleChanged(bool)), this, SLOT(handleLabelsVisibleChanged(bool))); | ||
connect(series->d_func(), SIGNAL(restructuredBars()), this, SLOT(handleDataStructureChanged())); | ||||
sauimone
|
r1464 | connect(series, SIGNAL(visibleChanged()), this, SLOT(handleVisibleChanged())); | ||
sauimone
|
r594 | setZValue(ChartPresenter::BarSeriesZValue); | ||
sauimone
|
r1339 | handleDataStructureChanged(); | ||
sauimone
|
r126 | } | ||
sauimone
|
r666 | BarChartItem::~BarChartItem() | ||
sauimone
|
r126 | { | ||
} | ||||
sauimone
|
r666 | void BarChartItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) | ||
sauimone
|
r126 | { | ||
sauimone
|
r852 | Q_UNUSED(painter); | ||
Q_UNUSED(option); | ||||
Q_UNUSED(widget); | ||||
sauimone
|
r126 | } | ||
sauimone
|
r666 | QRectF BarChartItem::boundingRect() const | ||
sauimone
|
r126 | { | ||
sauimone
|
r976 | return m_rect; | ||
sauimone
|
r126 | } | ||
sauimone
|
r165 | |||
sauimone
|
r681 | QVector<QRectF> BarChartItem::calculateLayout() | ||
sauimone
|
r671 | { | ||
sauimone
|
r681 | QVector<QRectF> layout; | ||
sauimone
|
r1321 | // Use temporary qreals for accuracy | ||
qreal categoryCount = m_series->d_func()->categoryCount(); | ||||
Tero Ahola
|
r1462 | qreal setCount = m_series->count(); | ||
sauimone
|
r1284 | bool barsVisible = m_series->isVisible(); | ||
sauimone
|
r681 | |||
sauimone
|
r850 | // Domain: | ||
sauimone
|
r682 | qreal width = geometry().width(); | ||
qreal height = geometry().height(); | ||||
sauimone
|
r1167 | qreal rangeY = m_domainMaxY - m_domainMinY; | ||
qreal rangeX = m_domainMaxX - m_domainMinX; | ||||
qreal scaleY = (height / rangeY); | ||||
qreal scaleX = (width / rangeX); | ||||
sauimone
|
r1425 | qreal barWidth = scaleX * m_series->d_func()->barWidth(); | ||
sauimone
|
r681 | |||
int itemIndex(0); | ||||
Tero Ahola
|
r737 | for (int category = 0; category < categoryCount; category++) { | ||
sauimone
|
r1167 | qreal yPos = height + scaleY * m_domainMinY + geometry().topLeft().y(); | ||
sauimone
|
r681 | for (int set = 0; set < setCount; set++) { | ||
sauimone
|
r1580 | QBarSetPrivate* barSet = m_series->d_func()->barsetAt(set)->d_ptr.data(); | ||
sauimone
|
r1603 | qreal xPos = (barSet->at(category).x() - m_domainMinX) * scaleX + m_rect.left() - barWidth/2; | ||
qreal barHeight = barSet->at(category).y() * scaleY; | ||||
sauimone
|
r817 | |||
sauimone
|
r763 | Bar* bar = m_bars.at(itemIndex); | ||
Tero Ahola
|
r737 | QRectF rect(xPos, yPos - barHeight, barWidth, barHeight); | ||
sauimone
|
r1167 | |||
sauimone
|
r681 | layout.append(rect); | ||
sauimone
|
r1580 | bar->setPen(barSet->m_pen); | ||
bar->setBrush(barSet->m_brush); | ||||
sauimone
|
r1603 | if (qFuzzyIsNull(barHeight)) { | ||
bar->setVisible(false); | ||||
} else { | ||||
bar->setVisible(barsVisible); | ||||
} | ||||
sauimone
|
r681 | |||
sauimone
|
r1246 | QGraphicsSimpleTextItem* label = m_labels.at(itemIndex); | ||
sauimone
|
r681 | |||
sauimone
|
r1603 | if (!qFuzzyIsNull(barSet->at(category).y())) { | ||
label->setText(QString::number(barSet->at(category).y())); | ||||
sauimone
|
r681 | } else { | ||
sauimone
|
r820 | label->setText(QString("")); | ||
sauimone
|
r681 | } | ||
sauimone
|
r820 | label->setPos(xPos + (rect.width()/2 - label->boundingRect().width()/2) | ||
,yPos - barHeight/2 - label->boundingRect().height()/2); | ||||
sauimone
|
r1580 | label->setFont(barSet->m_labelFont); | ||
label->setBrush(barSet->m_labelBrush); | ||||
sauimone
|
r811 | |||
sauimone
|
r681 | itemIndex++; | ||
} | ||||
} | ||||
sauimone
|
r1167 | |||
sauimone
|
r671 | return layout; | ||
} | ||||
sauimone
|
r681 | void BarChartItem::applyLayout(const QVector<QRectF> &layout) | ||
sauimone
|
r671 | { | ||
sauimone
|
r1339 | if (animator()) { | ||
sauimone
|
r763 | animator()->updateLayout(this, m_layout, layout); | ||
sauimone
|
r1339 | } else { | ||
sauimone
|
r671 | setLayout(layout); | ||
sauimone
|
r1389 | update(); | ||
sauimone
|
r1339 | } | ||
sauimone
|
r671 | } | ||
sauimone
|
r681 | void BarChartItem::setLayout(const QVector<QRectF> &layout) | ||
sauimone
|
r671 | { | ||
Marek Rosa
|
r1418 | if (layout.count() != m_bars.count()) | ||
return; | ||||
m_layout = layout; | ||||
sauimone
|
r681 | |||
sauimone
|
r1339 | for (int i=0; i < m_bars.count(); i++) { | ||
sauimone
|
r763 | m_bars.at(i)->setRect(layout.at(i)); | ||
sauimone
|
r1339 | } | ||
sauimone
|
r671 | } | ||
Michal Klocek
|
r139 | //handlers | ||
sauimone
|
r666 | void BarChartItem::handleDomainChanged(qreal minX, qreal maxX, qreal minY, qreal maxY) | ||
Michal Klocek
|
r139 | { | ||
sauimone
|
r763 | m_domainMinX = minX; | ||
m_domainMaxX = maxX; | ||||
m_domainMinY = minY; | ||||
m_domainMaxY = maxY; | ||||
sauimone
|
r681 | handleLayoutChanged(); | ||
Michal Klocek
|
r139 | } | ||
Tero Ahola
|
r737 | void BarChartItem::handleGeometryChanged(const QRectF &rect) | ||
Michal Klocek
|
r139 | { | ||
sauimone
|
r850 | prepareGeometryChange(); | ||
Tero Ahola
|
r737 | m_rect = rect; | ||
sauimone
|
r682 | handleLayoutChanged(); | ||
Michal Klocek
|
r139 | } | ||
sauimone
|
r671 | void BarChartItem::handleLayoutChanged() | ||
{ | ||||
sauimone
|
r850 | if ((m_rect.width() <= 0) || (m_rect.height() <= 0)) { | ||
// rect size zero. | ||||
return; | ||||
} | ||||
sauimone
|
r681 | QVector<QRectF> layout = calculateLayout(); | ||
sauimone
|
r671 | applyLayout(layout); | ||
} | ||||
sauimone
|
r1464 | |||
sauimone
|
r1339 | void BarChartItem::handleLabelsVisibleChanged(bool visible) | ||
sauimone
|
r1246 | { | ||
foreach (QGraphicsSimpleTextItem* label, m_labels) { | ||||
label->setVisible(visible); | ||||
} | ||||
update(); | ||||
} | ||||
sauimone
|
r1464 | void BarChartItem::handleDataStructureChanged() | ||
{ | ||||
foreach(QGraphicsItem *item, childItems()) { | ||||
delete item; | ||||
} | ||||
m_bars.clear(); | ||||
m_labels.clear(); | ||||
m_layout.clear(); | ||||
bool labelsVisible = m_series->isLabelsVisible(); | ||||
// Create new graphic items for bars | ||||
for (int c = 0; c < m_series->d_func()->categoryCount(); c++) { | ||||
for (int s = 0; s < m_series->count(); s++) { | ||||
QBarSet *set = m_series->d_func()->barsetAt(s); | ||||
// Bars | ||||
Bar *bar = new Bar(set,c,this); | ||||
m_bars.append(bar); | ||||
sauimone
|
r1563 | connect(bar, SIGNAL(clicked(int, QBarSet*)), m_series, SIGNAL(clicked(int, QBarSet*))); | ||
connect(bar, SIGNAL(hovered(bool, QBarSet*)), m_series, SIGNAL(hovered(bool, QBarSet*))); | ||||
connect(bar, SIGNAL(clicked(int, QBarSet*)), set, SIGNAL(clicked(int))); | ||||
connect(bar, SIGNAL(hovered(bool, QBarSet*)), set, SIGNAL(hovered(bool))); | ||||
sauimone
|
r1464 | m_layout.append(QRectF(0, 0, 0, 0)); | ||
// Labels | ||||
QGraphicsSimpleTextItem *label = new QGraphicsSimpleTextItem(this); | ||||
label->setVisible(labelsVisible); | ||||
m_labels.append(label); | ||||
} | ||||
} | ||||
// TODO: Is this the right place to call it? | ||||
presenter()->chartTheme()->decorate(m_series, presenter()->dataSet()->seriesIndex(m_series)); | ||||
handleLayoutChanged(); | ||||
} | ||||
void BarChartItem::handleVisibleChanged() | ||||
{ | ||||
bool visible = m_series->isVisible(); | ||||
handleLabelsVisibleChanged(visible); | ||||
foreach(QGraphicsItem *item, childItems()) { | ||||
item->setVisible(visible); | ||||
} | ||||
} | ||||
sauimone
|
r666 | #include "moc_barchartitem_p.cpp" | ||
Michal Klocek
|
r139 | |||
sauimone
|
r126 | QTCOMMERCIALCHART_END_NAMESPACE | ||