chartpresenter.cpp
450 lines
| 10.9 KiB
| text/x-c
|
CppLexer
/ src / chartpresenter.cpp
Jani Honkonen
|
r794 | /**************************************************************************** | ||
Michal Klocek
|
r969 | ** | ||
** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
#include "chartpresenter_p.h" | ||||
Michal Klocek
|
r139 | #include "qchart.h" | ||
Michal Klocek
|
r855 | #include "qchart_p.h" | ||
Michal Klocek
|
r1541 | #include "qabstractaxis.h" | ||
Michal Klocek
|
r1556 | #include "qabstractaxis_p.h" | ||
Michal Klocek
|
r131 | #include "chartdataset_p.h" | ||
Michal Klocek
|
r143 | #include "charttheme_p.h" | ||
Michal Klocek
|
r1241 | #include "chartanimation_p.h" | ||
Tero Ahola
|
r988 | #include "qabstractseries_p.h" | ||
Michal Klocek
|
r421 | #include "qareaseries.h" | ||
Michal Klocek
|
r1006 | #include "chartaxis_p.h" | ||
Marek Rosa
|
r1561 | //#include "chartaxisx_p.h" | ||
//#include "chartaxisy_p.h" | ||||
Michal Klocek
|
r421 | #include "areachartitem_p.h" | ||
Michal Klocek
|
r1006 | #include "chartbackground_p.h" | ||
Michal Klocek
|
r1534 | #include "chartlayout_p.h" | ||
Michal Klocek
|
r1241 | #include <QTimer> | ||
Michal Klocek
|
r131 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
ChartPresenter::ChartPresenter(QChart* chart,ChartDataSet* dataset):QObject(chart), | ||||
Michal Klocek
|
r969 | m_chart(chart), | ||
m_dataset(dataset), | ||||
m_chartTheme(0), | ||||
m_options(QChart::NoAnimation), | ||||
Michal Klocek
|
r1241 | m_state(ShowState), | ||
Michal Klocek
|
r1534 | m_layout(new ChartLayout(this)), | ||
Michal Klocek
|
r969 | m_backgroundItem(0), | ||
Michal Klocek
|
r1534 | m_titleItem(0) | ||
Michal Klocek
|
r131 | { | ||
Michal Klocek
|
r1241 | |||
Michal Klocek
|
r131 | } | ||
ChartPresenter::~ChartPresenter() | ||||
{ | ||||
Michal Klocek
|
r969 | delete m_chartTheme; | ||
Michal Klocek
|
r131 | } | ||
Michal Klocek
|
r855 | void ChartPresenter::setGeometry(const QRectF& rect) | ||
Michal Klocek
|
r131 | { | ||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | Q_ASSERT(rect.isValid()); | ||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | if(m_rect!=rect) { | ||
m_rect=rect; | ||||
emit geometryChanged(m_rect); | ||||
Michal Klocek
|
r855 | } | ||
Michal Klocek
|
r139 | } | ||
Michal Klocek
|
r131 | |||
Michal Klocek
|
r1541 | void ChartPresenter::handleAxisAdded(QAbstractAxis* axis,Domain* domain) | ||
Michal Klocek
|
r223 | { | ||
Michal Klocek
|
r1556 | ChartAxis* item = axis->d_ptr->createGraphics(this); | ||
item->setDomain(domain); | ||||
Michal Klocek
|
r298 | |||
Michal Klocek
|
r530 | if(m_options.testFlag(QChart::GridAxisAnimations)){ | ||
Michal Klocek
|
r1241 | item->setAnimation(new AxisAnimation(item)); | ||
Michal Klocek
|
r439 | } | ||
Michal Klocek
|
r530 | |||
Michal Klocek
|
r967 | QObject::connect(this,SIGNAL(geometryChanged(QRectF)),item,SLOT(handleGeometryChanged(QRectF))); | ||
Michal Klocek
|
r1698 | QObject::connect(domain,SIGNAL(updated()),item,SLOT(handleDomainUpdated())); | ||
Michal Klocek
|
r1626 | QObject::connect(axis,SIGNAL(visibleChanged(bool)),this,SLOT(handleAxisVisibleChanged(bool))); | ||
Michal Klocek
|
r1698 | |||
Michal Klocek
|
r439 | //initialize | ||
Michal Klocek
|
r1698 | domain->emitUpdated(); | ||
m_chartTheme->decorate(axis); | ||||
axis->d_ptr->setDirty(false); | ||||
axis->d_ptr->emitUpdated(); | ||||
Michal Klocek
|
r1534 | if(m_rect.isValid()) item->handleGeometryChanged(m_rect); | ||
Michal Klocek
|
r1698 | |||
Tero Ahola
|
r561 | m_axisItems.insert(axis, item); | ||
Michal Klocek
|
r1628 | selectVisibleAxis(); | ||
Michal Klocek
|
r223 | } | ||
Michal Klocek
|
r1541 | void ChartPresenter::handleAxisRemoved(QAbstractAxis* axis) | ||
Michal Klocek
|
r223 | { | ||
Michal Klocek
|
r1006 | ChartAxis* item = m_axisItems.take(axis); | ||
Michal Klocek
|
r223 | Q_ASSERT(item); | ||
Michal Klocek
|
r1628 | selectVisibleAxis(); | ||
Michal Klocek
|
r1729 | item->hide(); | ||
item->disconnect(); | ||||
QObject::disconnect(this,0,item,0); | ||||
sauimone
|
r1562 | item->deleteLater(); | ||
Michal Klocek
|
r223 | } | ||
Tero Ahola
|
r988 | void ChartPresenter::handleSeriesAdded(QAbstractSeries* series,Domain* domain) | ||
Michal Klocek
|
r131 | { | ||
Michal Klocek
|
r1736 | ChartElement *item = series->d_ptr->createGraphics(this); | ||
Michal Klocek
|
r969 | Q_ASSERT(item); | ||
Michal Klocek
|
r1556 | item->setDomain(domain); | ||
Michal Klocek
|
r969 | QObject::connect(this,SIGNAL(geometryChanged(QRectF)),item,SLOT(handleGeometryChanged(QRectF))); | ||
Michal Klocek
|
r1698 | QObject::connect(domain,SIGNAL(updated()),item,SLOT(handleDomainUpdated())); | ||
Michal Klocek
|
r969 | //initialize | ||
Michal Klocek
|
r1698 | item->handleDomainUpdated(); | ||
Michal Klocek
|
r1534 | if(m_rect.isValid()) item->handleGeometryChanged(m_rect); | ||
Michal Klocek
|
r969 | m_chartItems.insert(series,item); | ||
Michal Klocek
|
r131 | } | ||
Tero Ahola
|
r988 | void ChartPresenter::handleSeriesRemoved(QAbstractSeries* series) | ||
Michal Klocek
|
r139 | { | ||
Michal Klocek
|
r1736 | ChartElement* item = m_chartItems.take(series); | ||
Michal Klocek
|
r530 | Q_ASSERT(item); | ||
sauimone
|
r1562 | item->deleteLater(); | ||
Michal Klocek
|
r139 | } | ||
Michal Klocek
|
r131 | |||
Michal Klocek
|
r1628 | void ChartPresenter::selectVisibleAxis() | ||
{ | ||||
QMapIterator<QAbstractAxis*, ChartAxis*> i(m_axisItems); | ||||
while (i.hasNext()) { | ||||
i.next(); | ||||
i.key()->hide(); | ||||
} | ||||
i.toFront(); | ||||
bool axisX=false; | ||||
bool axisY=false; | ||||
while (i.hasNext()) { | ||||
i.next(); | ||||
Michal Klocek
|
r1698 | if(i.key()->orientation()==Qt::Vertical && !axisY) { | ||
Michal Klocek
|
r1628 | axisY=true; | ||
i.key()->show(); | ||||
} | ||||
Michal Klocek
|
r1698 | if(i.key()->orientation()==Qt::Horizontal && !axisX) { | ||
Michal Klocek
|
r1628 | axisX=true; | ||
i.key()->show(); | ||||
} | ||||
} | ||||
} | ||||
Michal Klocek
|
r1626 | |||
void ChartPresenter::handleAxisVisibleChanged(bool visible) | ||||
{ | ||||
QAbstractAxis* axis = static_cast<QAbstractAxis*> (sender()); | ||||
Q_ASSERT(axis); | ||||
if(visible){ | ||||
QMapIterator<QAbstractAxis*, ChartAxis*> i(m_axisItems); | ||||
while (i.hasNext()) { | ||||
i.next(); | ||||
if(i.key()==axis) { | ||||
continue; | ||||
} | ||||
Michal Klocek
|
r1698 | if(i.key()->orientation()==axis->orientation()) { | ||
Michal Klocek
|
r1626 | i.key()->setVisible(false); | ||
} | ||||
} | ||||
} | ||||
} | ||||
Michal Klocek
|
r740 | void ChartPresenter::setTheme(QChart::ChartTheme theme,bool force) | ||
Michal Klocek
|
r143 | { | ||
Michal Klocek
|
r969 | if(m_chartTheme && m_chartTheme->id() == theme) return; | ||
Michal Klocek
|
r143 | delete m_chartTheme; | ||
m_chartTheme = ChartTheme::createTheme(theme); | ||||
Michal Klocek
|
r943 | m_chartTheme->setForced(force); | ||
m_chartTheme->decorate(m_chart); | ||||
m_chartTheme->decorate(m_chart->legend()); | ||||
Michal Klocek
|
r531 | resetAllElements(); | ||
Jani Honkonen
|
r1093 | |||
// We do not want "force" to stay on. | ||||
// Bar/pie are calling decorate when adding/removing slices/bars which means | ||||
// that to preserve users colors "force" must not be on. | ||||
m_chartTheme->setForced(false); | ||||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r740 | QChart::ChartTheme ChartPresenter::theme() | ||
Michal Klocek
|
r143 | { | ||
Michal Klocek
|
r153 | return m_chartTheme->id(); | ||
} | ||||
Michal Klocek
|
r298 | void ChartPresenter::setAnimationOptions(QChart::AnimationOptions options) | ||
{ | ||||
if(m_options!=options) { | ||||
m_options=options; | ||||
Michal Klocek
|
r531 | resetAllElements(); | ||
Michal Klocek
|
r298 | } | ||
Michal Klocek
|
r530 | |||
Michal Klocek
|
r298 | } | ||
Michal Klocek
|
r531 | void ChartPresenter::resetAllElements() | ||
{ | ||||
Michal Klocek
|
r1556 | QMapIterator<QAbstractAxis*, ChartAxis*> i(m_axisItems); | ||
while (i.hasNext()) { | ||||
i.next(); | ||||
Domain* domain = i.value()->domain(); | ||||
QAbstractAxis* axis = i.key(); | ||||
handleAxisRemoved(axis); | ||||
handleAxisAdded(axis,domain); | ||||
Michal Klocek
|
r969 | } | ||
Michal Klocek
|
r1556 | |||
Michal Klocek
|
r1736 | QMapIterator<QAbstractSeries*, ChartElement*> j(m_chartItems); | ||
Michal Klocek
|
r1556 | while (j.hasNext()) { | ||
j.next(); | ||||
Domain* domain = j.value()->domain(); | ||||
QAbstractSeries* series = j.key(); | ||||
handleSeriesRemoved(series); | ||||
handleSeriesAdded(series,domain); | ||||
} | ||||
Michal Klocek
|
r531 | } | ||
Jani Honkonen
|
r1187 | void ChartPresenter::zoomIn(qreal factor) | ||
Michal Klocek
|
r439 | { | ||
Michal Klocek
|
r1534 | QRectF rect = geometry(); | ||
Jani Honkonen
|
r1187 | rect.setWidth(rect.width()/factor); | ||
rect.setHeight(rect.height()/factor); | ||||
Michal Klocek
|
r1534 | rect.moveCenter(geometry().center()); | ||
Michal Klocek
|
r969 | zoomIn(rect); | ||
Michal Klocek
|
r439 | } | ||
void ChartPresenter::zoomIn(const QRectF& rect) | ||||
{ | ||||
Michal Klocek
|
r969 | QRectF r = rect.normalized(); | ||
Michal Klocek
|
r1534 | r.translate(-geometry().topLeft()); | ||
Jani Honkonen
|
r1187 | if (!r.isValid()) | ||
return; | ||||
Michal Klocek
|
r969 | |||
Michal Klocek
|
r1241 | m_state = ZoomInState; | ||
Michal Klocek
|
r1534 | m_statePoint = QPointF(r.center().x()/geometry().width(),r.center().y()/geometry().height()); | ||
m_dataset->zoomInDomain(r,geometry().size()); | ||||
Michal Klocek
|
r1241 | m_state = ShowState; | ||
Michal Klocek
|
r439 | } | ||
Jani Honkonen
|
r1187 | void ChartPresenter::zoomOut(qreal factor) | ||
Michal Klocek
|
r439 | { | ||
Michal Klocek
|
r1241 | m_state = ZoomOutState; | ||
Michal Klocek
|
r678 | |||
Jani Honkonen
|
r1187 | QRectF chartRect; | ||
Michal Klocek
|
r1534 | chartRect.setSize(geometry().size()); | ||
Michal Klocek
|
r678 | |||
Jani Honkonen
|
r1187 | QRectF rect; | ||
rect.setSize(chartRect.size()/factor); | ||||
rect.moveCenter(chartRect.center()); | ||||
if (!rect.isValid()) | ||||
return; | ||||
Michal Klocek
|
r1534 | m_statePoint = QPointF(rect.center().x()/geometry().width(),rect.center().y()/geometry().height()); | ||
Jani Honkonen
|
r1187 | m_dataset->zoomOutDomain(rect, chartRect.size()); | ||
Michal Klocek
|
r1241 | m_state = ShowState; | ||
Michal Klocek
|
r439 | } | ||
Michal Klocek
|
r1267 | void ChartPresenter::scroll(qreal dx,qreal dy) | ||
Michal Klocek
|
r531 | { | ||
Michal Klocek
|
r1241 | if(dx<0) m_state=ScrollLeftState; | ||
if(dx>0) m_state=ScrollRightState; | ||||
if(dy<0) m_state=ScrollUpState; | ||||
if(dy>0) m_state=ScrollDownState; | ||||
Michal Klocek
|
r531 | |||
Michal Klocek
|
r1534 | m_dataset->scrollDomain(dx,dy,geometry().size()); | ||
Michal Klocek
|
r1241 | m_state = ShowState; | ||
Michal Klocek
|
r531 | } | ||
Michal Klocek
|
r298 | QChart::AnimationOptions ChartPresenter::animationOptions() const | ||
{ | ||||
return m_options; | ||||
} | ||||
Michal Klocek
|
r1534 | void ChartPresenter::createBackgroundItem() | ||
Michal Klocek
|
r855 | { | ||
Michal Klocek
|
r1534 | if (!m_backgroundItem) { | ||
m_backgroundItem = new ChartBackground(rootItem()); | ||||
m_backgroundItem->setPen(Qt::NoPen); | ||||
m_backgroundItem->setZValue(ChartPresenter::BackgroundZValue); | ||||
} | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | void ChartPresenter::createTitleItem() | ||
{ | ||||
if (!m_titleItem) { | ||||
m_titleItem = new QGraphicsSimpleTextItem(rootItem()); | ||||
m_titleItem->setZValue(ChartPresenter::BackgroundZValue); | ||||
} | ||||
} | ||||
Tero Ahola
|
r1524 | |||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | void ChartPresenter::handleAnimationFinished() | ||
{ | ||||
m_animations.removeAll(qobject_cast<ChartAnimation*>(sender())); | ||||
if(m_animations.empty()) emit animationsFinished(); | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | void ChartPresenter::startAnimation(ChartAnimation* animation) | ||
{ | ||||
if (animation->state() != QAbstractAnimation::Stopped) animation->stop(); | ||||
QObject::connect(animation, SIGNAL(finished()),this,SLOT(handleAnimationFinished()),Qt::UniqueConnection); | ||||
if(!m_animations.isEmpty()){ | ||||
m_animations.append(animation); | ||||
Michal Klocek
|
r855 | } | ||
Michal Klocek
|
r1534 | QTimer::singleShot(0, animation, SLOT(start())); | ||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | QGraphicsRectItem* ChartPresenter::backgroundItem() | ||
{ | ||||
return m_backgroundItem; | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | void ChartPresenter::setBackgroundBrush(const QBrush& brush) | ||
{ | ||||
createBackgroundItem(); | ||||
m_backgroundItem->setBrush(brush); | ||||
m_layout->invalidate(); | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | QBrush ChartPresenter::backgroundBrush() const | ||
{ | ||||
if (!m_backgroundItem) return QBrush(); | ||||
return m_backgroundItem->brush(); | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | void ChartPresenter::setBackgroundPen(const QPen& pen) | ||
{ | ||||
createBackgroundItem(); | ||||
m_backgroundItem->setPen(pen); | ||||
m_layout->invalidate(); | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | QPen ChartPresenter::backgroundPen() const | ||
{ | ||||
if (!m_backgroundItem) return QPen(); | ||||
return m_backgroundItem->pen(); | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | QGraphicsItem* ChartPresenter::titleItem() | ||
{ | ||||
return m_titleItem; | ||||
} | ||||
Michal Klocek
|
r913 | |||
Michal Klocek
|
r1534 | void ChartPresenter::setTitle(const QString& title) | ||
{ | ||||
createTitleItem(); | ||||
m_titleItem->setText(title); | ||||
m_layout->invalidate(); | ||||
} | ||||
Michal Klocek
|
r913 | |||
Michal Klocek
|
r1534 | QString ChartPresenter::title() const | ||
{ | ||||
if (!m_titleItem) return QString(); | ||||
return m_titleItem->text(); | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | void ChartPresenter::setTitleFont(const QFont& font) | ||
{ | ||||
createTitleItem(); | ||||
m_titleItem->setFont(font); | ||||
m_layout->invalidate(); | ||||
} | ||||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | QFont ChartPresenter::titleFont() const | ||
{ | ||||
if (!m_titleItem) return QFont(); | ||||
return m_titleItem->font(); | ||||
} | ||||
Michal Klocek
|
r913 | |||
Michal Klocek
|
r1534 | void ChartPresenter::setTitleBrush(const QBrush &brush) | ||
{ | ||||
createTitleItem(); | ||||
m_titleItem->setBrush(brush); | ||||
m_layout->invalidate(); | ||||
} | ||||
Michal Klocek
|
r869 | |||
Michal Klocek
|
r1534 | QBrush ChartPresenter::titleBrush() const | ||
{ | ||||
if (!m_titleItem) return QBrush(); | ||||
return m_titleItem->brush(); | ||||
} | ||||
void ChartPresenter::setBackgroundVisible(bool visible) | ||||
{ | ||||
createBackgroundItem(); | ||||
m_backgroundItem->setVisible(visible); | ||||
} | ||||
Michal Klocek
|
r871 | |||
Michal Klocek
|
r855 | |||
Michal Klocek
|
r1534 | bool ChartPresenter::isBackgroundVisible() const | ||
{ | ||||
if (!m_backgroundItem) return false; | ||||
return m_backgroundItem->isVisible(); | ||||
Michal Klocek
|
r855 | } | ||
Michal Klocek
|
r1534 | void ChartPresenter::setBackgroundDropShadowEnabled(bool enabled) | ||
Michal Klocek
|
r855 | { | ||
Michal Klocek
|
r1534 | createBackgroundItem(); | ||
m_backgroundItem->setDropShadowEnabled(enabled); | ||||
Michal Klocek
|
r855 | } | ||
Michal Klocek
|
r1534 | bool ChartPresenter::isBackgroundDropShadowEnabled() const | ||
Michal Klocek
|
r855 | { | ||
Michal Klocek
|
r1534 | if (!m_backgroundItem) return false; | ||
return m_backgroundItem->isDropShadowEnabled(); | ||||
Michal Klocek
|
r855 | } | ||
Michal Klocek
|
r143 | |||
Michal Klocek
|
r1534 | |||
QGraphicsLayout* ChartPresenter::layout() | ||||
Michal Klocek
|
r1241 | { | ||
Michal Klocek
|
r1534 | return m_layout; | ||
Michal Klocek
|
r1241 | } | ||
Michal Klocek
|
r1534 | void ChartPresenter::setMarginsMinimum(const QRectF& margins) | ||
Michal Klocek
|
r1241 | { | ||
Michal Klocek
|
r1534 | Q_UNUSED(margins); | ||
// m_layout->setMarginsMinimum(margins); | ||||
} | ||||
QRectF ChartPresenter::margins() const | ||||
{ | ||||
Michal Klocek
|
r1648 | return m_layout->margins(); | ||
Michal Klocek
|
r1534 | } | ||
QLegend* ChartPresenter::legend() | ||||
{ | ||||
return m_chart->legend(); | ||||
} | ||||
QList<ChartAxis*> ChartPresenter::axisItems() const | ||||
{ | ||||
return m_axisItems.values(); | ||||
} | ||||
void ChartPresenter::setVisible(bool visible) | ||||
{ | ||||
m_chart->setVisible(visible); | ||||
Michal Klocek
|
r1241 | } | ||
Michal Klocek
|
r131 | #include "moc_chartpresenter_p.cpp" | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||