blob: 0b30f8039bed760c663ecc16e811dc495d33e83c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef QTGRAPHS_QXYMODELMAPPER_H
#define QTGRAPHS_QXYMODELMAPPER_H
#include <QtCore/qobject.h>
#include <QtGraphs/qgraphsglobal.h>
#include <QtQmlIntegration/qqmlintegration.h>
Q_MOC_INCLUDE(<QtGraphs / qxyseries.h>)
Q_MOC_INCLUDE(<QtCore / qabstractitemmodel.h>)
QT_BEGIN_NAMESPACE
class QXYModelMapperPrivate;
class QXYSeries;
class QAbstractItemModel;
class Q_GRAPHS_EXPORT QXYModelMapper : public QObject
{
Q_OBJECT
Q_PROPERTY(QXYSeries *series READ series WRITE setSeries NOTIFY seriesChanged FINAL)
Q_PROPERTY(QAbstractItemModel *model READ model WRITE setModel NOTIFY modelChanged FINAL)
Q_PROPERTY(qsizetype xSection READ xSection WRITE setXSection NOTIFY xSectionChanged FINAL)
Q_PROPERTY(qsizetype ySection READ ySection WRITE setYSection NOTIFY ySectionChanged FINAL)
Q_PROPERTY(qsizetype first READ first WRITE setFirst NOTIFY firstChanged FINAL)
Q_PROPERTY(qsizetype count READ count WRITE setCount NOTIFY countChanged FINAL)
Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation NOTIFY
orientationChanged FINAL)
QML_NAMED_ELEMENT(XYModelMapper)
Q_DECLARE_PRIVATE(QXYModelMapper)
public:
explicit QXYModelMapper(QObject *parent = nullptr);
~QXYModelMapper() override;
QAbstractItemModel *model() const;
void setModel(QAbstractItemModel *model);
QXYSeries *series() const;
void setSeries(QXYSeries *series);
qsizetype first() const;
void setFirst(qsizetype first);
qsizetype count() const;
void setCount(qsizetype count);
Qt::Orientation orientation() const;
void setOrientation(Qt::Orientation orientation);
qsizetype xSection() const;
void setXSection(qsizetype xSection);
qsizetype ySection() const;
void setYSection(qsizetype ySection);
Q_SIGNALS:
void seriesChanged();
void modelChanged();
void xSectionChanged();
void ySectionChanged();
void firstChanged();
void countChanged();
void orientationChanged();
protected:
QXYModelMapper(QXYModelMapperPrivate &dd, QObject *parent = nullptr);
Q_DISABLE_COPY_MOVE(QXYModelMapper)
};
QT_END_NAMESPACE
#endif // QTGRAPHS_QXYMODELMAPPER_H
|