diff --git a/devel/qtcreator/Makefile b/devel/qtcreator/Makefile index b5146b30b082..1e1113a84601 100644 --- a/devel/qtcreator/Makefile +++ b/devel/qtcreator/Makefile @@ -1,102 +1,104 @@ # Created by: Kris Moore PORTNAME= qtcreator -DISTVERSION= 6.0.2 +DISTVERSION= 7.0.0 CATEGORIES= devel MASTER_SITES= QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION} DISTNAME= qt-creator-opensource-src-${DISTVERSION} DIST_SUBDIR= KDE/Qt/qtcreator MAINTAINER= kde@FreeBSD.org COMMENT= C++ and QML IDE for Qt development LICENSE= QtGPL LICENSE_GROUPS_QtGPL= GPL LICENSE_NAME= GPLv3 with Qt Company GPL Exception 1.0 LICENSE_FILE= ${WRKSRC}/LICENSE.GPL3-EXCEPT LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} LIB_DEPENDS= libKF5SyntaxHighlighting.so:textproc/kf5-syntax-highlighting \ libzstd.so:archivers/zstd RUN_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} USES= compiler:c++14-lang pkgconfig cmake gl python qt:5 shebangfix tar:xz \ desktop-file-utils USE_GL= gl USE_LDCONFIG= ${LOCALBASE}/lib/${PORTNAME} USE_QT= buildtools concurrent core declarative designer gui help \ linguist location network printsupport qdoc qmake \ quick3d quickcontrols script serialport sql svg testlib \ webchannel widgets xml xmlpatterns SHEBANG_FILES= tests/system/tools/objectsToTable.py \ tests/system/tools/findUnusedObjects.py \ share/qtcreator/templates/wizards/files/python/file.py \ share/qtcreator/scripts/openTerminal.py \ src/libs/qmljs/parser/changeLicense.py \ src/libs/qt-breakpad/qtbreakpadsymbols \ src/tools/icons/export.py \ scripts/packagePlugins.py \ scripts/ninjawrapper.py \ scripts/checkInstalledFiles.py \ scripts/createDistPackage.py \ scripts/createDevPackage.py \ scripts/deployqt.py \ scripts/dependencyinfo.py \ scripts/createSourcePackages.py \ scripts/uichanges.py \ scripts/makedmg.py # Provide library paths, default llvm first as a hint to the clang code model. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH:STRING="${PREFIX}/llvm${LLVM_DEFAULT};${PREFIX}" # Prevent accidental pickup of devel/elfutils libraries. CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_elfutils # Disable precompiled headers for now, they are missing compile flags. CMAKE_OFF= BUILD_WITH_PCH +# Disable Qt6 suport for now +CMAKE_ON+= CMAKE_DISABLE_FIND_PACKAGE_Qt6 LDFLAGS+= -lexecinfo # be paranoid and do not extract qbs (devel/qbs) copy from source tree EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/src/shared/qbs' PLIST_SUB= SHLIB_VER="${PORTVERSION}" PORTDOCS= * OPTIONS_DEFINE= DOCS EXAMPLES QTWEBENGINE OPTIONS_DEFAULT= DOCS EXAMPLES OPTIONS_DEFAULT_amd64= QTWEBENGINE OPTIONS_DEFAULT_i386= QTWEBENGINE OPTIONS_SUB= yes DOCS_DESC= Install the Qt5 api documentation EXAMPLES_DESC= Install the Qt5 example projects QTWEBENGINE_DESC= Add dependency on qt5-webengine DOCS_USE= QT=doc_run DOCS_CMAKE_BOOL= WITH_DOCS EXAMPLES_USE= QT=examples_run QTWEBENGINE_USE= qt=webengine QTWEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngine .include # Force a modern LLVM >= 10 .if ${LLVM_DEFAULT:C/[1-5]./&0/:S,-devel,990,} > 80 LLVM_DEFAULT= 13 .endif # Documentation is excluded from the default build targets. do-build-DOCS-on: ${CMAKE_BIN} --build ${BUILD_WRKSRC} --target docs # This also means separate install steps for documentation. do-install-DOCS-on: ${CMAKE_BIN} --install ${BUILD_WRKSRC} --prefix ${STAGEDIR}${PREFIX} \ --component qch_docs ${CMAKE_BIN} --install ${BUILD_WRKSRC} --prefix ${STAGEDIR}${PREFIX} \ --component html_docs .include diff --git a/devel/qtcreator/distinfo b/devel/qtcreator/distinfo index 11373df25455..07aa6fed7231 100644 --- a/devel/qtcreator/distinfo +++ b/devel/qtcreator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1645295631 -SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-6.0.2.tar.xz) = 3d173c1a02ce55137a23f294e1a840d7648656e97826067eb29d9df653351bfa -SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-6.0.2.tar.xz) = 44746240 +TIMESTAMP = 1649958248 +SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-7.0.0.tar.xz) = d39a05e48bb961cfab61135a5ee5503fc4d381c74000b910f36bf0cea37736d9 +SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-7.0.0.tar.xz) = 44922832 diff --git a/devel/qtcreator/files/patch-git_b3e9f24 b/devel/qtcreator/files/patch-git_b3e9f24 deleted file mode 100644 index db1821dbb271..000000000000 --- a/devel/qtcreator/files/patch-git_b3e9f24 +++ /dev/null @@ -1,42 +0,0 @@ -From: Marco Bubke -Date: Mon, 24 Jan 2022 13:38:29 +0000 (+0100) -Subject: QmlDesigner: Fix 32 bit -X-Git-Tag: qds/v3.0.0~7 -X-Git-Url: https://codereview.qt-project.org/gitweb?p=qt-creator%2Fqt-creator.git;a=commitdiff_plain;h=b3e9f24ed1c0d3c0ee4917d4b449da90e00e888a;hp=e05ecea4f52174db2e9e2a4e7d5b9c59bae1fd6f - -QmlDesigner: Fix 32 bit - -Because std::ptrdiff_t and int are the same under 32 bit the constructor -is changed to a template. The class is private so it is very unlikely -that it leads to errors. - -Task-number: QTCREATORBUG-26910 -Change-Id: I94c987b9b6d2f04876740ff283a339c0db056cfd -Reviewed-by: -Reviewed-by: Christophe Giboudeaux -Reviewed-by: Eike Ziller -Reviewed-by: Qt CI Bot ---- - -diff --git a/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h b/src/plugins/qmldesigner/designercore/projectstorage/storagecache.h -index 747c3d9a07d..27d2905e8e4 100644 ---- src/plugins/qmldesigner/designercore/projectstorage/storagecache.h -+++ src/plugins/qmldesigner/designercore/projectstorage/storagecache.h -@@ -67,15 +67,8 @@ class StorageCache - - StorageCacheIndex(const char *) = delete; - -- constexpr explicit StorageCacheIndex(int id) noexcept -- : id{id} -- {} -- -- constexpr explicit StorageCacheIndex(std::size_t id) noexcept -- : id{static_cast(id)} -- {} -- -- constexpr explicit StorageCacheIndex(std::ptrdiff_t id) noexcept -+ template -+ constexpr explicit StorageCacheIndex(IntegerType id) noexcept - : id{static_cast(id)} - {} - diff --git a/devel/qtcreator/pkg-plist b/devel/qtcreator/pkg-plist index ba5d95d75407..5cf186b87a17 100644 --- a/devel/qtcreator/pkg-plist +++ b/devel/qtcreator/pkg-plist @@ -1,1135 +1,1330 @@ bin/qtcreator bin/qtcreator.sh -lib/qtcreator/libAdvancedDockingSystem.so.6 +lib/qtcreator/libAdvancedDockingSystem.so.7 lib/qtcreator/libAdvancedDockingSystem.so.%%SHLIB_VER%% -lib/qtcreator/libAggregation.so.6 +lib/qtcreator/libAggregation.so.7 lib/qtcreator/libAggregation.so.%%SHLIB_VER%% -lib/qtcreator/libCPlusPlus.so.6 +lib/qtcreator/libCPlusPlus.so.7 lib/qtcreator/libCPlusPlus.so.%%SHLIB_VER%% -lib/qtcreator/libClangSupport.so.6 +lib/qtcreator/libClangSupport.so.7 lib/qtcreator/libClangSupport.so.%%SHLIB_VER%% -lib/qtcreator/libExtensionSystem.so.6 +lib/qtcreator/libExtensionSystem.so.7 lib/qtcreator/libExtensionSystem.so.%%SHLIB_VER%% -lib/qtcreator/libGLSL.so.6 +lib/qtcreator/libGLSL.so.7 lib/qtcreator/libGLSL.so.%%SHLIB_VER%% -lib/qtcreator/libLanguageServerProtocol.so.6 +lib/qtcreator/libLanguageServerProtocol.so.7 lib/qtcreator/libLanguageServerProtocol.so.%%SHLIB_VER%% -lib/qtcreator/libLanguageUtils.so.6 +lib/qtcreator/libLanguageUtils.so.7 lib/qtcreator/libLanguageUtils.so.%%SHLIB_VER%% -lib/qtcreator/libModeling.so.6 +lib/qtcreator/libModeling.so.7 lib/qtcreator/libModeling.so.%%SHLIB_VER%% -lib/qtcreator/libProParser.so.6 +lib/qtcreator/libProParser.so.7 lib/qtcreator/libProParser.so.%%SHLIB_VER%% -lib/qtcreator/libQmlDebug.so.6 +lib/qtcreator/libQmlDebug.so.7 lib/qtcreator/libQmlDebug.so.%%SHLIB_VER%% -lib/qtcreator/libQmlEditorWidgets.so.6 +lib/qtcreator/libQmlEditorWidgets.so.7 lib/qtcreator/libQmlEditorWidgets.so.%%SHLIB_VER%% -lib/qtcreator/libQmlJS.so.6 +lib/qtcreator/libQmlJS.so.7 lib/qtcreator/libQmlJS.so.%%SHLIB_VER%% -lib/qtcreator/libQtcSsh.so.6 +lib/qtcreator/libQtcSsh.so.7 lib/qtcreator/libQtcSsh.so.%%SHLIB_VER%% -lib/qtcreator/libSqlite.so.6 +lib/qtcreator/libSqlite.so.7 lib/qtcreator/libSqlite.so.%%SHLIB_VER%% -lib/qtcreator/libTracing.so.6 +lib/qtcreator/libTracing.so.7 lib/qtcreator/libTracing.so.%%SHLIB_VER%% -lib/qtcreator/libUtils.so.6 +lib/qtcreator/libUtils.so.7 lib/qtcreator/libUtils.so.%%SHLIB_VER%% -lib/qtcreator/libqlitehtml.so.6 +lib/qtcreator/libqlitehtml.so.7 lib/qtcreator/libqlitehtml.so.%%SHLIB_VER%% -lib/qtcreator/libyaml-cpp.so.6 +lib/qtcreator/libyaml-cpp.so.7 lib/qtcreator/libyaml-cpp.so.%%SHLIB_VER%% lib/qtcreator/plugins/libAndroid.so lib/qtcreator/plugins/libAutoTest.so lib/qtcreator/plugins/libAutotoolsProjectManager.so lib/qtcreator/plugins/libBareMetal.so lib/qtcreator/plugins/libBazaar.so lib/qtcreator/plugins/libBeautifier.so lib/qtcreator/plugins/libBinEditor.so lib/qtcreator/plugins/libBookmarks.so lib/qtcreator/plugins/libBoot2Qt.so lib/qtcreator/plugins/libCMakeProjectManager.so lib/qtcreator/plugins/libCVS.so lib/qtcreator/plugins/libClangCodeModel.so lib/qtcreator/plugins/libClangFormat.so lib/qtcreator/plugins/libClangTools.so lib/qtcreator/plugins/libClassView.so lib/qtcreator/plugins/libClearCase.so lib/qtcreator/plugins/libCodePaster.so lib/qtcreator/plugins/libCompilationDatabaseProjectManager.so lib/qtcreator/plugins/libConan.so lib/qtcreator/plugins/libCore.so lib/qtcreator/plugins/libCppEditor.so lib/qtcreator/plugins/libCppcheck.so lib/qtcreator/plugins/libCtfVisualizer.so lib/qtcreator/plugins/libDebugger.so lib/qtcreator/plugins/libDesigner.so lib/qtcreator/plugins/libDiffEditor.so lib/qtcreator/plugins/libDocker.so lib/qtcreator/plugins/libEmacsKeys.so lib/qtcreator/plugins/libFakeVim.so lib/qtcreator/plugins/libGLSLEditor.so lib/qtcreator/plugins/libGenericProjectManager.so lib/qtcreator/plugins/libGit.so lib/qtcreator/plugins/libHelloWorld.so lib/qtcreator/plugins/libHelp.so lib/qtcreator/plugins/libImageViewer.so lib/qtcreator/plugins/libIncrediBuild.so lib/qtcreator/plugins/libIos.so lib/qtcreator/plugins/libLanguageClient.so lib/qtcreator/plugins/libMacros.so lib/qtcreator/plugins/libMarketplace.so lib/qtcreator/plugins/libMcuSupport.so lib/qtcreator/plugins/libMercurial.so lib/qtcreator/plugins/libMesonProjectManager.so lib/qtcreator/plugins/libModelEditor.so lib/qtcreator/plugins/libNim.so lib/qtcreator/plugins/libPerfProfiler.so lib/qtcreator/plugins/libPerforce.so lib/qtcreator/plugins/libProjectExplorer.so lib/qtcreator/plugins/libPython.so lib/qtcreator/plugins/libQbsProjectManager.so lib/qtcreator/plugins/libQmakeProjectManager.so -lib/qtcreator/plugins/libQmlDesigner.so lib/qtcreator/plugins/libQmlJSEditor.so lib/qtcreator/plugins/libQmlJSTools.so lib/qtcreator/plugins/libQmlPreview.so lib/qtcreator/plugins/libQmlProfiler.so lib/qtcreator/plugins/libQmlProjectManager.so lib/qtcreator/plugins/libQnx.so lib/qtcreator/plugins/libQtSupport.so lib/qtcreator/plugins/libRemoteLinux.so lib/qtcreator/plugins/libResourceEditor.so lib/qtcreator/plugins/libScxmlEditor.so lib/qtcreator/plugins/libSerialTerminal.so lib/qtcreator/plugins/libSilverSearcher.so -lib/qtcreator/plugins/libStudioWelcome.so lib/qtcreator/plugins/libSubversion.so lib/qtcreator/plugins/libTaskList.so lib/qtcreator/plugins/libTextEditor.so lib/qtcreator/plugins/libTodo.so lib/qtcreator/plugins/libUpdateInfo.so lib/qtcreator/plugins/libValgrind.so lib/qtcreator/plugins/libVcsBase.so lib/qtcreator/plugins/libWebAssembly.so lib/qtcreator/plugins/libWelcome.so lib/qtcreator/plugins/libWinRt.so -lib/qtcreator/plugins/qmldesigner/libassetexporterplugin.so -lib/qtcreator/plugins/qmldesigner/libcomponentsplugin.so -lib/qtcreator/plugins/qmldesigner/libqmlpreviewplugin.so -lib/qtcreator/plugins/qmldesigner/libqtquickplugin.so libexec/qtcreator/buildoutputparser libexec/qtcreator/clangbackend libexec/qtcreator/cpaster libexec/qtcreator/qml2puppet libexec/qtcreator/qtc-askpass libexec/qtcreator/qtcreator_process_stub libexec/qtcreator/qtcreator_processlauncher libexec/qtcreator/qtpromaker libexec/qtcreator/sdktool share/applications/org.qt-project.qtcreator.desktop -share/metainfo/org.qt-project.qtcreator.appdata.xml share/icons/hicolor/128x128/apps/QtProject-qtcreator.png share/icons/hicolor/16x16/apps/QtProject-qtcreator.png share/icons/hicolor/24x24/apps/QtProject-qtcreator.png share/icons/hicolor/256x256/apps/QtProject-qtcreator.png share/icons/hicolor/32x32/apps/QtProject-qtcreator.png share/icons/hicolor/48x48/apps/QtProject-qtcreator.png share/icons/hicolor/512x512/apps/QtProject-qtcreator.png share/icons/hicolor/64x64/apps/QtProject-qtcreator.png +share/metainfo/org.qt-project.qtcreator.appdata.xml %%DATADIR%%/android/sdk_definitions.json %%DATADIR%%/cplusplus/examples/CMakeLists.txt %%DATADIR%%/cplusplus/examples/clazy_example.cpp %%DATADIR%%/cplusplus/examples/examples.pro %%DATADIR%%/cplusplus/examples/icontest.cpp %%DATADIR%%/cplusplus/examples/tidy_example.cpp %%DATADIR%%/cplusplus/examples/tidy_example.h %%DATADIR%%/cplusplus/wrappedMingwHeaders/float.h %%DATADIR%%/cplusplus/wrappedQtHeaders/QtCore/qobjectdefs.h %%DATADIR%%/debugger/.pylintrc %%DATADIR%%/debugger/LICENSE.GPL3-EXCEPT %%DATADIR%%/debugger/README.txt %%DATADIR%%/debugger/boosttypes.py %%DATADIR%%/debugger/cdbbridge.py %%DATADIR%%/debugger/creatortypes.py %%DATADIR%%/debugger/dumper.py %%DATADIR%%/debugger/gdbbridge.py %%DATADIR%%/debugger/gdbtracepoint.py %%DATADIR%%/debugger/lldbbridge.py %%DATADIR%%/debugger/misctypes.py %%DATADIR%%/debugger/opencvtypes.py %%DATADIR%%/debugger/pdbbridge.py %%DATADIR%%/debugger/personaltypes.py %%DATADIR%%/debugger/qttypes.py %%DATADIR%%/debugger/setup.cfg %%DATADIR%%/debugger/stdtypes.py %%DATADIR%%/debugger/utils.py %%DATADIR%%/externaltools/lrelease.xml %%DATADIR%%/externaltools/lupdate.xml %%DATADIR%%/externaltools/qml.xml %%DATADIR%%/externaltools/qmlscene.xml %%DATADIR%%/externaltools/vi.xml %%DATADIR%%/fonts/SourceCodePro-Bold.ttf %%DATADIR%%/fonts/SourceCodePro-It.ttf %%DATADIR%%/fonts/SourceCodePro-Regular.ttf %%DATADIR%%/fonts/SourceCodePro.txt %%DATADIR%%/glsl/glsl_120.frag %%DATADIR%%/glsl/glsl_120.vert %%DATADIR%%/glsl/glsl_120_common.glsl %%DATADIR%%/glsl/glsl_330.frag %%DATADIR%%/glsl/glsl_330.vert %%DATADIR%%/glsl/glsl_330_common.glsl %%DATADIR%%/glsl/glsl_es_100.frag %%DATADIR%%/glsl/glsl_es_100.vert %%DATADIR%%/glsl/glsl_es_100_common.glsl %%DATADIR%%/indexer_preincludes/QtCore/qconfig.h %%DATADIR%%/indexer_preincludes/QtCore/qglobal.h %%DATADIR%%/indexer_preincludes/qglobal.h %%DATADIR%%/indexer_preincludes/windows.h %%DATADIR%%/modeleditor/standard.def %%DATADIR%%/package-manager/auto-setup.cmake %%DATADIR%%/package-manager/conan.cmake %%DATADIR%%/qml-type-descriptions/builtins.qmltypes %%DATADIR%%/qml-type-descriptions/qbs-base.qmltypes %%DATADIR%%/qml-type-descriptions/qbs-bundle.json %%DATADIR%%/qml-type-descriptions/qbs.qmltypes %%DATADIR%%/qml-type-descriptions/qmlproject-bundle.json %%DATADIR%%/qml-type-descriptions/qmlproject.qmltypes %%DATADIR%%/qml-type-descriptions/qmlruntime.qmltypes %%DATADIR%%/qml-type-descriptions/qmltypes-bundle.json %%DATADIR%%/qml-type-descriptions/qt-labs-folderlistmodel.qmltypes %%DATADIR%%/qml-type-descriptions/qt-labs-gestures.qmltypes %%DATADIR%%/qml-type-descriptions/qt-labs-particles.qmltypes %%DATADIR%%/qml-type-descriptions/qt5QtQuick2-bundle.json %%DATADIR%%/qml-type-descriptions/qtmobility-connectivity.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-contacts.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-feedback.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-gallery.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-location.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-messaging.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-organizer.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-sensors.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-serviceframework.qmltypes %%DATADIR%%/qml-type-descriptions/qtmobility-systeminfo.qmltypes %%DATADIR%%/qml-type-descriptions/qtmultimediakit.qmltypes %%DATADIR%%/qml-type-descriptions/qtwebkit.qmltypes %%DATADIR%%/qml/qmlpuppet/commands/captureddatacommand.h %%DATADIR%%/qml/qmlpuppet/commands/changeauxiliarycommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changeauxiliarycommand.h %%DATADIR%%/qml/qmlpuppet/commands/changebindingscommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changebindingscommand.h %%DATADIR%%/qml/qmlpuppet/commands/changefileurlcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changefileurlcommand.h %%DATADIR%%/qml/qmlpuppet/commands/changeidscommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changeidscommand.h %%DATADIR%%/qml/qmlpuppet/commands/changelanguagecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changelanguagecommand.h %%DATADIR%%/qml/qmlpuppet/commands/changenodesourcecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changenodesourcecommand.h %%DATADIR%%/qml/qmlpuppet/commands/changepreviewimagesizecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changepreviewimagesizecommand.h %%DATADIR%%/qml/qmlpuppet/commands/changeselectioncommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changeselectioncommand.h %%DATADIR%%/qml/qmlpuppet/commands/changestatecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changestatecommand.h %%DATADIR%%/qml/qmlpuppet/commands/changevaluescommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/changevaluescommand.h %%DATADIR%%/qml/qmlpuppet/commands/childrenchangedcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/childrenchangedcommand.h %%DATADIR%%/qml/qmlpuppet/commands/clearscenecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/clearscenecommand.h %%DATADIR%%/qml/qmlpuppet/commands/commands.pri %%DATADIR%%/qml/qmlpuppet/commands/completecomponentcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/completecomponentcommand.h %%DATADIR%%/qml/qmlpuppet/commands/componentcompletedcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/componentcompletedcommand.h %%DATADIR%%/qml/qmlpuppet/commands/createinstancescommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/createinstancescommand.h %%DATADIR%%/qml/qmlpuppet/commands/createscenecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/createscenecommand.h %%DATADIR%%/qml/qmlpuppet/commands/debugoutputcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/debugoutputcommand.h %%DATADIR%%/qml/qmlpuppet/commands/endpuppetcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/endpuppetcommand.h %%DATADIR%%/qml/qmlpuppet/commands/informationchangedcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/informationchangedcommand.h %%DATADIR%%/qml/qmlpuppet/commands/inputeventcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/inputeventcommand.h +%%DATADIR%%/qml/qmlpuppet/commands/nanotracecommand.cpp +%%DATADIR%%/qml/qmlpuppet/commands/nanotracecommand.h %%DATADIR%%/qml/qmlpuppet/commands/pixmapchangedcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/pixmapchangedcommand.h %%DATADIR%%/qml/qmlpuppet/commands/puppetalivecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/puppetalivecommand.h %%DATADIR%%/qml/qmlpuppet/commands/puppettocreatorcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/puppettocreatorcommand.h %%DATADIR%%/qml/qmlpuppet/commands/removeinstancescommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/removeinstancescommand.h %%DATADIR%%/qml/qmlpuppet/commands/removepropertiescommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/removepropertiescommand.h %%DATADIR%%/qml/qmlpuppet/commands/removesharedmemorycommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/removesharedmemorycommand.h %%DATADIR%%/qml/qmlpuppet/commands/reparentinstancescommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/reparentinstancescommand.h %%DATADIR%%/qml/qmlpuppet/commands/requestmodelnodepreviewimagecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/requestmodelnodepreviewimagecommand.h %%DATADIR%%/qml/qmlpuppet/commands/scenecreatedcommand.h %%DATADIR%%/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h %%DATADIR%%/qml/qmlpuppet/commands/synchronizecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/synchronizecommand.h %%DATADIR%%/qml/qmlpuppet/commands/tokencommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/tokencommand.h %%DATADIR%%/qml/qmlpuppet/commands/update3dviewstatecommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/update3dviewstatecommand.h %%DATADIR%%/qml/qmlpuppet/commands/valueschangedcommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/valueschangedcommand.h %%DATADIR%%/qml/qmlpuppet/commands/view3dactioncommand.cpp %%DATADIR%%/qml/qmlpuppet/commands/view3dactioncommand.h %%DATADIR%%/qml/qmlpuppet/container/addimportcontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/addimportcontainer.h %%DATADIR%%/qml/qmlpuppet/container/container.pri %%DATADIR%%/qml/qmlpuppet/container/idcontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/idcontainer.h %%DATADIR%%/qml/qmlpuppet/container/imagecontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/imagecontainer.h %%DATADIR%%/qml/qmlpuppet/container/informationcontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/informationcontainer.h %%DATADIR%%/qml/qmlpuppet/container/instancecontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/instancecontainer.h %%DATADIR%%/qml/qmlpuppet/container/mockuptypecontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/mockuptypecontainer.h %%DATADIR%%/qml/qmlpuppet/container/propertyabstractcontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/propertyabstractcontainer.h %%DATADIR%%/qml/qmlpuppet/container/propertybindingcontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/propertybindingcontainer.h %%DATADIR%%/qml/qmlpuppet/container/propertyvaluecontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/propertyvaluecontainer.h %%DATADIR%%/qml/qmlpuppet/container/reparentcontainer.cpp %%DATADIR%%/qml/qmlpuppet/container/reparentcontainer.h %%DATADIR%%/qml/qmlpuppet/container/sharedmemory.h %%DATADIR%%/qml/qmlpuppet/container/sharedmemory_qt.cpp %%DATADIR%%/qml/qmlpuppet/container/sharedmemory_unix.cpp %%DATADIR%%/qml/qmlpuppet/editor3d_qt5.qrc %%DATADIR%%/qml/qmlpuppet/editor3d_qt6.qrc %%DATADIR%%/qml/qmlpuppet/html/welcome.html %%DATADIR%%/qml/qmlpuppet/images/non-visual-component.png %%DATADIR%%/qml/qmlpuppet/images/non-visual-component@2x.png %%DATADIR%%/qml/qmlpuppet/images/template_image.png %%DATADIR%%/qml/qmlpuppet/images/webkit.png %%DATADIR%%/qml/qmlpuppet/instances/instances.pri %%DATADIR%%/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp %%DATADIR%%/qml/qmlpuppet/instances/nodeinstanceclientproxy.h %%DATADIR%%/qml/qmlpuppet/interfaces/commondefines.h %%DATADIR%%/qml/qmlpuppet/interfaces/interfaces.pri %%DATADIR%%/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h %%DATADIR%%/qml/qmlpuppet/interfaces/nodeinstanceglobal.h %%DATADIR%%/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp %%DATADIR%%/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h %%DATADIR%%/qml/qmlpuppet/mockfiles/Dialog.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/GenericBackend.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/SwipeView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/ToggleButton.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/ToolBarButton.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/Window.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/images/area.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/area@2x.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/directional.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/directional@2x.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/editor_camera.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/editor_camera@2x.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/editor_particlesystem.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/editor_particlesystem@2x.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/point.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/point@2x.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/spot.png %%DATADIR%%/qml/qmlpuppet/mockfiles/images/spot@2x.png %%DATADIR%%/qml/qmlpuppet/mockfiles/meshes/arrow.mesh %%DATADIR%%/qml/qmlpuppet/mockfiles/meshes/axishelper.mesh %%DATADIR%%/qml/qmlpuppet/mockfiles/meshes/ring.mesh %%DATADIR%%/qml/qmlpuppet/mockfiles/meshes/ringselect.mesh %%DATADIR%%/qml/qmlpuppet/mockfiles/meshes/scalerod.mesh %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/AdjustableArrow.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/AreaLightHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/Arrow.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/AutoScaleHelper.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/AxisHelper.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/AxisHelperArm.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/CameraFrustum.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/CameraGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/DirectionalDraggable.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/EditCameraController.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/EditView3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/FadeHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/HelperGrid.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/IconGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/IconRenderer3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/LightGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/LightIconGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/LightModel.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/Line3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/MaterialNodeView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/ModelNode2DImageView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/ModelNode3DImageView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/ModelNodeView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/MoveGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/NodeNodeView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/Overlay2D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/PlanarDraggable.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/PlanarMoveHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/PlanarScaleHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/RotateGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/RotateRing.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/ScaleGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/ScaleRod.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/SceneView3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/SelectionBox.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt5/SpotLightHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/AdjustableArrow.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/AreaLightHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/Arrow.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/AutoScaleHelper.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/AxisHelper.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/AxisHelperArm.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/CameraFrustum.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/CameraGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/DirectionalDraggable.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/EditCameraController.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/EditView3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/FadeHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/HelperGrid.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/IconGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/IconRenderer3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/LightGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/LightIconGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/LightModel.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/Line3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/MaterialNodeView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ModelNode2DImageView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ModelNode3DImageView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ModelNodeView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/MoveGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/NodeNodeView.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/Overlay2D.qml +%%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ParticleEmitterGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ParticleSystemGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/PlanarDraggable.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/PlanarMoveHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/PlanarScaleHandle.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/RotateGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/RotateRing.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ScaleGizmo.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/ScaleRod.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/SceneView3D.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/SelectionBox.qml %%DATADIR%%/qml/qmlpuppet/mockfiles/qt6/SpotLightHandle.qml %%DATADIR%%/qml/qmlpuppet/qml2puppet/Info.plist %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/camerageometry.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/camerageometry.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/editor3d.pri %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/generalhelper.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/generalhelper.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/geometrybase.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/geometrybase.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/gridgeometry.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/gridgeometry.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/icongizmoimageprovider.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/icongizmoimageprovider.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/lightgeometry.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/lightgeometry.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/linegeometry.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/linegeometry.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/mousearea3d.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/mousearea3d.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/qt5compat/qquick3darealight.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/qt5compat/qquick3darealight_p.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/selectionboxgeometry.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/editor3d/selectionboxgeometry.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.pri %%DATADIR%%/qml/qmlpuppet/qml2puppet/import3d/import3d.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/import3d/import3d.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/import3d/import3d.pri %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/animationdriver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/animationdriver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/capturenodeinstanceserverdispatcher.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/capturenodeinstanceserverdispatcher.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/instances.pri %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserverdispatcher.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserverdispatcher.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt3dpresentationnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt3dpresentationnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5captureimagenodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5captureimagenodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5capturepreviewnodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5capturepreviewnodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/quick3dnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/quick3dnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/quick3dtexturenodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/quick3dtexturenodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/viewconfig.cpp %%DATADIR%%/qml/qmlpuppet/qml2puppet/instances/viewconfig.h %%DATADIR%%/qml/qmlpuppet/qml2puppet/qml2puppet.pri %%DATADIR%%/qml/qmlpuppet/qml2puppet/qml2puppet.pro %%DATADIR%%/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp %%DATADIR%%/qml/qmlpuppet/qmlprivategate/designercustomobjectdata.cpp %%DATADIR%%/qml/qmlpuppet/qmlprivategate/designercustomobjectdata.h %%DATADIR%%/qml/qmlpuppet/qmlprivategate/designersupportdelegate.h %%DATADIR%%/qml/qmlpuppet/qmlprivategate/metaobject.cpp %%DATADIR%%/qml/qmlpuppet/qmlprivategate/metaobject.h %%DATADIR%%/qml/qmlpuppet/qmlprivategate/qmlprivategate.cpp %%DATADIR%%/qml/qmlpuppet/qmlprivategate/qmlprivategate.h %%DATADIR%%/qml/qmlpuppet/qmlprivategate/qmlprivategate.pri %%DATADIR%%/qml/qmlpuppet/qmlprivategate/qmlprivategate_56.cpp %%DATADIR%%/qml/qmlpuppet/qmlpuppet.qrc %%DATADIR%%/qml/qmlpuppet/qmlpuppet_utilities.pri %%DATADIR%%/qml/qmlpuppet/types/enumeration.h %%DATADIR%%/qml/qmlpuppet/types/types.pri %%DATADIR%%/qmldesigner/formatconfiguration.json -%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AddImport.qml +%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AddModuleView.qml %%DATADIR%%/qmldesigner/itemLibraryQmlSources/Assets.qml %%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml %%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemsView.qml -%%DATADIR%%/qmldesigner/itemLibraryQmlSources/LibraryHeader.qml +%%DATADIR%%/qmldesigner/itemLibraryQmlSources/PlusButton.qml +%%DATADIR%%/qmldesigner/itemLibraryQmlSources/SearchBox.qml +%%DATADIR%%/qmldesigner/misc/BusyIndicator.qml %%DATADIR%%/qmldesigner/newprojectdialog/NewProjectDialog.qml %%DATADIR%%/qmldesigner/newprojectdialog/image/logo.png %%DATADIR%%/qmldesigner/newprojectdialog/image/logo@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-basic.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-basic@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-default.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-default@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-error.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-error@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-fusion.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-fusion@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-imagine.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-imagine@2x.png -%%DATADIR%%/qmldesigner/newprojectdialog/image/style-macOs@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-macos.png +%%DATADIR%%/qmldesigner/newprojectdialog/image/style-macos@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_dark.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_dark@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_light.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_light@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_dark.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_dark@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_light.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_light@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_system.png %%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_system@2x.png %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/Details.qml %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/DialogValues.qml %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/NewProjectView.qml +%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialog.qml +%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialogButton.qml +%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialogButtonBox.qml %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/Styles.qml %%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/qmldir %%DATADIR%%/qmldesigner/newprojectdialog/imports/ProjectType/DefaultProject.qml %%DATADIR%%/qmldesigner/newprojectdialog/imports/ProjectType/qmldir %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/ColorEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/FontEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/ImageEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RectangleEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TemplateTypes.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TextEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template %%DATADIR%%/qmldesigner/propertyEditorQmlSources/Qt5HelperWindow.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/Qt6HelperWindow.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/AudioOutputSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/AudioSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/VideoOutputSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/VideoSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/VideoSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQml/ConnectionsSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQml/QtObjectPane.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AlignDistributeSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnimatedImageSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationTargetSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/BorderImageSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ColorAnimationSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckBoxSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckDelegateSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ControlSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialogSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DrawerSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/InsetSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/LabelSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioButtonSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeDelegateSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchDelegateSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabButtonSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextAreaSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolButtonSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutProperties.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/ColumnLayoutSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/GridLayoutSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/RowLayoutSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/StackLayoutSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LoaderSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ParallelAnimationSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PauseAnimationSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PropertyActionSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PropertyAnimationSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/QtObjectPane.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/RepeaterSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ScriptActionSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/SequentialAnimationSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/project.qmlproject %%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Object3DPane.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/RegExpValidator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AbstractButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ActionIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentHorizontalButtons.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentVerticalButtons.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AnchorButtons.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/BoolButtonRowButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Button.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow2.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRowButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CharacterSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CheckBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorEditor.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorLine.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorLogic.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorPalette.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorPicker.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComboBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Constants.js %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ControlLabel.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Controller.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/DoubleSpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/EditableListView.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpandingSpacer.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpressionTextField.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionLogic.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableGeometrySection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontComboBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontExtrasSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontStyleButtons.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientLine.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetList.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetTabContent.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPropertySpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/HorizontalScrollBar.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/HueSlider.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconLabel.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImagePreviewTooltipArea.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImageSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ItemFilterComboBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Label.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LineEdit.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LinkIndicator2D.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ListViewComboBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LuminanceSlider.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MarginSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MultiIconLabel.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OpacitySlider.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginControl.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginSelector.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PaddingSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyEditorPane.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyLabel.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/RoundedPanel.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ScrollView.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SecondColumnLayout.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Section.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SectionLayout.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Spacer.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextExtrasSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ToolTipArea.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/UrlChooser.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/VerticalScrollBar.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/checkers.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/down-arrow.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/down-arrow@2x.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/expression.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/expression@2x.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon-gradient-list.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_conical_gradient.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_gradient.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_none.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_radial_gradient.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_solid.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/placeholder.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/placeholder@2x.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/submenu.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/submenu@2x.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/up-arrow.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/up-arrow@2x.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/qmldir %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/AbstractButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ActionIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Button.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ButtonGroup.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ButtonRow.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/CheckBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/CheckIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBoxInput.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ContextMenu.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/InfinityLoopIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ItemDelegate.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator2D.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3D.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3DComponent.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Menu.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItem.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItemWithIcon.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuSeparator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RadioButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSliderPopup.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxInput.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ScrollBar.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ScrollView.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SecondColumnLayout.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Section.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SectionLabel.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SectionLayout.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Slider.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SliderPopup.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBoxIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBoxInput.qml +%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Switch.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabBar.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextArea.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextField.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TranslationIndicator.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/VerticalScrollBar.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/qmldir %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Constants.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Values.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf %%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/qmldir %%DATADIR%%/qmldesigner/qt4mcu/metadata.qml %%DATADIR%%/qmldesigner/qt4mcu/qul-14.qml %%DATADIR%%/qmldesigner/qt4mcu/qul-17.qml %%DATADIR%%/qmldesigner/qt4mcu/qul-18.qml %%DATADIR%%/qmldesigner/qt4mcu/qul-19.qml +%%DATADIR%%/qmldesigner/qt4mcu/qul-20.qml %%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesDelegate.qml %%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesList.qml %%DATADIR%%/qmldesigner/statesEditorQmlSources/images/checkers.png -%%DATADIR%%/qmldesigner/workspacePresets/3D_Preset.wrk +%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button.png +%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/custom_checkbox.png +%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/custom_checkbox@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/customdial/custom_dial.png +%%DATADIR%%/qmldesigner/studio_templates/files/customdial/custom_dial@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/customdial/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/customdial/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/customslider/custom_slider.png +%%DATADIR%%/qmldesigner/studio_templates/files/customslider/custom_slider@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/customslider/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/customslider/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/custom_spinbox.png +%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/custom_spinbox@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/custom_switch.png +%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/custom_switch@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/flow_item.png +%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/flow_item@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/flowitem/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/flowview/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/flowview/flow_view.png +%%DATADIR%%/qmldesigner/studio_templates/files/flowview/flowview2.png +%%DATADIR%%/qmldesigner/studio_templates/files/flowview/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file.js.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file_javascript.png +%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file_javascript@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/javascript/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/data_listmodel.png +%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/data_listmodel@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/pane/custom_panes.png +%%DATADIR%%/qmldesigner/studio_templates/files/pane/custom_panes@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/pane/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/pane/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file_qml.png +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file_qml@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/DataModel.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/GridDelegate.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/GridView.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/ListDelegate.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/ListView.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/data_gridmodel.png +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/data_gridmodel@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file_ui.png +%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file_ui@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/custom_stacked_view.png +%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/custom_stacked_view@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/custom_swipe_view.png +%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/custom_swipe_view@2.png +%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/file.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/app_mcu.qmlproject +%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/Screen01.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/contentmodule.main.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/desktop_blank.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/desktop_blank@2.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/detailsPage.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/CMakeLists.txt +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Constants.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/DirectoryFontLoader.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Button.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/CheckBox.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/DefaultStyle.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Dial.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/ProgressBar.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/RadioButton.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Slider.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/SwipeView.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Switch.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button-disabled.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-checked-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-checked.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-disabled.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-partially-checked-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-partially-checked.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-background-disabled.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-background.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-progress.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/progressbar-background.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/progressbar-progress.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-checked-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-checked.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-disabled.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-disabled-vertical.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-disabled.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-vertical.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-disabled-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-disabled.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-pressed.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-progress-vertical.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-progress.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-bg.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-handle.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-i.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-o.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/qmldir +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Screen01.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank@2.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/detailsPage.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/main.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/mcuqtquickcontrols2.conf +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/qmldir +%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/application/Screen01.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/application/desktop_blank.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application/desktop_blank@2.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application/detailsPage.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/application/place_holder.png +%%DATADIR%%/qmldesigner/studio_templates/projects/application/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/common/App.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/CMakeLists.content.txt.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/CMakeLists.imports.txt.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/CMakeLists.main.txt.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/app.qmlproject.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/app_environment.h.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/contentmodule.main.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/fonts.txt +%%DATADIR%%/qmldesigner/studio_templates/projects/common/import_qml_plugins.h.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.cpp.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/common/qmlmodules.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/common/qtquickcontrols2.conf +%%DATADIR%%/qmldesigner/studio_templates/projects/common/qtquickcontrols2.conf.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/defaults/qmlapplication-project-page.json +%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/Screen01.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/desktop_launcher.png +%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/desktop_launcher@2.png +%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/detailsPage.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/fonts.txt +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/Screen01.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/detailsPage.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/mobile_scroll.png +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/mobile_scroll@2.png +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/App.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/CMakeLists.content.txt.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/Screen01.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/Screen02.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/detailsPage.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/mobile_stack.png +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/mobile_stack@2.png +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/App.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/CMakeLists.content.txt.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/Screen01.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/Screen02.ui.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/detailsPage.qml +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/mobile_swipe.png +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/mobile_swipe@2.png +%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/wizard.json +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/CMakeLists.importmodule.txt.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/Constants.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/DirectoryFontLoader.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/EventListModel.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/EventListSimulator.qml.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/designer/plugin.metainfo +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/importmodule.qmldir.tpl +%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/qmldir +%%DATADIR%%/qmldesigner/workspacePresets/Animation-2D.wrk +%%DATADIR%%/qmldesigner/workspacePresets/Animation-3D.wrk +%%DATADIR%%/qmldesigner/workspacePresets/Basic.wrk +%%DATADIR%%/qmldesigner/workspacePresets/Code.wrk +%%DATADIR%%/qmldesigner/workspacePresets/Essentials-3D.wrk %%DATADIR%%/qmldesigner/workspacePresets/Essentials.wrk +%%DATADIR%%/qmldesigner/workspacePresets/UX-Design.wrk +%%DATADIR%%/qmldesigner/workspacePresets/Views-All.wrk %%DATADIR%%/qmlicons/Qt/16x16/BorderImage.png %%DATADIR%%/qmlicons/Qt/16x16/BusyIndicator.png %%DATADIR%%/qmlicons/Qt/16x16/Button.png %%DATADIR%%/qmlicons/Qt/16x16/ButtonColumn.png %%DATADIR%%/qmlicons/Qt/16x16/ButtonRow.png %%DATADIR%%/qmlicons/Qt/16x16/CheckBox.png %%DATADIR%%/qmlicons/Qt/16x16/ChoiceList.png %%DATADIR%%/qmlicons/Qt/16x16/ColorAnimation.png %%DATADIR%%/qmlicons/Qt/16x16/Component.png %%DATADIR%%/qmlicons/Qt/16x16/CountBubble.png %%DATADIR%%/qmlicons/Qt/16x16/DatePickerDialog.png %%DATADIR%%/qmlicons/Qt/16x16/Flickable.png %%DATADIR%%/qmlicons/Qt/16x16/Flipable.png %%DATADIR%%/qmlicons/Qt/16x16/FocusScope.png %%DATADIR%%/qmlicons/Qt/16x16/GridView.png %%DATADIR%%/qmlicons/Qt/16x16/Image.png %%DATADIR%%/qmlicons/Qt/16x16/InfoBanner.png %%DATADIR%%/qmlicons/Qt/16x16/Item.png %%DATADIR%%/qmlicons/Qt/16x16/ListButton.png %%DATADIR%%/qmlicons/Qt/16x16/ListDelegate.png %%DATADIR%%/qmlicons/Qt/16x16/ListView.png %%DATADIR%%/qmlicons/Qt/16x16/MoreIndicator.png %%DATADIR%%/qmlicons/Qt/16x16/MouseArea.png %%DATADIR%%/qmlicons/Qt/16x16/PageIndicator.png %%DATADIR%%/qmlicons/Qt/16x16/ParallelAnimation.png %%DATADIR%%/qmlicons/Qt/16x16/PathView.png %%DATADIR%%/qmlicons/Qt/16x16/PauseAnimation.png %%DATADIR%%/qmlicons/Qt/16x16/ProgressBar.png %%DATADIR%%/qmlicons/Qt/16x16/PropertyChanges.png %%DATADIR%%/qmlicons/Qt/16x16/RadioButton.png %%DATADIR%%/qmlicons/Qt/16x16/RatingIndicator.png %%DATADIR%%/qmlicons/Qt/16x16/Rectangle.png %%DATADIR%%/qmlicons/Qt/16x16/SequentialAnimation.png %%DATADIR%%/qmlicons/Qt/16x16/Slider.png %%DATADIR%%/qmlicons/Qt/16x16/State.png %%DATADIR%%/qmlicons/Qt/16x16/Switch.png %%DATADIR%%/qmlicons/Qt/16x16/TabBar.png %%DATADIR%%/qmlicons/Qt/16x16/TabButton.png %%DATADIR%%/qmlicons/Qt/16x16/Text.png %%DATADIR%%/qmlicons/Qt/16x16/TextArea.png %%DATADIR%%/qmlicons/Qt/16x16/TextEdit.png %%DATADIR%%/qmlicons/Qt/16x16/TextField.png %%DATADIR%%/qmlicons/Qt/16x16/TextInput.png %%DATADIR%%/qmlicons/Qt/16x16/TimePickerDialog.png %%DATADIR%%/qmlicons/Qt/16x16/ToolBar.png %%DATADIR%%/qmlicons/Qt/16x16/Transition.png %%DATADIR%%/qmlicons/Qt/16x16/Tumbler.png %%DATADIR%%/qmlicons/Qt/16x16/TumblerButton.png %%DATADIR%%/qmlicons/Qt/16x16/TumblerColumn.png %%DATADIR%%/qmlicons/Qt/16x16/TumblerDialog.png %%DATADIR%%/qmlicons/Qt/16x16/Window.png %%DATADIR%%/qmlicons/Qt/16x16/item-icon16.png %%DATADIR%%/qmlicons/QtWebkit/16x16/WebView.png %%DATADIR%%/schemes/MS_Visual_C++.kms %%DATADIR%%/schemes/Xcode.kms %%DATADIR%%/snippets/cpp.xml %%DATADIR%%/snippets/qml.xml %%DATADIR%%/snippets/text.xml %%DATADIR%%/styles/creator-dark.xml %%DATADIR%%/styles/dark.xml %%DATADIR%%/styles/default.xml %%DATADIR%%/styles/default_classic.xml %%DATADIR%%/styles/grayscale.xml %%DATADIR%%/styles/inkpot.xml %%DATADIR%%/styles/intellij.xml %%DATADIR%%/styles/modnokai_night_shift_v2.xml %%DATADIR%%/styles/solarized-dark.xml %%DATADIR%%/styles/solarized-light.xml %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_collection.cpp %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_collection.h %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_plugin.pro %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_resources.qrc %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_single.cpp %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_single.h %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget.cpp %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget.h %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget_include.pri %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget_lib.pro %%DATADIR%%/templates/wizards/README.txt %%DATADIR%%/templates/wizards/autotest/autotest.png %%DATADIR%%/templates/wizards/autotest/autotest@2x.png %%DATADIR%%/templates/wizards/autotest/files/catch2_tst.cpp %%DATADIR%%/templates/wizards/autotest/files/googlecommon.js %%DATADIR%%/templates/wizards/autotest/files/gtest_dependency.pri +%%DATADIR%%/templates/wizards/autotest/files/setup.cpp +%%DATADIR%%/templates/wizards/autotest/files/setup.h %%DATADIR%%/templates/wizards/autotest/files/tst.pro %%DATADIR%%/templates/wizards/autotest/files/tst.qbs %%DATADIR%%/templates/wizards/autotest/files/tst.txt %%DATADIR%%/templates/wizards/autotest/files/tst_main.cpp %%DATADIR%%/templates/wizards/autotest/files/tst_qml.tmpl %%DATADIR%%/templates/wizards/autotest/files/tst_src.cpp %%DATADIR%%/templates/wizards/autotest/files/tst_src_gt.cpp %%DATADIR%%/templates/wizards/autotest/wizard.json %%DATADIR%%/templates/wizards/classes/cpp/file.cpp %%DATADIR%%/templates/wizards/classes/cpp/file.h %%DATADIR%%/templates/wizards/classes/cpp/wizard.json %%DATADIR%%/templates/wizards/classes/itemmodel/itemmodel.cpp %%DATADIR%%/templates/wizards/classes/itemmodel/itemmodel.h %%DATADIR%%/templates/wizards/classes/itemmodel/listmodel.cpp %%DATADIR%%/templates/wizards/classes/itemmodel/listmodel.h %%DATADIR%%/templates/wizards/classes/itemmodel/tablemodel.cpp %%DATADIR%%/templates/wizards/classes/itemmodel/tablemodel.h %%DATADIR%%/templates/wizards/classes/itemmodel/wizard.json %%DATADIR%%/templates/wizards/classes/python/file.py %%DATADIR%%/templates/wizards/classes/python/wizard.json -%%DATADIR%%/templates/wizards/classes/qtquickui/file.qml.tpl -%%DATADIR%%/templates/wizards/classes/qtquickui/fileForm.ui.qml.tpl -%%DATADIR%%/templates/wizards/classes/qtquickui/wizard.json %%DATADIR%%/templates/wizards/codesnippet/main.cpp %%DATADIR%%/templates/wizards/codesnippet/project.pro %%DATADIR%%/templates/wizards/codesnippet/wizard.xml %%DATADIR%%/templates/wizards/files/cppheader/file.h %%DATADIR%%/templates/wizards/files/cppheader/wizard.json %%DATADIR%%/templates/wizards/files/cppsource/file.cpp %%DATADIR%%/templates/wizards/files/cppsource/wizard.json %%DATADIR%%/templates/wizards/files/form/file.ui %%DATADIR%%/templates/wizards/files/form/wizard.json %%DATADIR%%/templates/wizards/files/glsl/gl/fragment/file.frag %%DATADIR%%/templates/wizards/files/glsl/gl/fragment/wizard.json %%DATADIR%%/templates/wizards/files/glsl/gl/vertex/file.vert %%DATADIR%%/templates/wizards/files/glsl/gl/vertex/wizard.json %%DATADIR%%/templates/wizards/files/glsl/gles/fragment/file.fsh %%DATADIR%%/templates/wizards/files/glsl/gles/fragment/wizard.json %%DATADIR%%/templates/wizards/files/glsl/gles/vertex/file.vsh %%DATADIR%%/templates/wizards/files/glsl/gles/vertex/wizard.json %%DATADIR%%/templates/wizards/files/java/source.java %%DATADIR%%/templates/wizards/files/java/wizard.json %%DATADIR%%/templates/wizards/files/js/file.js %%DATADIR%%/templates/wizards/files/js/wizard.json %%DATADIR%%/templates/wizards/files/modeling/model/file.qmodel %%DATADIR%%/templates/wizards/files/modeling/model/wizard.json %%DATADIR%%/templates/wizards/files/modeling/scratch/file.qmodel %%DATADIR%%/templates/wizards/files/modeling/scratch/wizard.json %%DATADIR%%/templates/wizards/files/nim/file.nim %%DATADIR%%/templates/wizards/files/nim/wizard.json %%DATADIR%%/templates/wizards/files/nimscript/file.nims %%DATADIR%%/templates/wizards/files/nimscript/wizard.json %%DATADIR%%/templates/wizards/files/python/file.py %%DATADIR%%/templates/wizards/files/python/icon.png %%DATADIR%%/templates/wizards/files/python/icon@2x.png %%DATADIR%%/templates/wizards/files/python/wizard.json %%DATADIR%%/templates/wizards/files/qrc/file.qrc %%DATADIR%%/templates/wizards/files/qrc/wizard.json %%DATADIR%%/templates/wizards/files/qtquick2/file.qml.tpl %%DATADIR%%/templates/wizards/files/qtquick2/wizard.json %%DATADIR%%/templates/wizards/files/scratch/file.txt %%DATADIR%%/templates/wizards/files/scratch/wizard.json %%DATADIR%%/templates/wizards/files/scxml/file.scxml %%DATADIR%%/templates/wizards/files/scxml/wizard.json %%DATADIR%%/templates/wizards/files/text/file.txt %%DATADIR%%/templates/wizards/files/text/wizard.json %%DATADIR%%/templates/wizards/global/consoleapplication.png %%DATADIR%%/templates/wizards/global/consoleapplication@2x.png %%DATADIR%%/templates/wizards/global/guiapplication.png %%DATADIR%%/templates/wizards/global/guiapplication@2x.png %%DATADIR%%/templates/wizards/global/lib.png %%DATADIR%%/templates/wizards/global/lib@2x.png %%DATADIR%%/templates/wizards/projects/consoleapp/CMakeLists.txt %%DATADIR%%/templates/wizards/projects/consoleapp/file.pro %%DATADIR%%/templates/wizards/projects/consoleapp/file.qbs %%DATADIR%%/templates/wizards/projects/consoleapp/main.cpp %%DATADIR%%/templates/wizards/projects/consoleapp/meson.build %%DATADIR%%/templates/wizards/projects/consoleapp/wizard.json %%DATADIR%%/templates/wizards/projects/cpplibrary/CMakeLists.txt %%DATADIR%%/templates/wizards/projects/cpplibrary/lib.cpp %%DATADIR%%/templates/wizards/projects/cpplibrary/lib.h %%DATADIR%%/templates/wizards/projects/cpplibrary/lib_global.h %%DATADIR%%/templates/wizards/projects/cpplibrary/meson.build %%DATADIR%%/templates/wizards/projects/cpplibrary/project.json %%DATADIR%%/templates/wizards/projects/cpplibrary/project.pro %%DATADIR%%/templates/wizards/projects/cpplibrary/project.qbs %%DATADIR%%/templates/wizards/projects/cpplibrary/wizard.json %%DATADIR%%/templates/wizards/projects/git.ignore %%DATADIR%%/templates/wizards/projects/nim/file.nimproject %%DATADIR%%/templates/wizards/projects/nim/icon.png %%DATADIR%%/templates/wizards/projects/nim/icon@2x.png %%DATADIR%%/templates/wizards/projects/nim/main.nim %%DATADIR%%/templates/wizards/projects/nim/wizard.json %%DATADIR%%/templates/wizards/projects/nimble/binary/binary.nimble %%DATADIR%%/templates/wizards/projects/nimble/binary/src/binary.nim %%DATADIR%%/templates/wizards/projects/nimble/hybrid/hybrid.nimble %%DATADIR%%/templates/wizards/projects/nimble/hybrid/src/hybrid.nim %%DATADIR%%/templates/wizards/projects/nimble/hybrid/src/hybridpkg/submodule.nim %%DATADIR%%/templates/wizards/projects/nimble/hybrid/tests/config.nims %%DATADIR%%/templates/wizards/projects/nimble/hybrid/tests/test1.nim %%DATADIR%%/templates/wizards/projects/nimble/library/library.nimble %%DATADIR%%/templates/wizards/projects/nimble/library/src/library.nim %%DATADIR%%/templates/wizards/projects/nimble/library/src/library/submodule.nim %%DATADIR%%/templates/wizards/projects/nimble/library/tests/config.nims %%DATADIR%%/templates/wizards/projects/nimble/library/tests/test1.nim %%DATADIR%%/templates/wizards/projects/nimble/wizard.json %%DATADIR%%/templates/wizards/projects/plainc/CMakeLists.txt %%DATADIR%%/templates/wizards/projects/plainc/file.pro %%DATADIR%%/templates/wizards/projects/plainc/file.qbs %%DATADIR%%/templates/wizards/projects/plainc/main.c %%DATADIR%%/templates/wizards/projects/plainc/meson.build %%DATADIR%%/templates/wizards/projects/plainc/wizard.json %%DATADIR%%/templates/wizards/projects/plaincpp/CMakeLists.txt %%DATADIR%%/templates/wizards/projects/plaincpp/file.pro %%DATADIR%%/templates/wizards/projects/plaincpp/file.qbs %%DATADIR%%/templates/wizards/projects/plaincpp/main.cpp %%DATADIR%%/templates/wizards/projects/plaincpp/meson.build %%DATADIR%%/templates/wizards/projects/plaincpp/wizard.json %%DATADIR%%/templates/wizards/projects/qmake/empty/file.pro %%DATADIR%%/templates/wizards/projects/qmake/empty/wizard.json %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/empty/icon.png %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/empty/icon@2x.png %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/empty/wizard.json %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/icons/icon.png %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/icons/icon@2x.png %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main.pyproject %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_empty.py %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_mainwindow.py %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_qtquick.py %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_widget.py %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_widget.ui %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/mainwindow/wizard.json %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/qtquickapplication/main.pyproject %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/qtquickapplication/main.qml.tpl %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/qtquickapplication/wizard.json %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/widget/main.pyproject %%DATADIR%%/templates/wizards/projects/qtforpythonapplication/widget/wizard.json %%DATADIR%%/templates/wizards/projects/qtquick2-extension/lib.png %%DATADIR%%/templates/wizards/projects/qtquick2-extension/lib@2x.png %%DATADIR%%/templates/wizards/projects/qtquick2-extension/object.cpp %%DATADIR%%/templates/wizards/projects/qtquick2-extension/object.h %%DATADIR%%/templates/wizards/projects/qtquick2-extension/plugin.cpp %%DATADIR%%/templates/wizards/projects/qtquick2-extension/plugin.h %%DATADIR%%/templates/wizards/projects/qtquick2-extension/project.pro %%DATADIR%%/templates/wizards/projects/qtquick2-extension/qmldir %%DATADIR%%/templates/wizards/projects/qtquick2-extension/wizard.json %%DATADIR%%/templates/wizards/projects/qtquickapplication/CMakeLists.6.x.txt %%DATADIR%%/templates/wizards/projects/qtquickapplication/CMakeLists.txt %%DATADIR%%/templates/wizards/projects/qtquickapplication/app.pro %%DATADIR%%/templates/wizards/projects/qtquickapplication/app.qbs %%DATADIR%%/templates/wizards/projects/qtquickapplication/empty/icon.png %%DATADIR%%/templates/wizards/projects/qtquickapplication/empty/icon@2x.png %%DATADIR%%/templates/wizards/projects/qtquickapplication/empty/main.qml.tpl %%DATADIR%%/templates/wizards/projects/qtquickapplication/empty/qml.qrc %%DATADIR%%/templates/wizards/projects/qtquickapplication/empty/wizard.json %%DATADIR%%/templates/wizards/projects/qtquickapplication/main.cpp %%DATADIR%%/templates/wizards/projects/qtquickapplication/qtquickcontrols2.conf %%DATADIR%%/templates/wizards/projects/qtquickuiprototype/app.qmlproject %%DATADIR%%/templates/wizards/projects/qtquickuiprototype/qtquickuiprototype.png %%DATADIR%%/templates/wizards/projects/qtquickuiprototype/qtquickuiprototype@2x.png %%DATADIR%%/templates/wizards/projects/qtquickuiprototype/wizard.json %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/CMakeLists.txt %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/main.cpp %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/meson.build %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/project.pro %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/project.qbs %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/widget.cpp %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/widget.h %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/widget.ui %%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/wizard.json %%DATADIR%%/templates/wizards/projects/translation.ts %%DATADIR%%/templates/wizards/projects/vcs/bazaar/icon.png %%DATADIR%%/templates/wizards/projects/vcs/bazaar/icon@2x.png %%DATADIR%%/templates/wizards/projects/vcs/bazaar/wizard.json %%DATADIR%%/templates/wizards/projects/vcs/cvs/icon.png %%DATADIR%%/templates/wizards/projects/vcs/cvs/icon@2x.png %%DATADIR%%/templates/wizards/projects/vcs/cvs/wizard.json %%DATADIR%%/templates/wizards/projects/vcs/git/icon.png %%DATADIR%%/templates/wizards/projects/vcs/git/icon@2x.png %%DATADIR%%/templates/wizards/projects/vcs/git/wizard.json %%DATADIR%%/templates/wizards/projects/vcs/mercurial/icon.png %%DATADIR%%/templates/wizards/projects/vcs/mercurial/icon@2x.png %%DATADIR%%/templates/wizards/projects/vcs/mercurial/wizard.json %%DATADIR%%/templates/wizards/projects/vcs/subversion/icon.png %%DATADIR%%/templates/wizards/projects/vcs/subversion/icon@2x.png %%DATADIR%%/templates/wizards/projects/vcs/subversion/wizard.json %%DATADIR%%/templates/wizards/qtcreatorplugin/CMakeLists.txt %%DATADIR%%/templates/wizards/qtcreatorplugin/MyPlugin.json.in %%DATADIR%%/templates/wizards/qtcreatorplugin/README.md %%DATADIR%%/templates/wizards/qtcreatorplugin/github_workflows_README.md %%DATADIR%%/templates/wizards/qtcreatorplugin/github_workflows_build_cmake.yml %%DATADIR%%/templates/wizards/qtcreatorplugin/myplugin.cpp %%DATADIR%%/templates/wizards/qtcreatorplugin/myplugin.h %%DATADIR%%/templates/wizards/qtcreatorplugin/myplugin_global.h %%DATADIR%%/templates/wizards/qtcreatorplugin/mypluginconstants.h %%DATADIR%%/templates/wizards/qtcreatorplugin/qtcreatorplugin.png %%DATADIR%%/templates/wizards/qtcreatorplugin/qtcreatorplugin@2x.png %%DATADIR%%/templates/wizards/qtcreatorplugin/wizard.json %%DATADIR%%/themes/dark.creatortheme %%DATADIR%%/themes/default.creatortheme %%DATADIR%%/themes/design-light.creatortheme %%DATADIR%%/themes/design.creatortheme %%DATADIR%%/themes/flat-dark.creatortheme %%DATADIR%%/themes/flat-light.creatortheme %%DATADIR%%/themes/flat.creatortheme %%DATADIR%%/translations/qtcreator_cs.qm %%DATADIR%%/translations/qtcreator_da.qm %%DATADIR%%/translations/qtcreator_de.qm %%DATADIR%%/translations/qtcreator_fr.qm %%DATADIR%%/translations/qtcreator_hr.qm %%DATADIR%%/translations/qtcreator_ja.qm %%DATADIR%%/translations/qtcreator_pl.qm %%DATADIR%%/translations/qtcreator_ru.qm %%DATADIR%%/translations/qtcreator_sl.qm %%DATADIR%%/translations/qtcreator_uk.qm %%DATADIR%%/translations/qtcreator_zh_CN.qm %%DATADIR%%/translations/qtcreator_zh_TW.qm