qtgraphs/src/graphs2d/axis/qabstractaxis.cpp

516 lines
12 KiB
C++
Raw Normal View History

// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtGraphs/QAbstractAxis>
#include <private/qabstractaxis_p.h>
QT_BEGIN_NAMESPACE
/*!
\class QAbstractAxis
\inmodule QtGraphs
\ingroup graphs_2D
\brief The QAbstractAxis class is a base class used for specialized axis classes.
Each series can be bound to only one horizontal and vertical axis.
The properties and visibility of various axis elements, such as axis line, title, labels,
and grid lines, can be individually controlled.
*/
/*!
\qmltype AbstractAxis
\instantiates QAbstractAxis
\inqmlmodule QtGraphs
\ingroup graphs_qml_2D
\brief A base type used for specialized axis types.
Each series can be bound to only one horizontal and vertical axis.
The properties and visibility of various axis elements, such as axis line, title, labels,
and grid lines, can be individually controlled.
*/
/*!
\enum QAbstractAxis::AxisType
This enum type specifies the type of the axis object.
\value AxisTypeNoAxis
\value AxisTypeValue
\value AxisTypeBarCategory
*/
/*!
\fn void QAbstractAxis::type() const
Returns the type of the axis.
*/
/*!
\property QAbstractAxis::visible
\brief The visibility of the axis.
By default, the value is \c true.
*/
/*!
\qmlproperty bool AbstractAxis::visible
The visibility of the axis. By default, the value is \c true.
*/
/*!
\property QAbstractAxis::lineVisible
\brief The visibility of the axis line.
By default, the value is \c true.
*/
/*!
\qmlproperty bool AbstractAxis::lineVisible
The visibility of the axis line. By default, the value is \c true.
*/
/*!
\property QAbstractAxis::labelsVisible
\brief Whether axis labels are visible.
By default, the value is \c true.
*/
/*!
\qmlproperty bool AbstractAxis::labelsVisible
The visibility of axis labels. By default, the value is \c true.
*/
/*!
\property QAbstractAxis::labelsAngle
\brief The angle of the axis labels in degrees.
*/
/*!
\qmlproperty qreal AbstractAxis::labelsAngle
The angle of the axis labels in degrees.
*/
/*!
\property QAbstractAxis::gridVisible
\brief The visibility of the grid lines.
By default, the value is \c true.
*/
/*!
\qmlproperty bool AbstractAxis::gridVisible
The visibility of the grid lines. By default, the value is \c true.
*/
/*!
\property QAbstractAxis::minorGridVisible
\brief The visibility of the minor grid lines.
Applies only to axes that support minor grid lines.
By default, the value is \c true.
*/
/*!
\qmlproperty bool AbstractAxis::minorGridVisible
The visibility of the minor grid lines. Applies only to axes that support
minor grid lines. By default, the value is \c true.
*/
/*!
\property QAbstractAxis::titleText
\brief The title of the axis.
Empty by default. Axis titles support HTML formatting.
*/
/*!
\qmlproperty string AbstractAxis::titleText
The title of the axis. Empty by default. Axis titles support HTML formatting.
*/
/*!
\property QAbstractAxis::titleColor
\brief The color used to draw the title text.
*/
/*!
\qmlproperty color AbstractAxis::titleColor
The color used to draw the title text.
*/
/*!
\property QAbstractAxis::titleVisible
\brief The visibility of the axis title.
By default, the value is \c true.
*/
/*!
\qmlproperty bool AbstractAxis::titleVisible
The visibility of the axis title. By default, the value is \c true.
*/
/*!
\property QAbstractAxis::titleFont
\brief The font of the title of the axis.
*/
/*!
\qmlproperty font AbstractAxis::titleFont
The font of the title of the axis.
*/
/*!
\property QAbstractAxis::orientation
\brief The orientation of the axis.
Fixed to either Qt::Horizontal or Qt::Vertical when the axis is added to a graph.
*/
/*!
\qmlproperty Qt.Orientation AbstractAxis::orientation
The orientation of the axis. Fixed to either \l {Qt::Horizontal}{Qt.Horizontal}
or \l{Qt::Vertical}{Qt.Vertical} when the axis is set to a series.
*/
/*!
\property QAbstractAxis::alignment
\brief The alignment of the axis.
Can be Qt::AlignLeft, Qt::AlignRight, Qt::AlignBottom, or Qt::AlignTop.
*/
/*!
\qmlproperty alignment AbstractAxis::alignment
The alignment of the axis. Can be \l{Qt::AlignLeft}{Qt.AlignLeft},
\l{Qt::AlignRight}{Qt.AlignRight}, \l{Qt::AlignBottom}{Qt.AlignBottom}, or
\l{Qt::AlignTop}{Qt.AlignTop}.
*/
/*!
\fn void QAbstractAxis::visibleChanged(bool visible)
This signal is emitted when the visibility of the axis changes to \a visible.
*/
/*!
\fn void QAbstractAxis::lineVisibleChanged(bool visible)
This signal is emitted when the visibility of the axis line changes to \a visible.
*/
/*!
\fn void QAbstractAxis::labelsVisibleChanged(bool visible)
This signal is emitted when the visibility of the labels of the axis changes to \a visible.
*/
/*!
\fn void QAbstractAxis::labelsAngleChanged(qreal angle)
This signal is emitted when the angle of the axis labels changes to \a angle.
*/
/*!
\fn void QAbstractAxis::gridVisibleChanged(bool visible)
This signal is emitted when the visibility of the grid lines of the axis changes to \a visible.
*/
/*!
\fn void QAbstractAxis::minorGridVisibleChanged(bool visible)
This signal is emitted when the visibility of the minor grid lines of the axis
changes to \a visible.
*/
/*!
\fn void QAbstractAxis::titleTextChanged(const QString &text)
This signal is emitted when the text of the axis title changes to \a text.
*/
/*!
\fn void QAbstractAxis::titleColorChanged(const QColor &color)
This signal is emitted when the color used to draw the axis title changes to \a color.
*/
/*!
\fn void QAbstractAxis::titleVisibleChanged(bool visible)
This signal is emitted when the visibility of the title text of the axis changes to \a visible.
*/
/*!
\fn void QAbstractAxis::titleFontChanged(const QFont &font)
This signal is emitted when the font of the axis title changes to \a font.
*/
/*!
\fn void QAbstractAxis::update()
This signal is emitted when the axis needs to be updated.
*/
/*!
\internal
Constructs a new axis object that is a child of \a parent. The ownership is taken by
graph when the axis is added.
*/
QAbstractAxis::QAbstractAxis(QAbstractAxisPrivate &d, QObject *parent)
: QObject(parent),
d_ptr(&d)
{
}
/*!
Destructs the axis object. When the axis is added to a graph, the graph object takes ownership.
*/
QAbstractAxis::~QAbstractAxis()
{
if (d_ptr->m_graph)
qFatal("Still binded axis detected !");
}
/*!
Determines whether the axis line and tick marks are \a visible.
*/
void QAbstractAxis::setLineVisible(bool visible)
{
if (d_ptr->m_lineVisible != visible) {
d_ptr->m_lineVisible = visible;
emit update();
emit lineVisibleChanged(visible);
}
}
bool QAbstractAxis::isLineVisible() const
{
return d_ptr->m_lineVisible;
}
void QAbstractAxis::setGridLineVisible(bool visible)
{
if (d_ptr->m_gridLineVisible != visible) {
d_ptr->m_gridLineVisible = visible;
emit update();
emit gridVisibleChanged(visible);
}
}
bool QAbstractAxis::isGridLineVisible() const
{
return d_ptr->m_gridLineVisible;
}
void QAbstractAxis::setMinorGridLineVisible(bool visible)
{
if (d_ptr->m_minorGridLineVisible != visible) {
d_ptr->m_minorGridLineVisible = visible;
emit update();
emit minorGridVisibleChanged(visible);
}
}
bool QAbstractAxis::isMinorGridLineVisible() const
{
return d_ptr->m_minorGridLineVisible;
}
void QAbstractAxis::setLabelsVisible(bool visible)
{
if (d_ptr->m_labelsVisible != visible) {
d_ptr->m_labelsVisible = visible;
emit update();
emit labelsVisibleChanged(visible);
}
}
bool QAbstractAxis::labelsVisible() const
{
return d_ptr->m_labelsVisible;
}
void QAbstractAxis::setLabelsAngle(qreal angle)
{
if (d_ptr->m_labelsAngle != angle) {
d_ptr->m_labelsAngle = angle;
emit update();
emit labelsAngleChanged(angle);
}
}
qreal QAbstractAxis::labelsAngle() const
{
return d_ptr->m_labelsAngle;
}
void QAbstractAxis::setTitleVisible(bool visible)
{
if (d_ptr->m_titleVisible != visible) {
d_ptr->m_titleVisible = visible;
emit update();
emit titleVisibleChanged(visible);
}
}
bool QAbstractAxis::isTitleVisible() const
{
return d_ptr->m_titleVisible;
}
/*!
Sets the color used to draw titles to \a color.
*/
void QAbstractAxis::setTitleColor(const QColor &color)
{
if (d_ptr->m_titleColor != color) {
d_ptr->m_titleColor = color;
emit update();
emit titleColorChanged(color);
}
}
/*!
Returns the color used to draw titles.
*/
QColor QAbstractAxis::titleColor() const
{
return d_ptr->m_titleColor;
}
/*!
Sets the font used to draw titles to \a font.
*/
void QAbstractAxis::setTitleFont(const QFont &font)
{
if (d_ptr->m_titleFont != font) {
d_ptr->m_titleFont = font;
emit update();
emit titleFontChanged(font);
}
}
/*!
Returns the font used to draw titles.
*/
QFont QAbstractAxis::titleFont() const
{
return d_ptr->m_titleFont;
}
void QAbstractAxis::setTitleText(const QString &title)
{
if (d_ptr->m_title != title) {
d_ptr->m_title = title;
emit update();
emit titleTextChanged(title);
}
}
QString QAbstractAxis::titleText() const
{
return d_ptr->m_title;
}
bool QAbstractAxis::isVisible() const
{
return d_ptr->m_visible;
}
/*!
Sets the visibility of the axis, labels, and grid lines to \a visible.
*/
void QAbstractAxis::setVisible(bool visible)
{
if (d_ptr->m_visible != visible) {
d_ptr->m_visible = visible;
emit update();
emit visibleChanged(visible);
}
}
/*!
Makes the axis, labels, and grid lines visible.
*/
void QAbstractAxis::show()
{
setVisible(true);
}
/*!
Makes the axis, labels, and grid lines invisible.
*/
void QAbstractAxis::hide()
{
setVisible(false);
}
/*!
Sets the minimum value shown on the axis.
Depending on the actual axis type, the \a min parameter is converted to the appropriate type
of value. If the conversion is impossible, the function call does nothing.
*/
void QAbstractAxis::setMin(const QVariant &min)
{
d_ptr->setMin(min);
}
/*!
Sets the maximum value shown on the axis.
Depending on the actual axis type, the \a max parameter is converted to the appropriate type
of value. If the conversion is impossible, the function call does nothing.
*/
void QAbstractAxis::setMax(const QVariant &max)
{
d_ptr->setMax(max);
}
/*!
Sets the range shown on the axis.
Depending on the actual axis type, the \a min and \a max parameters are converted to
appropriate types of values. If the conversion is impossible, the function call does nothing.
*/
void QAbstractAxis::setRange(const QVariant &min, const QVariant &max)
{
d_ptr->setRange(min, max);
}
/*!
Returns the orientation of the axis (vertical or horizontal).
*/
Qt::Orientation QAbstractAxis::orientation() const
{
return d_ptr->orientation();
}
void QAbstractAxis::setOrientation(Qt::Orientation orientation)
{
d_ptr->m_orientation = orientation;
}
Qt::Alignment QAbstractAxis::alignment() const
{
return d_ptr->alignment();
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
QAbstractAxisPrivate::QAbstractAxisPrivate(QAbstractAxis *q)
: q_ptr(q)
{
}
QAbstractAxisPrivate::~QAbstractAxisPrivate()
{
}
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;
}
void QAbstractAxisPrivate::handleRangeChanged(qreal min, qreal max)
{
setRange(min,max);
}
QT_END_NAMESPACE