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
|
# Copyright (C) 2022 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
from __future__ import annotations
import json
import sys
from dataclasses import Field, dataclass, field
_pyside_package_path = None
_module_json_file_path = None
_multimedia_libs = ["avcodec", "avformat", "avutil", "swresample", "swscale"]
def set_pyside_package_path(p):
global _pyside_package_path, _module_json_file_path
_pyside_package_path = p
qt_path = p
if sys.platform != "win32":
qt_path /= "Qt"
_module_json_file_path = qt_path / "modules"
def get_module_json_data(module):
"""Read the JSON module data."""
json_path = _module_json_file_path / f"{module}.json"
json_data = None
if not json_path.is_file(): # Wayland is Linux only
print(f"Skipping {json_path}", file=sys.stderr)
return None
with json_path.open(encoding="utf-8") as json_file:
json_data = json.load(json_file)
return json_data
def get_module_plugins(json_data):
"""Return the plugins from the JSON module data."""
if json_data:
plugins = json_data.get("plugin_types")
if plugins:
return plugins
return []
# This dataclass is in charge of holding the file information
# that each Qt module needs to have to be packaged in a wheel
@dataclass
class ModuleData:
name: str
ext: str = ""
# Libraries not related to Qt modules
lib: list[str] = field(default_factory=list)
# Libraries related to Qt modules
qtlib: list[str] = field(default_factory=list)
# Files from the Qt/qml directory
qml: list[str] = field(default_factory=list)
pyi: list[str] = field(default_factory=list)
translations: list[str] = field(default_factory=list)
typesystems: list[str] = field(default_factory=list)
include: list[str] = field(default_factory=list)
glue: list[str] = field(default_factory=list)
doc_glue: list[str] = field(default_factory=list)
metatypes: list[str] = field(default_factory=list)
plugins: list[str] = field(default_factory=list)
# For special cases when a file/directory doesn't fall into
# the previous categories.
extra_dirs: list[str] = field(default_factory=list)
extra_files: list[str] = field(default_factory=list)
# Once the object is created, this method will be executed
# and automatically will initialize some of the files that are
# common for each module.
# Note: The goal of this list is to be used for a MANIFEST.in
# meaning that in case a file gets added and it doesn't
# exist, the wheel creation process will only throw a
# warning, but it will not interrupt the packaging process.
def __post_init__(self) -> None:
if not self.ext:
self.ext = self.get_extension_from_platform(sys.platform)
_lo = self.name.lower()
self.lib.append(f"Qt{self.name}")
self.qtlib.append(f"libQt6{self.name}")
if not len(self.qml):
self.qml.append(f"Qt{self.name}")
self.pyi.append(f"Qt{self.name}.pyi")
self.typesystems.append(f"typesystem_{_lo}.xml")
self.include.append(f"Qt{self.name}/*.h")
self.glue.append(f"qt{_lo}.cpp")
self.doc_glue.append(f"qt{_lo}.rst")
if not len(self.metatypes):
self.metatypes.append(f"qt6{_lo}_relwithdebinfo_metatypes.json")
# The PySide6 directory that gets packaged by the build_scripts
# 'prepare_packages()' has a certain structure that depends on
# the platform. Because that directory is the base for the wheel
# packaging to work, we use the relative paths that are included
# on each file.
# Note: The MANIFEST.in file doesn't need to have '\' or other
# separator, and respect the '/' even on Windows.
def adjusts_paths_and_extensions(self) -> None:
if sys.platform == "win32":
self.lib = [f"{i}.*{self.ext}".replace("lib", "") for i in self.lib]
self.qtlib = [f"{i}.*dll".replace("lib", "") for i in self.qtlib]
self.qml = [f"qml/{i}" for i in self.qml]
self.translations = [f"translations/{i}" for i in self.translations]
self.metatypes = [
f"metatypes/{i}".replace("_relwithdebinfo", "") for i in self.metatypes
]
self.plugins = [f"plugins/{i}" for i in self.plugins]
else:
if sys.platform == "darwin":
self.qtlib = [f"Qt/lib/{i.replace('libQt6', 'Qt')}.framework" for i in self.qtlib]
self.lib = [self.macos_pyside_wrappers_lib(i) for i in self.lib]
else:
self.lib = [f"{i}.*{self.ext}*" for i in self.lib]
self.qtlib = [f"Qt/lib/{i}.*{self.ext}*" for i in self.qtlib]
self.qml = [f"Qt/qml/{i}" for i in self.qml]
self.translations = [f"Qt/translations/{i}" for i in self.translations]
self.metatypes = [f"Qt/metatypes/{i}" for i in self.metatypes]
self.plugins = [f"Qt/plugins/{i}" for i in self.plugins]
self.typesystems = [f"typesystems/{i}" for i in self.typesystems]
self.include = [f"include/{i}" for i in self.include]
self.glue = [f"glue/{i}" for i in self.glue]
self.doc_glue = [f"doc/{i}" for i in self.doc_glue]
def macos_pyside_wrappers_lib(self, s):
if s.startswith("Qt"):
return f"{s}.*so*"
else:
return f"{s}.*{self.ext}*"
@classmethod
def get_fields(cls) -> dict[str, Field]:
return cls.__dataclass_fields__
@staticmethod
def get_extension_from_platform(platform: str) -> str:
if platform == "linux":
return "so"
elif platform == "darwin":
return "dylib"
elif platform == "win32":
return "pyd"
else:
print(f"Platform '{platform}' not supported. Exiting")
sys.exit(-1)
# Wheels auxiliary functions to return the ModuleData objects
# for each module that will be included in the wheel.
# PySide wheel
def wheel_files_pyside_essentials() -> list[ModuleData]:
files = [
module_QtCore(),
module_QtGui(),
module_QtWidgets(),
module_QtHelp(),
module_QtNetwork(),
module_QtConcurrent(),
module_QtDBus(),
module_QtDesigner(),
module_QtOpenGL(),
module_QtOpenGLWidgets(),
module_QtPrintSupport(),
module_QtQml(),
module_QtQuick(),
module_QtQuickControls2(),
module_QtQuickTest(),
module_QtQuickWidgets(),
module_QtXml(),
module_QtTest(),
module_QtSql(),
module_QtSvg(),
module_QtSvgWidgets(),
module_QtUiTools(),
module_QtExampleIcons(),
# Only for plugins
module_QtWayland(),
# there are no bindings for these modules, but their binaries are
# required for qmlls
module_QtLanguageServer(),
module_QtJsonRpc(),
]
return files
# PySide Addons wheel
def wheel_files_pyside_addons() -> list[ModuleData]:
files = [
module_Qt3DAnimation(),
module_Qt3DCore(),
module_Qt3DExtras(),
module_Qt3DInput(),
module_Qt3DLogic(),
module_Qt3DRender(),
module_QtAxContainer(),
module_QtBluetooth(),
module_QtCharts(),
module_QtDataVisualization(),
module_QtGraphs(),
module_QtGraphsWidgets(),
module_QtMultimedia(),
module_QtMultimediaWidgets(),
module_QtNetworkAuth(),
module_QtNfc(),
module_QtPdf(),
module_QtPdfWidgets(),
module_QtPositioning(),
module_QtQuick3D(),
module_QtRemoteObjects(),
module_QtScxml(),
module_QtSensors(),
module_QtSerialPort(),
module_QtSerialBus(),
module_QtSpatialAudio(),
module_QtStateMachine(),
module_QtTextToSpeech(),
module_QtVirtualKeyboard(),
module_QtWebChannel(),
module_QtWebEngineCore(),
module_QtWebEngineQuick(),
module_QtWebEngineWidgets(),
module_QtWebSockets(),
module_QtHttpServer(),
module_QtLocation(),
module_QtAsyncio(),
module_QtWebView(),
# This is not an actual module, but it's required in order
# to add the 'Quick' components of the WebView.
module_QtWebViewQuick(),
]
return files
# Functions that hold the information of all the files that needs
# to be included for the module to work, including Qt libraries,
# typesystems, glue, etc.
def module_QtCore() -> ModuleData:
# QtCore
data = ModuleData("Core")
_typesystems = [
"common.xml",
"core_common.xml",
"typesystem_core_common.xml",
"typesystem_core_win.xml"
]
data.typesystems.extend(_typesystems)
data.include.append("*.h")
if sys.platform == "win32":
data.qtlib.append("pyside6.*")
data.extra_files.append("qt.conf")
data.extra_files.append("rcc.exe")
data.extra_files.append("qtdiag.exe")
data.extra_files.append("pyside6.*.lib")
data.extra_files.append("resources/icudtl.dat")
from build_scripts.platforms.windows_desktop import msvc_redist
data.extra_files.extend(msvc_redist)
else:
data.lib.append("libpyside6.*")
data.extra_files.append("Qt/libexec/rcc")
data.extra_files.append("Qt/libexec/qt.conf")
# *.py
data.extra_dirs.append("support")
# pyside-tools with python backend
# Including the 'scripts' folder would include all the tools into the
# PySide6_Essentials wheel. The moment when we add a tool that has a
# dependency on a module in PySide6_AddOns, then we should split out
# the following line into individual subfolder and files, to better
# control which tool goes into which wheel
data.extra_dirs.append("scripts")
data.extra_dirs.append("typesystems/glue")
data.extra_files.append("__feature__.pyi")
data.extra_files.append("__init__.py")
data.extra_files.append("_git_pyside_version.py")
data.extra_files.append("_config.py")
data.extra_files.append("py.typed")
# Assistant
if sys.platform == "darwin":
data.extra_dirs.append("Assistant.app")
else:
data.extra_files.append("assistant*")
data.translations.append("assistant_*")
# Linguist
if sys.platform == "darwin":
data.extra_dirs.append("Linguist.app")
else:
data.extra_files.append("linguist*")
data.extra_files.append("lconvert*")
data.translations.append("linguist_*")
data.extra_files.append("lrelease*")
data.extra_files.append("lupdate*")
# General translations
data.translations.append("qtbase_*")
data.translations.append("qt_help_*")
data.translations.append("qt_*")
# Extra libraries
data.qtlib.append("libicudata*")
data.qtlib.append("libicui18n*")
data.qtlib.append("libicule*")
data.qtlib.append("libiculx*")
data.qtlib.append("libicutest*")
data.qtlib.append("libicutu*")
data.qtlib.append("libicuuc*")
data.qtlib.append("libicuio*")
return data
def module_QtGui() -> ModuleData:
data = ModuleData("Gui")
_typesystems = [
"gui_common.xml",
"typesystem_gui_common.xml",
"typesystem_gui_mac.xml",
"typesystem_gui_win.xml",
"typesystem_gui_x11.xml",
"typesystem_gui_rhi.xml"
]
_metatypes = [
"qt6eglfsdeviceintegrationprivate_relwithdebinfo_metatypes.json",
"qt6eglfskmssupportprivate_relwithdebinfo_metatypes.json",
"qt6kmssupportprivate_relwithdebinfo_metatypes.json",
"qt6xcbqpaprivate_relwithdebinfo_metatypes.json",
]
_qtlib = [
"libQt6EglFSDeviceIntegration",
"libQt6EglFsKmsSupport",
"libQt6XcbQpa",
]
data.typesystems.extend(_typesystems)
data.metatypes.extend(_metatypes)
data.qtlib.extend(_qtlib)
json_data = get_module_json_data("Gui")
data.plugins = get_module_plugins(json_data)
data.extra_files.append("Qt/plugins/platforms/libqeglfs*")
return data
def module_QtWidgets() -> ModuleData:
data = ModuleData("Widgets")
data.typesystems.append("widgets_common.xml")
data.typesystems.append("typesystem_widgets_common.xml")
if sys.platform == "win32":
data.extra_files.append("uic.exe")
else:
data.extra_files.append("Qt/libexec/uic")
json_data = get_module_json_data("Widgets")
data.plugins = get_module_plugins(json_data)
return data
def module_QtHelp() -> ModuleData:
data = ModuleData("Help")
return data
def module_QtNetwork() -> ModuleData:
data = ModuleData("Network")
json_data = get_module_json_data("Network")
data.plugins = get_module_plugins(json_data)
return data
def module_QtBluetooth() -> ModuleData:
data = ModuleData("Bluetooth")
data.translations.append("qtconnectivity_*")
return data
def module_QtConcurrent() -> ModuleData:
data = ModuleData("Concurrent")
return data
def module_QtDBus() -> ModuleData:
data = ModuleData("DBus")
return data
def module_QtDesigner() -> ModuleData:
data = ModuleData("Designer")
data.qtlib.append("libQt6DesignerComponents")
data.metatypes.append("qt6designercomponentsprivate_relwithdebinfo_metatypes.json")
json_data = get_module_json_data("Designer")
data.plugins = get_module_plugins(json_data)
data.extra_files.append("Qt/plugins/assetimporters/libuip*")
# Designer
if sys.platform == "darwin":
data.extra_dirs.append("Designer.app")
else:
data.extra_files.append("designer*")
data.translations.append("designer_*")
return data
def module_QtNfc() -> ModuleData:
data = ModuleData("Nfc")
return data
def module_QtPdf() -> ModuleData:
data = ModuleData("Pdf")
data.qtlib.append("libQt6PdfQuick")
return data
def module_QtPdfWidgets() -> ModuleData:
data = ModuleData("PdfWidgets")
return data
def module_QtPrintSupport() -> ModuleData:
data = ModuleData("PrintSupport")
data.typesystems.append("typesystem_printsupport_common.xml")
json_data = get_module_json_data("PrintSupport")
data.plugins = get_module_plugins(json_data)
return data
def module_QtQml() -> ModuleData:
data = ModuleData("Qml")
json_data = get_module_json_data("Qml")
data.plugins = get_module_plugins(json_data)
json_data = get_module_json_data("QmlCompilerPrivate")
data.plugins += get_module_plugins(json_data)
_qtlib = [
"libQt6LabsAnimation",
"libQt6LabsFolderListModel",
"libQt6LabsQmlModels*",
"libQt6LabsSettings",
"libQt6LabsSharedImage",
"libQt6LabsWavefrontMesh",
"libQt6QmlCore",
"libQt6QmlLocalStorage",
"libQt6QmlModels",
"libQt6QmlNetwork",
"libQt6QmlWorkerScript",
"libQt6QmlXmlListModel",
"libQt6QmlCompiler",
"libQt6QmlMeta",
"libQt6LabsPlatform",
]
_include = [
"pysideqml.h",
"pysideqmlmacros.h",
"pysideqmlregistertype.h",
]
_metatypes = [
"qt6labsanimation_relwithdebinfo_metatypes.json",
"qt6labsfolderlistmodel_relwithdebinfo_metatypes.json",
"qt6labsqmlmodels_relwithdebinfo_metatypes.json",
"qt6labssettings_relwithdebinfo_metatypes.json",
"qt6labssharedimage_relwithdebinfo_metatypes.json",
"qt6labswavefrontmesh_relwithdebinfo_metatypes.json",
"qt6packetprotocolprivate_relwithdebinfo_metatypes.json",
"qt6qmlcompilerprivate_relwithdebinfo_metatypes.json",
"qt6qmlcompilerplusprivate_relwithdebinfo_metatypes.json",
"qt6qmlcore_relwithdebinfo_metatypes.json",
"qt6qmldebugprivate_relwithdebinfo_metatypes.json",
"qt6qmldomprivate_relwithdebinfo_metatypes.json",
"qt6qmllintprivate_relwithdebinfo_metatypes.json",
"qt6qmllocalstorage_relwithdebinfo_metatypes.json",
"qt6qmlmodels_relwithdebinfo_metatypes.json",
"qt6qmlworkerscript_relwithdebinfo_metatypes.json",
"qt6qmlxmllistmodel_relwithdebinfo_metatypes.json",
"qt6qmlmeta_relwithdebinfo_metatypes.json",
"qt6labsplatform_relwithdebinfo_metatypes.json",
]
_qml = [
"Qt/labs/animation",
"Qt/labs/folderlistmodel",
"Qt/labs/sharedimage",
"Qt/labs/wavefrontmesh",
"Qt/labs/qmlmodels",
"Qt/labs/platform",
"Qt/labs/settings",
]
data.lib.append("libpyside6qml")
json_data = get_module_json_data("Qml")
data.plugins = get_module_plugins(json_data)
data.translations.append("qtdeclarative_*")
if sys.platform == "win32":
data.extra_files.append("pyside6qml.*.lib")
data.extra_files.append("pyside6qml.*.dll")
data.extra_files.append("qml/builtins.qmltypes")
data.extra_files.append("qml/jsroot.qmltypes")
data.extra_files.append("qmlimportscanner.exe")
data.extra_files.append("qmltyperegistrar.exe")
data.extra_files.append("qmlcachegen.exe")
else:
data.extra_files.append("Qt/qml/builtins.qmltypes")
data.extra_files.append("Qt/qml/jsroot.qmltypes")
data.extra_files.append("Qt/libexec/qmlimportscanner")
data.extra_files.append("Qt/libexec/qmltyperegistrar")
data.extra_files.append("Qt/libexec/qmlcachegen")
data.qtlib.extend(_qtlib)
data.include.extend(_include)
data.metatypes.extend(_metatypes)
data.qml.extend(_qml)
data.extra_files.append("qmllint*")
# adds qmllint plugins
json_data_qmllint = get_module_json_data("QmlCompiler")
qml_lint_plugins = get_module_plugins(json_data_qmllint)
data.plugins += qml_lint_plugins
data.extra_files.append("qmlformat*")
data.extra_files.append("qmlls*")
return data
def module_QtQuick() -> ModuleData:
data = ModuleData("Quick")
_metatypes = [
"qt6quickcontrolstestutilsprivate_relwithdebinfo_metatypes.json",
"qt6quickdialogs2_relwithdebinfo_metatypes.json",
"qt6quickdialogs2quickimpl_relwithdebinfo_metatypes.json",
"qt6quickdialogs2utils_relwithdebinfo_metatypes.json",
"qt6quickeffectsprivate_relwithdebinfo_metatypes.json",
"qt6quicketest_relwithdebinfo_metatypes.json",
"qt6quicketestutilsprivate_relwithdebinfo_metatypes.json",
"qt6quicklayouts_relwithdebinfo_metatypes.json",
"qt6quickparticlesprivate_relwithdebinfo_metatypes.json",
"qt6quickshapesprivate_relwithdebinfo_metatypes.json",
"qt6quicktemplates2_relwithdebinfo_metatypes.json",
"qt6quicktest_relwithdebinfo_metatypes.json",
"qt6quicktestutilsprivate_relwithdebinfo_metatypes.json",
"qt6quicktimeline_relwithdebinfo_metatypes.json",
"qt6quickvectorimage_relwithdebinfo_metatypes.json",
"qt6quickvectorimagegeneratorprivate_relwithdebinfo_metatypes.json",
]
_qtlib = [
"libQt6QuickEffects",
"libQt6QuickDialogs2",
"libQt6QuickDialogs2QuickImpl",
"libQt6QuickDialogs2Utils",
"libQt6QuickLayouts",
"libQt6QuickParticles",
"libQt6QuickShapes",
"libQt6QuickTemplates2",
"libQt6QuickTest",
"libQt6QuickTimeline",
"libQt6QuickTimelineBlendTrees",
"libQt6QuickVectorImage",
"libQt6QuickVectorImageGenerator"
]
data.qtlib.extend(_qtlib)
data.metatypes.extend(_metatypes)
json_data = get_module_json_data("Quick")
data.plugins = get_module_plugins(json_data)
data.extra_files.append("svgtoqml*")
return data
def module_QtQuickControls2() -> ModuleData:
data = ModuleData("QuickControls2")
data.qtlib.append("libQt6QuickControls2")
data.qtlib.append("libQt6QuickControls2Basic")
data.qtlib.append("libQt6QuickControls2BasicStyleImpl")
data.qtlib.append("libQt6QuickControls2Fusion")
data.qtlib.append("libQt6QuickControls2FusionStyleImpl")
data.qtlib.append("libQt6QuickControls2Imagine")
data.qtlib.append("libQt6QuickControls2ImagineStyleImpl")
data.qtlib.append("libQt6QuickControls2Impl")
data.qtlib.append("libQt6QuickControls2Material")
data.qtlib.append("libQt6QuickControls2MaterialStyleImpl")
data.qtlib.append("libQt6QuickControls2Universal")
data.qtlib.append("libQt6QuickControls2UniversalStyleImpl")
# FluentWinUI3 Style is available for all platforms, even if it
# was originally intended for Windows.
data.qtlib.append("libQt6QuickControls2FluentWinUI3StyleImpl")
if sys.platform == "win32":
data.qtlib.append("libQt6QuickControls2WindowsStyleImpl")
elif sys.platform == "darwin":
data.qtlib.append("libQt6QuickControls2IOSStyleImpl")
data.qtlib.append("libQt6QuickControls2MacOSStyleImpl")
data.metatypes.append("qt6quickcontrols2impl_relwithdebinfo_metatypes.json")
return data
def module_QtQuickTest() -> ModuleData:
data = ModuleData("QuickTest")
return data
def module_QtQuickWidgets() -> ModuleData:
data = ModuleData("QuickWidgets")
return data
def module_QtXml() -> ModuleData:
data = ModuleData("Xml")
return data
def module_QtTest() -> ModuleData:
data = ModuleData("Test")
return data
def module_QtSql() -> ModuleData:
data = ModuleData("Sql")
json_data = get_module_json_data("Sql")
data.plugins = get_module_plugins(json_data)
return data
def module_QtSvg() -> ModuleData:
data = ModuleData("Svg")
return data
def module_QtSvgWidgets() -> ModuleData:
data = ModuleData("SvgWidgets")
return data
def module_QtTextToSpeech() -> ModuleData:
data = ModuleData("TextToSpeech")
json_data = get_module_json_data("TextToSpeech")
data.plugins = get_module_plugins(json_data)
return data
def module_QtUiTools() -> ModuleData:
data = ModuleData("UiTools")
return data
def module_QtWayland() -> ModuleData:
data = ModuleData("Wayland")
_qtlib = [
"libQt6WaylandClient",
"libQt6WaylandCompositor",
"libQt6WaylandEglClientHwIntegration",
"libQt6WaylandEglCompositorHwIntegration",
"libQt6WlShellIntegration",
]
_metatypes = [
"qt6waylandclient_relwithdebinfo_metatypes.json",
"qt6waylandeglclienthwintegrationprivate_relwithdebinfo_metatypes.json",
"qt6wlshellintegrationprivate_relwithdebinfo_metatypes.json",
]
data.qtlib.extend(_qtlib)
data.metatypes.extend(_metatypes)
json_data = get_module_json_data("WaylandClient")
data.plugins = get_module_plugins(json_data)
json_data = get_module_json_data("WaylandCompositor")
data.plugins += get_module_plugins(json_data)
return data
def module_Qt3DCore() -> ModuleData:
data = ModuleData("3DCore", qml=["Qt3D/Core"])
return data
def module_Qt3DAnimation() -> ModuleData:
data = ModuleData("3DAnimation", qml=["Qt3D/Animation"])
return data
def module_Qt3DExtras() -> ModuleData:
data = ModuleData("3DExtras", qml=["Qt3D/Extras"])
return data
def module_Qt3DInput() -> ModuleData:
data = ModuleData("3DInput", qml=["Qt3D/Input"])
json_data = get_module_json_data("3DInput")
data.plugins = get_module_plugins(json_data)
return data
def module_Qt3DLogic() -> ModuleData:
data = ModuleData("3DLogic", qml=["Qt3D/Logic"])
return data
def module_Qt3DRender() -> ModuleData:
data = ModuleData("3DRender", qml=["Qt3D/Render"])
json_data = get_module_json_data("3DRender")
data.plugins = get_module_plugins(json_data)
return data
def module_QtQuick3D() -> ModuleData:
data = ModuleData("Quick3D")
_qtlib = [
"libQt6Quick3DAssetImport",
"libQt6Quick3DAssetUtils",
"libQt6Quick3DEffects",
"libQt6Quick3DGlslParser",
"libQt6Quick3DHelpers",
"libQt6Quick3DHelpersImpl",
"libQt6Quick3DIblBaker",
"libQt6Quick3DParticleEffects",
"libQt6Quick3DParticles",
"libQt6Quick3DPhysics",
"libQt6Quick3DPhysicsHelpers",
"libQt6Quick3DRuntimeRender",
"libQt6Quick3DSpatialAudio",
"libQt6Quick3DUtils",
"libQt6ShaderTools",
"libQt63DQuick",
"libQt63DQuickAnimation",
"libQt63DQuickExtras",
"libQt63DQuickExtras",
"libQt63DQuickInput",
"libQt63DQuickRender",
"libQt63DQuickScene2D",
"libQt6Quick3DXr",
]
_metatypes = [
"qt63dquick_relwithdebinfo_metatypes.json",
"qt63dquickanimation_relwithdebinfo_metatypes.json",
"qt63dquickextras_relwithdebinfo_metatypes.json",
"qt63dquickinput_relwithdebinfo_metatypes.json",
"qt63dquickrender_relwithdebinfo_metatypes.json",
"qt63dquickscene2d_relwithdebinfo_metatypes.json",
"qt6quick3dassetimport_relwithdebinfo_metatypes.json",
"qt6quick3dassetutils_relwithdebinfo_metatypes.json",
"qt6quick3deffects_relwithdebinfo_metatypes.json",
"qt6quick3dglslparserprivate_relwithdebinfo_metatypes.json",
"qt6quick3dhelpers_relwithdebinfo_metatypes.json",
"qt6quick3diblbaker_relwithdebinfo_metatypes.json",
"qt6quick3dparticleeffects_relwithdebinfo_metatypes.json",
"qt6quick3dparticles_relwithdebinfo_metatypes.json",
"qt6quick3druntimerender_relwithdebinfo_metatypes.json",
"qt6quick3dutils_relwithdebinfo_metatypes.json",
"qt6shadertools_relwithdebinfo_metatypes.json",
"qt6quick3dxr_relwithdebinfo_metatypes.json"
]
json_data = get_module_json_data("Quick3DAssetImport")
data.plugins = get_module_plugins(json_data)
data.qtlib.extend(_qtlib)
data.metatypes.extend(_metatypes)
data.extra_files.append("Qt/plugins/assetimporters/libassimp*")
data.extra_files.append("qsb*")
data.extra_files.append("balsam*")
# Adding GraphicalEffects files
data.qml.append("Qt5Compat/GraphicalEffects")
return data
def module_QtAxContainer() -> ModuleData:
data = ModuleData("AxContainer")
if sys.platform == "win32":
data.metatypes.append("qt6axbaseprivate_metatypes.json")
data.metatypes.append("qt6axserver_metatypes.json")
return data
def module_QtWebEngineCore() -> ModuleData:
data = ModuleData("WebEngineCore", qml=["QtWebEngine"])
data.translations.append("qtwebengine_locales/*")
data.translations.append("qtwebengine_*")
data.extra_dirs.append("Qt/resources")
if sys.platform == "win32":
data.extra_files.append("resources/qtwebengine*.pak")
data.extra_files.append("resources/v8_context_snapshot*.*")
data.extra_files.append("QtWebEngineProcess.exe")
else:
data.extra_files.append("Qt/libexec/QtWebEngineProcess")
return data
def module_QtWebEngineWidgets() -> ModuleData:
data = ModuleData("WebEngineWidgets")
return data
def module_QtWebEngineQuick() -> ModuleData:
data = ModuleData("WebEngineQuick")
data.qtlib.append("libQt6WebEngineQuickDelegatesQml")
data.metatypes.append("qt6webenginequickdelegatesqml_relwithdebinfo_metatypes.json")
return data
def module_QtCharts() -> ModuleData:
data = ModuleData("Charts")
data.qtlib.append("libQt6ChartsQml")
data.metatypes.append("qt6chartsqml_relwithdebinfo_metatypes.json")
return data
def module_QtDataVisualization() -> ModuleData:
data = ModuleData("DataVisualization")
data.qtlib.append("libQt6DataVisualizationQml")
data.metatypes.append("qt6datavisualizationqml_relwithdebinfo_metatypes.json")
data.typesystems.append("datavisualization_common.xml")
return data
def module_QtGraphs() -> ModuleData:
data = ModuleData("Graphs")
return data
def module_QtGraphsWidgets() -> ModuleData:
data = ModuleData("GraphsWidgets")
return data
def module_QtMultimedia() -> ModuleData:
data = ModuleData("Multimedia")
data.qtlib.append("libQt6MultimediaQuick")
data.metatypes.append("qt6multimediaquickprivate_relwithdebinfo_metatypes.json")
json_data = get_module_json_data("Multimedia")
data.translations.append("qtmultimedia_*")
data.plugins = get_module_plugins(json_data)
linux_multimedia_libs = [f"Qt/lib/lib{lib}*.so*" for lib in _multimedia_libs]
linux_multimedia_libs.append("Qt/lib/libQt6FFmpegStub*.so*")
platform_files = {
"win32": [f"{lib}-*.dll" for lib in _multimedia_libs],
"darwin": [f"Qt/lib/lib{lib}.*.dylib" for lib in _multimedia_libs],
"linux": linux_multimedia_libs}
extra_files = platform_files.get(sys.platform, [])
data.extra_files.extend(extra_files)
return data
def module_QtMultimediaWidgets() -> ModuleData:
data = ModuleData("MultimediaWidgets")
return data
def module_QtNetworkAuth() -> ModuleData:
data = ModuleData("NetworkAuth")
return data
def module_QtPositioning() -> ModuleData:
data = ModuleData("Positioning")
data.qtlib.append("libQt6PositioningQuick")
data.metatypes.append("qt6positioningquick_relwithdebinfo_metatypes.json")
json_data = get_module_json_data("Positioning")
data.plugins = get_module_plugins(json_data)
return data
def module_QtRemoteObjects() -> ModuleData:
data = ModuleData("RemoteObjects")
data.qtlib.append("libQt6RemoteObjectsQml")
data.metatypes.append("qt6remoteobjectsqml_relwithdebinfo_metatypes.json")
return data
def module_QtSensors() -> ModuleData:
data = ModuleData("Sensors")
data.qtlib.append("libQt6SensorsQuick")
data.metatypes.append("qt6sensorsquick_relwithdebinfo_metatypes.json")
json_data = get_module_json_data("Sensors")
data.plugins = get_module_plugins(json_data)
return data
def module_QtSerialPort() -> ModuleData:
data = ModuleData("SerialPort")
data.translations.append("qtserialport_*")
return data
def module_QtSpatialAudio() -> ModuleData:
data = ModuleData("SpatialAudio")
data.metatypes.append("qt6spatialaudio_debug_metatypes.json")
return data
def module_QtStateMachine() -> ModuleData:
data = ModuleData("StateMachine")
data.qtlib.append("libQt6StateMachineQml")
data.metatypes.append("qt6statemachineqml_relwithdebinfo_metatypes.json")
return data
def module_QtScxml() -> ModuleData:
data = ModuleData("Scxml")
data.qtlib.append("libQt6ScxmlQml")
data.metatypes.append("qt6scxmlqml_relwithdebinfo_metatypes.json")
json_data = get_module_json_data("Scxml")
data.plugins = get_module_plugins(json_data)
return data
def module_QtWebChannel() -> ModuleData:
data = ModuleData("WebChannel")
data.qtlib.append("libQt6WebChannelQuick")
return data
def module_QtWebSockets() -> ModuleData:
data = ModuleData("WebSockets")
data.translations.append("qtwebsockets_*")
return data
def module_QtOpenGL() -> ModuleData:
data = ModuleData("OpenGL")
_typesystems = [
"opengl_common.xml",
"typesystem_glgeti_v_includes.xml",
"typesystem_glgeti_v_modifications.xml",
"typesystem_glgetv_includes.xml",
"typesystem_glgetv_modifications.xml",
"typesystem_opengl_modifications1_0.xml",
"typesystem_opengl_modifications1_0_compat.xml",
"typesystem_opengl_modifications1_1.xml",
"typesystem_opengl_modifications1_1_compat.xml",
"typesystem_opengl_modifications1_2_compat.xml",
"typesystem_opengl_modifications1_3_compat.xml",
"typesystem_opengl_modifications1_4.xml",
"typesystem_opengl_modifications1_4_compat.xml",
"typesystem_opengl_modifications2_0.xml",
"typesystem_opengl_modifications2_0_compat.xml",
"typesystem_opengl_modifications2_1.xml",
"typesystem_opengl_modifications3_0.xml",
"typesystem_opengl_modifications3_3.xml",
"typesystem_opengl_modifications3_3a.xml",
"typesystem_opengl_modifications4_0.xml",
"typesystem_opengl_modifications4_1.xml",
"typesystem_opengl_modifications4_3.xml",
"typesystem_opengl_modifications4_4.xml",
"typesystem_opengl_modifications4_4_core.xml",
"typesystem_opengl_modifications4_5.xml",
"typesystem_opengl_modifications4_5_core.xml",
"typesystem_opengl_modifications_va.xml",
]
data.typesystems.extend(_typesystems)
if sys.platform == "win32":
data.extra_files.append("opengl32*.dll")
return data
def module_QtOpenGLWidgets() -> ModuleData:
data = ModuleData("OpenGLWidgets")
return data
def module_QtSerialBus() -> ModuleData:
data = ModuleData("SerialBus")
json_data = get_module_json_data("SerialBus")
data.plugins = get_module_plugins(json_data)
return data
def module_QtVirtualKeyboard() -> ModuleData:
data = ModuleData("VirtualKeyboard")
data.plugins.append("virtualkeyboard")
data.qtlib.append("libQt6VirtualKeyboardSettings")
return data
def module_QtHttpServer() -> ModuleData:
data = ModuleData("HttpServer")
return data
def module_QtLanguageServer() -> ModuleData:
data = ModuleData("LanguageServer")
data.metatypes.append("qt6languageserverprivate_relwithdebinfo_metatypes.json")
return data
def module_QtJsonRpc() -> ModuleData:
data = ModuleData("JsonRpc")
data.metatypes.append("qt6jsonrpcprivate_relwithdebinfo_metatypes.json")
return data
def module_QtLocation() -> ModuleData:
data = ModuleData("Location")
json_data = get_module_json_data("Location")
data.plugins = get_module_plugins(json_data)
data.translations.append("qtlocation_*")
return data
def module_QtAsyncio() -> ModuleData:
data = ModuleData("Asyncio")
data.extra_dirs.append("QtAsyncio")
return data
def module_QtExampleIcons() -> ModuleData:
data = ModuleData("ExampleIcons")
return data
def module_QtWebView() -> ModuleData:
data = ModuleData("WebView")
json_data = get_module_json_data("WebView")
data.plugins = get_module_plugins(json_data)
return data
def module_QtWebViewQuick() -> ModuleData:
data = ModuleData("WebViewQuick")
return data
|