Update qt-creator to 5.0.3
This commit is contained in:
parent
8d7426ea19
commit
a4e873309d
@ -1,30 +1,29 @@
|
||||
# $OpenBSD: Makefile,v 1.79 2021/11/13 15:13:14 rsadowski Exp $
|
||||
# $OpenBSD: Makefile,v 1.80 2021/12/18 08:52:39 rsadowski Exp $
|
||||
|
||||
COMMENT = cross-platform IDE for use with Qt
|
||||
|
||||
V = 4.15.2
|
||||
V = 5.0.3
|
||||
DISTNAME = qt-creator-opensource-src-${V}
|
||||
PKGNAME = qt-creator-${V}
|
||||
REVISION = 0
|
||||
|
||||
SHARED_LIBS += Aggregation 0.0 # 0.0
|
||||
SHARED_LIBS += CPlusPlus 4.0 # 0.0
|
||||
SHARED_LIBS += ExtensionSystem 5.0 # 0.0
|
||||
SHARED_LIBS += GLSL 0.0 # 0.0
|
||||
SHARED_LIBS += LanguageUtils 0.2 # 0.0
|
||||
SHARED_LIBS += QmlDebug 4.0 # 0.0
|
||||
SHARED_LIBS += QmlEditorWidgets 0.0 # 0.0
|
||||
SHARED_LIBS += QmlJS 7.0 # 0.0
|
||||
SHARED_LIBS += QtcSsh 1.0 # 0.0
|
||||
SHARED_LIBS += Utils 7.0 # 0.0
|
||||
SHARED_LIBS += Sqlite 6.0 # 1.0
|
||||
SHARED_LIBS += Modeling 5.0 # 1.0
|
||||
SHARED_LIBS += ClangSupport 1.0 # 4.5
|
||||
SHARED_LIBS += Tracing 1.0 # 4.7
|
||||
SHARED_LIBS += LanguageServerProtocol 2.0 # 4.8
|
||||
SHARED_LIBS += AdvancedDockingSystem 0.0 # 4.12
|
||||
SHARED_LIBS += qlitehtml 0.0 # 4.15
|
||||
SHARED_LIBS += ProParser 0.0 # 4.15
|
||||
SHARED_LIBS += Aggregation 1.0 # 0.0
|
||||
SHARED_LIBS += CPlusPlus 5.0 # 0.0
|
||||
SHARED_LIBS += ExtensionSystem 6.0 # 0.0
|
||||
SHARED_LIBS += GLSL 1.0 # 0.0
|
||||
SHARED_LIBS += LanguageUtils 1.0 # 0.0
|
||||
SHARED_LIBS += QmlDebug 5.0 # 0.0
|
||||
SHARED_LIBS += QmlEditorWidgets 1.0 # 0.0
|
||||
SHARED_LIBS += QmlJS 8.0 # 0.0
|
||||
SHARED_LIBS += QtcSsh 2.0 # 0.0
|
||||
SHARED_LIBS += Utils 8.0 # 0.0
|
||||
SHARED_LIBS += Sqlite 7.0 # 1.0
|
||||
SHARED_LIBS += Modeling 6.0 # 1.0
|
||||
SHARED_LIBS += ClangSupport 2.0 # 4.5
|
||||
SHARED_LIBS += Tracing 2.0 # 4.7
|
||||
SHARED_LIBS += LanguageServerProtocol 3.0 # 4.8
|
||||
SHARED_LIBS += AdvancedDockingSystem 1.0 # 4.12
|
||||
SHARED_LIBS += qlitehtml 1.0 # 4.15
|
||||
SHARED_LIBS += ProParser 1.0 # 4.15
|
||||
|
||||
CATEGORIES = devel editors
|
||||
|
||||
@ -57,6 +56,7 @@ BUILD_DEPENDS = devel/clang-tools-extra \
|
||||
x11/qt5/qtquickcontrols
|
||||
|
||||
RUN_DEPENDS = devel/clang-tools-extra \
|
||||
devel/desktop-file-utils \
|
||||
devel/gdb \
|
||||
devel/gmake \
|
||||
devel/qbs \
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (qt-creator-opensource-src-4.15.2.tar.gz) = n0tWNwMrHc/US0erEN94VcmnGQfdR+SXUS4N0OFYzis=
|
||||
SIZE (qt-creator-opensource-src-4.15.2.tar.gz) = 56809157
|
||||
SHA256 (qt-creator-opensource-src-5.0.3.tar.gz) = eX/iUYsLnRh7NCFafQjSkRuwovsHtVbG43YrM00QfMA=
|
||||
SIZE (qt-creator-opensource-src-5.0.3.tar.gz) = 57751933
|
||||
|
@ -1,16 +0,0 @@
|
||||
$OpenBSD: patch-src_libs_utils_buildablehelperlibrary_cpp,v 1.4 2020/03/29 10:50:02 rsadowski Exp $
|
||||
|
||||
Prefer qmake-qt5 to qmake4 by removing the QDir::Reversed flag.
|
||||
|
||||
Index: src/libs/utils/buildablehelperlibrary.cpp
|
||||
--- src/libs/utils/buildablehelperlibrary.cpp.orig
|
||||
+++ src/libs/utils/buildablehelperlibrary.cpp
|
||||
@@ -89,7 +89,7 @@ static FilePath findQmakeInDir(const FilePath &path)
|
||||
// Prefer qmake-qt5 to qmake-qt4 by sorting the filenames in reverse order.
|
||||
const QFileInfoList candidates = dir.entryInfoList(
|
||||
BuildableHelperLibrary::possibleQMakeCommands(),
|
||||
- QDir::Files, QDir::Name | QDir::Reversed);
|
||||
+ QDir::Files, QDir::Name);
|
||||
for (const QFileInfo &fi : candidates) {
|
||||
if (fi.fileName() == qmake)
|
||||
continue;
|
@ -1,9 +1,9 @@
|
||||
$OpenBSD: patch-src_plugins_qmldesigner_CMakeLists_txt,v 1.1 2021/11/09 07:42:28 rsadowski Exp $
|
||||
$OpenBSD: patch-src_plugins_qmldesigner_CMakeLists_txt,v 1.2 2021/12/18 08:52:39 rsadowski Exp $
|
||||
|
||||
Index: src/plugins/qmldesigner/CMakeLists.txt
|
||||
--- src/plugins/qmldesigner/CMakeLists.txt.orig
|
||||
+++ src/plugins/qmldesigner/CMakeLists.txt
|
||||
@@ -124,7 +124,7 @@ if (UNIX)
|
||||
@@ -125,7 +125,7 @@ if (UNIX)
|
||||
SOURCES_PREFIX ../../../share/qtcreator/qml/qmlpuppet/container
|
||||
SOURCES sharedmemory_unix.cpp
|
||||
)
|
||||
|
@ -1,9 +1,9 @@
|
||||
$OpenBSD: patch-src_tools_qml2puppet_CMakeLists_txt,v 1.1 2021/11/09 07:42:28 rsadowski Exp $
|
||||
$OpenBSD: patch-src_tools_qml2puppet_CMakeLists_txt,v 1.2 2021/12/18 08:52:39 rsadowski Exp $
|
||||
|
||||
Index: src/tools/qml2puppet/CMakeLists.txt
|
||||
--- src/tools/qml2puppet/CMakeLists.txt.orig
|
||||
+++ src/tools/qml2puppet/CMakeLists.txt
|
||||
@@ -108,7 +108,7 @@ add_qtc_executable(qml2puppet
|
||||
@@ -122,7 +122,7 @@ extend_qtc_executable(qml2puppet
|
||||
)
|
||||
|
||||
extend_qtc_executable(qml2puppet
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.22 2021/11/09 07:42:28 rsadowski Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.23 2021/12/18 08:52:40 rsadowski Exp $
|
||||
@bin bin/qtcreator
|
||||
bin/qtcreator.sh
|
||||
@lib lib/libAdvancedDockingSystem.so.${LIBAdvancedDockingSystem_VERSION}
|
||||
@ -66,6 +66,7 @@ lib/qtcreator/plugins/
|
||||
@so lib/qtcreator/plugins/libDebugger.so
|
||||
@so lib/qtcreator/plugins/libDesigner.so
|
||||
@so lib/qtcreator/plugins/libDiffEditor.so
|
||||
@so lib/qtcreator/plugins/libDocker.so
|
||||
@so lib/qtcreator/plugins/libEmacsKeys.so
|
||||
@so lib/qtcreator/plugins/libFakeVim.so
|
||||
@so lib/qtcreator/plugins/libGLSLEditor.so
|
||||
@ -162,6 +163,21 @@ share/qtcreator/debugger/
|
||||
share/qtcreator/debugger/.pylintrc
|
||||
share/qtcreator/debugger/LICENSE.GPL3-EXCEPT
|
||||
share/qtcreator/debugger/README.txt
|
||||
${MODPY_COMMENT}share/qtcreator/debugger/${MODPY_PYCACHE}/
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}boosttypes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}cdbbridge.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}creatortypes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}dumper.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}gdbbridge.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}gdbtracepoint.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}lldbbridge.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}misctypes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}opencvtypes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}pdbbridge.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}personaltypes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}qttypes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}stdtypes.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
share/qtcreator/debugger/boosttypes.py
|
||||
share/qtcreator/debugger/cdbbridge.py
|
||||
share/qtcreator/debugger/creatortypes.py
|
||||
@ -180,8 +196,8 @@ share/qtcreator/debugger/utils.py
|
||||
share/qtcreator/externaltools/
|
||||
share/qtcreator/externaltools/lrelease.xml
|
||||
share/qtcreator/externaltools/lupdate.xml
|
||||
share/qtcreator/externaltools/qml.xml
|
||||
share/qtcreator/externaltools/qmlscene.xml
|
||||
share/qtcreator/externaltools/qmlviewer.xml
|
||||
share/qtcreator/externaltools/vi.xml
|
||||
share/qtcreator/fonts/
|
||||
share/qtcreator/fonts/SourceCodePro-Bold.ttf
|
||||
@ -334,6 +350,8 @@ share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h
|
||||
share/qtcreator/qml/qmlpuppet/container/sharedmemory.h
|
||||
share/qtcreator/qml/qmlpuppet/container/sharedmemory_qt.cpp
|
||||
share/qtcreator/qml/qmlpuppet/container/sharedmemory_unix.cpp
|
||||
share/qtcreator/qml/qmlpuppet/editor3d_qt5.qrc
|
||||
share/qtcreator/qml/qmlpuppet/editor3d_qt6.qrc
|
||||
share/qtcreator/qml/qmlpuppet/html/
|
||||
share/qtcreator/qml/qmlpuppet/html/welcome.html
|
||||
share/qtcreator/qml/qmlpuppet/images/
|
||||
@ -353,44 +371,8 @@ share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceglobal.h
|
||||
share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp
|
||||
share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/AdjustableArrow.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/AreaLightHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/Arrow.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/AutoScaleHelper.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/AxisHelper.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/AxisHelperArm.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/CameraFrustum.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/CameraGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/Dialog.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/DirectionalDraggable.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/EditCameraController.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/EditView3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/FadeHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/GenericBackend.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/HelperGrid.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/IconGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/IconRenderer3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/LightGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/LightIconGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/LightModel.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/Line3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/MaterialNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/ModelNode2DImageView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/ModelNode3DImageView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/ModelNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/MoveGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/NodeNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/Overlay2D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/PlanarDraggable.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/PlanarMoveHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/PlanarScaleHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/RotateGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/RotateRing.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/ScaleGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/ScaleRod.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/SceneView3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/SelectionBox.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/SpotLightHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/SwipeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/ToggleButton.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/ToolBarButton.qml
|
||||
@ -402,6 +384,8 @@ share/qtcreator/qml/qmlpuppet/mockfiles/images/directional.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/directional@2x.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_camera.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_camera@2x.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_particlesystem.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_particlesystem@2x.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/point.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/point@2x.png
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/images/spot.png
|
||||
@ -412,6 +396,81 @@ share/qtcreator/qml/qmlpuppet/mockfiles/meshes/axishelper.mesh
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/meshes/ring.mesh
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/meshes/ringselect.mesh
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/meshes/scalerod.mesh
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AdjustableArrow.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AreaLightHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/Arrow.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AutoScaleHelper.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AxisHelper.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AxisHelperArm.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/CameraFrustum.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/CameraGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/DirectionalDraggable.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/EditCameraController.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/EditView3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/FadeHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/HelperGrid.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/IconGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/IconRenderer3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/LightGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/LightIconGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/LightModel.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/Line3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/MaterialNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ModelNode2DImageView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ModelNode3DImageView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ModelNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/MoveGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/NodeNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/Overlay2D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/PlanarDraggable.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/PlanarMoveHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/PlanarScaleHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/RotateGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/RotateRing.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ScaleGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ScaleRod.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/SceneView3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/SelectionBox.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt5/SpotLightHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AdjustableArrow.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AreaLightHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/Arrow.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AutoScaleHelper.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AxisHelper.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AxisHelperArm.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/CameraFrustum.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/CameraGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/DirectionalDraggable.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/EditCameraController.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/EditView3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/FadeHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/HelperGrid.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/IconGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/IconRenderer3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/LightGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/LightIconGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/LightModel.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/Line3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/MaterialNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ModelNode2DImageView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ModelNode3DImageView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ModelNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/MoveGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/NodeNodeView.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/Overlay2D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ParticleSystemGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/PlanarDraggable.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/PlanarMoveHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/PlanarScaleHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/RotateGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/RotateRing.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ScaleGizmo.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ScaleRod.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/SceneView3D.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/SelectionBox.qml
|
||||
share/qtcreator/qml/qmlpuppet/mockfiles/qt6/SpotLightHandle.qml
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/
|
||||
@ -420,6 +479,8 @@ share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/camerageometry.h
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/editor3d.pri
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/generalhelper.cpp
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/generalhelper.h
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/geometrybase.cpp
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/geometrybase.h
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/gridgeometry.cpp
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/gridgeometry.h
|
||||
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/icongizmoimageprovider.cpp
|
||||
@ -522,8 +583,10 @@ share/qtcreator/qml/qmlpuppet/types/
|
||||
share/qtcreator/qml/qmlpuppet/types/enumeration.h
|
||||
share/qtcreator/qml/qmlpuppet/types/types.pri
|
||||
share/qtcreator/qmldesigner/
|
||||
share/qtcreator/qmldesigner/formatconfiguration.json
|
||||
share/qtcreator/qmldesigner/itemLibraryQmlSources/
|
||||
share/qtcreator/qmldesigner/itemLibraryQmlSources/AddImport.qml
|
||||
share/qtcreator/qmldesigner/itemLibraryQmlSources/Assets.qml
|
||||
share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml
|
||||
share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemsView.qml
|
||||
share/qtcreator/qmldesigner/itemLibraryQmlSources/LibraryHeader.qml
|
||||
@ -540,6 +603,8 @@ share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEdi
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TemplateTypes.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TextEditorTemplate.template
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/Qt5HelperWindow.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/Qt6HelperWindow.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQml/
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQml/ConnectionsSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQml/QtObjectPane.qml
|
||||
@ -555,10 +620,54 @@ share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColorAnimationSpeci
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckBoxSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckDelegateSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ControlSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialogSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DrawerSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/InsetSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/LabelSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioButtonSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeDelegateSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchDelegateSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabButtonSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextAreaSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolButtonSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
|
||||
@ -568,10 +677,13 @@ share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.q
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutPoperties.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutProperties.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/ColumnLayoutSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/GridLayoutSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/RowLayoutSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/StackLayoutSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml
|
||||
@ -602,57 +714,72 @@ share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AbstractButton.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ActionIndicator.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AligmentHorizontalButtons.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AligmentVerticalButtons.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentHorizontalButtons.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentVerticalButtons.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AnchorButtons.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/BoolButtonRowButton.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Button.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow2.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRowButton.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CharacterSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CheckBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorButton.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorCheckButton.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorEditor.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorLine.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorLogic.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorPalette.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorPicker.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComboBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentButton.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Constants.js
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ControlLabel.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Controller.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/DoubleSpinBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/EditableListView.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpandingSpacer.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpressionTextField.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionLogic.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableGeometrySection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontComboBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontExtrasSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontStyleButtons.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientDialogPopup.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientLine.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPopupIndicator.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetList.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetTabContent.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPropertySpinBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/HorizontalScrollBar.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/HueSlider.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconIndicator.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconLabel.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImagePreviewTooltipArea.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImageSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ItemFilterComboBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Label.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LineEdit.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LinkIndicator2D.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ListViewComboBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LuminanceSlider.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MarginSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MultiIconLabel.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OpacitySlider.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginControl.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginIndicator.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginSelector.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PaddingSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyEditorPane.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyLabel.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/RoundedPanel.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ScrollView.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SecondColumnLayout.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Section.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SectionLayout.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SimpleColorPalette.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Spacer.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SpinBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextExtrasSection.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ToolTipArea.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/UrlChooser.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/VerticalScrollBar.qml
|
||||
@ -686,8 +813,11 @@ share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Chec
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBox.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBoxInput.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ContextMenu.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ExpandingSpacer.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/InfinityLoopIndicator.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ItemDelegate.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator2D.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3D.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3DComponent.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Menu.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItem.qml
|
||||
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItemWithIcon.qml
|
||||
@ -724,6 +854,7 @@ share/qtcreator/qmldesigner/qt4mcu/metadata.qml
|
||||
share/qtcreator/qmldesigner/qt4mcu/qul-14.qml
|
||||
share/qtcreator/qmldesigner/qt4mcu/qul-17.qml
|
||||
share/qtcreator/qmldesigner/qt4mcu/qul-18.qml
|
||||
share/qtcreator/qmldesigner/qt4mcu/qul-19.qml
|
||||
share/qtcreator/qmldesigner/statesEditorQmlSources/
|
||||
share/qtcreator/qmldesigner/statesEditorQmlSources/StatesDelegate.qml
|
||||
share/qtcreator/qmldesigner/statesEditorQmlSources/StatesList.qml
|
||||
@ -836,7 +967,7 @@ share/qtcreator/templates/wizards/autotest/files/tst.txt
|
||||
share/qtcreator/templates/wizards/autotest/files/tst_main.cpp
|
||||
share/qtcreator/templates/wizards/autotest/files/tst_qml.tmpl
|
||||
share/qtcreator/templates/wizards/autotest/files/tst_src.cpp
|
||||
share/qtcreator/templates/wizards/autotest/files/tst_src.h
|
||||
share/qtcreator/templates/wizards/autotest/files/tst_src_gt.cpp
|
||||
share/qtcreator/templates/wizards/autotest/wizard.json
|
||||
share/qtcreator/templates/wizards/classes/
|
||||
share/qtcreator/templates/wizards/classes/cpp/
|
||||
|
Loading…
Reference in New Issue
Block a user