From 467e729eabece018cd42eeee0160f932983561b0 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Tue, 7 Jan 2014 13:11:34 +0200 Subject: Rename axis classes Moved the '3D' in axis class names so that the classes would be in line with other '3D' classes. Task-number: QTRD-2674 Change-Id: Ie4f8a10babe3bf1b0b30b366863f55ed02ec66ba Reviewed-by: Mika Salmela --- src/datavisualization/axis/qabstract3daxis.h | 107 +++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 src/datavisualization/axis/qabstract3daxis.h (limited to 'src/datavisualization/axis/qabstract3daxis.h') diff --git a/src/datavisualization/axis/qabstract3daxis.h b/src/datavisualization/axis/qabstract3daxis.h new file mode 100644 index 00000000..ef9f9c78 --- /dev/null +++ b/src/datavisualization/axis/qabstract3daxis.h @@ -0,0 +1,107 @@ +/**************************************************************************** +** +** Copyright (C) 2013 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 QtDataVisualization module. +** +** Licensees holding valid Qt Enterprise licenses may use this file in +** accordance with the Qt Enterprise 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 +** +****************************************************************************/ + +#ifndef QABSTRACT3DAXIS_H +#define QABSTRACT3DAXIS_H + +#include +#include +#include +#include +#include + +QT_DATAVISUALIZATION_BEGIN_NAMESPACE + +class QAbstract3DAxisPrivate; + +class QT_DATAVISUALIZATION_EXPORT QAbstract3DAxis : public QObject +{ + Q_OBJECT + Q_ENUMS(AxisOrientation) + Q_ENUMS(AxisType) + Q_PROPERTY(QString title READ title WRITE setTitle NOTIFY titleChanged) + Q_PROPERTY(QStringList labels READ labels WRITE setLabels NOTIFY labelsChanged) + Q_PROPERTY(AxisOrientation orientation READ orientation NOTIFY orientationChanged) + Q_PROPERTY(AxisType type READ type CONSTANT) + Q_PROPERTY(float min READ min WRITE setMin NOTIFY minChanged) + Q_PROPERTY(float max READ max WRITE setMax NOTIFY maxChanged) + Q_PROPERTY(bool autoAdjustRange READ isAutoAdjustRange WRITE setAutoAdjustRange NOTIFY autoAdjustRangeChanged) + +public: + enum AxisOrientation { + AxisOrientationNone = 0, + AxisOrientationX = 1, + AxisOrientationY = 2, + AxisOrientationZ = 4 + }; + + enum AxisType { + AxisTypeNone = 0, + AxisTypeCategory = 1, + AxisTypeValue = 2 + //AxisTypeLogValue = 6 // inherits valueaxis (4 + 2) // TODO + }; + +protected: + explicit QAbstract3DAxis(QAbstract3DAxisPrivate *d, QObject *parent = 0); + +public: + virtual ~QAbstract3DAxis(); + + void setTitle(QString title); + QString title() const; + + void setLabels(const QStringList &labels); + QStringList labels() const; + + AxisOrientation orientation() const; + AxisType type() const; + + void setMin(float min); + float min() const; + + void setMax(float max); + float max() const; + + void setAutoAdjustRange(bool autoAdjust); + bool isAutoAdjustRange() const; + + void setRange(float min, float max); + +signals: + void titleChanged(QString newTitle); + void labelsChanged(); + void orientationChanged(AxisOrientation orientation); + void minChanged(float value); + void maxChanged(float value); + void rangeChanged(float min, float max); + void autoAdjustRangeChanged(bool autoAdjust); + +protected: + QScopedPointer d_ptr; + +private: + Q_DISABLE_COPY(QAbstract3DAxis) + + friend class Abstract3DController; + friend class Bars3DController; +}; + +QT_DATAVISUALIZATION_END_NAMESPACE + +#endif -- cgit v1.2.3