| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | // W A R N I N G |
| 5 | // ------------- |
| 6 | // |
| 7 | // This file is not part of the Qt Chart API. It exists purely as an |
| 8 | // implementation detail. This header file may change from version to |
| 9 | // version without notice, or even be removed. |
| 10 | // |
| 11 | // We mean it. |
| 12 | |
| 13 | #ifndef POLARCHARTCATEGORYAXISANGULAR_P_H |
| 14 | #define POLARCHARTCATEGORYAXISANGULAR_P_H |
| 15 | |
| 16 | #include <private/polarchartaxisangular_p.h> |
| 17 | #include <QtCharts/private/qchartglobal_p.h> |
| 18 | |
| 19 | QT_BEGIN_NAMESPACE |
| 20 | |
| 21 | class QCategoryAxis; |
| 22 | |
| 23 | class Q_CHARTS_EXPORT PolarChartCategoryAxisAngular : public PolarChartAxisAngular |
| 24 | { |
| 25 | Q_OBJECT |
| 26 | |
| 27 | public: |
| 28 | PolarChartCategoryAxisAngular(QCategoryAxis *axis, QGraphicsItem *item); |
| 29 | ~PolarChartCategoryAxisAngular(); |
| 30 | |
| 31 | virtual QList<qreal> calculateLayout() const override; |
| 32 | virtual void createAxisLabels(const QList<qreal> &layout) override; |
| 33 | |
| 34 | public Q_SLOTS: |
| 35 | void handleCategoriesChanged(); |
| 36 | }; |
| 37 | |
| 38 | QT_END_NAMESPACE |
| 39 | |
| 40 | #endif // POLARCHARTCATEGORYAXISANGULAR_P_H |
| 41 | |