chartaxis.cpp
370 lines
| 9.5 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" | ||
Michal Klocek
|
r1541 | #include "qabstractaxis.h" | ||
#include "qabstractaxis_p.h" | ||||
Michal Klocek
|
r262 | #include "chartpresenter_p.h" | ||
Michal Klocek
|
r1698 | #include "domain_p.h" | ||
Michal Klocek
|
r1577 | #include <qmath.h> | ||
Marek Rosa
|
r1717 | #include <QDateTime> | ||
Michal Klocek
|
r67 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1736 | ChartAxis::ChartAxis(QAbstractAxis *axis,ChartPresenter *presenter) : ChartElement(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())), | ||||
Michal Klocek
|
r1729 | m_arrow(new QGraphicsItemGroup(presenter->rootItem())), | ||
sauimone
|
r745 | m_min(0), | ||
m_max(0), | ||||
Michal Klocek
|
r1534 | m_animation(0), | ||
m_minWidth(0), | ||||
m_minHeight(0) | ||||
Michal Klocek
|
r67 | { | ||
Michal Klocek
|
r145 | //initial initialization | ||
Michal Klocek
|
r1729 | m_arrow->setZValue(ChartPresenter::AxisZValue); | ||
m_arrow->setHandlesChildEvents(false); | ||||
Michal Klocek
|
r1745 | m_labels->setZValue(ChartPresenter::AxisZValue); | ||
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())); | ||
Michal Klocek
|
r502 | |||
Michal Klocek
|
r1534 | QGraphicsSimpleTextItem item; | ||
m_font = item.font(); | ||||
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) | ||||
{ | ||||
Michal Klocek
|
r1729 | if (m_arrow->children().size() == 0) | ||
Michal Klocek
|
r1744 | m_arrow->addToGroup(new AxisItem(this,presenter()->rootItem())); | ||
Michal Klocek
|
r223 | for (int i = 0; i < count; ++i) { | ||
Michal Klocek
|
r1744 | m_grid->addToGroup(new QGraphicsLineItem(presenter()->rootItem())); | ||
m_labels->addToGroup(new QGraphicsSimpleTextItem(presenter()->rootItem())); | ||||
m_arrow->addToGroup(new QGraphicsLineItem(presenter()->rootItem())); | ||||
if ((m_grid->childItems().size())%2 && m_grid->childItems().size()>2) m_shades->addToGroup(new QGraphicsRectItem(presenter()->rootItem())); | ||||
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(); | ||||
Michal Klocek
|
r1729 | QList<QGraphicsItem *> axis = m_arrow->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); | ||||
} | ||||
Michal Klocek
|
r1698 | if(diff<0) handleAxisUpdated(); | ||
Michal Klocek
|
r1241 | |||
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
|
r1729 | void ChartAxis::setArrowOpacity(qreal opacity) | ||
Michal Klocek
|
r184 | { | ||
Michal Klocek
|
r1729 | m_arrow->setOpacity(opacity); | ||
Michal Klocek
|
r184 | } | ||
Michal Klocek
|
r1729 | qreal ChartAxis::arrowOpacity() const | ||
Michal Klocek
|
r184 | { | ||
Michal Klocek
|
r1729 | return m_arrow->opacity(); | ||
} | ||||
void ChartAxis::setArrowVisibility(bool visible) | ||||
{ | ||||
m_arrow->setOpacity(visible); | ||||
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
|
r1729 | void ChartAxis::setGridVisibility(bool visible) | ||
{ | ||||
m_grid->setOpacity(visible); | ||||
} | ||||
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
|
r1729 | void ChartAxis::setLabelsVisibility(bool visible) | ||
{ | ||||
m_labels->setOpacity(visible); | ||||
} | ||||
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
|
r1729 | void ChartAxis::setShadesVisibility(bool visible) | ||
{ | ||||
m_shades->setVisible(visible); | ||||
} | ||||
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
|
r1534 | m_font = 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
|
r1729 | void ChartAxis::setArrowPen(const QPen &pen) | ||
Michal Klocek
|
r184 | { | ||
Michal Klocek
|
r1729 | foreach(QGraphicsItem* item , m_arrow->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 | { | ||
Michal Klocek
|
r1698 | return m_rect.isEmpty() || qFuzzyIsNull(m_min - m_max); | ||
Michal Klocek
|
r291 | } | ||
Michal Klocek
|
r140 | |||
Michal Klocek
|
r1698 | void ChartAxis::handleDomainUpdated() | ||
Michal Klocek
|
r497 | { | ||
Michal Klocek
|
r1698 | Domain* domain = qobject_cast<Domain*>(sender()); | ||
qreal min(0); | ||||
qreal max(0); | ||||
if(m_chartAxis->orientation()==Qt::Horizontal) { | ||||
min = domain->minX(); | ||||
max = domain->maxX(); | ||||
} | ||||
else if (m_chartAxis->orientation()==Qt::Vertical) | ||||
{ | ||||
min = domain->minY(); | ||||
max = domain->maxY(); | ||||
} | ||||
if (!qFuzzyIsNull(m_min - min) || !qFuzzyIsNull(m_max - max)) | ||||
{ | ||||
m_min = min; | ||||
m_max = max; | ||||
if (!isEmpty()) { | ||||
QVector<qreal> layout = calculateLayout(); | ||||
updateLayout(layout); | ||||
} | ||||
} | ||||
Michal Klocek
|
r497 | } | ||
Michal Klocek
|
r1006 | void ChartAxis::handleAxisUpdated() | ||
Michal Klocek
|
r439 | { | ||
Michal Klocek
|
r1698 | if(isEmpty()) return; | ||
Michal Klocek
|
r439 | |||
Michal Klocek
|
r1617 | |||
Michal Klocek
|
r1729 | bool visible = m_chartAxis->isVisible(); | ||
Michal Klocek
|
r1617 | |||
Michal Klocek
|
r1729 | setArrowVisibility(visible && m_chartAxis->isArrowVisible()); | ||
setGridVisibility(visible && m_chartAxis->isGridLineVisible()); | ||||
setLabelsVisibility(visible && m_chartAxis->labelsVisible()); | ||||
setShadesVisibility(visible && m_chartAxis->shadesVisible()); | ||||
Michal Klocek
|
r439 | setLabelsAngle(m_chartAxis->labelsAngle()); | ||
Michal Klocek
|
r1729 | setArrowPen(m_chartAxis->axisPen()); | ||
Michal Klocek
|
r439 | 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
|
r1729 | void ChartAxis::hide() | ||
{ | ||||
setArrowVisibility(false); | ||||
setGridVisibility(false); | ||||
setLabelsVisibility(false); | ||||
setShadesVisibility(false); | ||||
} | ||||
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
|
r1534 | |||
qreal ChartAxis::minimumWidth() | ||||
{ | ||||
if(m_minWidth == 0) updateGeometry(); | ||||
return m_minWidth; | ||||
} | ||||
qreal ChartAxis::minimumHeight() | ||||
{ | ||||
if(m_minHeight == 0) updateGeometry(); | ||||
return m_minHeight; | ||||
} | ||||
Michal Klocek
|
r1006 | void ChartAxis::axisSelected() | ||
Michal Klocek
|
r452 | { | ||
Michal Klocek
|
r963 | qDebug()<<"TODO: axis clicked"; | ||
Michal Klocek
|
r439 | } | ||
Michal Klocek
|
r1577 | |||
void ChartAxis::createNumberLabels(QStringList &labels,qreal min, qreal max, int ticks) const | ||||
{ | ||||
Q_ASSERT(max>min); | ||||
Q_ASSERT(ticks>1); | ||||
Michal Klocek
|
r1720 | int n = qMax(int(-qFloor(log10((max-min)/(ticks-1)))),0); | ||
Michal Klocek
|
r1577 | n++; | ||
for (int i=0; i< ticks; i++) { | ||||
qreal value = min + (i * (max - min)/ (ticks-1)); | ||||
labels << QString::number(value,'f',n); | ||||
} | ||||
} | ||||
Michal Klocek
|
r1006 | #include "moc_chartaxis_p.cpp" | ||
Michal Klocek
|
r67 | |||
QTCOMMERCIALCHART_END_NAMESPACE | ||||