qabstractaxis.cpp
1014 lines
| 23.8 KiB
| text/x-c
|
CppLexer
Michal Klocek
|
r1540 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
Michal Klocek
|
r1540 | ** 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 "qabstractaxis.h" | ||||
#include "qabstractaxis_p.h" | ||||
Michal Klocek
|
r2273 | #include "chartdataset_p.h" | ||
#include "charttheme_p.h" | ||||
Miikka Heikkinen
|
r2516 | #include "qchart_p.h" | ||
Michal Klocek
|
r1540 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
/*! | ||||
\class QAbstractAxis | ||||
\brief The QAbstractAxis class is used for manipulating chart's axis. | ||||
\mainclass | ||||
Miikka Heikkinen
|
r2494 | Each series can be bound to one or more horizontal and vertical axes, but mixing axis types | ||
that would result in different domains is not supported, such as specifying | ||||
QValueAxis and QLogValueAxis on the same orientation. | ||||
Properties and visibility of various axis elements such as axis line, title, labels, grid lines, | ||||
and shades can be individually controlled. | ||||
Michal Klocek
|
r1540 | */ | ||
/*! | ||||
sauimone
|
r1639 | \qmlclass AbstractAxis QAbstractAxis | ||
Miikka Heikkinen
|
r2520 | \brief The AbstractAxis is a base element used for specialized axis elements. | ||
Michal Klocek
|
r1540 | |||
Miikka Heikkinen
|
r2494 | Each series can be bound to only one horizontal and vertical axis. | ||
Michal Klocek
|
r1540 | |||
Miikka Heikkinen
|
r2494 | Properties and visibility of various axis elements such as axis line, title, labels, grid lines, | ||
and shades can be individually controlled. | ||||
Michal Klocek
|
r1540 | */ | ||
Marek Rosa
|
r1548 | /*! | ||
\enum QAbstractAxis::AxisType | ||||
The type of the series object. | ||||
sauimone
|
r1618 | \value AxisTypeNoAxis | ||
Marek Rosa
|
r1818 | \value AxisTypeValue | ||
Marek Rosa
|
r1822 | \value AxisTypeBarCategory | ||
\value AxisTypeCategory | ||||
Marek Rosa
|
r1733 | \value AxisTypeDateTime | ||
Marek Rosa
|
r2339 | \value AxisTypeLogValue | ||
Marek Rosa
|
r1548 | */ | ||
Marek Rosa
|
r1637 | /*! | ||
*\fn void QAbstractAxis::type() const | ||||
Returns the type of the axis | ||||
*/ | ||||
sauimone
|
r1621 | /*! | ||
Marek Rosa
|
r1848 | \property QAbstractAxis::lineVisible | ||
The visibility of the axis line | ||||
sauimone
|
r1621 | */ | ||
/*! | ||||
Marek Rosa
|
r1848 | \qmlproperty bool AbstractAxis::lineVisible | ||
The visibility of the axis line | ||||
Marek Rosa
|
r1548 | */ | ||
Tero Ahola
|
r2361 | /*! | ||
\property QAbstractAxis::linePen | ||||
The pen of the line. | ||||
*/ | ||||
Michal Klocek
|
r1540 | /*! | ||
\property QAbstractAxis::labelsVisible | ||||
Defines if axis labels are visible. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty bool AbstractAxis::labelsVisible | ||
Michal Klocek
|
r1540 | Defines if axis labels are visible. | ||
*/ | ||||
Tero Ahola
|
r2361 | /*! | ||
\property QAbstractAxis::labelsPen | ||||
Miikka Heikkinen
|
r2539 | \deprecated | ||
Tero Ahola
|
r2361 | The pen of the labels. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::labelsBrush | ||||
Miikka Heikkinen
|
r2539 | The brush of the labels. Only the color of the brush is relevant. | ||
Tero Ahola
|
r2361 | */ | ||
Michal Klocek
|
r1540 | /*! | ||
\property QAbstractAxis::visible | ||||
The visibility of the axis. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty bool AbstractAxis::visible | ||
Michal Klocek
|
r1540 | The visibility of the axis. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::gridVisible | ||||
The visibility of the grid lines. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty bool AbstractAxis::gridVisible | ||
Michal Klocek
|
r1540 | The visibility of the grid lines. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::color | ||||
The color of the axis and ticks. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty color AbstractAxis::color | ||
Michal Klocek
|
r1540 | The color of the axis and ticks. | ||
*/ | ||||
Tero Ahola
|
r2361 | /*! | ||
\property QAbstractAxis::gridLinePen | ||||
The pen of the grid line. | ||||
*/ | ||||
Michal Klocek
|
r1540 | /*! | ||
sauimone
|
r1575 | \property QAbstractAxis::labelsFont | ||
Michal Klocek
|
r1540 | The font of the axis labels. | ||
*/ | ||||
sauimone
|
r1575 | |||
Michal Klocek
|
r1540 | /*! | ||
sauimone
|
r1639 | \qmlproperty Font AbstractAxis::labelsFont | ||
Michal Klocek
|
r1540 | The font of the axis labels. | ||
See the \l {Font} {QML Font Element} for detailed documentation. | ||||
*/ | ||||
/*! | ||||
\property QAbstractAxis::labelsColor | ||||
The color of the axis labels. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty color AbstractAxis::labelsColor | ||
Michal Klocek
|
r1540 | The color of the axis labels. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::labelsAngle | ||||
The angle of the axis labels in degrees. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty int AbstractAxis::labelsAngle | ||
Michal Klocek
|
r1540 | The angle of the axis labels in degrees. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::shadesVisible | ||||
The visibility of the axis shades. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty bool AbstractAxis::shadesVisible | ||
Michal Klocek
|
r1540 | The visibility of the axis shades. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::shadesColor | ||||
The fill (brush) color of the axis shades. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty color AbstractAxis::shadesColor | ||
Michal Klocek
|
r1540 | The fill (brush) color of the axis shades. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::shadesBorderColor | ||||
The border (pen) color of the axis shades. | ||||
*/ | ||||
/*! | ||||
sauimone
|
r1639 | \qmlproperty color AbstractAxis::shadesBorderColor | ||
Michal Klocek
|
r1540 | The border (pen) color of the axis shades. | ||
*/ | ||||
Tero Ahola
|
r2361 | /*! | ||
\property QAbstractAxis::shadesPen | ||||
The pen of the axis shades (area between grid lines). | ||||
*/ | ||||
/*! | ||||
\property QAbstractAxis::shadesBrush | ||||
The brush of the axis shades (area between grid lines). | ||||
*/ | ||||
Tero Ahola
|
r2265 | /*! | ||
\property QAbstractAxis::titleVisible | ||||
The visibility of the axis title. By default the value is true. | ||||
*/ | ||||
/*! | ||||
\qmlproperty bool AbstractAxis::titleVisible | ||||
The visibility of the axis title. By default the value is true. | ||||
*/ | ||||
Tero Ahola
|
r2361 | /*! | ||
\property QAbstractAxis::titleText | ||||
Miikka Heikkinen
|
r2539 | The title of the axis. Empty by default. Axis titles support html formatting. | ||
Tero Ahola
|
r2361 | */ | ||
/*! | ||||
\qmlproperty String AbstractAxis::titleText | ||||
Miikka Heikkinen
|
r2539 | The title of the axis. Empty by default. Axis titles support html formatting. | ||
Tero Ahola
|
r2361 | */ | ||
/*! | ||||
\property QAbstractAxis::titlePen | ||||
Miikka Heikkinen
|
r2539 | \deprecated | ||
Tero Ahola
|
r2361 | The pen of the title text. | ||
*/ | ||||
/*! | ||||
\property QAbstractAxis::titleBrush | ||||
Miikka Heikkinen
|
r2539 | The brush of the title text. Only the color of the brush is relevant. | ||
Tero Ahola
|
r2361 | */ | ||
Tero Ahola
|
r2265 | /*! | ||
\property QAbstractAxis::titleFont | ||||
The font of the title of the axis. | ||||
*/ | ||||
/*! | ||||
Tero Ahola
|
r2361 | \qmlproperty Font AbstractAxis::titleFont | ||
Tero Ahola
|
r2265 | The font of the title of the axis. | ||
*/ | ||||
/*! | ||||
Tero Ahola
|
r2361 | \property QAbstractAxis::orientation | ||
The orientation of the axis. Fixed to either Qt::Horizontal or Qt::Vertical when you add the axis to a chart. | ||||
Tero Ahola
|
r2265 | */ | ||
/*! | ||||
Tero Ahola
|
r2361 | \qmlproperty Qt.Orientation AbstractAxis::orientation | ||
Miikka Heikkinen
|
r2494 | The orientation of the axis. Fixed to either Qt.Horizontal or Qt.Vertical when the axis is set to a series. | ||
Tero Ahola
|
r2265 | */ | ||
/*! | ||||
\property QAbstractAxis::alignment | ||||
Miikka Heikkinen
|
r2483 | The alignment of the axis. Can be Qt::AlignLeft, Qt::AlignRight, Qt::AlignBottom, or Qt::AlignTop. | ||
Tero Ahola
|
r2265 | */ | ||
/*! | ||||
\qmlproperty alignment AbstractAxis::alignment | ||||
Miikka Heikkinen
|
r2483 | The alignment of the axis. Can be Qt.AlignLeft, Qt.AlignRight, Qt.AlignBottom, or Qt.AlignTop. | ||
Tero Ahola
|
r2265 | */ | ||
Michal Klocek
|
r1540 | /*! | ||
sauimone
|
r1654 | \fn void QAbstractAxis::visibleChanged(bool visible) | ||
Jani Honkonen
|
r1932 | Visibility of the axis has changed to \a visible. | ||
Michal Klocek
|
r1540 | */ | ||
/*! | ||||
sauimone
|
r1654 | \qmlsignal AbstractAxis::onVisibleChanged(bool visible) | ||
Jani Honkonen
|
r1932 | Visibility of the axis has changed to \a visible. | ||
Michal Klocek
|
r1540 | */ | ||
Tero Ahola
|
r2361 | /*! | ||
\fn void QAbstractAxis::linePenChanged(const QPen& pen) | ||||
The pen of the line of the axis has changed to \a pen. | ||||
*/ | ||||
Michal Klocek
|
r1540 | /*! | ||
Marek Rosa
|
r1848 | \fn void QAbstractAxis::lineVisibleChanged(bool visible) | ||
Jani Honkonen
|
r1932 | Visibility of the axis line has changed to \a visible. | ||
Michal Klocek
|
r1540 | */ | ||
sauimone
|
r1654 | /*! | ||
Marek Rosa
|
r1848 | \qmlsignal AbstractAxis::onLineVisibleChanged(bool visible) | ||
Jani Honkonen
|
r1932 | Visibility of the axis line has changed to \a visible. | ||
Michal Klocek
|
r1540 | */ | ||
sauimone
|
r1654 | /*! | ||
\fn void QAbstractAxis::labelsVisibleChanged(bool visible) | ||||
Jani Honkonen
|
r1932 | Visibility of the labels of the axis has changed to \a visible. | ||
Michal Klocek
|
r1540 | */ | ||
sauimone
|
r1654 | /*! | ||
\qmlsignal AbstractAxis::onLabelsVisibleChanged(bool visible) | ||||
Jani Honkonen
|
r1932 | Visibility of the labels of the axis has changed to \a visible. | ||
Michal Klocek
|
r1540 | */ | ||
Tero Ahola
|
r2361 | /*! | ||
\fn void QAbstractAxis::labelsFontChanged(const QFont& font) | ||||
The font of the axis labels has changed to \a font. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onLabelsFontChanged(Font font) | ||||
The font of the axis labels has changed to \a font. | ||||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::labelsPenChanged(const QPen& pen) | ||||
Miikka Heikkinen
|
r2539 | \deprecated | ||
Tero Ahola
|
r2361 | The pen of the axis labels has changed to \a pen. | ||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::labelsBrushChanged(const QBrush& brush) | ||||
The brush of the axis labels has changed to \a brush. | ||||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::labelsAngleChanged(int angle) | ||||
The angle of the axis labels has changed to \a angle. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onLabelsAngleChanged(int angle) | ||||
The angle of the axis labels has changed to \a angle. | ||||
*/ | ||||
sauimone
|
r1654 | /*! | ||
\fn void QAbstractAxis::gridVisibleChanged(bool visible) | ||||
Jani Honkonen
|
r1932 | Visibility of the grid lines of the axis has changed to \a visible. | ||
sauimone
|
r1654 | */ | ||
/*! | ||||
\qmlsignal AbstractAxis::onGridVisibleChanged(bool visible) | ||||
Jani Honkonen
|
r1932 | Visibility of the grid lines of the axis has changed to \a visible. | ||
Michal Klocek
|
r1540 | */ | ||
Tero Ahola
|
r2361 | /*! | ||
\fn void QAbstractAxis::gridLinePenChanged(const QPen& pen) | ||||
The pen of the grid line has changed to \a pen. | ||||
*/ | ||||
Michal Klocek
|
r1540 | /*! | ||
sauimone
|
r1654 | \fn void QAbstractAxis::colorChanged(QColor color) | ||
Emitted if the \a color of the axis is changed. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onColorChanged(QColor color) | ||||
Michal Klocek
|
r1540 | Emitted if the \a color of the axis is changed. | ||
*/ | ||||
/*! | ||||
sauimone
|
r1654 | \fn void QAbstractAxis::labelsColorChanged(QColor color) | ||
Emitted if the \a color of the axis labels is changed. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onLabelsColorChanged(QColor color) | ||||
Michal Klocek
|
r1540 | Emitted if the \a color of the axis labels is changed. | ||
*/ | ||||
Tero Ahola
|
r2361 | /*! | ||
\fn void QAbstractAxis::titleVisibleChanged(bool visible) | ||||
Visibility of the title text of the axis has changed to \a visible. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onTitleVisibleChanged(bool visible) | ||||
Visibility of the title text of the axis has changed to \a visible. | ||||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::titleTextChanged(const QString& text) | ||||
The text of the axis title has changed to \a text. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onTitleTextChanged(String text) | ||||
The text of the axis title has changed to \a text. | ||||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::titlePenChanged(const QPen& pen) | ||||
Miikka Heikkinen
|
r2539 | \deprecated | ||
Tero Ahola
|
r2361 | The pen of the axis shades has changed to \a pen. | ||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::titleBrushChanged(const QBrush& brush) | ||||
The brush of the axis title has changed to \a brush. | ||||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::titleFontChanged(const QFont& font) | ||||
The font of the axis title has changed to \a font. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onTitleFontChanged(Font font) | ||||
The font of the axis title has changed to \a font. | ||||
*/ | ||||
Michal Klocek
|
r1540 | /*! | ||
\fn void QAbstractAxis::shadesVisibleChanged(bool) | ||||
Emitted if the visibility of the axis shades is changed to \a visible. | ||||
*/ | ||||
sauimone
|
r1654 | /*! | ||
\qmlsignal AbstractAxis::onShadesVisibleChanged(bool visible) | ||||
Emitted if the visibility of the axis shades is changed to \a visible. | ||||
*/ | ||||
Michal Klocek
|
r1540 | |||
/*! | ||||
sauimone
|
r1654 | \fn void QAbstractAxis::shadesColorChanged(QColor color) | ||
Emitted if the \a color of the axis shades is changed. | ||||
*/ | ||||
/*! | ||||
\qmlsignal AbstractAxis::onShadesColorChanged(QColor color) | ||||
Michal Klocek
|
r1540 | Emitted if the \a color of the axis shades is changed. | ||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::shadesBorderColorChanged(QColor) | ||||
Emitted if the border \a color of the axis shades is changed. | ||||
*/ | ||||
sauimone
|
r1654 | /*! | ||
\qmlsignal AbstractAxis::onBorderColorChanged(QColor color) | ||||
Emitted if the border \a color of the axis shades is changed. | ||||
*/ | ||||
Michal Klocek
|
r1540 | |||
Tero Ahola
|
r2361 | /*! | ||
\fn void QAbstractAxis::shadesBrushChanged(const QBrush& brush) | ||||
The brush of the axis shades has changed to \a brush. | ||||
*/ | ||||
/*! | ||||
\fn void QAbstractAxis::shadesPenChanged(const QPen& pen) | ||||
The pen of the axis shades has changed to \a pen. | ||||
*/ | ||||
Michal Klocek
|
r1540 | /*! | ||
Marek Rosa
|
r1657 | \internal | ||
Michal Klocek
|
r1540 | Constructs new axis object which is a child of \a parent. Ownership is taken by | ||
QChart when axis added. | ||||
*/ | ||||
Jani Honkonen
|
r2131 | QAbstractAxis::QAbstractAxis(QAbstractAxisPrivate &d, QObject *parent) | ||
: QObject(parent), | ||||
d_ptr(&d) | ||||
Michal Klocek
|
r1540 | { | ||
} | ||||
/*! | ||||
Destructor of the axis object. When axis is added to chart, chart object takes ownership. | ||||
*/ | ||||
QAbstractAxis::~QAbstractAxis() | ||||
{ | ||||
Michal Klocek
|
r2273 | if (d_ptr->m_chart) | ||
Jani Honkonen
|
r2131 | qFatal("Still binded axis detected !"); | ||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Sets \a pen used to draw axis line and ticks. | ||||
*/ | ||||
Marek Rosa
|
r1844 | void QAbstractAxis::setLinePen(const QPen &pen) | ||
Michal Klocek
|
r1540 | { | ||
Jani Honkonen
|
r2131 | if (d_ptr->m_axisPen != pen) { | ||
d_ptr->m_axisPen = pen; | ||||
Michal Klocek
|
r2273 | emit linePenChanged(pen); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Returns pen used to draw axis and ticks. | ||||
*/ | ||||
Marek Rosa
|
r1844 | QPen QAbstractAxis::linePen() const | ||
Michal Klocek
|
r1540 | { | ||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_axisPen == QChartPrivate::defaultPen()) | ||
return QPen(); | ||||
else | ||||
return d_ptr->m_axisPen; | ||||
Michal Klocek
|
r1540 | } | ||
Miikka Heikkinen
|
r2477 | //TODO: remove me 2.0 | ||
Marek Rosa
|
r1844 | void QAbstractAxis::setLinePenColor(QColor color) | ||
Michal Klocek
|
r1540 | { | ||
QPen p = d_ptr->m_axisPen; | ||||
if (p.color() != color) { | ||||
p.setColor(color); | ||||
Marek Rosa
|
r1844 | setLinePen(p); | ||
Michal Klocek
|
r1540 | emit colorChanged(color); | ||
} | ||||
} | ||||
Marek Rosa
|
r1844 | QColor QAbstractAxis::linePenColor() const | ||
Michal Klocek
|
r1540 | { | ||
Miikka Heikkinen
|
r2519 | return linePen().color(); | ||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Sets if axis and ticks are \a visible. | ||||
*/ | ||||
Marek Rosa
|
r1844 | void QAbstractAxis::setLineVisible(bool visible) | ||
Michal Klocek
|
r1540 | { | ||
sauimone
|
r1654 | if (d_ptr->m_arrowVisible != visible) { | ||
d_ptr->m_arrowVisible = visible; | ||||
Marek Rosa
|
r1844 | emit lineVisibleChanged(visible); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
Marek Rosa
|
r1844 | bool QAbstractAxis::isLineVisible() const | ||
Michal Klocek
|
r1540 | { | ||
sauimone
|
r1654 | return d_ptr->m_arrowVisible; | ||
Michal Klocek
|
r1540 | } | ||
void QAbstractAxis::setGridLineVisible(bool visible) | ||||
{ | ||||
if (d_ptr->m_gridLineVisible != visible) { | ||||
d_ptr->m_gridLineVisible = visible; | ||||
Jani Honkonen
|
r2282 | emit gridVisibleChanged(visible); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
bool QAbstractAxis::isGridLineVisible() const | ||||
{ | ||||
return d_ptr->m_gridLineVisible; | ||||
} | ||||
/*! | ||||
Sets \a pen used to draw grid line. | ||||
*/ | ||||
void QAbstractAxis::setGridLinePen(const QPen &pen) | ||||
{ | ||||
if (d_ptr->m_gridLinePen != pen) { | ||||
d_ptr->m_gridLinePen = pen; | ||||
Michal Klocek
|
r2273 | emit gridLinePenChanged(pen); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Returns pen used to draw grid. | ||||
*/ | ||||
QPen QAbstractAxis::gridLinePen() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_gridLinePen == QChartPrivate::defaultPen()) | ||
return QPen(); | ||||
else | ||||
return d_ptr->m_gridLinePen; | ||||
Michal Klocek
|
r1540 | } | ||
void QAbstractAxis::setLabelsVisible(bool visible) | ||||
{ | ||||
if (d_ptr->m_labelsVisible != visible) { | ||||
d_ptr->m_labelsVisible = visible; | ||||
emit labelsVisibleChanged(visible); | ||||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
bool QAbstractAxis::labelsVisible() const | ||||
{ | ||||
return d_ptr->m_labelsVisible; | ||||
} | ||||
void QAbstractAxis::setLabelsPen(const QPen &pen) | ||||
{ | ||||
if (d_ptr->m_labelsPen != pen) { | ||||
d_ptr->m_labelsPen = pen; | ||||
Michal Klocek
|
r2273 | emit labelsPenChanged(pen); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
QPen QAbstractAxis::labelsPen() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_labelsPen == QChartPrivate::defaultPen()) | ||
return QPen(); | ||||
else | ||||
return d_ptr->m_labelsPen; | ||||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Sets \a brush used to draw labels. | ||||
*/ | ||||
void QAbstractAxis::setLabelsBrush(const QBrush &brush) | ||||
{ | ||||
if (d_ptr->m_labelsBrush != brush) { | ||||
d_ptr->m_labelsBrush = brush; | ||||
Michal Klocek
|
r2273 | emit labelsBrushChanged(brush); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Returns brush used to draw labels. | ||||
*/ | ||||
QBrush QAbstractAxis::labelsBrush() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_labelsBrush == QChartPrivate::defaultBrush()) | ||
return QBrush(); | ||||
else | ||||
return d_ptr->m_labelsBrush; | ||||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Sets \a font used to draw labels. | ||||
*/ | ||||
void QAbstractAxis::setLabelsFont(const QFont &font) | ||||
{ | ||||
if (d_ptr->m_labelsFont != font) { | ||||
d_ptr->m_labelsFont = font; | ||||
Michal Klocek
|
r2273 | emit labelsFontChanged(font); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Returns font used to draw labels. | ||||
*/ | ||||
QFont QAbstractAxis::labelsFont() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_labelsFont == QChartPrivate::defaultFont()) | ||
return QFont(); | ||||
else | ||||
return d_ptr->m_labelsFont; | ||||
Michal Klocek
|
r1540 | } | ||
void QAbstractAxis::setLabelsAngle(int angle) | ||||
{ | ||||
if (d_ptr->m_labelsAngle != angle) { | ||||
d_ptr->m_labelsAngle = angle; | ||||
Michal Klocek
|
r2273 | emit labelsAngleChanged(angle); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
int QAbstractAxis::labelsAngle() const | ||||
{ | ||||
return d_ptr->m_labelsAngle; | ||||
} | ||||
Miikka Heikkinen
|
r2477 | //TODO: remove me 2.0 | ||
Michal Klocek
|
r1540 | void QAbstractAxis::setLabelsColor(QColor color) | ||
{ | ||||
QBrush b = d_ptr->m_labelsBrush; | ||||
if (b.color() != color) { | ||||
b.setColor(color); | ||||
setLabelsBrush(b); | ||||
emit labelsColorChanged(color); | ||||
} | ||||
} | ||||
QColor QAbstractAxis::labelsColor() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | return labelsBrush().color(); | ||
Michal Klocek
|
r1540 | } | ||
Michal Klocek
|
r1965 | void QAbstractAxis::setTitleVisible(bool visible) | ||
{ | ||||
if (d_ptr->m_titleVisible != visible) { | ||||
d_ptr->m_titleVisible = visible; | ||||
Michal Klocek
|
r2297 | emit titleVisibleChanged(visible); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1965 | } | ||
Michal Klocek
|
r2297 | bool QAbstractAxis::isTitleVisible() const | ||
Michal Klocek
|
r1965 | { | ||
return d_ptr->m_titleVisible; | ||||
} | ||||
void QAbstractAxis::setTitlePen(const QPen &pen) | ||||
{ | ||||
if (d_ptr->m_titlePen != pen) { | ||||
d_ptr->m_titlePen = pen; | ||||
Michal Klocek
|
r2273 | emit titlePenChanged(pen); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1965 | } | ||
QPen QAbstractAxis::titlePen() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_titlePen == QChartPrivate::defaultPen()) | ||
return QPen(); | ||||
else | ||||
return d_ptr->m_titlePen; | ||||
Michal Klocek
|
r1965 | } | ||
/*! | ||||
Sets \a brush used to draw title. | ||||
*/ | ||||
void QAbstractAxis::setTitleBrush(const QBrush &brush) | ||||
{ | ||||
if (d_ptr->m_titleBrush != brush) { | ||||
d_ptr->m_titleBrush = brush; | ||||
Michal Klocek
|
r2273 | emit titleBrushChanged(brush); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1965 | } | ||
/*! | ||||
Returns brush used to draw title. | ||||
*/ | ||||
Miikka Heikkinen
|
r2519 | QBrush QAbstractAxis::titleBrush() const | ||
Michal Klocek
|
r1965 | { | ||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_titleBrush == QChartPrivate::defaultBrush()) | ||
return QBrush(); | ||||
else | ||||
return d_ptr->m_titleBrush; | ||||
Michal Klocek
|
r1965 | } | ||
/*! | ||||
Sets \a font used to draw title. | ||||
*/ | ||||
void QAbstractAxis::setTitleFont(const QFont &font) | ||||
{ | ||||
if (d_ptr->m_titleFont != font) { | ||||
d_ptr->m_titleFont = font; | ||||
Michal Klocek
|
r2273 | emit titleFontChanged(font); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1965 | } | ||
/*! | ||||
Returns font used to draw title. | ||||
*/ | ||||
QFont QAbstractAxis::titleFont() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_titleFont == QChartPrivate::defaultFont()) | ||
return QFont(); | ||||
else | ||||
return d_ptr->m_titleFont; | ||||
Michal Klocek
|
r1965 | } | ||
Michal Klocek
|
r2273 | void QAbstractAxis::setTitleText(const QString &title) | ||
Michal Klocek
|
r1965 | { | ||
Jani Honkonen
|
r2131 | if (d_ptr->m_title != title) { | ||
d_ptr->m_title = title; | ||||
Michal Klocek
|
r2273 | emit titleTextChanged(title); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1965 | } | ||
Michal Klocek
|
r2273 | QString QAbstractAxis::titleText() const | ||
Michal Klocek
|
r1965 | { | ||
Jani Honkonen
|
r2131 | return d_ptr->m_title; | ||
Michal Klocek
|
r1965 | } | ||
Michal Klocek
|
r1540 | void QAbstractAxis::setShadesVisible(bool visible) | ||
{ | ||||
if (d_ptr->m_shadesVisible != visible) { | ||||
d_ptr->m_shadesVisible = visible; | ||||
emit shadesVisibleChanged(visible); | ||||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
bool QAbstractAxis::shadesVisible() const | ||||
{ | ||||
return d_ptr->m_shadesVisible; | ||||
} | ||||
/*! | ||||
Sets \a pen used to draw shades. | ||||
*/ | ||||
void QAbstractAxis::setShadesPen(const QPen &pen) | ||||
{ | ||||
if (d_ptr->m_shadesPen != pen) { | ||||
d_ptr->m_shadesPen = pen; | ||||
Michal Klocek
|
r2273 | emit shadesPenChanged(pen); | ||
Jani Honkonen
|
r2131 | } | ||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Returns pen used to draw shades. | ||||
*/ | ||||
QPen QAbstractAxis::shadesPen() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_shadesPen == QChartPrivate::defaultPen()) | ||
return QPen(); | ||||
else | ||||
return d_ptr->m_shadesPen; | ||||
Michal Klocek
|
r1540 | } | ||
/*! | ||||
Sets \a brush used to draw shades. | ||||
*/ | ||||
void QAbstractAxis::setShadesBrush(const QBrush &brush) | ||||
{ | ||||
if (d_ptr->m_shadesBrush != brush) { | ||||
d_ptr->m_shadesBrush = brush; | ||||
Michal Klocek
|
r2273 | emit shadesBrushChanged(brush); | ||
Michal Klocek
|
r1540 | } | ||
} | ||||
/*! | ||||
Returns brush used to draw shades. | ||||
*/ | ||||
QBrush QAbstractAxis::shadesBrush() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | if (d_ptr->m_shadesBrush == QChartPrivate::defaultBrush()) | ||
return QBrush(Qt::SolidPattern); | ||||
else | ||||
return d_ptr->m_shadesBrush; | ||||
Michal Klocek
|
r1540 | } | ||
void QAbstractAxis::setShadesColor(QColor color) | ||||
{ | ||||
QBrush b = d_ptr->m_shadesBrush; | ||||
Michal Klocek
|
r2273 | if (b.color() != color) { | ||
b.setColor(color); | ||||
setShadesBrush(b); | ||||
emit shadesColorChanged(color); | ||||
} | ||||
Michal Klocek
|
r1540 | } | ||
QColor QAbstractAxis::shadesColor() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | return shadesBrush().color(); | ||
Michal Klocek
|
r1540 | } | ||
void QAbstractAxis::setShadesBorderColor(QColor color) | ||||
{ | ||||
Michal Klocek
|
r2273 | QPen p = d_ptr->m_shadesPen; | ||
if (p.color() != color) { | ||||
p.setColor(color); | ||||
setShadesPen(p); | ||||
emit shadesColorChanged(color); | ||||
} | ||||
Michal Klocek
|
r1540 | } | ||
QColor QAbstractAxis::shadesBorderColor() const | ||||
{ | ||||
Miikka Heikkinen
|
r2519 | return shadesPen().color(); | ||
Michal Klocek
|
r1540 | } | ||
Michal Klocek
|
r1617 | bool QAbstractAxis::isVisible() const | ||
{ | ||||
return d_ptr->m_visible; | ||||
} | ||||
Michal Klocek
|
r1540 | /*! | ||
Sets axis, shades, labels and grid lines to be visible. | ||||
*/ | ||||
Michal Klocek
|
r1617 | void QAbstractAxis::setVisible(bool visible) | ||
Michal Klocek
|
r1540 | { | ||
Jani Honkonen
|
r2131 | if (d_ptr->m_visible != visible) { | ||
d_ptr->m_visible = visible; | ||||
Michal Klocek
|
r1626 | emit visibleChanged(visible); | ||
} | ||||
Michal Klocek
|
r1540 | } | ||
Michal Klocek
|
r1617 | |||
/*! | ||||
Sets axis, shades, labels and grid lines to be visible. | ||||
*/ | ||||
void QAbstractAxis::show() | ||||
{ | ||||
setVisible(true); | ||||
} | ||||
Michal Klocek
|
r1540 | /*! | ||
Sets axis, shades, labels and grid lines to not be visible. | ||||
*/ | ||||
void QAbstractAxis::hide() | ||||
{ | ||||
Michal Klocek
|
r1617 | setVisible(false); | ||
Michal Klocek
|
r1540 | } | ||
Marek Rosa
|
r1635 | /*! | ||
Sets the minimum value shown on the axis. | ||||
Jani Honkonen
|
r1935 | Depending on the actual axis type the \a min parameter is converted to appropriate type. | ||
Marek Rosa
|
r1635 | If the conversion is impossible then the function call does nothing | ||
*/ | ||||
sauimone
|
r1578 | void QAbstractAxis::setMin(const QVariant &min) | ||
Michal Klocek
|
r1544 | { | ||
d_ptr->setMin(min); | ||||
} | ||||
Marek Rosa
|
r1635 | |||
/*! | ||||
Sets the maximum value shown on the axis. | ||||
Jani Honkonen
|
r1935 | Depending on the actual axis type the \a max parameter is converted to appropriate type. | ||
Marek Rosa
|
r1635 | If the conversion is impossible then the function call does nothing | ||
*/ | ||||
sauimone
|
r1578 | void QAbstractAxis::setMax(const QVariant &max) | ||
Michal Klocek
|
r1544 | { | ||
d_ptr->setMax(max); | ||||
} | ||||
Marek Rosa
|
r1635 | |||
/*! | ||||
Sets the range shown on the axis. | ||||
Jani Honkonen
|
r1935 | Depending on the actual axis type the \a min and \a max parameters are converted to appropriate types. | ||
Marek Rosa
|
r1635 | If the conversion is impossible then the function call does nothing. | ||
*/ | ||||
sauimone
|
r1578 | void QAbstractAxis::setRange(const QVariant &min, const QVariant &max) | ||
Michal Klocek
|
r1544 | { | ||
Jani Honkonen
|
r2131 | d_ptr->setRange(min, max); | ||
Michal Klocek
|
r1544 | } | ||
Michal Klocek
|
r1695 | |||
Marek Rosa
|
r1743 | /*! | ||
Returns the orientation in which the axis is being used (Vertical or Horizontal) | ||||
*/ | ||||
Miikka Heikkinen
|
r2477 | // NOTE: should have const but it breaks BC: | ||
// http://techbase.kde.org/Policies/Binary_Compatibility_Examples#Change_the_CV-qualifiers_of_a_member_function | ||||
Jani Honkonen
|
r2271 | Qt::Orientation QAbstractAxis::orientation() | ||
Michal Klocek
|
r1695 | { | ||
Michal Klocek
|
r2273 | return d_ptr->orientation(); | ||
Michal Klocek
|
r1695 | } | ||
Michal Klocek
|
r2105 | Qt::Alignment QAbstractAxis::alignment() const | ||
Marek Rosa
|
r2093 | { | ||
Michal Klocek
|
r2273 | return d_ptr->alignment(); | ||
Marek Rosa
|
r2093 | } | ||
Michal Klocek
|
r1540 | ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
Jani Honkonen
|
r2131 | QAbstractAxisPrivate::QAbstractAxisPrivate(QAbstractAxis *q) | ||
: q_ptr(q), | ||||
Michal Klocek
|
r2273 | m_chart(0), | ||
Jani Honkonen
|
r2131 | m_alignment(0), | ||
Marek Rosa
|
r2318 | m_orientation(Qt::Orientation(0)), | ||
Jani Honkonen
|
r2131 | m_visible(true), | ||
m_arrowVisible(true), | ||||
Miikka Heikkinen
|
r2516 | m_axisPen(QChartPrivate::defaultPen()), | ||
m_axisBrush(QChartPrivate::defaultBrush()), | ||||
Jani Honkonen
|
r2131 | m_gridLineVisible(true), | ||
Miikka Heikkinen
|
r2516 | m_gridLinePen(QChartPrivate::defaultPen()), | ||
Jani Honkonen
|
r2131 | m_labelsVisible(true), | ||
Miikka Heikkinen
|
r2516 | m_labelsPen(QChartPrivate::defaultPen()), | ||
m_labelsBrush(QChartPrivate::defaultBrush()), | ||||
m_labelsFont(QChartPrivate::defaultFont()), | ||||
Jani Honkonen
|
r2131 | m_labelsAngle(0), | ||
Marek Rosa
|
r2345 | m_titleVisible(true), | ||
Miikka Heikkinen
|
r2516 | m_titlePen(QChartPrivate::defaultPen()), | ||
m_titleBrush(QChartPrivate::defaultBrush()), | ||||
m_titleFont(QChartPrivate::defaultFont()), | ||||
Jani Honkonen
|
r2131 | m_shadesVisible(false), | ||
Miikka Heikkinen
|
r2516 | m_shadesPen(QChartPrivate::defaultPen()), | ||
Heikkinen Miikka
|
r2522 | m_shadesBrush(QChartPrivate::defaultBrush()), | ||
Jani Honkonen
|
r2131 | m_shadesOpacity(1.0), | ||
m_dirty(false) | ||||
Michal Klocek
|
r1540 | { | ||
} | ||||
QAbstractAxisPrivate::~QAbstractAxisPrivate() | ||||
{ | ||||
Michal Klocek
|
r2273 | } | ||
Michal Klocek
|
r1540 | |||
Michal Klocek
|
r2273 | void QAbstractAxisPrivate::setAlignment( Qt::Alignment alignment) | ||
{ | ||||
switch(alignment) { | ||||
case Qt::AlignTop: | ||||
case Qt::AlignBottom: | ||||
m_orientation = Qt::Horizontal; | ||||
break; | ||||
case Qt::AlignLeft: | ||||
case Qt::AlignRight: | ||||
m_orientation = Qt::Vertical; | ||||
break; | ||||
default: | ||||
qWarning()<<"No alignment specified !"; | ||||
break; | ||||
}; | ||||
m_alignment=alignment; | ||||
Michal Klocek
|
r1540 | } | ||
Michal Klocek
|
r2273 | void QAbstractAxisPrivate::initializeTheme(ChartTheme* theme, bool forced) | ||
Michal Klocek
|
r1698 | { | ||
Miikka Heikkinen
|
r2516 | //TODO: introduce axis brush | ||
if (forced || QChartPrivate::defaultPen() == m_axisPen) | ||||
q_ptr->setLinePen(theme->axisLinePen()); | ||||
if (forced || QChartPrivate::defaultPen() == m_gridLinePen) | ||||
q_ptr->setGridLinePen(theme->girdLinePen()); | ||||
if (forced || QChartPrivate::defaultBrush() == m_labelsBrush) | ||||
q_ptr->setLabelsBrush(theme->labelBrush()); | ||||
if (forced || QChartPrivate::defaultPen() == m_labelsPen) | ||||
q_ptr->setLabelsPen(Qt::NoPen); // NoPen for performance reasons | ||||
if (forced || QChartPrivate::defaultFont() == m_labelsFont) | ||||
q_ptr->setLabelsFont(theme->labelFont()); | ||||
if (forced || QChartPrivate::defaultBrush() == m_titleBrush) | ||||
q_ptr->setTitleBrush(theme->labelBrush()); | ||||
if (forced || QChartPrivate::defaultPen() == m_titlePen) | ||||
q_ptr->setTitlePen(Qt::NoPen); // NoPen for performance reasons | ||||
if (forced || QChartPrivate::defaultFont() == m_titleFont) { | ||||
QFont font(m_labelsFont); | ||||
font.setBold(true); | ||||
q_ptr->setTitleFont(font); | ||||
} | ||||
Michal Klocek
|
r2273 | |||
Miikka Heikkinen
|
r2516 | if (forced || QChartPrivate::defaultBrush() == m_shadesBrush) | ||
q_ptr->setShadesBrush(theme->backgroundShadesBrush()); | ||||
if (forced || QChartPrivate::defaultPen() == m_shadesPen) | ||||
q_ptr->setShadesPen(theme->backgroundShadesPen()); | ||||
Michal Klocek
|
r2273 | |||
Miikka Heikkinen
|
r2516 | bool axisX = m_orientation == Qt::Horizontal; | ||
if (forced && (theme->backgroundShades() == ChartTheme::BackgroundShadesBoth | ||||
|| (theme->backgroundShades() == ChartTheme::BackgroundShadesVertical && axisX) | ||||
|| (theme->backgroundShades() == ChartTheme::BackgroundShadesHorizontal && !axisX))) { | ||||
q_ptr->setShadesVisible(true); | ||||
} else if (forced) { | ||||
q_ptr->setShadesVisible(false); | ||||
Michal Klocek
|
r1698 | } | ||
} | ||||
Michal Klocek
|
r2273 | void QAbstractAxisPrivate::handleRangeChanged(qreal min, qreal max) | ||
{ | ||||
setRange(min,max); | ||||
} | ||||
void QAbstractAxisPrivate::initializeGraphics(QGraphicsItem* parent) | ||||
Michal Klocek
|
r1698 | { | ||
Michal Klocek
|
r2273 | Q_UNUSED(parent); | ||
Michal Klocek
|
r1698 | } | ||
Michal Klocek
|
r2273 | void QAbstractAxisPrivate::initializeAnimations(QChart::AnimationOptions options) | ||
Michal Klocek
|
r1698 | { | ||
Miikka Heikkinen
|
r2483 | ChartAxisElement *axis = m_item.data(); | ||
Michal Klocek
|
r2273 | Q_ASSERT(axis); | ||
Miikka Heikkinen
|
r2555 | if (axis->animation()) | ||
axis->animation()->stopAndDestroyLater(); | ||||
if (options.testFlag(QChart::GridAxisAnimations)) | ||||
Michal Klocek
|
r2273 | axis->setAnimation(new AxisAnimation(axis)); | ||
Miikka Heikkinen
|
r2555 | else | ||
Michal Klocek
|
r2273 | axis->setAnimation(0); | ||
Michal Klocek
|
r1698 | } | ||
Michal Klocek
|
r2284 | |||
Michal Klocek
|
r1540 | #include "moc_qabstractaxis.cpp" | ||
#include "moc_qabstractaxis_p.cpp" | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||