1 | // Copyright (C) 2016 The Qt Company Ltd. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QHBARMODELMAPPER_H |
5 | #define QHBARMODELMAPPER_H |
6 | |
7 | #include <QtCharts/QBarModelMapper> |
8 | |
9 | Q_MOC_INCLUDE(<QtCharts/qpieseries.h>) |
10 | Q_MOC_INCLUDE(<QtCore/qabstractitemmodel.h>) |
11 | |
12 | QT_BEGIN_NAMESPACE |
13 | /* Comment line for syncqt to generate the fwd-include correctly, due to QTBUG-22432 */ |
14 | class Q_CHARTS_EXPORT QHBarModelMapper : public QBarModelMapper |
15 | { |
16 | Q_OBJECT |
17 | Q_PROPERTY(QAbstractBarSeries *series READ series WRITE setSeries NOTIFY seriesReplaced) |
18 | Q_PROPERTY(QAbstractItemModel *model READ model WRITE setModel NOTIFY modelReplaced) |
19 | Q_PROPERTY(int firstBarSetRow READ firstBarSetRow WRITE setFirstBarSetRow NOTIFY firstBarSetRowChanged) |
20 | Q_PROPERTY(int lastBarSetRow READ lastBarSetRow WRITE setLastBarSetRow NOTIFY lastBarSetRowChanged) |
21 | Q_PROPERTY(int firstColumn READ firstColumn WRITE setFirstColumn NOTIFY firstColumnChanged) |
22 | Q_PROPERTY(int columnCount READ columnCount WRITE setColumnCount NOTIFY columnCountChanged) |
23 | |
24 | public: |
25 | explicit QHBarModelMapper(QObject *parent = nullptr); |
26 | |
27 | QAbstractItemModel *model() const; |
28 | void setModel(QAbstractItemModel *model); |
29 | |
30 | QAbstractBarSeries *series() const; |
31 | void setSeries(QAbstractBarSeries *series); |
32 | |
33 | int firstBarSetRow() const; |
34 | void setFirstBarSetRow(int firstBarSetRow); |
35 | |
36 | int lastBarSetRow() const; |
37 | void setLastBarSetRow(int lastBarSetRow); |
38 | |
39 | int firstColumn() const; |
40 | void setFirstColumn(int firstColumn); |
41 | |
42 | int columnCount() const; |
43 | void setColumnCount(int columnCount); |
44 | |
45 | Q_SIGNALS: |
46 | void seriesReplaced(); |
47 | void modelReplaced(); |
48 | void firstBarSetRowChanged(); |
49 | void lastBarSetRowChanged(); |
50 | void firstColumnChanged(); |
51 | void columnCountChanged(); |
52 | }; |
53 | |
54 | QT_END_NAMESPACE |
55 | |
56 | #endif // QHBARMODELMAPPER_H |
57 | |