qabstractaxis.h
218 lines
| 8.4 KiB
| text/x-c
|
CLexer
Miikka Heikkinen
|
r2854 | /**************************************************************************** | ||
Michal Klocek
|
r1540 | ** | ||
Miikka Heikkinen
|
r2854 | ** Copyright (C) 2016 The Qt Company Ltd. | ||
** Contact: https://www.qt.io/licensing/ | ||||
Michal Klocek
|
r1540 | ** | ||
Miikka Heikkinen
|
r2854 | ** This file is part of the Qt Charts module of the Qt Toolkit. | ||
Michal Klocek
|
r1540 | ** | ||
Miikka Heikkinen
|
r2854 | ** $QT_BEGIN_LICENSE:GPL$ | ||
Titta Heikkala
|
r2845 | ** Commercial License Usage | ||
** Licensees holding valid commercial Qt licenses may use this file in | ||||
** accordance with the commercial license agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and The Qt Company. For licensing terms | ||||
Miikka Heikkinen
|
r2854 | ** and conditions see https://www.qt.io/terms-conditions. For further | ||
** information use the contact form at https://www.qt.io/contact-us. | ||||
** | ||||
** GNU General Public License Usage | ||||
** Alternatively, this file may be used under the terms of the GNU | ||||
** General Public License version 3 or (at your option) any later version | ||||
** approved by the KDE Free Qt Foundation. The licenses are as published by | ||||
** the Free Software Foundation and appearing in the file LICENSE.GPL3 | ||||
** included in the packaging of this file. Please review the following | ||||
** information to ensure the GNU General Public License requirements will | ||||
** be met: https://www.gnu.org/licenses/gpl-3.0.html. | ||||
Michal Klocek
|
r1540 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_END_LICENSE$ | ||
** | ||||
Miikka Heikkinen
|
r2854 | ****************************************************************************/ | ||
Michal Klocek
|
r1540 | |||
#ifndef QABSTRACTAXIS_H | ||||
#define QABSTRACTAXIS_H | ||||
Titta Heikkala
|
r2714 | #include <QtCharts/QChartGlobal> | ||
#include <QtGui/QPen> | ||||
#include <QtGui/QFont> | ||||
#include <QtCore/QVariant> | ||||
Michal Klocek
|
r1540 | |||
Titta Heikkala
|
r2712 | QT_CHARTS_BEGIN_NAMESPACE | ||
Michal Klocek
|
r1540 | |||
class QAbstractAxisPrivate; | ||||
Titta Heikkala
|
r2712 | class QT_CHARTS_EXPORT QAbstractAxis : public QObject | ||
Michal Klocek
|
r1540 | { | ||
Marek Rosa
|
r2093 | Q_OBJECT | ||
Michal Klocek
|
r2273 | //visibility | ||
Marek Rosa
|
r2093 | Q_PROPERTY(bool visible READ isVisible WRITE setVisible NOTIFY visibleChanged) | ||
Michal Klocek
|
r2273 | //arrow | ||
Marek Rosa
|
r1845 | Q_PROPERTY(bool lineVisible READ isLineVisible WRITE setLineVisible NOTIFY lineVisibleChanged) | ||
Michal Klocek
|
r2273 | Q_PROPERTY(QPen linePen READ linePen WRITE setLinePen NOTIFY linePenChanged) | ||
Marek Rosa
|
r1844 | Q_PROPERTY(QColor color READ linePenColor WRITE setLinePenColor NOTIFY colorChanged) | ||
Michal Klocek
|
r2273 | //labels | ||
Michal Klocek
|
r1540 | Q_PROPERTY(bool labelsVisible READ labelsVisible WRITE setLabelsVisible NOTIFY labelsVisibleChanged) | ||
Tero Ahola
|
r2361 | Q_PROPERTY(QBrush labelsBrush READ labelsBrush WRITE setLabelsBrush NOTIFY labelsBrushChanged) | ||
Michal Klocek
|
r2273 | Q_PROPERTY(int labelsAngle READ labelsAngle WRITE setLabelsAngle NOTIFY labelsAngleChanged) | ||
Q_PROPERTY(QFont labelsFont READ labelsFont WRITE setLabelsFont NOTIFY labelsFontChanged) | ||||
Michal Klocek
|
r1540 | Q_PROPERTY(QColor labelsColor READ labelsColor WRITE setLabelsColor NOTIFY labelsColorChanged) | ||
Michal Klocek
|
r2273 | //grid | ||
Jani Honkonen
|
r2282 | Q_PROPERTY(bool gridVisible READ isGridLineVisible WRITE setGridLineVisible NOTIFY gridVisibleChanged) | ||
Tero Ahola
|
r2361 | Q_PROPERTY(QPen gridLinePen READ gridLinePen WRITE setGridLinePen NOTIFY gridLinePenChanged) | ||
Titta Heikkala
|
r2795 | Q_PROPERTY(bool minorGridVisible READ isMinorGridLineVisible WRITE setMinorGridLineVisible NOTIFY minorGridVisibleChanged) | ||
Q_PROPERTY(QPen minorGridLinePen READ minorGridLinePen WRITE setMinorGridLinePen NOTIFY minorGridLinePenChanged) | ||||
Titta Heikkala
|
r2810 | Q_PROPERTY(QColor gridLineColor READ gridLineColor WRITE setGridLineColor NOTIFY gridLineColorChanged) | ||
Q_PROPERTY(QColor minorGridLineColor READ minorGridLineColor WRITE setMinorGridLineColor NOTIFY minorGridLineColorChanged) | ||||
Michal Klocek
|
r2273 | //shades | ||
Michal Klocek
|
r1540 | Q_PROPERTY(bool shadesVisible READ shadesVisible WRITE setShadesVisible NOTIFY shadesVisibleChanged) | ||
Q_PROPERTY(QColor shadesColor READ shadesColor WRITE setShadesColor NOTIFY shadesColorChanged) | ||||
Q_PROPERTY(QColor shadesBorderColor READ shadesBorderColor WRITE setShadesBorderColor NOTIFY shadesBorderColorChanged) | ||||
Michal Klocek
|
r2273 | Q_PROPERTY(QPen shadesPen READ shadesPen WRITE setShadesPen NOTIFY shadesPenChanged) | ||
Q_PROPERTY(QBrush shadesBrush READ shadesBrush WRITE setShadesBrush NOTIFY shadesBrushChanged) | ||||
//title | ||||
Q_PROPERTY(QString titleText READ titleText WRITE setTitleText NOTIFY titleTextChanged) | ||||
Q_PROPERTY(QBrush titleBrush READ titleBrush WRITE setTitleBrush NOTIFY titleBrushChanged) | ||||
Michal Klocek
|
r2297 | Q_PROPERTY(bool titleVisible READ isTitleVisible WRITE setTitleVisible NOTIFY titleVisibleChanged) | ||
Q_PROPERTY(QFont titleFont READ titleFont WRITE setTitleFont NOTIFY titleFontChanged) | ||||
Michal Klocek
|
r2276 | //orientation | ||
Jani Honkonen
|
r2348 | Q_PROPERTY(Qt::Orientation orientation READ orientation) | ||
Michal Klocek
|
r2276 | //aligment | ||
Q_PROPERTY(Qt::Alignment alignment READ alignment) | ||||
Titta Heikkala
|
r2781 | Q_PROPERTY(bool reverse READ isReverse WRITE setReverse NOTIFY reverseChanged) | ||
Michal Klocek
|
r1540 | |||
public: | ||||
enum AxisType { | ||||
Michal Klocek
|
r1588 | AxisTypeNoAxis = 0x0, | ||
Marek Rosa
|
r1818 | AxisTypeValue = 0x1, | ||
AxisTypeBarCategory = 0x2, | ||||
Miikka Heikkinen
|
r2719 | AxisTypeCategory = 0x4, | ||
AxisTypeDateTime = 0x8, | ||||
AxisTypeLogValue = 0x10 | ||||
Michal Klocek
|
r1540 | }; | ||
Michal Klocek
|
r1588 | Q_DECLARE_FLAGS(AxisTypes, AxisType) | ||
Michal Klocek
|
r1540 | protected: | ||
Jani Honkonen
|
r2097 | explicit QAbstractAxis(QAbstractAxisPrivate &d, QObject *parent = 0); | ||
Michal Klocek
|
r1540 | |||
public: | ||||
~QAbstractAxis(); | ||||
virtual AxisType type() const = 0; | ||||
Michal Klocek
|
r2273 | //visibility handling | ||
Michal Klocek
|
r1617 | bool isVisible() const; | ||
void setVisible(bool visible = true); | ||||
Michal Klocek
|
r2273 | void show(); | ||
void hide(); | ||||
Michal Klocek
|
r1617 | |||
Michal Klocek
|
r2273 | //arrow handling | ||
Marek Rosa
|
r1844 | bool isLineVisible() const; | ||
void setLineVisible(bool visible = true); | ||||
void setLinePen(const QPen &pen); | ||||
QPen linePen() const; | ||||
void setLinePenColor(QColor color); | ||||
QColor linePenColor() const; | ||||
Michal Klocek
|
r1540 | |||
//grid handling | ||||
bool isGridLineVisible() const; | ||||
void setGridLineVisible(bool visible = true); | ||||
void setGridLinePen(const QPen &pen); | ||||
QPen gridLinePen() const; | ||||
Titta Heikkala
|
r2795 | bool isMinorGridLineVisible() const; | ||
void setMinorGridLineVisible(bool visible = true); | ||||
void setMinorGridLinePen(const QPen &pen); | ||||
QPen minorGridLinePen() const; | ||||
Titta Heikkala
|
r2810 | void setGridLineColor(const QColor &color); | ||
QColor gridLineColor(); | ||||
void setMinorGridLineColor(const QColor &color); | ||||
QColor minorGridLineColor(); | ||||
Michal Klocek
|
r1540 | |||
//labels handling | ||||
bool labelsVisible() const; | ||||
void setLabelsVisible(bool visible = true); | ||||
void setLabelsBrush(const QBrush &brush); | ||||
QBrush labelsBrush() const; | ||||
void setLabelsFont(const QFont &font); | ||||
QFont labelsFont() const; | ||||
void setLabelsAngle(int angle); | ||||
int labelsAngle() const; | ||||
void setLabelsColor(QColor color); | ||||
QColor labelsColor() const; | ||||
Michal Klocek
|
r1965 | //title handling | ||
Michal Klocek
|
r2297 | bool isTitleVisible() const; | ||
Michal Klocek
|
r1965 | void setTitleVisible(bool visible = true); | ||
void setTitleBrush(const QBrush &brush); | ||||
QBrush titleBrush() const; | ||||
void setTitleFont(const QFont &font); | ||||
QFont titleFont() const; | ||||
Michal Klocek
|
r2273 | void setTitleText(const QString &title); | ||
QString titleText() const; | ||||
Michal Klocek
|
r1965 | |||
Michal Klocek
|
r1540 | //shades handling | ||
bool shadesVisible() const; | ||||
void setShadesVisible(bool visible = true); | ||||
void setShadesPen(const QPen &pen); | ||||
QPen shadesPen() const; | ||||
void setShadesBrush(const QBrush &brush); | ||||
QBrush shadesBrush() const; | ||||
void setShadesColor(QColor color); | ||||
QColor shadesColor() const; | ||||
void setShadesBorderColor(QColor color); | ||||
QColor shadesBorderColor() const; | ||||
Miikka Heikkinen
|
r2742 | Qt::Orientation orientation() const; | ||
Michal Klocek
|
r2105 | Qt::Alignment alignment() const; | ||
Michal Klocek
|
r1695 | |||
Michal Klocek
|
r1541 | //range handling | ||
sauimone
|
r1578 | void setMin(const QVariant &min); | ||
void setMax(const QVariant &max); | ||||
void setRange(const QVariant &min, const QVariant &max); | ||||
Michal Klocek
|
r1540 | |||
Titta Heikkala
|
r2781 | //reverse handling | ||
void setReverse(bool reverse = true); | ||||
bool isReverse() const; | ||||
Michal Klocek
|
r1540 | Q_SIGNALS: | ||
void visibleChanged(bool visible); | ||||
Miikka Heikkinen
|
r2483 | void linePenChanged(const QPen &pen); | ||
Marek Rosa
|
r1844 | void lineVisibleChanged(bool visible); | ||
Michal Klocek
|
r1540 | void labelsVisibleChanged(bool visible); | ||
Miikka Heikkinen
|
r2483 | void labelsBrushChanged(const QBrush &brush); | ||
void labelsFontChanged(const QFont &pen); | ||||
Michal Klocek
|
r2273 | void labelsAngleChanged(int angle); | ||
Miikka Heikkinen
|
r2483 | void gridLinePenChanged(const QPen &pen); | ||
Jani Honkonen
|
r2282 | void gridVisibleChanged(bool visible); | ||
Titta Heikkala
|
r2795 | void minorGridVisibleChanged(bool visible); | ||
void minorGridLinePenChanged(const QPen &pen); | ||||
Titta Heikkala
|
r2810 | void gridLineColorChanged(const QColor &color); | ||
void minorGridLineColorChanged(const QColor &color); | ||||
Michal Klocek
|
r1540 | void colorChanged(QColor color); | ||
void labelsColorChanged(QColor color); | ||||
Miikka Heikkinen
|
r2483 | void titleTextChanged(const QString &title); | ||
void titleBrushChanged(const QBrush &brush); | ||||
Michal Klocek
|
r2273 | void titleVisibleChanged(bool visible); | ||
Miikka Heikkinen
|
r2483 | void titleFontChanged(const QFont &font); | ||
Michal Klocek
|
r1540 | void shadesVisibleChanged(bool visible); | ||
void shadesColorChanged(QColor color); | ||||
void shadesBorderColorChanged(QColor color); | ||||
Miikka Heikkinen
|
r2483 | void shadesPenChanged(const QPen &pen); | ||
void shadesBrushChanged(const QBrush &brush); | ||||
Titta Heikkala
|
r2781 | void reverseChanged(bool reverse); | ||
Michal Klocek
|
r1540 | |||
protected: | ||||
Marek Rosa
|
r2093 | QScopedPointer<QAbstractAxisPrivate> d_ptr; | ||
Michal Klocek
|
r1541 | friend class ChartDataSet; | ||
Michal Klocek
|
r1556 | friend class ChartPresenter; | ||
Michal Klocek
|
r2273 | friend class ChartThemeManager; | ||
Michal Klocek
|
r2284 | friend class AbstractDomain; | ||
Miikka Heikkinen
|
r2483 | friend class ChartAxisElement; | ||
friend class XYChart; | ||||
Miikka Heikkinen
|
r2723 | |||
private: | ||||
Q_DISABLE_COPY(QAbstractAxis) | ||||
Michal Klocek
|
r1540 | }; | ||
Titta Heikkala
|
r2712 | QT_CHARTS_END_NAMESPACE | ||
Jani Honkonen
|
r2046 | |||
#endif // QABSTRACTAXIS_H | ||||