chartaxis.cpp
361 lines
| 9.4 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$ | ||||
** | ||||
****************************************************************************/ | ||||
Michal Klocek
|
r1006 | #include "chartaxis_p.h" | ||
#include "qaxis.h" | ||||
#include "qaxis_p.h" | ||||
Michal Klocek
|
r1032 | #include "qaxiscategories_p.h" | ||
Michal Klocek
|
r262 | #include "chartpresenter_p.h" | ||
Michal Klocek
|
r530 | #include "chartanimator_p.h" | ||
Michal Klocek
|
r67 | #include <QPainter> | ||
Michal Klocek
|
r996 | #include <QDebug> | ||
Michal Klocek
|
r678 | #include <cmath> | ||
Michal Klocek
|
r67 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1241 | ChartAxis::ChartAxis(QAxis *axis,ChartPresenter *presenter) : Chart(presenter), | ||
sauimone
|
r745 | m_chartAxis(axis), | ||
m_labelsAngle(0), | ||||
Jani Honkonen
|
r784 | m_grid(new QGraphicsItemGroup(presenter->rootItem())), | ||
m_shades(new QGraphicsItemGroup(presenter->rootItem())), | ||||
m_labels(new QGraphicsItemGroup(presenter->rootItem())), | ||||
m_axis(new QGraphicsItemGroup(presenter->rootItem())), | ||||
sauimone
|
r745 | m_min(0), | ||
m_max(0), | ||||
Michal Klocek
|
r1241 | m_ticksCount(0), | ||
m_animation(0) | ||||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r145 | //initial initialization | ||
Jani Honkonen
|
r784 | m_axis->setZValue(ChartPresenter::AxisZValue); | ||
m_axis->setHandlesChildEvents(false); | ||||
Michal Klocek
|
r677 | |||
Jani Honkonen
|
r784 | m_shades->setZValue(ChartPresenter::ShadesZValue); | ||
m_grid->setZValue(ChartPresenter::GridZValue); | ||||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r963 | QObject::connect(m_chartAxis->d_ptr.data(),SIGNAL(updated()),this,SLOT(handleAxisUpdated())); | ||
QObject::connect(m_chartAxis->categories()->d_ptr.data(),SIGNAL(updated()),this,SLOT(handleAxisCategoriesUpdated())); | ||||
Michal Klocek
|
r502 | |||
handleAxisUpdated(); | ||||
Michal Klocek
|
r67 | } | ||
Michal Klocek
|
r1006 | ChartAxis::~ChartAxis() | ||
Michal Klocek
|
r67 | { | ||
} | ||||
Michal Klocek
|
r1241 | void ChartAxis::setAnimation(AxisAnimation* animation) | ||
Michal Klocek
|
r176 | { | ||
Michal Klocek
|
r1241 | m_animation=animation; | ||
} | ||||
Michal Klocek
|
r530 | |||
Michal Klocek
|
r1241 | void ChartAxis::setLayout(QVector<qreal> &layout) | ||
{ | ||||
m_layoutVector=layout; | ||||
} | ||||
void ChartAxis::createItems(int count) | ||||
{ | ||||
Jani Honkonen
|
r784 | if (m_axis->children().size() == 0) | ||
Michal Klocek
|
r1241 | m_axis->addToGroup(new AxisItem(this)); | ||
Michal Klocek
|
r223 | for (int i = 0; i < count; ++i) { | ||
Jani Honkonen
|
r784 | m_grid->addToGroup(new QGraphicsLineItem()); | ||
m_labels->addToGroup(new QGraphicsSimpleTextItem()); | ||||
m_axis->addToGroup(new QGraphicsLineItem()); | ||||
if ((m_grid->childItems().size())%2 && m_grid->childItems().size()>2) m_shades->addToGroup(new QGraphicsRectItem()); | ||||
Michal Klocek
|
r1241 | } | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::deleteItems(int count) | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | QList<QGraphicsItem *> lines = m_grid->childItems(); | ||
QList<QGraphicsItem *> labels = m_labels->childItems(); | ||||
QList<QGraphicsItem *> shades = m_shades->childItems(); | ||||
QList<QGraphicsItem *> axis = m_axis->childItems(); | ||||
Michal Klocek
|
r176 | |||
Michal Klocek
|
r291 | for (int i = 0; i < count; ++i) { | ||
sauimone
|
r745 | if (lines.size()%2 && lines.size() > 1) delete(shades.takeLast()); | ||
Michal Klocek
|
r291 | delete(lines.takeLast()); | ||
delete(labels.takeLast()); | ||||
delete(axis.takeLast()); | ||||
Michal Klocek
|
r272 | } | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::updateLayout(QVector<qreal> &layout) | ||
Michal Klocek
|
r176 | { | ||
Michal Klocek
|
r1241 | int diff = m_layoutVector.size() - layout.size(); | ||
if (diff>0) { | ||||
deleteItems(diff); | ||||
} | ||||
else if (diff<0) { | ||||
createItems(-diff); | ||||
} | ||||
if( diff!=0) handleAxisUpdated(); | ||||
if (m_animation) { | ||||
switch(presenter()->state()){ | ||||
case ChartPresenter::ZoomInState: | ||||
m_animation->setAnimationType(AxisAnimation::ZoomInAnimation); | ||||
m_animation->setAnimationPoint(presenter()->statePoint()); | ||||
break; | ||||
case ChartPresenter::ZoomOutState: | ||||
m_animation->setAnimationType(AxisAnimation::ZoomOutAnimation); | ||||
m_animation->setAnimationPoint(presenter()->statePoint()); | ||||
break; | ||||
case ChartPresenter::ScrollUpState: | ||||
case ChartPresenter::ScrollLeftState: | ||||
m_animation->setAnimationType(AxisAnimation::MoveBackwordAnimation); | ||||
break; | ||||
case ChartPresenter::ScrollDownState: | ||||
case ChartPresenter::ScrollRightState: | ||||
m_animation->setAnimationType(AxisAnimation::MoveForwardAnimation); | ||||
break; | ||||
case ChartPresenter::ShowState: | ||||
m_animation->setAnimationType(AxisAnimation::DefaultAnimation); | ||||
break; | ||||
} | ||||
m_animation->setValues(m_layoutVector,layout); | ||||
presenter()->startAnimation(m_animation); | ||||
} | ||||
else { | ||||
sauimone
|
r745 | setLayout(layout); | ||
Michal Klocek
|
r1241 | updateGeometry(); | ||
Michal Klocek
|
r530 | } | ||
Michal Klocek
|
r85 | } | ||
Michal Klocek
|
r176 | |||
Michal Klocek
|
r1006 | bool ChartAxis::createLabels(QStringList &labels,qreal min, qreal max,int ticks) const | ||
Michal Klocek
|
r85 | { | ||
Michal Klocek
|
r1241 | Q_ASSERT(max>min); | ||
Michal Klocek
|
r678 | Q_ASSERT(ticks>1); | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r1032 | QAxisCategories* categories = m_chartAxis->categories(); | ||
Michal Klocek
|
r291 | |||
Michal Klocek
|
r701 | bool category = categories->count()>0; | ||
sauimone
|
r745 | if (!category) { | ||
Michal Klocek
|
r701 | int n = qMax(int(-floor(log10((max-min)/(ticks-1)))),0); | ||
Michal Klocek
|
r801 | n++; | ||
sauimone
|
r759 | for (int i=0; i< ticks; i++) { | ||
Michal Klocek
|
r701 | qreal value = min + (i * (max - min)/ (ticks-1)); | ||
Michal Klocek
|
r1241 | Q_UNUSED(value); | ||
Michal Klocek
|
r678 | labels << QString::number(value,'f',n); | ||
Michal Klocek
|
r439 | } | ||
sauimone
|
r745 | } else { | ||
Michal Klocek
|
r706 | QList<qreal> values = categories->values(); | ||
sauimone
|
r745 | for (int i=0; i< ticks; i++) { | ||
Michal Klocek
|
r706 | qreal value = (min + (i * (max - min)/ (ticks-1))); | ||
int j=0; | ||||
sauimone
|
r745 | for (; j<values.count(); j++) { | ||
Michal Klocek
|
r706 | if (values.at(j) > value) break; | ||
} | ||||
sauimone
|
r745 | if (j!=0) value=values.at(j-1); | ||
Michal Klocek
|
r706 | |||
Michal Klocek
|
r497 | QString label = categories->label(value); | ||
Michal Klocek
|
r439 | labels << label; | ||
} | ||||
Michal Klocek
|
r223 | } | ||
Michal Klocek
|
r701 | |||
return category; | ||||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r1006 | void ChartAxis::setAxisOpacity(qreal opacity) | ||
Michal Klocek
|
r184 | { | ||
Jani Honkonen
|
r784 | m_axis->setOpacity(opacity); | ||
Michal Klocek
|
r184 | } | ||
Michal Klocek
|
r1006 | qreal ChartAxis::axisOpacity() const | ||
Michal Klocek
|
r184 | { | ||
Jani Honkonen
|
r784 | return m_axis->opacity(); | ||
Michal Klocek
|
r184 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::setGridOpacity(qreal opacity) | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | m_grid->setOpacity(opacity); | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r1006 | qreal ChartAxis::gridOpacity() const | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | return m_grid->opacity(); | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r1006 | void ChartAxis::setLabelsOpacity(qreal opacity) | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | m_labels->setOpacity(opacity); | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r1006 | qreal ChartAxis::labelsOpacity() const | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | return m_labels->opacity(); | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r1006 | void ChartAxis::setShadesOpacity(qreal opacity) | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | m_shades->setOpacity(opacity); | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r85 | |||
Michal Klocek
|
r1006 | qreal ChartAxis::shadesOpacity() const | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | return m_shades->opacity(); | ||
Michal Klocek
|
r176 | } | ||
Michal Klocek
|
r67 | |||
Michal Klocek
|
r1006 | void ChartAxis::setLabelsAngle(int angle) | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_labels->childItems()) { | ||
Michal Klocek
|
r176 | item->setRotation(angle); | ||
Michal Klocek
|
r145 | } | ||
Michal Klocek
|
r176 | |||
m_labelsAngle=angle; | ||||
Michal Klocek
|
r67 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::setLabelsPen(const QPen &pen) | ||
Michal Klocek
|
r140 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_labels->childItems()) { | ||
Michal Klocek
|
r176 | static_cast<QGraphicsSimpleTextItem*>(item)->setPen(pen); | ||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::setLabelsBrush(const QBrush &brush) | ||
Michal Klocek
|
r140 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_labels->childItems()) { | ||
Michal Klocek
|
r176 | static_cast<QGraphicsSimpleTextItem*>(item)->setBrush(brush); | ||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::setLabelsFont(const QFont &font) | ||
Michal Klocek
|
r140 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_labels->childItems()) { | ||
Michal Klocek
|
r176 | static_cast<QGraphicsSimpleTextItem*>(item)->setFont(font); | ||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::setShadesBrush(const QBrush &brush) | ||
Michal Klocek
|
r140 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_shades->childItems()) { | ||
Michal Klocek
|
r176 | static_cast<QGraphicsRectItem*>(item)->setBrush(brush); | ||
} | ||||
Michal Klocek
|
r140 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::setShadesPen(const QPen &pen) | ||
Michal Klocek
|
r140 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_shades->childItems()) { | ||
Michal Klocek
|
r176 | static_cast<QGraphicsRectItem*>(item)->setPen(pen); | ||
} | ||||
} | ||||
Michal Klocek
|
r1006 | void ChartAxis::setAxisPen(const QPen &pen) | ||
Michal Klocek
|
r184 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_axis->childItems()) { | ||
Michal Klocek
|
r272 | static_cast<QGraphicsLineItem*>(item)->setPen(pen); | ||
} | ||||
Michal Klocek
|
r184 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::setGridPen(const QPen &pen) | ||
Michal Klocek
|
r176 | { | ||
Jani Honkonen
|
r784 | foreach(QGraphicsItem* item , m_grid->childItems()) { | ||
Michal Klocek
|
r176 | static_cast<QGraphicsLineItem*>(item)->setPen(pen); | ||
} | ||||
} | ||||
Michal Klocek
|
r1006 | bool ChartAxis::isEmpty() | ||
Michal Klocek
|
r502 | { | ||
Jani Honkonen
|
r768 | return m_rect.isEmpty() || qFuzzyIsNull(m_min - m_max) || m_ticksCount==0; | ||
Michal Klocek
|
r291 | } | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r439 | //handlers | ||
Michal Klocek
|
r1006 | void ChartAxis::handleAxisCategoriesUpdated() | ||
Michal Klocek
|
r497 | { | ||
sauimone
|
r759 | if (isEmpty()) return; | ||
Michal Klocek
|
r502 | updateLayout(m_layoutVector); | ||
Michal Klocek
|
r497 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::handleAxisUpdated() | ||
Michal Klocek
|
r439 | { | ||
Michal Klocek
|
r497 | |||
sauimone
|
r745 | if (isEmpty()) return; | ||
Michal Klocek
|
r439 | |||
sauimone
|
r745 | if (m_chartAxis->isAxisVisible()) { | ||
Michal Klocek
|
r439 | setAxisOpacity(100); | ||
sauimone
|
r745 | } else { | ||
Michal Klocek
|
r439 | setAxisOpacity(0); | ||
} | ||||
sauimone
|
r759 | if (m_chartAxis->isGridLineVisible()) { | ||
Michal Klocek
|
r439 | setGridOpacity(100); | ||
sauimone
|
r745 | } else { | ||
Michal Klocek
|
r439 | setGridOpacity(0); | ||
} | ||||
sauimone
|
r759 | if (m_chartAxis->labelsVisible()) { | ||
Michal Klocek
|
r439 | setLabelsOpacity(100); | ||
sauimone
|
r745 | } else { | ||
Michal Klocek
|
r439 | setLabelsOpacity(0); | ||
} | ||||
sauimone
|
r745 | if (m_chartAxis->shadesVisible()) { | ||
Michal Klocek
|
r439 | setShadesOpacity(m_chartAxis->shadesOpacity()); | ||
sauimone
|
r745 | } else { | ||
Michal Klocek
|
r439 | setShadesOpacity(0); | ||
} | ||||
setLabelsAngle(m_chartAxis->labelsAngle()); | ||||
setAxisPen(m_chartAxis->axisPen()); | ||||
setLabelsPen(m_chartAxis->labelsPen()); | ||||
setLabelsBrush(m_chartAxis->labelsBrush()); | ||||
setLabelsFont(m_chartAxis->labelsFont()); | ||||
Michal Klocek
|
r535 | setGridPen(m_chartAxis->gridLinePen()); | ||
Michal Klocek
|
r439 | setShadesPen(m_chartAxis->shadesPen()); | ||
setShadesBrush(m_chartAxis->shadesBrush()); | ||||
Michal Klocek
|
r452 | |||
Michal Klocek
|
r439 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::handleRangeChanged(qreal min, qreal max,int tickCount) | ||
Michal Klocek
|
r439 | { | ||
Jani Honkonen
|
r768 | if (qFuzzyIsNull(min - max) || tickCount < 2) | ||
return; | ||||
Michal Klocek
|
r554 | |||
Michal Klocek
|
r452 | m_min = min; | ||
m_max = max; | ||||
Michal Klocek
|
r554 | m_ticksCount= tickCount; | ||
Michal Klocek
|
r513 | |||
sauimone
|
r745 | if (isEmpty()) return; | ||
Michal Klocek
|
r502 | QVector<qreal> layout = calculateLayout(); | ||
updateLayout(layout); | ||||
Michal Klocek
|
r452 | } | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r1006 | void ChartAxis::handleGeometryChanged(const QRectF &rect) | ||
Michal Klocek
|
r439 | { | ||
Michal Klocek
|
r855 | if(m_rect != rect) | ||
{ | ||||
m_rect = rect; | ||||
if (isEmpty()) return; | ||||
QVector<qreal> layout = calculateLayout(); | ||||
updateLayout(layout); | ||||
} | ||||
Michal Klocek
|
r452 | } | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r1006 | void ChartAxis::axisSelected() | ||
Michal Klocek
|
r452 | { | ||
Michal Klocek
|
r963 | qDebug()<<"TODO: axis clicked"; | ||
Michal Klocek
|
r439 | } | ||
Michal Klocek
|
r1006 | #include "moc_chartaxis_p.cpp" | ||
Michal Klocek
|
r67 | |||
QTCOMMERCIALCHART_END_NAMESPACE | ||||