blob: 44df21505e80a1dfef5cacc471290813543146a8 (
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) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef VARIANTBARDATAMAPPING_H
#define VARIANTBARDATAMAPPING_H
#include <QtCore/qobject.h>
#include <QtCore/qstringlist.h>
class VariantBarDataMapping : public QObject
{
Q_OBJECT
//! [0]
Q_PROPERTY(int rowIndex READ rowIndex WRITE setRowIndex NOTIFY rowIndexChanged)
Q_PROPERTY(int columnIndex READ columnIndex WRITE setColumnIndex NOTIFY columnIndexChanged)
Q_PROPERTY(int valueIndex READ valueIndex WRITE setValueIndex NOTIFY valueIndexChanged)
Q_PROPERTY(QStringList rowCategories READ rowCategories WRITE setRowCategories NOTIFY
rowCategoriesChanged)
Q_PROPERTY(QStringList columnCategories READ columnCategories WRITE setColumnCategories NOTIFY
columnCategoriesChanged)
//! [0]
public:
//! [1]
explicit VariantBarDataMapping(int rowIndex,
int columnIndex,
int valueIndex,
const QStringList &rowCategories,
const QStringList &columnCategories);
//! [1]
~VariantBarDataMapping() override;
void setRowIndex(int index);
int rowIndex() const;
void setColumnIndex(int index);
int columnIndex() const;
void setValueIndex(int index);
int valueIndex() const;
void setRowCategories(const QStringList &categories);
const QStringList &rowCategories() const;
void setColumnCategories(const QStringList &categories);
const QStringList &columnCategories() const;
//! [2]
void remap(int rowIndex,
int columnIndex,
int valueIndex,
const QStringList &rowCategories,
const QStringList &columnCategories);
//! [2]
Q_SIGNALS:
void rowIndexChanged();
void columnIndexChanged();
void valueIndexChanged();
void rowCategoriesChanged();
void columnCategoriesChanged();
//! [3]
void mappingChanged();
//! [3]
private:
// Indexes of the mapped items in the VariantDataItem
int m_rowIndex = 0;
int m_columnIndex = 1;
int m_valueIndex = 2;
// For row/column items, sort items into these categories. Other categories
// are ignored.
QStringList m_rowCategories = {};
QStringList m_columnCategories = {};
};
#endif
|