1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QXYMODELMAPPER_H |
5 | #define QXYMODELMAPPER_H |
6 | |
7 | #include <QtCharts/QChartGlobal> |
8 | #include <QtCore/QObject> |
9 | |
10 | Q_MOC_INCLUDE(<QtCharts/qxyseries.h>) |
11 | |
12 | QT_BEGIN_NAMESPACE |
13 | class QAbstractItemModel; |
14 | QT_END_NAMESPACE |
15 | |
16 | QT_BEGIN_NAMESPACE |
17 | |
18 | class QXYModelMapperPrivate; |
19 | class QXYSeries; |
20 | |
21 | class Q_CHARTS_EXPORT QXYModelMapper : public QObject |
22 | { |
23 | Q_OBJECT |
24 | |
25 | protected: |
26 | explicit QXYModelMapper(QObject *parent = nullptr); |
27 | |
28 | QAbstractItemModel *model() const; |
29 | void setModel(QAbstractItemModel *model); |
30 | |
31 | QXYSeries *series() const; |
32 | void setSeries(QXYSeries *series); |
33 | |
34 | int first() const; |
35 | void setFirst(int first); |
36 | |
37 | int count() const; |
38 | void setCount(int count); |
39 | |
40 | Qt::Orientation orientation() const; |
41 | void setOrientation(Qt::Orientation orientation); |
42 | |
43 | int xSection() const; |
44 | void setXSection(int xSection); |
45 | |
46 | int ySection() const; |
47 | void setYSection(int ySection); |
48 | |
49 | protected: |
50 | QXYModelMapperPrivate *const d_ptr; |
51 | Q_DECLARE_PRIVATE(QXYModelMapper) |
52 | }; |
53 | |
54 | QT_END_NAMESPACE |
55 | |
56 | #endif // QXYMODELMAPPER_H |
57 |