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 POLARCHARTDATETIMEAXISANGULAR_P_H
14#define POLARCHARTDATETIMEAXISANGULAR_P_H
15
16#include <private/polarchartaxisangular_p.h>
17#include <QtCharts/private/qchartglobal_p.h>
18
19QT_BEGIN_NAMESPACE
20
21class QDateTimeAxis;
22
23class Q_CHARTS_PRIVATE_EXPORT PolarChartDateTimeAxisAngular : public PolarChartAxisAngular
24{
25 Q_OBJECT
26public:
27 PolarChartDateTimeAxisAngular(QDateTimeAxis *axis, QGraphicsItem *item);
28 ~PolarChartDateTimeAxisAngular();
29
30 QList<qreal> calculateLayout() const override;
31 void createAxisLabels(const QList<qreal> &layout) override;
32
33private Q_SLOTS:
34 void handleTickCountChanged(int tick);
35 void handleFormatChanged(const QString &format);
36};
37
38QT_END_NAMESPACE
39
40#endif // POLARCHARTDATETIMEAXISANGULAR_P_H
41

source code of qtcharts/src/charts/axis/datetimeaxis/polarchartdatetimeaxisangular_p.h