##// END OF EJS Templates
charts: Follow Qt's already-existent -developer-build option....
charts: Follow Qt's already-existent -developer-build option. This means that rebuilding the entirety of Qt with -developer-build will get us all autotests. Furthermore, it fixes the situation on OS X where a debug_and_release build wouldn't actually fully link. In addition, we clean up the tests that were stubbed when internals aren't available to just not build/run them at all by checking private_tests. Change-Id: I5701559cd91df842f78346d7d6ad9295bee587d0 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2855:aa5aba329d30
r2855:aa5aba329d30
Show More
qabstractaxis_p.h
144 lines | 4.0 KiB | text/x-c | CLexer
/ src / charts / axis / qabstractaxis_p.h
Miikka Heikkinen
Updated license...
r2854 /****************************************************************************
Michal Klocek
Adds new API classes...
r1540 **
Miikka Heikkinen
Updated license...
r2854 ** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
Michal Klocek
Adds new API classes...
r1540 **
Miikka Heikkinen
Updated license...
r2854 ** This file is part of the Qt Charts module of the Qt Toolkit.
Michal Klocek
Adds new API classes...
r1540 **
Miikka Heikkinen
Updated license...
r2854 ** $QT_BEGIN_LICENSE:GPL$
Titta Heikkala
Updated license headers...
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
Updated license...
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
Adds new API classes...
r1540 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
Miikka Heikkinen
Updated license...
r2854 ****************************************************************************/
Michal Klocek
Adds new API classes...
r1540
// W A R N I N G
// -------------
//
Titta Heikkala
Updated private header warning...
r2807 // This file is not part of the Qt Chart API. It exists purely as an
Michal Klocek
Adds new API classes...
r1540 // implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
#ifndef QABSTRACTAXIS_P_H
#define QABSTRACTAXIS_P_H
Titta Heikkala
Fix include syntax...
r2714 #include <QtCharts/QAbstractAxis>
#include <private/chartaxiselement_p.h>
#include <QtCharts/QChart>
#include <QtCore/QDebug>
Michal Klocek
Refactors internals...
r2273
Christian Kandeler
Fix compilation with namespaced Qt....
r2774 QT_BEGIN_NAMESPACE
Michal Klocek
Refactors internals...
r2273 class QGraphicsItem;
Christian Kandeler
Fix compilation with namespaced Qt....
r2774 QT_END_NAMESPACE
Michal Klocek
Adds new API classes...
r1540
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Michal Klocek
Adds new API classes...
r1540
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556 class ChartPresenter;
Marek Rosa
Domains added
r2275 class AbstractDomain;
Michal Klocek
Refactors internals...
r2273 class QChart;
class QAbstractSeries;
class ChartTheme;
class ChartElement;
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556
Robin Burchell
charts: Follow Qt's already-existent -developer-build option....
r2855 class Q_AUTOTEST_EXPORT QAbstractAxisPrivate : public QObject
Michal Klocek
Adds new API classes...
r1540 {
Q_OBJECT
public:
QAbstractAxisPrivate(QAbstractAxis *q);
~QAbstractAxisPrivate();
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556 public:
Michal Klocek
Refactors internals...
r2273 Qt::Alignment alignment() const { return m_alignment; }
Michal Klocek
Refactors Domain and Axis...
r1698 Qt::Orientation orientation() const { return m_orientation; }
Michal Klocek
Refactors internals...
r2273 void setAlignment( Qt::Alignment alignment);
Michal Klocek
Refactors Domain and Axis...
r1698
Marek Rosa
Domains added
r2275 virtual void initializeDomain(AbstractDomain *domain) = 0;
Miikka Heikkinen
Add Polar chart support...
r2483 virtual void initializeGraphics(QGraphicsItem *parent) = 0;
Michal Klocek
Refactors internals...
r2273 virtual void initializeTheme(ChartTheme* theme, bool forced = false);
Titta Heikkala
Added possibility to set duration and easing curve for chart animation...
r2804 virtual void initializeAnimations(QChart::AnimationOptions options, int duration,
QEasingCurve &curve);
Michal Klocek
Refactors Domain and Axis...
r1698
Michal Klocek
Refactors internals...
r2273 //interface for manipulating range form base class
virtual void setMin(const QVariant &min) = 0;
sauimone
QAbstractAxis: variants strike back.
r1578 virtual void setMax(const QVariant &max) = 0;
Michal Klocek
Refactors internals...
r2273 virtual void setRange(const QVariant &min, const QVariant &max) = 0;
Michal Klocek
Refactors Domain and Axis...
r1698
Michal Klocek
Refactors internals...
r2273 //interface manipulating range form domain
virtual void setRange(qreal min, qreal max) = 0;
virtual qreal min() = 0;
virtual qreal max() = 0;
Michal Klocek
Implements qbarcategoriesaxis logic...
r1725
Miikka Heikkinen
Add Polar chart support...
r2483 ChartAxisElement *axisItem() { return m_item.data(); }
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544
Michal Klocek
Refactors Domain and Axis...
r1698 public Q_SLOTS:
Michal Klocek
Refactors internals...
r2273 void handleRangeChanged(qreal min, qreal max);
Michal Klocek
Refactors Domain and Axis...
r1698
Q_SIGNALS:
Michal Klocek
Refactors internals...
r2273 void rangeChanged(qreal min, qreal max);
Michal Klocek
Refactors Domain and Axis...
r1698
protected:
Michal Klocek
Adds new API classes...
r1540 QAbstractAxis *q_ptr;
Michal Klocek
Refactors internals...
r2273 QChart *m_chart;
Miikka Heikkinen
Add Polar chart support...
r2483 QScopedPointer<ChartAxisElement> m_item;
Miikka Heikkinen
Fix explicitly set default pen/brush/font getting overridden by theme...
r2516
Michal Klocek
Refactors internals...
r2273 private:
QList<QAbstractSeries*> m_series;
Michal Klocek
Refactors layout:...
r2105 Qt::Alignment m_alignment;
Michal Klocek
Refactors internals...
r2273 Qt::Orientation m_orientation;
Michal Klocek
Refactors Domain and Axis...
r1698
Michal Klocek
Adds visibity paramter to axis
r1617 bool m_visible;
Michal Klocek
Adds new API classes...
r1540
sauimone
abstract axis qml documentation. bug fix to setArrowVisible
r1654 bool m_arrowVisible;
Michal Klocek
Adds new API classes...
r1540 QPen m_axisPen;
QBrush m_axisBrush;
bool m_gridLineVisible;
QPen m_gridLinePen;
Titta Heikkala
Added minor ticks to value axis...
r2795 bool m_minorGridLineVisible;
QPen m_minorGridLinePen;
Michal Klocek
Adds new API classes...
r1540
bool m_labelsVisible;
QBrush m_labelsBrush;
QFont m_labelsFont;
int m_labelsAngle;
Michal Klocek
Refactors layout...
r1965 bool m_titleVisible;
QBrush m_titleBrush;
QFont m_titleFont;
QString m_title;
Michal Klocek
Adds new API classes...
r1540 bool m_shadesVisible;
QPen m_shadesPen;
QBrush m_shadesBrush;
qreal m_shadesOpacity;
Michal Klocek
Refactors Domain and Axis...
r1698 bool m_dirty;
sauimone
refactoring axises
r1566
Titta Heikkala
Add possibility to set reverse values to axes...
r2781 bool m_reverse;
Michal Klocek
Adds new API classes...
r1540 friend class QAbstractAxis;
Michal Klocek
Implements qbarcategoriesaxis logic...
r1725 friend class ChartDataSet;
Michal Klocek
Refactors internals...
r2273 friend class ChartPresenter;
Michal Klocek
Adds new API classes...
r1540 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Michal Klocek
Adds new API classes...
r1540
#endif