-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFaceLoader.cpp
248 lines (198 loc) · 5.08 KB
/
FaceLoader.cpp
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/*
* SPDX-FileCopyrightText: 2021 Arjen Hiemstra <[email protected]>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "FaceLoader.h"
#include <QQmlEngine>
using namespace KSysGuard;
class Q_DECL_HIDDEN FaceLoader::Private
{
public:
Private(FaceLoader *qq)
: q(qq)
{
}
void setupController();
FaceLoader *q;
SensorFaceController *parentController = nullptr;
SensorFaceController *controller = nullptr;
QString groupName;
bool complete = false;
QJsonArray sensors;
QString faceId;
QVariantMap colors;
QVariantMap labels;
int updateRateLimit = 0;
bool readOnly = true;
bool showTitle = false;
};
FaceLoader::FaceLoader(QObject *parent)
: QObject(parent)
, d(new Private{this})
{
}
FaceLoader::~FaceLoader() = default;
SensorFaceController *FaceLoader::parentController() const
{
return d->parentController;
}
void FaceLoader::setParentController(SensorFaceController *newParentController)
{
if (newParentController == d->parentController) {
return;
}
if (d->parentController) {
d->parentController->disconnect(this);
}
if (d->controller) {
d->controller->deleteLater();
}
d->parentController = newParentController;
d->setupController();
Q_EMIT parentControllerChanged();
}
QString FaceLoader::faceId() const
{
return d->faceId;
}
void FaceLoader::setFaceId(const QString &newFaceId)
{
if (newFaceId == d->faceId) {
return;
}
d->faceId = newFaceId;
if (d->controller) {
d->controller->setFaceId(d->faceId);
}
Q_EMIT faceIdChanged();
}
QString FaceLoader::groupName() const
{
return d->groupName;
}
void FaceLoader::setGroupName(const QString &newGroupName)
{
if (newGroupName == d->groupName) {
return;
}
d->groupName = newGroupName;
d->setupController();
Q_EMIT groupNameChanged();
}
QJsonArray FaceLoader::sensors() const
{
return d->sensors;
}
void FaceLoader::setSensors(const QJsonArray &newSensors)
{
if (newSensors == d->sensors) {
return;
}
d->sensors = newSensors;
if (d->controller) {
d->controller->setHighPrioritySensorIds(d->sensors);
}
Q_EMIT sensorsChanged();
}
QVariantMap FaceLoader::colors() const
{
return d->colors;
}
void FaceLoader::setColors(const QVariantMap &newColors)
{
if (newColors == d->colors) {
return;
}
d->colors = newColors;
if (d->controller) {
d->controller->setSensorColors(d->colors);
// Ensure we emit a change signal for colors even if the controller thinks
// we shouldn't, to ensure all instances of the face are correctly updated.
Q_EMIT d->controller->sensorColorsChanged();
}
Q_EMIT colorsChanged();
}
QVariantMap FaceLoader::labels() const
{
return d->labels;
}
void FaceLoader::setLabels(const QVariantMap &newLabels)
{
if (newLabels == d->labels) {
return;
}
d->labels = newLabels;
if (d->controller) {
d->controller->setSensorLabels(d->labels);
// Ensure we emit a change signal for labels even if the controller thinks
// we shouldn't, to ensure all instances of the face are correctly updated.
Q_EMIT d->controller->sensorLabelsChanged();
}
Q_EMIT labelsChanged();
}
int FaceLoader::updateRateLimit() const
{
return d->updateRateLimit;
}
void FaceLoader::setUpdateRateLimit(int newLimit)
{
if (newLimit == d->updateRateLimit) {
return;
}
d->updateRateLimit = newLimit;
if (d->controller) {
d->controller->setUpdateRateLimit(d->updateRateLimit);
// Ensure we emit a change signal for the limit even if the controller thinks
// we shouldn't, to ensure all instances of the face are correctly updated.
Q_EMIT d->controller->updateRateLimitChanged();
}
Q_EMIT updateRateLimitChanged();
}
bool FaceLoader::readOnly() const
{
return d->readOnly;
}
void FaceLoader::setReadOnly(bool newReadOnly)
{
if (newReadOnly == d->readOnly) {
return;
}
d->readOnly = newReadOnly;
if (d->controller) {
d->controller->setShouldSync(!d->readOnly);
}
Q_EMIT readOnlyChanged();
}
SensorFaceController *FaceLoader::controller() const
{
return d->controller;
}
void FaceLoader::reload()
{
d->controller->reloadFaceConfiguration();
}
void FaceLoader::classBegin()
{
}
void FaceLoader::componentComplete()
{
d->complete = true;
d->setupController();
}
void FaceLoader::Private::setupController()
{
if (!parentController || groupName.isEmpty() || !complete) {
return;
}
auto configGroup = parentController->configGroup().group(groupName);
controller = new SensorFaceController(configGroup, qmlEngine(q), new QQmlEngine(q));
controller->setShouldSync(readOnly);
controller->setHighPrioritySensorIds(sensors);
controller->setSensorColors(colors);
controller->setSensorLabels(labels);
controller->setShowTitle(showTitle);
controller->setFaceId(faceId);
controller->setUpdateRateLimit(updateRateLimit);
Q_EMIT q->controllerChanged();
}