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
1613
1614
1615
1616
1617
1618
1619
1620
1621
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qsvgvisitorimpl_p.h"
#include "qquickgenerator_p.h"
#include "qquicknodeinfo_p.h"
#include <private/qsvgvisitor_p.h>
#include <QString>
#include <QPainter>
#include <QTextDocument>
#include <QTextLayout>
#include <QMatrix4x4>
#include <QQuickItem>
#include <private/qquickshape_p.h>
#include <private/qquicktext_p.h>
#include <private/qquicktranslate_p.h>
#include <private/qquickitem_p.h>
#include <private/qquickimagebase_p_p.h>
#include <private/qquickimage_p.h>
#include <private/qsgcurveprocessor_p.h>
#include <private/qquadpath_p.h>
#include <QtCore/private/qstringiterator_p.h>
#include "utils_p.h"
#include <QtCore/qloggingcategory.h>
#include <QtSvg/private/qsvgstyle_p.h>
QT_BEGIN_NAMESPACE
Q_STATIC_LOGGING_CATEGORY(lcVectorImageAnimations, "qt.quick.vectorimage.animations")
using namespace Qt::StringLiterals;
class QSvgStyleResolver
{
public:
QSvgStyleResolver()
{
m_dummyImage = QImage(1, 1, QImage::Format_RGB32);
m_dummyPainter.begin(&m_dummyImage);
QPen defaultPen(Qt::NoBrush, 1, Qt::SolidLine, Qt::FlatCap, Qt::SvgMiterJoin);
defaultPen.setMiterLimit(4);
m_dummyPainter.setPen(defaultPen);
m_dummyPainter.setBrush(Qt::black);
}
~QSvgStyleResolver()
{
m_dummyPainter.end();
}
QPainter& painter() { return m_dummyPainter; }
QSvgExtraStates& states() { return m_svgState; }
QColor currentFillColor() const
{
if (m_dummyPainter.brush().style() == Qt::NoBrush ||
m_dummyPainter.brush().color() == QColorConstants::Transparent) {
return QColor(QColorConstants::Transparent);
}
QColor fillColor;
fillColor = m_dummyPainter.brush().color();
fillColor.setAlphaF(m_svgState.fillOpacity);
return fillColor;
}
qreal currentFillOpacity() const
{
return m_svgState.fillOpacity;
}
const QGradient *currentStrokeGradient() const
{
QBrush brush = m_dummyPainter.pen().brush();
if (brush.style() == Qt::LinearGradientPattern
|| brush.style() == Qt::RadialGradientPattern
|| brush.style() == Qt::ConicalGradientPattern) {
return brush.gradient();
}
return nullptr;
}
const QGradient *currentFillGradient() const
{
if (m_dummyPainter.brush().style() == Qt::LinearGradientPattern || m_dummyPainter.brush().style() == Qt::RadialGradientPattern || m_dummyPainter.brush().style() == Qt::ConicalGradientPattern )
return m_dummyPainter.brush().gradient();
return nullptr;
}
QTransform currentFillTransform() const
{
return m_dummyPainter.brush().transform();
}
QColor currentStrokeColor() const
{
if (m_dummyPainter.pen().brush().style() == Qt::NoBrush ||
m_dummyPainter.pen().brush().color() == QColorConstants::Transparent) {
return QColor(QColorConstants::Transparent);
}
QColor strokeColor;
strokeColor = m_dummyPainter.pen().brush().color();
strokeColor.setAlphaF(m_svgState.strokeOpacity);
return strokeColor;
}
static QGradient applyOpacityToGradient(const QGradient &gradient, float opacity)
{
QGradient grad = gradient;
QGradientStops stops;
for (auto &stop : grad.stops()) {
stop.second.setAlphaF(stop.second.alphaF() * opacity);
stops.append(stop);
}
grad.setStops(stops);
return grad;
}
float currentStrokeWidth() const
{
float penWidth = m_dummyPainter.pen().widthF();
return penWidth ? penWidth : 1;
}
QPen currentStroke() const
{
return m_dummyPainter.pen();
}
protected:
QPainter m_dummyPainter;
QImage m_dummyImage;
QSvgExtraStates m_svgState;
};
Q_GLOBAL_STATIC(QSvgStyleResolver, styleResolver)
namespace {
inline bool isPathContainer(const QSvgStructureNode *node)
{
bool foundPath = false;
for (const auto *child : node->renderers()) {
switch (child->type()) {
// nodes that shouldn't go inside Shape{}
case QSvgNode::Switch:
case QSvgNode::Doc:
case QSvgNode::Group:
case QSvgNode::AnimateColor:
case QSvgNode::AnimateTransform:
case QSvgNode::Use:
case QSvgNode::Video:
case QSvgNode::Image:
case QSvgNode::Textarea:
case QSvgNode::Text:
case QSvgNode::Tspan:
case QSvgNode::Mask:
//qCDebug(lcQuickVectorGraphics) << "NOT path container because" << node->typeName() ;
return false;
// nodes that could go inside Shape{}
case QSvgNode::Defs:
case QSvgNode::Symbol:
break;
// nodes that are done as pure ShapePath{}
case QSvgNode::Rect:
case QSvgNode::Circle:
case QSvgNode::Ellipse:
case QSvgNode::Line:
case QSvgNode::Path:
case QSvgNode::Polygon:
case QSvgNode::Polyline:
{
if (!child->style().transform.isDefault()) {
//qCDebug(lcQuickVectorGraphics) << "NOT path container because local transform";
return false;
}
const QList<QSvgAbstractAnimation *> animations = child->document()->animator()->animationsForNode(child);
if (!animations.isEmpty()) {
//qCDebug(lcQuickVectorGraphics) << "NOT path container because local transform animation";
return false;
}
foundPath = true;
break;
}
default:
qCDebug(lcQuickVectorImage) << "Unhandled type in switch" << child->type();
break;
}
}
//qCDebug(lcQuickVectorGraphics) << "Container" << node->nodeId() << node->typeName() << "is" << foundPath;
return foundPath;
}
static QString capStyleName(Qt::PenCapStyle style)
{
QString styleName;
switch (style) {
case Qt::SquareCap:
styleName = QStringLiteral("squarecap");
break;
case Qt::FlatCap:
styleName = QStringLiteral("flatcap");
break;
case Qt::RoundCap:
styleName = QStringLiteral("roundcap");
break;
default:
break;
}
return styleName;
}
static QString joinStyleName(Qt::PenJoinStyle style)
{
QString styleName;
switch (style) {
case Qt::MiterJoin:
styleName = QStringLiteral("miterjoin");
break;
case Qt::BevelJoin:
styleName = QStringLiteral("beveljoin");
break;
case Qt::RoundJoin:
styleName = QStringLiteral("roundjoin");
break;
case Qt::SvgMiterJoin:
styleName = QStringLiteral("svgmiterjoin");
break;
default:
break;
}
return styleName;
}
static QString dashArrayString(QList<qreal> dashArray)
{
if (dashArray.isEmpty())
return QString();
QString dashArrayString;
QTextStream stream(&dashArrayString);
for (int i = 0; i < dashArray.length() - 1; i++) {
qreal value = dashArray[i];
stream << value << ", ";
}
stream << dashArray.last();
return dashArrayString;
}
};
QSvgVisitorImpl::QSvgVisitorImpl(const QString svgFileName,
QQuickGenerator *generator,
bool assumeTrustedSource)
: m_svgFileName(svgFileName)
, m_generator(generator)
, m_assumeTrustedSource(assumeTrustedSource)
{
}
bool QSvgVisitorImpl::traverse()
{
if (!m_generator) {
qCDebug(lcQuickVectorImage) << "No valid QQuickGenerator is set. Genration will stop";
return false;
}
QtSvg::Options options;
if (m_assumeTrustedSource)
options.setFlag(QtSvg::AssumeTrustedSource);
auto *doc = QSvgTinyDocument::load(m_svgFileName, options);
if (!doc) {
qCDebug(lcQuickVectorImage) << "Not a valid Svg File : " << m_svgFileName;
return false;
}
QSvgVisitor::traverse(doc);
return true;
}
void QSvgVisitorImpl::visitNode(const QSvgNode *node)
{
handleBaseNodeSetup(node);
NodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
m_generator->generateNode(info);
handleBaseNodeEnd(node);
}
void QSvgVisitorImpl::visitImageNode(const QSvgImage *node)
{
// TODO: this requires proper asset management.
handleBaseNodeSetup(node);
ImageNodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
info.image = node->image();
info.rect = node->rect();
info.externalFileReference = node->filename();
m_generator->generateImageNode(info);
handleBaseNodeEnd(node);
}
void QSvgVisitorImpl::visitRectNode(const QSvgRect *node)
{
QRectF rect = node->rect();
QPointF rads = node->radius();
// This is using Qt::RelativeSize semantics: percentage of half rect size
qreal x1 = rect.left();
qreal x2 = rect.right();
qreal y1 = rect.top();
qreal y2 = rect.bottom();
qreal rx = rads.x() * rect.width() / 200;
qreal ry = rads.y() * rect.height() / 200;
QPainterPath p;
p.moveTo(x1 + rx, y1);
p.lineTo(x2 - rx, y1);
// qCDebug(lcQuickVectorGraphics) << "Line1" << x2 - rx << y1;
p.arcTo(x2 - rx * 2, y1, rx * 2, ry * 2, 90, -90); // ARC to x2, y1 + ry
// qCDebug(lcQuickVectorGraphics) << "p1" << p;
p.lineTo(x2, y2 - ry);
p.arcTo(x2 - rx * 2, y2 - ry * 2, rx * 2, ry * 2, 0, -90); // ARC to x2 - rx, y2
p.lineTo(x1 + rx, y2);
p.arcTo(x1, y2 - ry * 2, rx * 2, ry * 2, 270, -90); // ARC to x1, y2 - ry
p.lineTo(x1, y1 + ry);
p.arcTo(x1, y1, rx * 2, ry * 2, 180, -90); // ARC to x1 + rx, y1
handlePathNode(node, p);
}
void QSvgVisitorImpl::visitEllipseNode(const QSvgEllipse *node)
{
QRectF rect = node->rect();
QPainterPath p;
p.addEllipse(rect);
handlePathNode(node, p);
}
void QSvgVisitorImpl::visitPathNode(const QSvgPath *node)
{
handlePathNode(node, node->path());
}
void QSvgVisitorImpl::visitLineNode(const QSvgLine *node)
{
QPainterPath p;
p.moveTo(node->line().p1());
p.lineTo(node->line().p2());
handlePathNode(node, p);
}
void QSvgVisitorImpl::visitPolygonNode(const QSvgPolygon *node)
{
QPainterPath p = QQuickVectorImageGenerator::Utils::polygonToPath(node->polygon(), true);
handlePathNode(node, p);
}
void QSvgVisitorImpl::visitPolylineNode(const QSvgPolyline *node)
{
QPainterPath p = QQuickVectorImageGenerator::Utils::polygonToPath(node->polygon(), false);
handlePathNode(node, p);
}
QString QSvgVisitorImpl::gradientCssDescription(const QGradient *gradient)
{
QString cssDescription;
if (gradient->type() == QGradient::LinearGradient) {
const QLinearGradient *linearGradient = static_cast<const QLinearGradient *>(gradient);
cssDescription += " -qt-foreground: qlineargradient("_L1;
cssDescription += "x1:"_L1 + QString::number(linearGradient->start().x()) + u',';
cssDescription += "y1:"_L1 + QString::number(linearGradient->start().y()) + u',';
cssDescription += "x2:"_L1 + QString::number(linearGradient->finalStop().x()) + u',';
cssDescription += "y2:"_L1 + QString::number(linearGradient->finalStop().y()) + u',';
} else if (gradient->type() == QGradient::RadialGradient) {
const QRadialGradient *radialGradient = static_cast<const QRadialGradient *>(gradient);
cssDescription += " -qt-foreground: qradialgradient("_L1;
cssDescription += "cx:"_L1 + QString::number(radialGradient->center().x()) + u',';
cssDescription += "cy:"_L1 + QString::number(radialGradient->center().y()) + u',';
cssDescription += "fx:"_L1 + QString::number(radialGradient->focalPoint().x()) + u',';
cssDescription += "fy:"_L1 + QString::number(radialGradient->focalPoint().y()) + u',';
cssDescription += "radius:"_L1 + QString::number(radialGradient->radius()) + u',';
} else {
const QConicalGradient *conicalGradient = static_cast<const QConicalGradient *>(gradient);
cssDescription += " -qt-foreground: qconicalgradient("_L1;
cssDescription += "cx:"_L1 + QString::number(conicalGradient->center().x()) + u',';
cssDescription += "cy:"_L1 + QString::number(conicalGradient->center().y()) + u',';
cssDescription += "angle:"_L1 + QString::number(conicalGradient->angle()) + u',';
}
const QStringList coordinateModes = { "logical"_L1, "stretchtodevice"_L1, "objectbounding"_L1, "object"_L1 };
cssDescription += "coordinatemode:"_L1;
cssDescription += coordinateModes.at(int(gradient->coordinateMode()));
cssDescription += u',';
const QStringList spreads = { "pad"_L1, "reflect"_L1, "repeat"_L1 };
cssDescription += "spread:"_L1;
cssDescription += spreads.at(int(gradient->spread()));
for (const QGradientStop &stop : gradient->stops()) {
cssDescription += ",stop:"_L1;
cssDescription += QString::number(stop.first);
cssDescription += u' ';
cssDescription += stop.second.name(QColor::HexArgb);
}
cssDescription += ");"_L1;
return cssDescription;
}
QString QSvgVisitorImpl::colorCssDescription(QColor color)
{
QString cssDescription;
cssDescription += QStringLiteral("rgba(");
cssDescription += QString::number(color.red()) + QStringLiteral(",");
cssDescription += QString::number(color.green()) + QStringLiteral(",");
cssDescription += QString::number(color.blue()) + QStringLiteral(",");
cssDescription += QString::number(color.alphaF()) + QStringLiteral(")");
return cssDescription;
}
namespace {
// Simple class for representing the SVG font as a font engine
// We use the Proxy font engine type, which is currently unused and does not map to
// any specific font engine
// (The QSvgFont object must outlive the engine.)
class QSvgFontEngine : public QFontEngine
{
public:
QSvgFontEngine(const QSvgFont *font, qreal size);
QFontEngine *cloneWithSize(qreal size) const override;
glyph_t glyphIndex(uint ucs4) const override;
int stringToCMap(const QChar *str,
int len,
QGlyphLayout *glyphs,
int *nglyphs,
ShaperFlags flags) const override;
void addGlyphsToPath(glyph_t *glyphs,
QFixedPoint *positions,
int nGlyphs,
QPainterPath *path,
QTextItem::RenderFlags flags) override;
glyph_metrics_t boundingBox(glyph_t glyph) override;
void recalcAdvances(QGlyphLayout *, ShaperFlags) const override;
QFixed ascent() const override;
QFixed capHeight() const override;
QFixed descent() const override;
QFixed leading() const override;
qreal maxCharWidth() const override;
qreal minLeftBearing() const override;
qreal minRightBearing() const override;
QFixed emSquareSize() const override;
private:
const QSvgFont *m_font;
};
QSvgFontEngine::QSvgFontEngine(const QSvgFont *font, qreal size)
: QFontEngine(Proxy)
, m_font(font)
{
fontDef.pixelSize = size;
fontDef.families = QStringList(m_font->m_familyName);
}
QFixed QSvgFontEngine::emSquareSize() const
{
return QFixed::fromReal(m_font->m_unitsPerEm);
}
glyph_t QSvgFontEngine::glyphIndex(uint ucs4) const
{
if (ucs4 < USHRT_MAX && m_font->m_glyphs.contains(QChar(ushort(ucs4))))
return glyph_t(ucs4);
return 0;
}
int QSvgFontEngine::stringToCMap(const QChar *str,
int len,
QGlyphLayout *glyphs,
int *nglyphs,
ShaperFlags flags) const
{
Q_ASSERT(glyphs->numGlyphs >= *nglyphs);
if (*nglyphs < len) {
*nglyphs = len;
return -1;
}
int ucs4Length = 0;
QStringIterator it(str, str + len);
while (it.hasNext()) {
char32_t ucs4 = it.next();
glyph_t index = glyphIndex(ucs4);
glyphs->glyphs[ucs4Length++] = index;
}
*nglyphs = ucs4Length;
glyphs->numGlyphs = ucs4Length;
if (!(flags & GlyphIndicesOnly))
recalcAdvances(glyphs, flags);
return *nglyphs;
}
void QSvgFontEngine::addGlyphsToPath(glyph_t *glyphs,
QFixedPoint *positions,
int nGlyphs,
QPainterPath *path,
QTextItem::RenderFlags flags)
{
Q_UNUSED(flags);
const qreal scale = fontDef.pixelSize / m_font->m_unitsPerEm;
for (int i = 0; i < nGlyphs; ++i) {
glyph_t index = glyphs[i];
if (index > 0) {
QPointF position = positions[i].toPointF();
QPainterPath glyphPath = m_font->m_glyphs.value(QChar(ushort(index))).m_path;
QTransform xform;
xform.translate(position.x(), position.y());
xform.scale(scale, -scale);
glyphPath = xform.map(glyphPath);
path->addPath(glyphPath);
}
}
}
glyph_metrics_t QSvgFontEngine::boundingBox(glyph_t glyph)
{
glyph_metrics_t ret;
ret.x = 0; // left bearing
ret.y = -ascent();
const qreal scale = fontDef.pixelSize / m_font->m_unitsPerEm;
const QSvgGlyph &svgGlyph = m_font->m_glyphs.value(QChar(ushort(glyph)));
ret.width = QFixed::fromReal(svgGlyph.m_horizAdvX * scale);
ret.height = ascent() + descent();
return ret;
}
QFontEngine *QSvgFontEngine::cloneWithSize(qreal size) const
{
QSvgFontEngine *otherEngine = new QSvgFontEngine(m_font, size);
return otherEngine;
}
void QSvgFontEngine::recalcAdvances(QGlyphLayout *glyphLayout, ShaperFlags) const
{
const qreal scale = fontDef.pixelSize / m_font->m_unitsPerEm;
for (int i = 0; i < glyphLayout->numGlyphs; i++) {
glyph_t glyph = glyphLayout->glyphs[i];
const QSvgGlyph &svgGlyph = m_font->m_glyphs.value(QChar(ushort(glyph)));
glyphLayout->advances[i] = QFixed::fromReal(svgGlyph.m_horizAdvX * scale);
}
}
QFixed QSvgFontEngine::ascent() const
{
return QFixed::fromReal(fontDef.pixelSize);
}
QFixed QSvgFontEngine::capHeight() const
{
return ascent();
}
QFixed QSvgFontEngine::descent() const
{
return QFixed{};
}
QFixed QSvgFontEngine::leading() const
{
return QFixed{};
}
qreal QSvgFontEngine::maxCharWidth() const
{
const qreal scale = fontDef.pixelSize / m_font->m_unitsPerEm;
return m_font->m_horizAdvX * scale;
}
qreal QSvgFontEngine::minLeftBearing() const
{
return 0.0;
}
qreal QSvgFontEngine::minRightBearing() const
{
return 0.0;
}
}
static QVariant calculateInterpolatedValue(const QSvgAbstractAnimatedProperty *property, int index, int)
{
if (index == 0)
const_cast<QSvgAbstractAnimatedProperty *>(property)->interpolate(1, 0.0);
else
const_cast<QSvgAbstractAnimatedProperty *>(property)->interpolate(index, 1.0);
return property->interpolatedValue();
}
void QSvgVisitorImpl::visitTextNode(const QSvgText *node)
{
handleBaseNodeSetup(node);
const bool isTextArea = node->type() == QSvgNode::Textarea;
QString text;
const QSvgFont *svgFont = styleResolver->states().svgFont;
bool needsRichText = false;
bool preserveWhiteSpace = node->whitespaceMode() == QSvgText::Preserve;
const QGradient *mainGradient = styleResolver->currentFillGradient();
QFontEngine *fontEngine = nullptr;
if (svgFont != nullptr) {
fontEngine = new QSvgFontEngine(svgFont, styleResolver->painter().font().pointSize());
fontEngine->ref.ref();
}
#if QT_CONFIG(texthtmlparser)
bool needsPathNode = mainGradient != nullptr
|| svgFont != nullptr
|| styleResolver->currentStrokeGradient() != nullptr;
#endif
for (const auto *tspan : node->tspans()) {
if (!tspan) {
text += QStringLiteral("<br>");
continue;
}
// Note: We cannot get the font directly from the style, since this does
// not apply the weight, since this is relative and depends on current state.
handleBaseNodeSetup(tspan);
QFont font = styleResolver->painter().font();
QString styleTagContent;
if ((font.resolveMask() & QFont::FamilyResolved)
|| (font.resolveMask() & QFont::FamiliesResolved)) {
styleTagContent += QStringLiteral("font-family: %1;").arg(font.family());
}
if (font.resolveMask() & QFont::WeightResolved
&& font.weight() != QFont::Normal
&& font.weight() != QFont::Bold) {
styleTagContent += QStringLiteral("font-weight: %1;").arg(int(font.weight()));
}
if (font.resolveMask() & QFont::SizeResolved) {
// Pixel size stored as point size in SVG parser
styleTagContent += QStringLiteral("font-size: %1px;").arg(int(font.pointSizeF()));
}
if (font.resolveMask() & QFont::CapitalizationResolved
&& font.capitalization() == QFont::SmallCaps) {
styleTagContent += QStringLiteral("font-variant: small-caps;");
}
if (styleResolver->currentFillGradient() != nullptr
&& styleResolver->currentFillGradient() != mainGradient) {
const QGradient grad = styleResolver->applyOpacityToGradient(*styleResolver->currentFillGradient(), styleResolver->currentFillOpacity());
styleTagContent += gradientCssDescription(&grad) + u';';
#if QT_CONFIG(texthtmlparser)
needsPathNode = true;
#endif
}
const QColor currentStrokeColor = styleResolver->currentStrokeColor();
if (currentStrokeColor.alpha() > 0) {
QString strokeColor = colorCssDescription(currentStrokeColor);
styleTagContent += QStringLiteral("-qt-stroke-color:%1;").arg(strokeColor);
styleTagContent += QStringLiteral("-qt-stroke-width:%1px;").arg(styleResolver->currentStrokeWidth());
styleTagContent += QStringLiteral("-qt-stroke-dasharray:%1;").arg(dashArrayString(styleResolver->currentStroke().dashPattern()));
styleTagContent += QStringLiteral("-qt-stroke-dashoffset:%1;").arg(styleResolver->currentStroke().dashOffset());
styleTagContent += QStringLiteral("-qt-stroke-lineCap:%1;").arg(capStyleName(styleResolver->currentStroke().capStyle()));
styleTagContent += QStringLiteral("-qt-stroke-lineJoin:%1;").arg(joinStyleName(styleResolver->currentStroke().joinStyle()));
if (styleResolver->currentStroke().joinStyle() == Qt::MiterJoin || styleResolver->currentStroke().joinStyle() == Qt::SvgMiterJoin)
styleTagContent += QStringLiteral("-qt-stroke-miterlimit:%1;").arg(styleResolver->currentStroke().miterLimit());
#if QT_CONFIG(texthtmlparser)
needsPathNode = true;
#endif
}
if (tspan->whitespaceMode() == QSvgText::Preserve && !preserveWhiteSpace)
styleTagContent += QStringLiteral("white-space: pre-wrap;");
QString content = tspan->text().toHtmlEscaped();
content.replace(QLatin1Char('\t'), QLatin1Char(' '));
content.replace(QLatin1Char('\n'), QLatin1Char(' '));
bool fontTag = false;
if (!tspan->style().fill.isDefault()) {
auto &b = tspan->style().fill->qbrush();
qCDebug(lcQuickVectorImage) << "tspan FILL:" << b;
if (b.style() != Qt::NoBrush)
{
if (qFuzzyCompare(b.color().alphaF() + 1.0, 2.0))
{
QString spanColor = b.color().name();
fontTag = !spanColor.isEmpty();
if (fontTag)
text += QStringLiteral("<font color=\"%1\">").arg(spanColor);
} else {
QString spanColor = colorCssDescription(b.color());
styleTagContent += QStringLiteral("color:%1").arg(spanColor);
}
}
}
needsRichText = needsRichText || !styleTagContent.isEmpty();
if (!styleTagContent.isEmpty())
text += QStringLiteral("<span style=\"%1\">").arg(styleTagContent);
if (font.resolveMask() & QFont::WeightResolved && font.bold())
text += QStringLiteral("<b>");
if (font.resolveMask() & QFont::StyleResolved && font.italic())
text += QStringLiteral("<i>");
if (font.resolveMask() & QFont::CapitalizationResolved) {
switch (font.capitalization()) {
case QFont::AllLowercase:
content = content.toLower();
break;
case QFont::AllUppercase:
content = content.toUpper();
break;
case QFont::Capitalize:
// ### We need to iterate over the string and do the title case conversion,
// since this is not part of QString.
qCWarning(lcQuickVectorImage) << "Title case not implemented for tspan";
break;
default:
break;
}
}
text += content;
if (fontTag)
text += QStringLiteral("</font>");
if (font.resolveMask() & QFont::StyleResolved && font.italic())
text += QStringLiteral("</i>");
if (font.resolveMask() & QFont::WeightResolved && font.bold())
text += QStringLiteral("</b>");
if (!styleTagContent.isEmpty())
text += QStringLiteral("</span>");
handleBaseNodeEnd(tspan);
}
if (preserveWhiteSpace && (needsRichText || styleResolver->currentFillGradient() != nullptr))
text = QStringLiteral("<span style=\"white-space: pre-wrap\">") + text + QStringLiteral("</span>");
QFont font = styleResolver->painter().font();
if (font.pixelSize() <= 0 && font.pointSize() > 0)
font.setPixelSize(font.pointSize()); // Pixel size stored as point size by SVG parser
font.setHintingPreference(QFont::PreferNoHinting);
#if QT_CONFIG(texthtmlparser)
if (needsPathNode) {
QTextDocument document;
document.setHtml(text);
if (isTextArea && node->size().width() > 0)
document.setTextWidth(node->size().width());
document.setDefaultFont(font);
document.pageCount(); // Force layout
QTextBlock block = document.firstBlock();
while (block.isValid()) {
QTextLayout *lout = block.layout();
if (lout != nullptr) {
QRectF boundingRect = lout->boundingRect();
// If this block has requested the current SVG font, we override it
// (note that this limits the text to one svg font, but this is also the case
// in the QPainter at the moment, and needs a more centralized solution in Qt Svg
// first)
QFont blockFont = block.charFormat().font();
if (svgFont != nullptr
&& blockFont.family() == svgFont->m_familyName) {
QRawFont rawFont;
QRawFontPrivate *rawFontD = QRawFontPrivate::get(rawFont);
rawFontD->setFontEngine(fontEngine->cloneWithSize(blockFont.pixelSize()));
lout->setRawFont(rawFont);
}
auto addPathForFormat = [&](QPainterPath p, QTextCharFormat fmt, int pathIndex) {
PathNodeInfo info;
fillCommonNodeInfo(node, info, QStringLiteral("_path%1").arg(pathIndex));
fillPathAnimationInfo(node, info);
auto fillStyle = node->style().fill;
if (fillStyle)
info.fillRule = fillStyle->fillRule();
if (fmt.hasProperty(QTextCharFormat::ForegroundBrush)) {
info.fillColor.setDefaultValue(fmt.foreground().color());
if (fmt.foreground().gradient() != nullptr && fmt.foreground().gradient()->type() != QGradient::NoGradient)
info.grad = *fmt.foreground().gradient();
} else {
info.fillColor.setDefaultValue(styleResolver->currentFillColor());
}
info.path.setDefaultValue(QVariant::fromValue(p));
const QGradient *strokeGradient = styleResolver->currentStrokeGradient();
QPen pen;
if (fmt.hasProperty(QTextCharFormat::TextOutline)) {
pen = fmt.textOutline();
if (strokeGradient == nullptr) {
info.strokeStyle = StrokeStyle::fromPen(pen);
info.strokeStyle.color.setDefaultValue(pen.color());
}
} else {
pen = styleResolver->currentStroke();
if (strokeGradient == nullptr) {
info.strokeStyle = StrokeStyle::fromPen(pen);
info.strokeStyle.color.setDefaultValue(styleResolver->currentStrokeColor());
}
}
if (info.grad.type() == QGradient::NoGradient && styleResolver->currentFillGradient() != nullptr)
info.grad = styleResolver->applyOpacityToGradient(*styleResolver->currentFillGradient(), styleResolver->currentFillOpacity());
info.fillTransform = styleResolver->currentFillTransform();
m_generator->generatePath(info, boundingRect);
if (strokeGradient != nullptr) {
PathNodeInfo strokeInfo;
fillCommonNodeInfo(node, strokeInfo, QStringLiteral("_stroke%1").arg(pathIndex));
fillPathAnimationInfo(node, strokeInfo);
strokeInfo.grad = *strokeGradient;
QPainterPathStroker stroker(pen);
strokeInfo.path.setDefaultValue(QVariant::fromValue(stroker.createStroke(p)));
m_generator->generatePath(strokeInfo, boundingRect);
}
};
qreal baselineOffset = -QFontMetricsF(font).ascent();
if (lout->lineCount() > 0 && lout->lineAt(0).isValid())
baselineOffset = -lout->lineAt(0).ascent();
const QPointF baselineTranslation(0.0, baselineOffset);
auto glyphsToPath = [&](QList<QGlyphRun> glyphRuns, qreal width) {
QList<QPainterPath> paths;
for (const QGlyphRun &glyphRun : glyphRuns) {
QRawFont font = glyphRun.rawFont();
QList<quint32> glyphIndexes = glyphRun.glyphIndexes();
QList<QPointF> positions = glyphRun.positions();
for (qsizetype j = 0; j < glyphIndexes.size(); ++j) {
quint32 glyphIndex = glyphIndexes.at(j);
const QPointF &pos = positions.at(j);
QPainterPath p = font.pathForGlyph(glyphIndex);
p.translate(pos + node->position() + baselineTranslation);
if (styleResolver->states().textAnchor == Qt::AlignHCenter)
p.translate(QPointF(-0.5 * width, 0));
else if (styleResolver->states().textAnchor == Qt::AlignRight)
p.translate(QPointF(-width, 0));
paths.append(p);
}
}
return paths;
};
QList<QTextLayout::FormatRange> formats = block.textFormats();
for (int i = 0; i < formats.size(); ++i) {
QTextLayout::FormatRange range = formats.at(i);
QList<QGlyphRun> glyphRuns = lout->glyphRuns(range.start, range.length);
QList<QPainterPath> paths = glyphsToPath(glyphRuns, lout->minimumWidth());
for (int j = 0; j < paths.size(); ++j) {
const QPainterPath &path = paths.at(j);
addPathForFormat(path, range.format, j);
}
}
}
block = block.next();
}
} else
#endif
{
TextNodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("fill"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.fillColor, calculateInterpolatedValue);
}
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("fill-opacity"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.fillOpacity, calculateInterpolatedValue);
}
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("stroke"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.strokeColor, calculateInterpolatedValue);
}
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("stroke-opacity"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.strokeOpacity, calculateInterpolatedValue);
}
info.position = node->position();
info.size = node->size();
info.font = font;
info.text = text;
info.isTextArea = isTextArea;
info.needsRichText = needsRichText;
info.fillColor.setDefaultValue(styleResolver->currentFillColor());
info.alignment = styleResolver->states().textAnchor;
info.strokeColor.setDefaultValue(styleResolver->currentStrokeColor());
m_generator->generateTextNode(info);
}
handleBaseNodeEnd(node);
if (fontEngine != nullptr) {
fontEngine->ref.deref();
Q_ASSERT(fontEngine->ref.loadRelaxed() == 0);
delete fontEngine;
}
}
void QSvgVisitorImpl::visitUseNode(const QSvgUse *node)
{
QSvgNode *link = node->link();
if (!link)
return;
handleBaseNodeSetup(node);
UseNodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
info.stage = StructureNodeStage::Start;
QPointF startPos = node->start();
if (!startPos.isNull()) {
QTransform xform;
if (!info.isDefaultTransform)
xform = info.transform.defaultValue().value<QTransform>();
xform.translate(startPos.x(), startPos.y());
info.transform.setDefaultValue(QVariant::fromValue(xform));
info.isDefaultTransform = false;
}
m_generator->generateUseNode(info);
QString oldLinkSuffix = m_linkSuffix;
m_linkSuffix += QStringLiteral("_use") + info.id;
m_useLevel++;
QSvgVisitor::traverse(link);
m_useLevel--;
m_linkSuffix = oldLinkSuffix;
info.stage = StructureNodeStage::End;
m_generator->generateUseNode(info);
handleBaseNodeEnd(node);
}
bool QSvgVisitorImpl::visitSwitchNodeStart(const QSvgSwitch *node)
{
QSvgNode *link = node->childToRender();
if (!link)
return false;
QString oldLinkSuffix = m_linkSuffix;
m_linkSuffix += QStringLiteral("_switch") + QString::number(quintptr(node), 16);
QSvgVisitor::traverse(link);
m_linkSuffix = oldLinkSuffix;
return false;
}
void QSvgVisitorImpl::visitSwitchNodeEnd(const QSvgSwitch *node)
{
Q_UNUSED(node);
}
bool QSvgVisitorImpl::visitDefsNodeStart(const QSvgDefs *node)
{
Q_UNUSED(node)
return m_generator->generateDefsNode(NodeInfo{});
}
bool QSvgVisitorImpl::visitSymbolNodeStart(const QSvgSymbol *node)
{
if (m_useLevel == 0)
return false;
handleBaseNodeSetup(node);
StructureNodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
QTransform oldTransform = info.transform.defaultValue().value<QTransform>();
info.clipBox = oldTransform.mapRect(node->clipRect());
QTransform xform = node->aspectRatioTransform();
if (!xform.isIdentity()) {
info.isDefaultTransform = false;
xform = xform * oldTransform;
info.transform.setDefaultValue(QVariant::fromValue(xform));
}
info.stage = StructureNodeStage::Start;
return m_generator->generateStructureNode(info);
}
void QSvgVisitorImpl::visitSymbolNodeEnd(const QSvgSymbol *node)
{
Q_ASSERT(m_useLevel > 0);
handleBaseNodeSetup(node);
StructureNodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
info.clipBox = node->clipRect();
info.stage = StructureNodeStage::End;
m_generator->generateStructureNode(info);
}
bool QSvgVisitorImpl::visitMaskNodeStart(const QSvgMask *node)
{
handleBaseNodeSetup(node);
MaskNodeInfo info;
QSvgRectF r = node->rect();
info.isMaskRectRelativeCoordinates = r.unitX() == QtSvg::UnitTypes::objectBoundingBox;
info.maskRect = r;
if (node->contentUnits() == QtSvg::UnitTypes::objectBoundingBox)
qCWarning(lcQuickVectorImage) << "Only user space content units supported for masks";
fillCommonNodeInfo(node, info);
return m_generator->generateMaskNode(info);
}
void QSvgVisitorImpl::visitMaskNodeEnd(const QSvgMask *node)
{
MaskNodeInfo info;
info.stage = StructureNodeStage::End;
QSvgRectF r = node->rect();
info.isMaskRectRelativeCoordinates = r.unitX() == QtSvg::UnitTypes::objectBoundingBox;
info.maskRect = r;
fillCommonNodeInfo(node, info);
m_generator->generateMaskNode(info);
handleBaseNodeEnd(node);
}
bool QSvgVisitorImpl::visitStructureNodeStart(const QSvgStructureNode *node)
{
constexpr bool forceSeparatePaths = false;
handleBaseNodeSetup(node);
StructureNodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
info.forceSeparatePaths = forceSeparatePaths;
info.isPathContainer = isPathContainer(node);
info.stage = StructureNodeStage::Start;
return m_generator->generateStructureNode(info);
}
void QSvgVisitorImpl::visitStructureNodeEnd(const QSvgStructureNode *node)
{
handleBaseNodeEnd(node);
// qCDebug(lcQuickVectorGraphics) << "REVERT" << node->nodeId() << node->type() << (m_styleResolver->painter().pen().style() != Qt::NoPen) << m_styleResolver->painter().pen().color().name()
// << (m_styleResolver->painter().pen().brush().style() != Qt::NoBrush) << m_styleResolver->painter().pen().brush().color().name();
StructureNodeInfo info;
fillCommonNodeInfo(node, info);
info.isPathContainer = isPathContainer(node);
info.stage = StructureNodeStage::End;
m_generator->generateStructureNode(info);
}
QString QSvgVisitorImpl::nextNodeId() const
{
return QStringLiteral("_qt_node%1").arg(m_nodeIdCounter++);
}
bool QSvgVisitorImpl::visitDocumentNodeStart(const QSvgTinyDocument *node)
{
handleBaseNodeSetup(node);
StructureNodeInfo info;
fillCommonNodeInfo(node, info);
fillAnimationInfo(node, info);
const QSvgTinyDocument *doc = static_cast<const QSvgTinyDocument *>(node);
info.size = doc->size();
info.viewBox = doc->viewBox();
info.isPathContainer = isPathContainer(node);
info.forceSeparatePaths = false;
info.stage = StructureNodeStage::Start;
return m_generator->generateRootNode(info);
}
void QSvgVisitorImpl::visitDocumentNodeEnd(const QSvgTinyDocument *node)
{
handleBaseNodeEnd(node);
qCDebug(lcQuickVectorImage) << "REVERT" << node->nodeId() << node->type() << (styleResolver->painter().pen().style() != Qt::NoPen)
<< styleResolver->painter().pen().color().name() << (styleResolver->painter().pen().brush().style() != Qt::NoBrush)
<< styleResolver->painter().pen().brush().color().name();
StructureNodeInfo info;
fillCommonNodeInfo(node, info);
info.stage = StructureNodeStage::End;
m_generator->generateRootNode(info);
}
void QSvgVisitorImpl::fillCommonNodeInfo(const QSvgNode *node, NodeInfo &info, const QString &idSuffix)
{
const QString key = node->nodeId().isEmpty()
? QString::number(quintptr(node), 16)
: node->nodeId();
info.id = m_idForNodeId.value(key);
if (info.id.isEmpty()) {
info.id = nextNodeId();
m_idForNodeId.insert(key, info.id);
}
// Internal disambiguation when multiple items come from the same node
info.id += idSuffix;
if (!m_linkSuffix.isEmpty())
info.id += m_linkSuffix;
info.nodeId = node->nodeId();
info.typeName = node->typeName();
info.isDefaultTransform = node->style().transform.isDefault();
QTransform xf = !info.isDefaultTransform ? node->style().transform->qtransform() : QTransform();
info.transform.setDefaultValue(QVariant::fromValue(xf));
info.isDefaultOpacity = node->style().opacity.isDefault();
info.opacity.setDefaultValue(!info.isDefaultOpacity ? node->style().opacity->opacity() : 1.0);
info.isVisible = node->isVisible();
info.isDisplayed = node->displayMode() != QSvgNode::DisplayMode::NoneMode;
if (node->hasMask() || node->type() == QSvgNode::Type::Mask) {
info.bounds = node->bounds();
if (!xf.isIdentity()) {
bool ok;
xf = xf.inverted(&ok);
if (ok) {
info.bounds = xf.mapRect(info.bounds);
} else {
qCWarning(lcQuickVectorImage)
<< "Masked item with non-invertible transform currently not supported.";
}
}
}
if (node->hasMask()) {
info.maskId = m_idForNodeId.value(node->maskId());
if (info.maskId.isEmpty()) {
info.maskId = nextNodeId();
m_idForNodeId.insert(node->maskId(), info.maskId);
}
}
}
QList<QSvgVisitorImpl::AnimationPair> QSvgVisitorImpl::collectAnimations(const QSvgNode *node,
const QString &propertyName)
{
QList<AnimationPair> ret;
const QList<QSvgAbstractAnimation *> animations = node->document()->animator()->animationsForNode(node);
for (const QSvgAbstractAnimation *animation : animations) {
const QList<QSvgAbstractAnimatedProperty *> properties = animation->properties();
for (const QSvgAbstractAnimatedProperty *property : properties) {
if (property->propertyName() == propertyName)
ret.append(std::make_pair(animation, property));
}
}
return ret;
}
void QSvgVisitorImpl::applyAnimationsToProperty(const QList<AnimationPair> &animations,
QQuickAnimatedProperty *outProperty,
std::function<QVariant(const QSvgAbstractAnimatedProperty *, int index, int animationIndex)> calculateValue)
{
qCDebug(lcVectorImageAnimations) << "Applying animations to property with default value"
<< outProperty->defaultValue();
for (auto it = animations.constBegin(); it != animations.constEnd(); ++it) {
qCDebug(lcVectorImageAnimations) << " -> Add animation";
const QSvgAbstractAnimation *animation = it->first;
const QSvgAbstractAnimatedProperty *property = it->second;
const int start = animation->start();
const int repeatCount = animation->iterationCount();
const int duration = animation->duration();
bool freeze = false;
bool replace = true;
if (animation->animationType() == QSvgAbstractAnimation::SMIL) {
const QSvgAnimateNode *animateNode = static_cast<const QSvgAnimateNode *>(animation);
freeze = animateNode->fill() == QSvgAnimateNode::Freeze;
replace = animateNode->additiveType() == QSvgAnimateNode::Replace;
}
qCDebug(lcVectorImageAnimations) << " -> Start:" << start
<< ", repeatCount:" << repeatCount
<< ", freeze:" << freeze
<< ", replace:" << replace;
QList<qreal> propertyKeyFrames = property->keyFrames();
QList<QQuickAnimatedProperty::PropertyAnimation> outAnimations;
// For transform animations, we register the type of the transform in the animation
// (this assumes that each animation is only for a single part of the transform)
if (property->type() == QSvgAbstractAnimatedProperty::Transform) {
const auto *transformProperty = static_cast<const QSvgAnimatedPropertyTransform *>(property);
const auto &components = transformProperty->components();
Q_ASSERT(q20::cmp_greater_equal(components.size(),transformProperty->transformCount()));
for (uint i = 0; i < transformProperty->transformCount(); ++i) {
QQuickAnimatedProperty::PropertyAnimation outAnimation;
outAnimation.repeatCount = repeatCount;
outAnimation.startOffset = start;
if (freeze)
outAnimation.flags |= QQuickAnimatedProperty::PropertyAnimation::FreezeAtEnd;
if (replace)
outAnimation.flags |= QQuickAnimatedProperty::PropertyAnimation::ReplacePreviousAnimations;
switch (components.at(i).type) {
case QSvgAnimatedPropertyTransform::TransformComponent::Translate:
outAnimation.subtype = QTransform::TxTranslate;
break;
case QSvgAnimatedPropertyTransform::TransformComponent::Scale:
outAnimation.subtype = QTransform::TxScale;
break;
case QSvgAnimatedPropertyTransform::TransformComponent::Rotate:
outAnimation.subtype = QTransform::TxRotate;
break;
case QSvgAnimatedPropertyTransform::TransformComponent::Skew:
outAnimation.subtype = QTransform::TxShear;
break;
default:
qCWarning(lcQuickVectorImage()) << "Unhandled transform type:" << components.at(i).type;
break;
}
qDebug(lcVectorImageAnimations) << " -> Property type:"
<< property->type()
<< " name:"
<< property->propertyName()
<< " animation subtype:"
<< outAnimation.subtype;
outAnimations.append(outAnimation);
}
} else {
QQuickAnimatedProperty::PropertyAnimation outAnimation;
outAnimation.repeatCount = repeatCount;
outAnimation.startOffset = start;
if (freeze)
outAnimation.flags |= QQuickAnimatedProperty::PropertyAnimation::FreezeAtEnd;
qDebug(lcVectorImageAnimations) << " -> Property type:"
<< property->type()
<< " name:"
<< property->propertyName();
outAnimations.append(outAnimation);
}
outProperty->beginAnimationGroup();
for (int i = 0; i < outAnimations.size(); ++i) {
QQuickAnimatedProperty::PropertyAnimation outAnimation = outAnimations.at(i);
for (int j = 0; j < propertyKeyFrames.size(); ++j) {
const int time = qRound(propertyKeyFrames.at(j) * duration);
const QVariant value = calculateValue(property, j, i);
outAnimation.frames[time] = value;
qCDebug(lcVectorImageAnimations) << " -> Frame " << time << " is " << value;
}
outProperty->addAnimation(outAnimation);
}
}
}
void QSvgVisitorImpl::fillColorAnimationInfo(const QSvgNode *node, PathNodeInfo &info)
{
// Collect all animations affecting fill
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("fill"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.fillColor, calculateInterpolatedValue);
}
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("fill-opacity"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.fillOpacity, calculateInterpolatedValue);
}
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("stroke"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.strokeStyle.color, calculateInterpolatedValue);
}
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("stroke-opacity"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.strokeStyle.opacity, calculateInterpolatedValue);
}
}
void QSvgVisitorImpl::fillTransformAnimationInfo(const QSvgNode *node, NodeInfo &info)
{
qCDebug(lcVectorImageAnimations) << "Applying transform animations to property with default value"
<< info.transform.defaultValue();
auto calculateValue = [](const QSvgAbstractAnimatedProperty *property, int index, int animationIndex) {
if (property->type() != QSvgAbstractAnimatedProperty::Transform)
return QVariant{};
const auto *transformProperty = static_cast<const QSvgAnimatedPropertyTransform *>(property);
const auto &components = transformProperty->components();
const int componentIndex = index * transformProperty->transformCount() + animationIndex;
QVariantList parameters;
const QSvgAnimatedPropertyTransform::TransformComponent &component = components.at(componentIndex);
switch (component.type) {
case QSvgAnimatedPropertyTransform::TransformComponent::Translate:
parameters.append(QVariant::fromValue(QPointF(component.values.value(0),
component.values.value(1))));
break;
case QSvgAnimatedPropertyTransform::TransformComponent::Rotate:
parameters.append(QVariant::fromValue(QPointF(component.values.value(1),
component.values.value(2))));
parameters.append(QVariant::fromValue(component.values.value(0)));
break;
case QSvgAnimatedPropertyTransform::TransformComponent::Scale:
parameters.append(QVariant::fromValue(QPointF(component.values.value(0),
component.values.value(1))));
break;
case QSvgAnimatedPropertyTransform::TransformComponent::Skew:
parameters.append(QVariant::fromValue(QPointF(component.values.value(0),
component.values.value(1))));
break;
default:
qCWarning(lcVectorImageAnimations) << "Unhandled transform type:" << component.type;
};
return QVariant::fromValue(parameters);
};
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("transform"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.transform, calculateValue);
}
}
void QSvgVisitorImpl::fillMotionPathAnimationInfo(const QSvgNode *node, NodeInfo &info)
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("offset-distance"));
if (animations.isEmpty())
return;
if (animations.size() > 1) {
qCWarning(lcQuickVectorImage)
<< "Not supported: More than one offset path animation on same node";
}
if (node->style().offset == nullptr) {
qCWarning(lcQuickVectorImage) << "Motion path animation: No offset path";
return;
}
const AnimationPair &animationPair = animations.first();
const QSvgAbstractAnimation *animation = animationPair.first;
const QSvgAbstractAnimatedProperty *property = animationPair.second;
const int start = animation->start();
const int repeatCount = animation->iterationCount();
const int duration = animation->duration();
qCDebug(lcVectorImageAnimations) << "Motion path animation:"
<< "start == " << start
<< ", repeatCount == " << repeatCount
<< "; duration == " << duration;
QQuickAnimatedProperty::PropertyAnimation outAnimation;
outAnimation.repeatCount = repeatCount;
outAnimation.startOffset = start;
QPainterPath originalPath = node->style().offset->path();
qreal baseRotation;
bool adaptAngle;
switch (node->style().offset->rotateType()) {
case QtSvg::OffsetRotateType::Auto:
adaptAngle = true;
baseRotation = 0.0;
break;
case QtSvg::OffsetRotateType::Angle:
adaptAngle = false;
baseRotation = node->style().offset->rotateAngle();
break;
case QtSvg::OffsetRotateType::AutoAngle:
adaptAngle = true;
baseRotation = node->style().offset->rotateAngle();
break;
case QtSvg::OffsetRotateType::Reverse:
adaptAngle = true;
baseRotation = 180.0;
break;
case QtSvg::OffsetRotateType::ReverseAngle:
adaptAngle = true;
baseRotation = node->style().offset->rotateAngle() + 180.0f;
break;
default:
Q_UNREACHABLE();
}
// Default value holds additional parameters
info.motionPath.setDefaultValue(QVariant::fromValue(QVariantPair(adaptAngle, baseRotation)));
const QList<qreal> propertyKeyFrames = property->keyFrames();
qreal previousT = 0.0;
for (int j = 0; j < propertyKeyFrames.size(); ++j) {
const int time = qRound(propertyKeyFrames.at(j) * duration);
qreal t = calculateInterpolatedValue(property, j, 0).toReal();
if (time > 0) {
QPainterPath path = originalPath.trimmed(previousT, t);
outAnimation.frames[time] = QVariant::fromValue(path);
qCDebug(lcVectorImageAnimations) << " -> Frame " << time << " is " << path;
}
previousT = t;
}
info.motionPath.addAnimation(outAnimation);
}
void QSvgVisitorImpl::fillPathAnimationInfo(const QSvgNode *node, PathNodeInfo &info)
{
fillColorAnimationInfo(node, info);
fillAnimationInfo(node, info);
}
void QSvgVisitorImpl::fillAnimationInfo(const QSvgNode *node, NodeInfo &info)
{
{
QList<AnimationPair> animations = collectAnimations(node, QStringLiteral("opacity"));
if (!animations.isEmpty())
applyAnimationsToProperty(animations, &info.opacity, calculateInterpolatedValue);
}
fillTransformAnimationInfo(node, info);
fillMotionPathAnimationInfo(node, info);
}
void QSvgVisitorImpl::handleBaseNodeSetup(const QSvgNode *node)
{
qCDebug(lcQuickVectorImage) << "Before SETUP" << node << "fill" << styleResolver->currentFillColor()
<< "stroke" << styleResolver->currentStrokeColor() << styleResolver->currentStrokeWidth()
<< node->nodeId() << " type: " << node->typeName() << " " << node->type();
node->applyStyle(&styleResolver->painter(), styleResolver->states());
qCDebug(lcQuickVectorImage) << "After SETUP" << node << "fill" << styleResolver->currentFillColor()
<< "stroke" << styleResolver->currentStrokeColor()
<< styleResolver->currentStrokeWidth() << node->nodeId();
}
void QSvgVisitorImpl::handleBaseNode(const QSvgNode *node)
{
NodeInfo info;
fillCommonNodeInfo(node, info);
m_generator->generateNodeBase(info);
}
void QSvgVisitorImpl::handleBaseNodeEnd(const QSvgNode *node)
{
node->revertStyle(&styleResolver->painter(), styleResolver->states());
qCDebug(lcQuickVectorImage) << "After END" << node << "fill" << styleResolver->currentFillColor()
<< "stroke" << styleResolver->currentStrokeColor() << styleResolver->currentStrokeWidth()
<< node->nodeId();
}
void QSvgVisitorImpl::handlePathNode(const QSvgNode *node, const QPainterPath &path)
{
handleBaseNodeSetup(node);
PathNodeInfo info;
fillCommonNodeInfo(node, info);
auto fillStyle = node->style().fill;
if (fillStyle)
info.fillRule = fillStyle->fillRule();
const QGradient *strokeGradient = styleResolver->currentStrokeGradient();
info.path.setDefaultValue(QVariant::fromValue(path));
info.fillColor.setDefaultValue(styleResolver->currentFillColor());
if (strokeGradient == nullptr) {
info.strokeStyle = StrokeStyle::fromPen(styleResolver->currentStroke());
info.strokeStyle.color.setDefaultValue(styleResolver->currentStrokeColor());
}
if (styleResolver->currentFillGradient() != nullptr)
info.grad = styleResolver->applyOpacityToGradient(*styleResolver->currentFillGradient(), styleResolver->currentFillOpacity());
info.fillTransform = styleResolver->currentFillTransform();
fillPathAnimationInfo(node, info);
m_generator->generatePath(info);
if (strokeGradient != nullptr) {
PathNodeInfo strokeInfo;
fillCommonNodeInfo(node, strokeInfo, QStringLiteral("_stroke"));
strokeInfo.grad = *strokeGradient;
QPainterPathStroker stroker(styleResolver->currentStroke());
strokeInfo.path.setDefaultValue(QVariant::fromValue(stroker.createStroke(path)));
m_generator->generatePath(strokeInfo);
}
handleBaseNodeEnd(node);
}
QT_END_NAMESPACE
|