File: vcslider.cpp

package info (click to toggle)
qlcplus 4.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,644 kB
  • sloc: cpp: 182,867; javascript: 7,764; xml: 2,453; ansic: 2,120; sh: 1,716; python: 634; ruby: 606; makefile: 23
file content (1612 lines) | stat: -rw-r--r-- 46,517 bytes parent folder | download
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
/*
  Q Light Controller Plus
  vcslider.cpp

  Copyright (c) Massimo Callegari

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0.txt

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

#include <QXmlStreamReader>
#include <QXmlStreamWriter>
#include <QQmlEngine>
#include <qmath.h>

#include "treemodelitem.h"
#include "fixturemanager.h"
#include "qlcfixturemode.h"
#include "qlccapability.h"
#include "fixtureutils.h"
#include "genericfader.h"
#include "fadechannel.h"
#include "qlcmacros.h"
#include "vcslider.h"
#include "function.h"
#include "tardis.h"
#include "doc.h"
#include "app.h"

#define INPUT_SLIDER_CONTROL_ID     0
#define INPUT_SLIDER_RESET_ID       1
#define INPUT_SLIDER_FLASH_ID       2

VCSlider::VCSlider(Doc *doc, QObject *parent)
    : VCWidget(doc, parent)
    , m_channelsTree(nullptr)
    , m_widgetMode(WSlider)
    , m_valueDisplayStyle(DMXValue)
    , m_invertedAppearance(false)
    , m_sliderMode(Adjust)
    , m_value(0)
    , m_rangeLowLimit(0)
    , m_rangeHighLimit(UCHAR_MAX)
    , m_levelValueChanged(false)
    , m_monitorEnabled(false)
    , m_monitorValue(0)
    , m_isOverriding(false)
    , m_fixtureTree(nullptr)
    , m_searchFilter(QString())
    , m_clickAndGoType(CnGNone)
    , m_cngPrimaryColor(QColor())
    , m_cngSecondaryColor(QColor())
    , m_controlledFunctionId(Function::invalidId())
    , m_adjustChangeCounter(0)
    , m_controlledAttributeIndex(Function::invalidAttributeId())
    , m_controlledAttributeId(Function::invalidAttributeId())
    , m_attributeMinValue(0)
    , m_attributeMaxValue(UCHAR_MAX)
    , m_adjustFlashEnabled(false)
{
    setType(VCWidget::SliderWidget);
    setSliderMode(Adjust);

    registerExternalControl(INPUT_SLIDER_CONTROL_ID, tr("Slider Control"), false);
    registerExternalControl(INPUT_SLIDER_RESET_ID, tr("Reset Control"), false);
    registerExternalControl(INPUT_SLIDER_FLASH_ID, tr("Flash Control"), true);
}

VCSlider::~VCSlider()
{
    /* When application exits these are already NULL and unregistration
       is no longer necessary. But a normal deletion of a VCSlider in
       design mode must unregister the slider. */
    m_doc->masterTimer()->unregisterDMXSource(this);

    // request to delete all the active faders
    removeActiveFaders();

    if (m_item)
        delete m_item;
}

QString VCSlider::defaultCaption()
{
    if (widgetStyle() == WSlider)
        return tr("Slider %1").arg(id() + 1);
    else
        return tr("Knob %1").arg(id() + 1);
}

void VCSlider::setupLookAndFeel(qreal pixelDensity, int page)
{
    setPage(page);
    setDefaultFontSize(pixelDensity * 3.5);
    setBackgroundColor(QColor("#444"));
}

void VCSlider::render(QQuickView *view, QQuickItem *parent)
{
    if (view == nullptr || parent == nullptr)
        return;

    QQmlComponent *component = new QQmlComponent(view->engine(), QUrl("qrc:/VCSliderItem.qml"));

    if (component->isError())
    {
        qDebug() << component->errors();
        return;
    }

    m_item = qobject_cast<QQuickItem*>(component->create());

    m_item->setParentItem(parent);
    m_item->setProperty("sliderObj", QVariant::fromValue(this));
}

QString VCSlider::propertiesResource() const
{
    return QString("qrc:/VCSliderProperties.qml");
}

VCWidget* VCSlider::createCopy(VCWidget* parent)
{
    Q_ASSERT(parent != nullptr);

    VCSlider* slider = new VCSlider(m_doc, parent);
    if (slider->copyFrom(this) == false)
    {
        delete slider;
        slider = nullptr;
    }

    return slider;
}

bool VCSlider::copyFrom(const VCWidget *widget)
{
    const VCSlider *slider = qobject_cast<const VCSlider*> (widget);
    if (slider == nullptr)
        return false;

    /* Copy widget style */
    setWidgetStyle(slider->widgetStyle());

    /* Copy level stuff */
    setRangeLowLimit(slider->rangeLowLimit());
    setRangeHighLimit(slider->rangeHighLimit());
    for (SceneValue scv : slider->levelChannels())
        addLevelChannel(scv.fxi, scv.channel);

    /* Copy playback stuff */
    setControlledFunction(slider->controlledFunction());

    /* Copy slider appearance */
    setValueDisplayStyle(slider->valueDisplayStyle());
    setInvertedAppearance(slider->invertedAppearance());

    /* Copy Click & Go feature */
    setClickAndGoType(slider->clickAndGoType());

    /* Copy mode & current value */
    setSliderMode(slider->sliderMode());
    setValue(slider->value(), false, false);

    /* Copy monitor mode */
    setMonitorEnabled(slider->monitorEnabled());

    /* Copy common stuff */
    return VCWidget::copyFrom(widget);
}

QVariant VCSlider::channelsList()
{
    return QVariant::fromValue(m_channelsTree);
}

/*****************************************************************************
 * Slider Mode
 *****************************************************************************/

QString VCSlider::sliderModeToString(SliderMode mode)
{
    switch (mode)
    {
        case Level: return QString("Level");
        case Submaster: return QString("Submaster");
        case GrandMaster: return QString("GrandMaster");
        case Adjust: return QString("Adjust");
        default: return QString("Unknown");
    }
}

VCSlider::SliderMode VCSlider::stringToSliderMode(const QString& mode)
{
    if (mode == QString("Level"))
        return Level;
    else if (mode == QString("Submaster"))
        return Submaster;
    else if (mode == QString("GrandMaster"))
        return GrandMaster;
    else
        return Adjust;
}

VCSlider::SliderMode VCSlider::sliderMode() const
{
    return m_sliderMode;
}

void VCSlider::setSliderMode(SliderMode mode)
{
    Q_ASSERT(mode >= Level && mode <= GrandMaster);

    if (mode != m_sliderMode)
        Tardis::instance()->enqueueAction(Tardis::VCSliderSetMode, id(), m_sliderMode, mode);

    m_sliderMode = mode;

    emit sliderModeChanged(mode);

    setRangeLowLimit(0);
    setRangeHighLimit(UCHAR_MAX);
    setControlledAttribute(Function::Intensity);
    m_controlledAttributeId = Function::invalidAttributeId();

    switch (mode)
    {
        case Level:
        case Adjust:
            setValue(0);
            m_doc->masterTimer()->registerDMXSource(this);
        break;
        case Submaster:
            setValue(UCHAR_MAX);
        break;
        case GrandMaster:
            setValueDisplayStyle(PercentageValue);
            setValue(UCHAR_MAX);
        break;
    }

    if (mode == Submaster || mode == GrandMaster)
    {
        m_doc->masterTimer()->unregisterDMXSource(this);

        // request to delete all the active faders
        removeActiveFaders();
    }
}

/*********************************************************************
 * Widget style
 *********************************************************************/

QString VCSlider::widgetStyleToString(VCSlider::SliderWidgetStyle style)
{
    if (style == VCSlider::WSlider)
        return QString("Slider");
    else if (style == VCSlider::WKnob)
        return QString("Knob");

    return QString();
}

VCSlider::SliderWidgetStyle VCSlider::stringToWidgetStyle(QString style)
{
    if (style == "Slider")
        return VCSlider::WSlider;
    else if (style == "Knob")
        return VCSlider::WKnob;

    return VCSlider::WSlider;
}

VCSlider::SliderWidgetStyle VCSlider::widgetStyle() const
{
    return m_widgetMode;
}

void VCSlider::setWidgetStyle(SliderWidgetStyle mode)
{
    if (mode == m_widgetMode)
        return;

    m_widgetMode = mode;
    emit widgetStyleChanged(mode);
}

/*****************************************************************************
 * Display style
 *****************************************************************************/

QString VCSlider::valueDisplayStyleToString(VCSlider::ValueDisplayStyle style)
{
    switch (style)
    {
        case DMXValue: return KXMLQLCVCSliderValueDisplayStyleExact;
        case PercentageValue: return KXMLQLCVCSliderValueDisplayStylePercentage;
        default: return QString("Unknown");
    };
}

VCSlider::ValueDisplayStyle VCSlider::stringToValueDisplayStyle(QString style)
{
    if (style == KXMLQLCVCSliderValueDisplayStyleExact)
        return DMXValue;
    else if (style == KXMLQLCVCSliderValueDisplayStylePercentage)
        return PercentageValue;
    else
        return DMXValue;
}

VCSlider::ValueDisplayStyle VCSlider::valueDisplayStyle() const
{
    return m_valueDisplayStyle;
}

void VCSlider::setValueDisplayStyle(VCSlider::ValueDisplayStyle style)
{
    if (m_valueDisplayStyle == style)
        return;

    Tardis::instance()->enqueueAction(Tardis::VCSliderSetDisplayStyle, id(), m_valueDisplayStyle, style);

    m_valueDisplayStyle = style;
    emit valueDisplayStyleChanged(style);
}

bool VCSlider::invertedAppearance() const
{
    return m_invertedAppearance;
}

void VCSlider::setInvertedAppearance(bool inverted)
{
    if (m_invertedAppearance == inverted)
        return;

    Tardis::instance()->enqueueAction(Tardis::VCSliderSetInverted, id(), m_invertedAppearance, inverted);
    m_invertedAppearance = inverted;
    emit invertedAppearanceChanged(inverted);
}

/*********************************************************************
 * Slider value
 *********************************************************************/

int VCSlider::value() const
{
    return m_value;
}

qreal VCSlider::sliderValueToAttributeValue(int value)
{
    qreal fraction;

    if (m_controlledAttributeIndex == Function::Intensity)
        fraction = SCALE(qreal(value), m_rangeLowLimit, m_rangeHighLimit, 0, 1.0);
    else
        fraction = SCALE(qreal(value), m_rangeLowLimit, m_rangeHighLimit, m_attributeMinValue, m_attributeMaxValue);

    return fraction;
}

qreal VCSlider::attributeValueToSliderValue(qreal value)
{
    qreal fraction;

    if (m_controlledAttributeIndex == Function::Intensity)
        fraction = SCALE(value, 0.0, 1.0, m_rangeLowLimit, m_rangeHighLimit);
    else
        fraction = SCALE(value, m_attributeMinValue, m_attributeMaxValue, m_rangeLowLimit, m_rangeHighLimit);

    return fraction;
}

void VCSlider::setValue(int value, bool setDMX, bool updateFeedback)
{
    if (m_value == value)
        return;

    Tardis::instance()->enqueueAction(Tardis::VCSliderSetValue, id(), m_value, value);

    m_value = value;

    switch(sliderMode())
    {
        case Level:
            if (m_monitorEnabled == true && m_isOverriding == false && setDMX)
            {
                m_isOverriding = true;
                emit isOverridingChanged();
            }

            if (clickAndGoType() == CnGPreset)
                updateClickAndGoResource();
        break;
        case Submaster:
            emit submasterValueChanged(SCALE(qreal(m_value), qreal(0),
                    qreal(UCHAR_MAX), qreal(0), qreal(1.0)) * intensity());
        break;
        case GrandMaster:
            m_doc->inputOutputMap()->setGrandMasterValue(value);
        break;
        case Adjust:
            m_adjustChangeCounter++;
        break;
    }

    emit valueChanged(value);

    if (setDMX)
        m_levelValueChanged = true;

    if (updateFeedback)
        this->updateFeedback();
}

void VCSlider::setRangeLowLimit(qreal value)
{
    if (value == m_rangeLowLimit)
        return;

    Tardis::instance()->enqueueAction(Tardis::VCSliderSetLowLimit, id(), m_rangeLowLimit, value);
    m_rangeLowLimit = value;
    emit rangeLowLimitChanged();
}

qreal VCSlider::rangeLowLimit() const
{
    return m_rangeLowLimit;
}

void VCSlider::setRangeHighLimit(qreal value)
{
    if (value == m_rangeLowLimit)
        return;

    Tardis::instance()->enqueueAction(Tardis::VCSliderSetHighLimit, id(), m_rangeHighLimit, value);
    m_rangeHighLimit = value;
    emit rangeHighLimitChanged();
}

qreal VCSlider::rangeHighLimit() const
{
    return m_rangeHighLimit;
}

/*********************************************************************
 * Level mode
 *********************************************************************/

void VCSlider::setMonitorEnabled(bool enable)
{
    if (enable == m_monitorEnabled)
        return;

    m_monitorEnabled = enable;

    emit monitorEnabledChanged();
}

bool VCSlider::monitorEnabled() const
{
    return m_monitorEnabled;
}

int VCSlider::monitorValue() const
{
    return m_monitorValue;
}

bool VCSlider::isOverriding() const
{
    return m_isOverriding;
}

void VCSlider::setIsOverriding(bool enable)
{
    if (enable == false && m_monitorEnabled)
    {
        if (m_isOverriding)
        {
            removeActiveFaders();
            setValue(m_monitorValue, false, false);
        }
        else
        {
            // reset once more
            //setValue(0, true, true);
        }
    }

    m_isOverriding = enable;
    emit isOverridingChanged();
}

void VCSlider::addLevelChannel(quint32 fixture, quint32 channel)
{
    SceneValue lch(fixture, channel);

    if (m_levelChannels.contains(lch) == false)
        m_levelChannels.append(lch);
}

void VCSlider::removeLevelChannel(quint32 fixture, quint32 channel)
{
    SceneValue lch(fixture, channel);
    m_levelChannels.removeAll(lch);
}

void VCSlider::clearLevelChannels()
{
    m_levelChannels.clear();
}

QList<SceneValue> VCSlider::levelChannels() const
{
    return m_levelChannels;
}

QVariant VCSlider::groupsTreeModel()
{
    qDebug() << "Requesting tree model from slider" << m_levelChannels.count();
    if (m_fixtureTree == nullptr)
    {
        m_fixtureTree = new TreeModel(this);
        QQmlEngine::setObjectOwnership(m_fixtureTree, QQmlEngine::CppOwnership);
        QStringList treeColumns;
        treeColumns << "classRef" << "type" << "id" << "subid" << "chIdx" << "inGroup";
        m_fixtureTree->setColumnNames(treeColumns);
        m_fixtureTree->enableSorting(false);

        FixtureManager::updateGroupsTree(m_doc, m_fixtureTree, m_searchFilter,
                                         FixtureManager::ShowCheckBoxes | FixtureManager::ShowGroups | FixtureManager::ShowChannels,
                                         m_levelChannels);

        connect(m_fixtureTree, SIGNAL(roleChanged(TreeModelItem*,int,const QVariant&)),
                this, SLOT(slotTreeDataChanged(TreeModelItem*,int,const QVariant&)));
    }

    return QVariant::fromValue(m_fixtureTree);
}

QString VCSlider::searchFilter() const
{
    return m_searchFilter;
}

void VCSlider::setSearchFilter(QString searchFilter)
{
    if (m_searchFilter == searchFilter)
        return;

    int currLen = m_searchFilter.length();

    m_searchFilter = searchFilter;

    if (searchFilter.length() >= SEARCH_MIN_CHARS ||
        (currLen >= SEARCH_MIN_CHARS && searchFilter.length() < SEARCH_MIN_CHARS))
    {
        FixtureManager::updateGroupsTree(m_doc, m_fixtureTree, m_searchFilter,
                                         FixtureManager::ShowCheckBoxes | FixtureManager::ShowGroups | FixtureManager::ShowChannels,
                                         m_levelChannels);
        emit groupsTreeModelChanged();
    }

    emit searchFilterChanged();
}

void VCSlider::removeActiveFaders()
{
    foreach (QSharedPointer<GenericFader> fader, m_fadersMap)
    {
        if (!fader.isNull())
            fader->requestDelete();
    }
    m_fadersMap.clear();
}

void VCSlider::slotTreeDataChanged(TreeModelItem *item, int role, const QVariant &value)
{
    qDebug() << "Slider tree data changed" << value.toInt();
    qDebug() << "Item data:" << item->data();

    if (role != TreeModel::IsCheckedRole)
        return;

    QVariantList itemData = item->data();
    // itemData must be "classRef" << "type" << "id" << "subid" << "chIdx" << "inGroup";
    if (itemData.count() != 6)
        return;

    //QString type = itemData.at(1).toString();
    quint32 itemID = itemData.at(2).toUInt();
    quint32 chIndex = itemData.at(4).toUInt();
    quint32 fixtureID = FixtureUtils::itemFixtureID(itemID);

    if (value.toInt() == 0)
    {
        removeLevelChannel(fixtureID, chIndex);
    }
    else
    {
        addLevelChannel(fixtureID, chIndex);
        std::sort(m_levelChannels.begin(), m_levelChannels.end());
   }

    if (clickAndGoType() == CnGPreset)
    {
        updateClickAndGoResource();
        emit clickAndGoPresetsListChanged();
    }
}

/*********************************************************************
 * Click & Go
 *********************************************************************/

VCSlider::ClickAndGoType VCSlider::clickAndGoType() const
{
    return m_clickAndGoType;
}

void VCSlider::setClickAndGoType(VCSlider::ClickAndGoType clickAndGoType)
{
    if (m_clickAndGoType == clickAndGoType)
        return;

    m_clickAndGoType = clickAndGoType;
    emit clickAndGoTypeChanged(m_clickAndGoType);
}

QString VCSlider::clickAndGoTypeToString(VCSlider::ClickAndGoType type)
{
    switch (type)
    {
        default:
        case CnGNone: return "None"; break;
        case CnGColors: return "Colors"; break;
        case CnGPreset: return "Preset"; break;
    }
}

VCSlider::ClickAndGoType VCSlider::stringToClickAndGoType(QString str)
{
    if (str == "Colors" || str == "RGB" || str == "CMY")
        return CnGColors;
    else if (str == "Preset")
        return CnGPreset;

    return CnGNone;
}

QColor VCSlider::cngPrimaryColor() const
{
    return m_cngPrimaryColor;
}

QColor VCSlider::cngSecondaryColor() const
{
    return m_cngSecondaryColor;
}

QVariantList VCSlider::clickAndGoPresetsList()
{
    QVariantList prList;

    if (sliderMode() != Level || m_levelChannels.isEmpty())
        return prList;

    /* Find the first valid channel and return it to QML */
    for (SceneValue &scv : m_levelChannels)
    {
        Fixture *fixture = m_doc->fixture(scv.fxi);
        if (fixture == nullptr)
            continue;

        const QLCFixtureDef *def = fixture->fixtureDef();
        const QLCFixtureMode *mode = fixture->fixtureMode();

        if (def == nullptr || mode == nullptr)
            continue;

        const QLCChannel *ch = fixture->channel(scv.channel);

        if (ch == nullptr)
            continue;

        QVariantMap prMap;
        prMap.insert("name", QString("%1 - %2")
                            .arg(def->model())
                            .arg(ch->name()));
        prMap.insert("fixtureID", scv.fxi);
        prMap.insert("channelIdx", scv.channel);
        prList.append(prMap);

        break;
    }

    return prList;
}

QString VCSlider::cngPresetResource() const
{
    return m_cngResource;
}

void VCSlider::setClickAndGoColors(QColor rgb, QColor wauv)
{
    m_cngPrimaryColor = rgb;
    m_cngSecondaryColor = wauv;

    setValue(128, true, true);

    emit cngPrimaryColorChanged(rgb);
    emit cngSecondaryColorChanged(wauv);
}

void VCSlider::setClickAndGoPresetValue(int value)
{
    setValue(value, true, true);
}

void VCSlider::updateClickAndGoResource()
{
    /* Find the first valid channel and retrieve the capability
     * resource from the current slider value */
    for (SceneValue scv : m_levelChannels)
    {
        Fixture *fixture = m_doc->fixture(scv.fxi);
        if (fixture == nullptr)
            continue;

        const QLCChannel *ch = fixture->channel(scv.channel);
        if (ch == nullptr)
            return;

        for (QLCCapability *cap : ch->capabilities())
        {
            if (m_value < cap->min() || m_value > cap->max())
                continue;

            if (cap->presetType() == QLCCapability::Picture)
            {
                m_cngResource = cap->resource(0).toString();
            }
            else if (cap->presetType() == QLCCapability::SingleColor)
            {
                m_cngResource = QString();
                m_cngPrimaryColor = cap->resource(0).value<QColor>();
                m_cngSecondaryColor = QColor();
                emit cngPrimaryColorChanged(m_cngPrimaryColor);
                emit cngSecondaryColorChanged(QColor());
            }
            else if (cap->presetType() == QLCCapability::DoubleColor)
            {
                m_cngResource = QString();
                m_cngPrimaryColor = cap->resource(0).value<QColor>();
                m_cngSecondaryColor = cap->resource(1).value<QColor>();
                emit cngPrimaryColorChanged(m_cngPrimaryColor);
                emit cngSecondaryColorChanged(m_cngSecondaryColor);
            }
            else
            {
                m_cngResource = QString();
            }

            emit cngPresetResourceChanged();
            return;
        }
    }
}

/*********************************************************************
 * Attribute mode
 *********************************************************************/

quint32 VCSlider::controlledFunction() const
{
    return m_controlledFunctionId;
}

void VCSlider::setControlledFunction(quint32 fid)
{
    bool running = false;

    if (m_controlledFunctionId == fid)
        return;

    Function *current = m_doc->function(m_controlledFunctionId);
    if (current != nullptr)
    {
        /* Get rid of old function connections */
        disconnect(current, SIGNAL(stopped(quint32)),
                this, SLOT(slotControlledFunctionStopped(quint32)));
        disconnect(current, SIGNAL(attributeChanged(int,qreal)),
                this, SLOT(slotControlledFunctionAttributeChanged(int,qreal)));

        if (current->isRunning())
        {
            running = true;
            current->stop(functionParent());
        }
    }

    Function *function = m_doc->function(fid);
    if (function != nullptr)
    {
        /* Connect to the new function */
        connect(function, SIGNAL(stopped(quint32)),
                this, SLOT(slotControlledFunctionStopped(quint32)));
        connect(function, SIGNAL(attributeChanged(int,qreal)),
                this, SLOT(slotControlledFunctionAttributeChanged(int,qreal)));

        m_controlledFunctionId = fid;
        m_controlledAttributeIndex = Function::Intensity;

        if ((isEditing() && caption().isEmpty()) || caption() == defaultCaption())
            setCaption(function->name());

        if (running)
            function->start(m_doc->masterTimer(), functionParent());

        emit controlledFunctionChanged(fid);
        emit availableAttributesChanged();
    }
    else
    {
        /* No function attachment */
        m_controlledFunctionId = Function::invalidId();
        emit controlledFunctionChanged(-1);
    }

    Tardis::instance()->enqueueAction(Tardis::VCSliderSetFunctionID, id(),
                                      current ? current->id() : Function::invalidId(),
                                      function ? function->id() : Function::invalidId());
}

void VCSlider::adjustIntensity(qreal val)
{
    VCWidget::adjustIntensity(val);

    if (sliderMode() == Adjust)
    {
        Function *function = m_doc->function(m_controlledFunctionId);
        if (function == nullptr)
            return;

        qreal fraction = sliderValueToAttributeValue(m_value);
        adjustFunctionAttribute(function, fraction * intensity());
    }
    else if (sliderMode() == Level)
    {
        // force channel levels refresh
        m_levelValueChanged = true;
    }
}

void VCSlider::slotControlledFunctionAttributeChanged(int attrIndex, qreal fraction)
{
    if (attrIndex != m_controlledAttributeIndex || m_adjustChangeCounter)
        return;

    qreal newValue = qRound(attributeValueToSliderValue(fraction / intensity()));

    qDebug() << "Function attribute" << m_controlledAttributeIndex << "changed" << fraction << "->" << newValue;

    setValue(newValue, false, true);
}

void VCSlider::slotControlledFunctionStopped(quint32 fid)
{
    if (fid == controlledFunction())
    {
        if (m_controlledAttributeIndex == Function::Intensity)
            setValue(0, false, true);

        Function *function = m_doc->function(fid);
        function->releaseAttributeOverride(m_controlledAttributeId);
        m_controlledAttributeId = Function::invalidAttributeId();
    }
}

int VCSlider::controlledAttribute() const
{
    return m_controlledAttributeIndex;
}

void VCSlider::setControlledAttribute(int attributeIndex)
{
    if (m_controlledAttributeIndex == attributeIndex)
        return;

    Function *function = m_doc->function(m_controlledFunctionId);
    if (function == nullptr || attributeIndex >= function->attributes().count())
        return;

    function->releaseAttributeOverride(m_controlledAttributeId);
    m_controlledAttributeId = Function::invalidAttributeId();

    Tardis::instance()->enqueueAction(Tardis::VCSliderSetControlledAttribute, id(), m_controlledAttributeIndex, attributeIndex);

    m_controlledAttributeIndex = attributeIndex;
    qreal newValue = 0;

    // normalize intensity to 0-255 since Slider / Spin boxes step is an integer
    if (m_controlledAttributeIndex == Function::Intensity)
    {
        m_attributeMinValue = 0;
        m_attributeMaxValue = 255;
    }
    else
    {
        m_attributeMinValue = function->attributes().at(m_controlledAttributeIndex).m_min;
        m_attributeMaxValue = function->attributes().at(m_controlledAttributeIndex).m_max;
        newValue = function->getAttributeValue(m_controlledAttributeIndex);
    }

    setRangeLowLimit(m_attributeMinValue);
    setRangeHighLimit(m_attributeMaxValue);

    emit controlledAttributeChanged(attributeIndex);
    emit attributeMinValueChanged();
    emit attributeMaxValueChanged();

    setValue(newValue, false, true);
}

void VCSlider::adjustFunctionAttribute(Function *f, qreal value)
{
    if (f == nullptr)
        return;

    if (m_controlledAttributeId == Function::invalidAttributeId())
        m_controlledAttributeId = f->requestAttributeOverride(m_controlledAttributeIndex, value);
    else
        f->adjustAttribute(value, m_controlledAttributeId);
}

bool VCSlider::adjustFlashEnabled() const
{
    return m_adjustFlashEnabled;
}

void VCSlider::setAdjustFlashEnabled(bool enable)
{
    if (enable == m_adjustFlashEnabled)
        return;

    m_adjustFlashEnabled = enable;
    emit adjustFlashEnabledChanged(enable);
}

void VCSlider::flashFunction(bool on)
{
    Function *function = m_doc->function(m_controlledFunctionId);
    if (function == nullptr)
        return;

    if (on)
    {
        if (m_controlledAttributeId == Function::invalidAttributeId())
            m_adjustFlashPreviousValue = 0;
        else
            m_adjustFlashPreviousValue = function->getAttributeValue(m_controlledAttributeIndex);
    }

    adjustFunctionAttribute(function, on ? 1.0 : m_adjustFlashPreviousValue);
}

QStringList VCSlider::availableAttributes() const
{
    QStringList list;

    Function *function = m_doc->function(m_controlledFunctionId);
    if (function == nullptr)
        return list;

    for (Attribute &attr : function->attributes())
        list << attr.m_name;

    return list;
}

qreal VCSlider::attributeMinValue() const
{
    return m_attributeMinValue;
}

qreal VCSlider::attributeMaxValue() const
{
    return m_attributeMaxValue;
}

FunctionParent VCSlider::functionParent() const
{
    return FunctionParent(FunctionParent::ManualVCWidget, id());
}

/*********************************************************************
 * Grand Master mode
 *********************************************************************/

GrandMaster::ValueMode VCSlider::grandMasterValueMode() const
{
    return m_doc->inputOutputMap()->grandMasterValueMode();
}

void VCSlider::setGrandMasterValueMode(GrandMaster::ValueMode mode)
{
    if (mode == m_doc->inputOutputMap()->grandMasterValueMode())
        return;

    m_doc->inputOutputMap()->setGrandMasterValueMode(mode);
    emit grandMasterValueModeChanged(mode);
}

GrandMaster::ChannelMode VCSlider::grandMasterChannelMode() const
{
    return m_doc->inputOutputMap()->grandMasterChannelMode();
}

void VCSlider::setGrandMasterChannelMode(GrandMaster::ChannelMode mode)
{
    if (mode == m_doc->inputOutputMap()->grandMasterChannelMode())
        return;

    m_doc->inputOutputMap()->setGrandMasterChannelMode(mode);
    emit grandMasterChannelModeChanged(mode);
}

/*********************************************************************
 * DMXSource
 *********************************************************************/

void VCSlider::writeDMX(MasterTimer* timer, QList<Universe*> universes)
{
    if (sliderMode() == Level)
        writeDMXLevel(timer, universes);
    else if (sliderMode() == Adjust)
        writeDMXAdjust(timer, universes);
}

void VCSlider::writeDMXLevel(MasterTimer* timer, QList<Universe *> universes)
{
    Q_UNUSED(timer);

    QMutexLocker locker(&m_levelValueMutex);

    uchar modLevel = m_value;

    int r = 0, g = 0, b = 0, c = 0, m = 0, y = 0, w = 0, a = 0, uv = 0;

    if (clickAndGoType() == CnGColors)
    {
        float f = SCALE(float(modLevel), rangeLowLimit(), rangeHighLimit(), 0.0, 200.0);

        if ((uchar)f != 0)
        {
            QColor modColor = m_cngPrimaryColor.lighter((uchar)f);
            r = modColor.red();
            g = modColor.green();
            b = modColor.blue();
            c = modColor.cyan();
            m = modColor.magenta();
            y = modColor.yellow();

            modColor = m_cngSecondaryColor.lighter((uchar)f);
            w = modColor.red();
            a = modColor.green();
            uv = modColor.blue();
        }
    }

    if (m_monitorEnabled == true && m_levelValueChanged == false)
    {
        bool mixedDMXlevels = false;
        int monitorSliderValue = -1;

        for (SceneValue &scv : m_levelChannels)
        {
            Fixture* fxi = m_doc->fixture(scv.fxi);
            if (fxi != nullptr)
            {
                const QLCChannel* qlcch = fxi->channel(scv.channel);
                if (qlcch == nullptr)
                    continue;

                quint32 dmx_ch = fxi->address() + scv.channel;
                int uni = fxi->universe();
                if (uni < universes.count())
                {
                    uchar chValue = universes[uni]->preGMValue(dmx_ch);
                    if (monitorSliderValue == -1)
                    {
                        monitorSliderValue = chValue;
                        //qDebug() << caption() << "Monitor DMX value:" << monitorSliderValue << "level value:" << m_value;
                    }
                    else
                    {
                        if (chValue != (uchar)monitorSliderValue)
                        {
                            mixedDMXlevels = true;
                            // no need to proceed further as mixed values cannot
                            // be represented by one single slider
                            break;
                        }
                    }
                }
            }
        }

        // check if all the DMX channels controlled by this slider
        // have the same value. If so, move the widget slider or knob
        // to the detected position
        if (mixedDMXlevels == false &&
            monitorSliderValue != -1 &&
            monitorSliderValue != m_monitorValue)
        {
            //qDebug() << caption() << "Monitor DMX value:" << monitorSliderValue << "level value:" << m_value;

            m_monitorValue = monitorSliderValue;
            emit monitorValueChanged();

            if (m_isOverriding == false)
            {
                setValue(m_monitorValue, false, true);
                return;
            }
        }
    }

    if (m_levelValueChanged)
    {
        for (SceneValue &scv : m_levelChannels)
        {
            Fixture* fxi = m_doc->fixture(scv.fxi);
            if (fxi == nullptr)
                continue;

            quint32 universe = fxi->universe();

            QSharedPointer<GenericFader> fader = m_fadersMap.value(universe, QSharedPointer<GenericFader>(nullptr));
            if (fader.isNull())
            {
                fader = universes[universe]->requestFader(m_monitorEnabled ? Universe::Override : Universe::Auto);
                m_fadersMap[universe] = fader;
            }

            FadeChannel *fc = fader->getChannelFader(m_doc, universes[universe], scv.fxi, scv.channel);
            if (fc->universe() == Universe::invalid())
            {
                fader->remove(fc);
                continue;
            }

            int chType = fc->flags();

            // on override, force channel to LTP
            if (m_isOverriding)
                fc->addFlag(FadeChannel::Override);

            // request to autoremove LTP channels when set
            if (! (chType & FadeChannel::Intensity))
                fc->addFlag(FadeChannel::AutoRemove);

            if (chType & FadeChannel::Intensity && clickAndGoType() == CnGColors)
            {
                const QLCChannel *qlcch = fxi->channel(scv.channel);

                if (qlcch != nullptr)
                {
                    switch (qlcch->colour())
                    {
                        case QLCChannel::Red: modLevel = (uchar)r; break;
                        case QLCChannel::Green: modLevel = (uchar)g; break;
                        case QLCChannel::Blue: modLevel = (uchar)b; break;
                        case QLCChannel::Cyan: modLevel = (uchar)c; break;
                        case QLCChannel::Magenta: modLevel = (uchar)m; break;
                        case QLCChannel::Yellow: modLevel = (uchar)y; break;
                        case QLCChannel::White: modLevel = (uchar)w; break;
                        case QLCChannel::Amber: modLevel = (uchar)a; break;
                        case QLCChannel::UV: modLevel = (uchar)uv; break;
                        default: break;
                    }
                }
            }

            fc->setStart(fc->current());
            fc->setTarget(qreal(modLevel) * intensity());
            fc->setReady(false);
            fc->setElapsed(0);
        }
    }
    m_levelValueChanged = false;
}

void VCSlider::writeDMXAdjust(MasterTimer* timer, QList<Universe *> ua)
{
    Q_UNUSED(ua);

    QMutexLocker locker(&m_levelValueMutex);

    if (m_adjustChangeCounter == 0)
        return;

    Function *function = m_doc->function(m_controlledFunctionId);
    if (function == nullptr)
        return;

    qreal fraction = sliderValueToAttributeValue(m_value);

    qDebug() << "Adjust Function attribute" << m_controlledAttributeIndex << "to" << fraction;

    if (m_controlledAttributeIndex == Function::Intensity)
    {
        if (m_value == 0)
        {
            if (function->stopped() == false)
            {
                function->stop(functionParent());
                m_controlledAttributeId = Function::invalidAttributeId();
                m_adjustChangeCounter--;
                return;
            }
        }
        else
        {
            if (function->stopped() == true)
            {
#if 0 // temporarily revert #699 until a better solution is found
                // Since this function is started by a fader, its fade in time
                // is decided by the fader movement.
                function->start(timer, functionParent(),
                                0, 0, Function::defaultSpeed(), Function::defaultSpeed());
#endif
                function->start(timer, functionParent());
                qDebug() << "Function started";
            }
            emit functionStarting(this, m_controlledFunctionId, fraction);
        }
    }

    adjustFunctionAttribute(function, fraction * intensity());

    m_adjustChangeCounter--;
}

/*********************************************************************
 * External input
 *********************************************************************/

void VCSlider::updateFeedback()
{
    int fbv = invertedAppearance() ? rangeHighLimit() - m_value : m_value;
    fbv = int(SCALE(float(fbv), float(rangeLowLimit()),
                    float(rangeHighLimit()), float(0), float(UCHAR_MAX)));

    sendFeedback(fbv, INPUT_SLIDER_CONTROL_ID);
}

void VCSlider::slotInputValueChanged(quint8 id, uchar value)
{
    int scaledValue = SCALE(float(value), float(0), float(UCHAR_MAX),
            float(rangeLowLimit()),
            float(rangeHighLimit()));

    switch (id)
    {
        case INPUT_SLIDER_CONTROL_ID:
            setValue(scaledValue, true, false);
        break;
        case INPUT_SLIDER_RESET_ID:
            if (value)
                setIsOverriding(false);
        break;
        case INPUT_SLIDER_FLASH_ID:
            flashFunction(value ? true : false);
        break;
    }
}

/*********************************************************************
 * Load & Save
 *********************************************************************/

bool VCSlider::loadXML(QXmlStreamReader &root)
{
    if (root.name() != KXMLQLCVCSlider)
    {
        qWarning() << Q_FUNC_INFO << "Slider node not found";
        return false;
    }

    QString str;
    bool enableMonitoring = false;

    /* Widget commons */
    loadXMLCommon(root);

    QXmlStreamAttributes attrs = root.attributes();

    /* Widget style */
    if (attrs.hasAttribute(KXMLQLCVCSliderWidgetStyle))
        setWidgetStyle(stringToWidgetStyle(attrs.value(KXMLQLCVCSliderWidgetStyle).toString()));

    if (attrs.value(KXMLQLCVCSliderInvertedAppearance).toString() == "false")
        setInvertedAppearance(false);
    else
        setInvertedAppearance(true);

    while (root.readNextStartElement())
    {
        if (root.name() == KXMLQLCWindowState)
        {
            bool visible = false;
            int x = 0, y = 0, w = 0, h = 0;
            loadXMLWindowState(root, &x, &y, &w, &h, &visible);
            setGeometry(QRect(x, y, w, h));
        }
        else if (root.name() == KXMLQLCVCWidgetAppearance)
        {
            loadXMLAppearance(root);
        }
        else if (root.name() == KXMLQLCVCWidgetInput)
        {
            loadXMLInputSource(root, INPUT_SLIDER_CONTROL_ID);
        }
        else if (root.name() == KXMLQLCVCSliderMode)
        {
            QXmlStreamAttributes mAttrs = root.attributes();
            setSliderMode(stringToSliderMode(root.readElementText()));

            str = mAttrs.value(KXMLQLCVCSliderValueDisplayStyle).toString();
            setValueDisplayStyle(stringToValueDisplayStyle(str));

            if (mAttrs.hasAttribute(KXMLQLCVCSliderClickAndGoType))
            {
                str = mAttrs.value(KXMLQLCVCSliderClickAndGoType).toString();
                setClickAndGoType(stringToClickAndGoType(str));
            }

            if (mAttrs.hasAttribute(KXMLQLCVCSliderLevelMonitor))
            {
                if (mAttrs.value(KXMLQLCVCSliderLevelMonitor).toString() != "false")
                    enableMonitoring = true;
            }
        }
        else if (root.name() == KXMLQLCVCSliderOverrideReset)
        {
            loadXMLSources(root, INPUT_SLIDER_RESET_ID);
        }
        else if (root.name() == KXMLQLCVCSliderLevel)
        {
            loadXMLLevel(root);
        }
        else if (root.name() == KXMLQLCVCSliderAdjust)
        {
            loadXMLAdjust(root);
        }
        else if (root.name() == KXMLQLCVCSliderFunctionFlash)
        {
            setAdjustFlashEnabled(true);
            loadXMLSources(root, INPUT_SLIDER_FLASH_ID);
        }
        else if (root.name() == KXMLQLCVCSliderPlayback) // LEGACY
        {
            loadXMLLegacyPlayback(root);
        }
        else
        {
            qWarning() << Q_FUNC_INFO << "Unknown slider tag:" << root.name().toString();
            root.skipCurrentElement();
        }
    }

    setMonitorEnabled(enableMonitoring);

    if (clickAndGoType() == CnGPreset)
    {
        updateClickAndGoResource();
        emit clickAndGoPresetsListChanged();
    }

    return true;
}


bool VCSlider::loadXMLLevel(QXmlStreamReader &level_root)
{
    int value;

    if (level_root.name() != KXMLQLCVCSliderLevel)
    {
        qWarning() << Q_FUNC_INFO << "Slider level node not found";
        return false;
    }

    QXmlStreamAttributes attrs = level_root.attributes();

    /* Level low limit */
    value = attrs.value(KXMLQLCVCSliderLevelLowLimit).toInt();
    setRangeLowLimit(value);

    /* Level high limit */
    value = attrs.value(KXMLQLCVCSliderLevelHighLimit).toInt();
    setRangeHighLimit(value);

    /* Level value */
    value = attrs.value(KXMLQLCVCSliderLevelValue).toInt();
    setValue(value);

    QXmlStreamReader::TokenType tType = level_root.readNext();

    if (tType == QXmlStreamReader::EndElement)
    {
        level_root.readNext();
        return true;
    }

    if (tType == QXmlStreamReader::Characters)
        tType = level_root.readNext();

    // check if there is a Channel tag defined
    if (tType == QXmlStreamReader::StartElement)
    {
        /* Children */
        do
        {
            if (level_root.name() == KXMLQLCVCSliderChannel)
            {
                /* Fixture & channel */
                value = level_root.attributes().value(KXMLQLCVCSliderChannelFixture).toInt();
                addLevelChannel(
                    static_cast<quint32>(value),
                    static_cast<quint32> (level_root.readElementText().toInt()));
            }
            else
            {
                qWarning() << Q_FUNC_INFO << "Unknown slider level tag:" << level_root.name().toString();
                level_root.skipCurrentElement();
            }
        } while (level_root.readNextStartElement());
    }

    if (m_levelChannels.count())
        std::sort(m_levelChannels.begin(), m_levelChannels.end());

    return true;
}

bool VCSlider::loadXMLAdjust(QXmlStreamReader &adj_root)
{
    if (adj_root.name() != KXMLQLCVCSliderAdjust)
    {
        qWarning() << Q_FUNC_INFO << "Slider Adjust node not found";
        return false;
    }

    QXmlStreamAttributes attrs = adj_root.attributes();

    int value;

    /* Controlled Function ID */
    value = attrs.value(KXMLQLCVCSliderControlledFunction).toInt();
    setControlledFunction(value);

    /* Level high limit */
    value = attrs.value(KXMLQLCVCSliderAdjustAttribute).toInt();
    setControlledAttribute(value);

    adj_root.skipCurrentElement();

    return true;
}

bool VCSlider::loadXMLLegacyPlayback(QXmlStreamReader &pb_root)
{
    if (pb_root.name() != KXMLQLCVCSliderPlayback)
    {
        qWarning() << Q_FUNC_INFO << "Slider playback node not found";
        return false;
    }

    /* Children */
    while (pb_root.readNextStartElement())
    {
        if (pb_root.name() == KXMLQLCVCSliderControlledFunction)
        {
            /* Function */
            setControlledFunction(pb_root.readElementText().toUInt());
            setControlledAttribute(Function::Intensity);
        }
        else if (pb_root.name() == KXMLQLCVCSliderFunctionFlash)
        {
            setAdjustFlashEnabled(true);
            loadXMLSources(pb_root, INPUT_SLIDER_FLASH_ID);
        }
        else
        {
            qWarning() << Q_FUNC_INFO << "Unknown slider playback tag:" << pb_root.name().toString();
            pb_root.skipCurrentElement();
        }
    }

    return true;
}

bool VCSlider::saveXML(QXmlStreamWriter *doc)
{
    Q_ASSERT(doc != nullptr);

    /* VC slider entry */
    doc->writeStartElement(KXMLQLCVCSlider);

    saveXMLCommon(doc);

    /* Widget style */
    doc->writeAttribute(KXMLQLCVCSliderWidgetStyle, widgetStyleToString(widgetStyle()));

    /* Inverted appearance */
    if (invertedAppearance() == true)
        doc->writeAttribute(KXMLQLCVCSliderInvertedAppearance, "true");
    else
        doc->writeAttribute(KXMLQLCVCSliderInvertedAppearance, "false");

    /* Window state */
    saveXMLWindowState(doc);

    /* Appearance */
    saveXMLAppearance(doc);

    /* Main external control */
    saveXMLInputControl(doc, INPUT_SLIDER_CONTROL_ID);

    /* SliderMode */
    doc->writeStartElement(KXMLQLCVCSliderMode);

    /* Value display style */
    doc->writeAttribute(KXMLQLCVCSliderValueDisplayStyle, valueDisplayStyleToString(valueDisplayStyle()));

    /* Click And Go type */
    if (m_clickAndGoType != CnGNone)
        doc->writeAttribute(KXMLQLCVCSliderClickAndGoType, clickAndGoTypeToString(m_clickAndGoType));

    /* Monitor channels */
    if (sliderMode() == Level && monitorEnabled() == true)
        doc->writeAttribute(KXMLQLCVCSliderLevelMonitor, "true");

    doc->writeCharacters(sliderModeToString(m_sliderMode));

    /* End the <SliderMode> tag */
    doc->writeEndElement();

    /* Override reset external control */
    if (sliderMode() == Level && monitorEnabled() == true)
        saveXMLInputControl(doc, INPUT_SLIDER_RESET_ID, false, KXMLQLCVCSliderOverrideReset);

    /* Level */
    doc->writeStartElement(KXMLQLCVCSliderLevel);
    /* Level low limit */
    doc->writeAttribute(KXMLQLCVCSliderLevelLowLimit, QString::number(rangeLowLimit()));
    /* Level high limit */
    doc->writeAttribute(KXMLQLCVCSliderLevelHighLimit, QString::number(rangeHighLimit()));
    /* Level value */
    if (monitorEnabled())
        doc->writeAttribute(KXMLQLCVCSliderLevelValue, QString::number(0));
    else
        doc->writeAttribute(KXMLQLCVCSliderLevelValue, QString::number(value()));

    /* Level channels */
    for (SceneValue &scv : m_levelChannels)
    {
        doc->writeStartElement(KXMLQLCVCSliderChannel);
        doc->writeAttribute(KXMLQLCVCSliderChannelFixture, QString::number(scv.fxi));
        doc->writeCharacters(QString::number(scv.channel));
        doc->writeEndElement();
    }

    /* End the <Level> tag */
    doc->writeEndElement();

    if (controlledFunction() != Function::invalidId())
    {
        /* Start the <Adjust> tag */
        doc->writeStartElement(KXMLQLCVCSliderAdjust);
        /* Controlled attribute index */
        doc->writeAttribute(KXMLQLCVCSliderAdjustAttribute, QString::number(controlledAttribute()));
        /* Controlled function ID */
        doc->writeAttribute(KXMLQLCVCSliderControlledFunction, QString::number(controlledFunction()));
        /* End the <Adjust> tag */
        doc->writeEndElement();

        if (adjustFlashEnabled())
            saveXMLInputControl(doc, INPUT_SLIDER_FLASH_ID, false, KXMLQLCVCSliderFunctionFlash);
    }

    /* End the <Slider> tag */
    doc->writeEndElement();

    return true;
}