qpolarchart.h
61 lines
| 1.8 KiB
| text/x-c
|
CLexer
Titta Heikkala
|
r2845 | /****************************************************************************** | ||
Miikka Heikkinen
|
r2483 | ** | ||
Titta Heikkala
|
r2845 | ** Copyright (C) 2015 The Qt Company Ltd. | ||
** Contact: http://www.qt.io/licensing/ | ||||
Miikka Heikkinen
|
r2483 | ** | ||
Titta Heikkala
|
r2740 | ** This file is part of the Qt Charts module. | ||
Miikka Heikkinen
|
r2483 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_BEGIN_LICENSE:COMM$ | ||
Miikka Heikkinen
|
r2483 | ** | ||
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 | ||||
** and conditions see http://www.qt.io/terms-conditions. For further | ||||
** information use the contact form at http://www.qt.io/contact-us. | ||||
Miikka Heikkinen
|
r2483 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_END_LICENSE$ | ||
** | ||||
******************************************************************************/ | ||||
Miikka Heikkinen
|
r2483 | |||
#ifndef QPOLARCHART_H | ||||
#define QPOLARCHART_H | ||||
Titta Heikkala
|
r2714 | #include <QtCharts/QChart> | ||
Miikka Heikkinen
|
r2483 | |||
Titta Heikkala
|
r2712 | QT_CHARTS_BEGIN_NAMESPACE | ||
Miikka Heikkinen
|
r2483 | |||
class QAbstractSeries; | ||||
class QAbstractAxis; | ||||
Titta Heikkala
|
r2712 | class QT_CHARTS_EXPORT QPolarChart : public QChart | ||
Miikka Heikkinen
|
r2483 | { | ||
Q_OBJECT | ||||
Q_ENUMS(PolarOrientation) | ||||
Q_FLAGS(PolarOrientations) | ||||
public: | ||||
enum PolarOrientation { | ||||
PolarOrientationRadial = 0x1, | ||||
PolarOrientationAngular = 0x2 | ||||
}; | ||||
Q_DECLARE_FLAGS(PolarOrientations, PolarOrientation) | ||||
public: | ||||
Marc Mutz
|
r2871 | explicit QPolarChart(QGraphicsItem *parent = Q_NULLPTR, Qt::WindowFlags wFlags = Qt::WindowFlags()); | ||
Miikka Heikkinen
|
r2483 | ~QPolarChart(); | ||
void addAxis(QAbstractAxis *axis, PolarOrientation polarOrientation); | ||||
Marc Mutz
|
r2871 | QList<QAbstractAxis*> axes(PolarOrientations polarOrientation = PolarOrientations(PolarOrientationRadial | PolarOrientationAngular), QAbstractSeries *series = Q_NULLPTR) const; | ||
Miikka Heikkinen
|
r2483 | |||
static PolarOrientation axisPolarOrientation(QAbstractAxis *axis); | ||||
Miikka Heikkinen
|
r2723 | private: | ||
Miikka Heikkinen
|
r2483 | Q_DISABLE_COPY(QPolarChart) | ||
}; | ||||
Titta Heikkala
|
r2712 | QT_CHARTS_END_NAMESPACE | ||
Miikka Heikkinen
|
r2483 | |||
#endif // QCHART_H | ||||