aboutsummaryrefslogtreecommitdiff
path: root/misc/qt5-examples
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2016-09-17 09:46:54 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2016-09-17 09:46:54 +0000
commit3346021972b58ae3975cf109e41beb4d895dd577 (patch)
treeff6682b425056cf66ba4ca415211efb1b19cc258 /misc/qt5-examples
parentd0e47e76ab45dc3eadf4c50d94669a800e87fe10 (diff)
downloadports-3346021972b58ae3975cf109e41beb4d895dd577.tar.gz
ports-3346021972b58ae3975cf109e41beb4d895dd577.zip
Update the Qt5 ports to 5.6.1.
This took longer than expected, but there are quite a few changes to the existing ports and a few new ones. General upstream changes: - Starting with Qt 5.6.2, Qt will fail at configuration time if LibreSSL is being used. According to the discussion here: https://codereview.qt-project.org/#/c/154800/ The Qt project is not opposed to LibreSSL, but does not want to mix support for it into the OpenSSL backend code, especially as they move towards supporting OpenSSL 1.1. People interested in LibreSSL support are welcome to submit a separate backend upstream, but are expected to maintain it. We (kde@) are not opposed to carrying some patches authored by others in the future, as long as they are not huge and destabilizing. - When Qt detects the compiler supports C++11, it will pass -std=gnu++11 by default (this is an upstream change). You can add "CONFIG -= c++11" to your .pro. Qt 5.7 will require C++11. - www/webkit-qt5: The QtWebKit module is deprecated upstream, and is shipped separately as a community release tarball. kde@ does not have an ETA for a qt5-webengine port, as it requires a huge effort (and number of patches) similar to maintaining www/chromium itself. - x11-toolkits/qt5-declarative has been deprecated upstream. The last release is 5.5.1. Relevant changes: - devel/qmake5: The freebsd-clang mkspec has become the default mkspec on FreeBSD, replacing the outdated freebsd-g++ one that was moved to unsupported/ (it still works though). - devel/qt5-qdoc: qdoc was moved to qttools upstream, but its data files are still in qtbase. The data files are now in the qt5-qdoc-data port. - misc/qt5-doc: Clean up and stop requiring a compiler and fumbling with mkspecs. Instead of running the `configure' script, which requires a compiler and adjustments to the mkspecs files and also ends up building a new qmake binary, we now leverage USES=qmake to generate all the Makefiles from the top-level qt.pro. Getting this to work requires some tricks, though, and qt.conf.in has a longer explanation of what's being done. Switch to USES=gmake to be able to drop MAKE_JOBS_UNSAFE=yes. New ports: - comms/qt5-serialbus - devel/qt5-qdoc-data - x11-toolkits/qt5-quickcontrols2 Big thanks to Adriaan de Groot (groot@kde.org), tcberner@ and Loise Nolden (nolden@kde.org) for the huge amount of work they put into this patch. Loise in particular also sent quite a few changes upstream that were essential for this update to work. PR: 211916
Notes
Notes: svn path=/head/; revision=422306
Diffstat (limited to 'misc/qt5-examples')
-rw-r--r--misc/qt5-examples/Makefile13
-rw-r--r--misc/qt5-examples/distinfo2
-rw-r--r--misc/qt5-examples/pkg-plist1516
3 files changed, 630 insertions, 901 deletions
diff --git a/misc/qt5-examples/Makefile b/misc/qt5-examples/Makefile
index d01bd7da4e0e..a0031e337acd 100644
--- a/misc/qt5-examples/Makefile
+++ b/misc/qt5-examples/Makefile
@@ -4,7 +4,7 @@
PORTNAME= examples
DISTVERSION= ${QT5_VERSION}
CATEGORIES= misc
-MASTER_SITES= QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/single/
+MASTER_SITES= QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/${QT5_SUBDIR}/single/
PKGNAMEPREFIX= qt5-
DISTNAME= qt-everywhere-opensource-src-${QT5_VERSION}
DIST_SUBDIR= KDE/Qt/${QT5_VERSION}
@@ -19,6 +19,7 @@ USES= tar:xz
USE_QT5= #
DESCR= ${.CURDIR:H:H}/devel/qt5/pkg-descr
+DISTINFO_FILE= ${.CURDIR:H:H}/misc/qt5-doc/distinfo
EXAMPLESDIR= ${PREFIX}/share/examples/qt5
# The destination location depends on the values given in
@@ -27,18 +28,18 @@ EXAMPLESDIR= ${PREFIX}/share/examples/qt5
# This way, the examples show up in qtcreator on the examples front page.
EXAMPLES= qt3d qtbase qtcanvas3d qtconnectivity qtdeclarative qtenginio \
- qtlocation qtmultimedia qtquickcontrols qtscript qtsensors \
- qtserialport qtsvg qttools qtwebchannel qtwebkit-examples \
- qtwebsockets qtxmlpatterns
+ qtlocation qtmultimedia qtquickcontrols qtquickcontrols2 \
+ qtscript qtsensors qtserialbus qtserialport qtsvg qttools \
+ qtwebchannel qtwebsockets qtxmlpatterns
.for example in ${EXAMPLES}
-EXTRACT_AFTER_ARGS+= ${DISTNAME}/${example}/examples
+EXTRACT_AFTER_ARGS+= ${DISTNAME:C,\-[0-9]$,,}/${example}/examples
.endfor
do-install:
.for example in ${EXAMPLES}
cd ${WRKSRC}/${example}/examples && \
- ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}
+ ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}
.endfor
.include <bsd.port.mk>
diff --git a/misc/qt5-examples/distinfo b/misc/qt5-examples/distinfo
deleted file mode 100644
index e77c1a3e0d35..000000000000
--- a/misc/qt5-examples/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (KDE/Qt/5.5.1/qt-everywhere-opensource-src-5.5.1.tar.xz) = 6f028e63d4992be2b4a5526f2ef3bfa2fe28c5c757554b11d9e8d86189652518
-SIZE (KDE/Qt/5.5.1/qt-everywhere-opensource-src-5.5.1.tar.xz) = 320459924
diff --git a/misc/qt5-examples/pkg-plist b/misc/qt5-examples/pkg-plist
index 34b205140508..5b16961a6ae0 100644
--- a/misc/qt5-examples/pkg-plist
+++ b/misc/qt5-examples/pkg-plist
@@ -180,156 +180,191 @@
%%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.pro
%%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qml
%%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/ThreeJSLoader.js
+%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/gl-matrix.js
+%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/three.js
+%%QT_EXAMPLEDIR%%/canvas3d/3rdparty/threex.planets.js
%%QT_EXAMPLEDIR%%/canvas3d/canvas3d.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/3rdparty/ThreeJSLoader.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/3rdparty/gl-matrix.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/3rdparty/three.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/3rdparty/threex.planets.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/canvas3d.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/doc/images/framebuffer-example.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/doc/src/framebuffer.qdoc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/framebuffer.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/framebuffer.qrc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/main.cpp
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/qml/framebuffer/framebuffer.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/qml/framebuffer/main.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/framebuffer/qml/framebuffer/qtlogo.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/3dmodels.txt
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/doc/images/interaction-example.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/doc/src/interaction.qdoc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/interaction.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/interaction.qrc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/main.cpp
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/qml/interaction/barrel.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/qml/interaction/barrel.json
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/qml/interaction/interaction.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/qml/interaction/main.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/interaction/readme.txt
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/3dmodels.txt
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/doc/images/jsonmodels-example.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/doc/src/jsonmodels.qdoc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/jsonmodels.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/main.cpp
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml.qrc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/bush.json
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/bush.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/gold.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/gold.json
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/jsonmodelsbasic.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/pallet.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/pallet.json
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/rock.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/rock.json
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/woodbox.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/qml/jsonmodels/woodbox.json
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/jsonmodels/readme.txt
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/doc/images/textureandlight-example.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/doc/src/textureandlight.qdoc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/main.cpp
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/qml/textureandlight/main.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/qml/textureandlight/qtlogo.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/qml/textureandlight/textureandlight.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/textureandlight.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/textureandlight/textureandlight.qrc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/controls/ControlEventSource.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ImageCube.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/InfoSheet.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/Navibutton.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/SwipeArea.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/doc/images/oneqt-example.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/doc/src/oneqt.qdoc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/imagecube.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/Info.plist
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon29x29.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon29x29~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon40x40~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon50x50@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon50x50~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon57x57.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon57x57@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon60x60@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon72x72@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon72x72~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon76x76@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/ios/OneQtIcon76x76~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/main.cpp
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/oneqt.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/oneqt.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/oneqt.qrc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/dataviz.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/devices.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/embedded.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/iot.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/multiscreen.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/puzzle-pieces.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/qtlogo.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/oneqt/textures/qtlogosmall.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/FpsDisplay.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/InfoSheet.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/PlanetButton.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/StyledSlider.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/doc/images/planets-example.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/doc/src/planets.qdoc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/earth.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/earthbump1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/earthcloudmapcolortrans.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/earthmap1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/earthspec1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/galaxy_starfield.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/jupiter.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/jupitermap.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/mars.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/marsbump1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/marsmap1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/mercury.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/mercurybump.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/mercurymap.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/moonbump1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/moonmap1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/neptune.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/neptunemap.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/plutobump1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/plutomap1k.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/saturn.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/saturnmap.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/saturnringcolortrans.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/sun.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/sunmap.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/uranus.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/uranusmap.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/uranusringcolortrans.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/venus.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/venusbump.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/images/venusmap.jpg
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon29x29.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon29x29@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon29x29@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon29x29~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon40x40@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon40x40@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon40x40~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon50x50@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon50x50~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon57x57.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon57x57@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon60x60@2x.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon72x72@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon72x72~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon76x76@2x~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/AppIcon76x76~ipad.png
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/ios/Info.plist
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/main.cpp
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/planets.js
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/planets.pro
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/planets.qml
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/planets/planets.qrc
-%%QT_EXAMPLEDIR%%/canvas3d/canvas3d/threejs/threejs.pro
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/doc/images/framebuffer-example.png
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/doc/src/framebuffer.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/framebuffer.pro
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/framebuffer.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/framebuffer.js
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/main.qml
+%%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/qtlogo.png
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/3dmodels.txt
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/doc/images/interaction-example.png
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/doc/src/interaction.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/interaction.pro
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/interaction.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/barrel.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/barrel.json
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/interaction.js
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/main.qml
+%%QT_EXAMPLEDIR%%/canvas3d/interaction/readme.txt
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/3dmodels.txt
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/doc/images/jsonmodels-example.png
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/doc/src/jsonmodels.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/jsonmodels.pro
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/bush.json
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/bush.png
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/gold.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/gold.json
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.js
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.qml
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/pallet.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/pallet.json
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/rock.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/rock.json
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/woodbox.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/woodbox.json
+%%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/readme.txt
+%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/doc/images/quickitemtexture-example.png
+%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/doc/src/quickitemtexture.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/qml/quickitemtexture/main.qml
+%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/qml/quickitemtexture/quickitemtexture.js
+%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/quickitemtexture.pro
+%%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/quickitemtexture.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/doc/images/textureandlight-example.png
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/doc/src/textureandlight.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/main.qml
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/qtlogo.png
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/textureandlight.js
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/textureandlight.pro
+%%QT_EXAMPLEDIR%%/canvas3d/textureandlight/textureandlight.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/cellphone.pro
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/cellphone.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/doc/images/cellphone-example.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/doc/src/cellphone.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/calendar.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/camera.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/clock.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/contacts.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/gallery.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/games.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/lock.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/mail.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/maps.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/menu_background.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/music.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/plutomap1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/qtlogo_with_alpha.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/settings.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/todo.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/videos.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone.js
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_case.json
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_front.json
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_icon.json
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphoneapp.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphonecanvas.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/colorselector.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/fpsdisplay.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/main.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/controls/ControlEventSource.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ImageCube.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/InfoSheet.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/Navibutton.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/SwipeArea.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/doc/images/oneqt-example.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/doc/src/oneqt.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/imagecube.js
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/Info.plist
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon50x50@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon50x50~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon57x57.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon57x57@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon60x60@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon72x72@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon72x72~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon76x76@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon76x76~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.pro
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/dataviz.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/devices.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/embedded.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/iot.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/multiscreen.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/puzzle-pieces.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/qtlogo.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/qtlogosmall.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/FpsDisplay.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/InfoSheet.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/PlanetButton.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/StyledSlider.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/doc/images/planets-example.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/doc/src/planets.qdoc
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earth.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthbump1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthcloudmapcolortrans.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthmap1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthspec1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/galaxy_starfield.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/jupiter.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/jupitermap.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mars.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/marsbump1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/marsmap1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercury.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercurybump.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercurymap.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/moonbump1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/moonmap1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/neptune.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/neptunemap.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/plutobump1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/plutomap1k.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturn.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturnmap.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturnringcolortrans.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/sun.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/sunmap.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranus.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranusmap.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranusringcolortrans.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venus.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venusbump.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venusmap.jpg
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon50x50@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon50x50~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon57x57.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon57x57@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon60x60@2x.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon72x72@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon72x72~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon76x76@2x~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon76x76~ipad.png
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/Info.plist
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/main.cpp
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.js
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.pro
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.qml
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.qrc
+%%QT_EXAMPLEDIR%%/canvas3d/threejs/threejs.pro
%%QT_EXAMPLEDIR%%/corelib/corelib.pro
%%QT_EXAMPLEDIR%%/corelib/ipc/README
%%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/localfortuneclient-example.png
@@ -473,7 +508,6 @@
%%QT_EXAMPLEDIR%%/designer/containerextension/containerextension.pro
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidget.cpp
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidget.h
-%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidget.json
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetcontainerextension.cpp
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetcontainerextension.h
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetextensionfactory.cpp
@@ -482,7 +516,6 @@
%%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetplugin.h
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/analogclock.cpp
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/analogclock.h
-%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/analogclock.json
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.cpp
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.h
%%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.pro
@@ -514,7 +547,6 @@
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/taskmenuextension.pro
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoe.cpp
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoe.h
-%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoe.json
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoedialog.cpp
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoedialog.h
%%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoeplugin.cpp
@@ -527,7 +559,6 @@
%%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/worldtimeclockbuilder.qrc
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclock.cpp
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclock.h
-%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclock.json
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.cpp
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.h
%%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.pro
@@ -598,7 +629,6 @@
%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/gallery.qrc
%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/image-gallery.pro
%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/image-gallery.qml
-%%QT_EXAMPLEDIR%%/enginio/quick/image-gallery/image_gallery80.png
%%QT_EXAMPLEDIR%%/enginio/quick/main.cpp
%%QT_EXAMPLEDIR%%/enginio/quick/quick.pro
%%QT_EXAMPLEDIR%%/enginio/quick/socialtodos/Header.qml
@@ -650,7 +680,6 @@
%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/todosmodel.cpp
%%QT_EXAMPLEDIR%%/enginio/widgets/todos-cpp/todosmodel.h
%%QT_EXAMPLEDIR%%/enginio/widgets/widgets.pro
-%%QT_EXAMPLEDIR%%/examples.pri
%%QT_EXAMPLEDIR%%/examples.pro
%%QT_EXAMPLEDIR%%/gui/analogclock/analogclock.pro
%%QT_EXAMPLEDIR%%/gui/analogclock/main.cpp
@@ -727,6 +756,8 @@
%%QT_EXAMPLEDIR%%/linguist/trollprint/trollprint.pro
%%QT_EXAMPLEDIR%%/linguist/trollprint/trollprint_pt.ts
%%QT_EXAMPLEDIR%%/location/location.pro
+%%QT_EXAMPLEDIR%%/location/mapviewer/doc/images/mapviewer.png
+%%QT_EXAMPLEDIR%%/location/mapviewer/doc/src/mapviewer.qdoc
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/Geocode.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/GeocodeForm.ui.qml
%%QT_EXAMPLEDIR%%/location/mapviewer/forms/Locale.qml
@@ -763,6 +794,8 @@
%%QT_EXAMPLEDIR%%/location/mapviewer/resources/marker.png
%%QT_EXAMPLEDIR%%/location/mapviewer/resources/scale.png
%%QT_EXAMPLEDIR%%/location/mapviewer/resources/scale_end.png
+%%QT_EXAMPLEDIR%%/location/places/doc/images/places.png
+%%QT_EXAMPLEDIR%%/location/places/doc/src/places.qdoc
%%QT_EXAMPLEDIR%%/location/places/forms/Message.qml
%%QT_EXAMPLEDIR%%/location/places/forms/MessageForm.ui.qml
%%QT_EXAMPLEDIR%%/location/places/forms/PlaceDetails.qml
@@ -805,11 +838,15 @@
%%QT_EXAMPLEDIR%%/location/places/views/SearchResultView.qml
%%QT_EXAMPLEDIR%%/location/places/views/SuggestionView.qml
%%QT_EXAMPLEDIR%%/location/places_list/Marker.qml
+%%QT_EXAMPLEDIR%%/location/places_list/doc/images/places_list.png
+%%QT_EXAMPLEDIR%%/location/places_list/doc/src/places_list.qdoc
%%QT_EXAMPLEDIR%%/location/places_list/main.cpp
%%QT_EXAMPLEDIR%%/location/places_list/marker.png
%%QT_EXAMPLEDIR%%/location/places_list/places_list.pro
%%QT_EXAMPLEDIR%%/location/places_list/places_list.qml
%%QT_EXAMPLEDIR%%/location/places_list/places_list.qrc
+%%QT_EXAMPLEDIR%%/location/places_map/doc/images/places_map.png
+%%QT_EXAMPLEDIR%%/location/places_map/doc/src/places_map.qdoc
%%QT_EXAMPLEDIR%%/location/places_map/main.cpp
%%QT_EXAMPLEDIR%%/location/places_map/marker.png
%%QT_EXAMPLEDIR%%/location/places_map/places_map.pro
@@ -817,6 +854,8 @@
%%QT_EXAMPLEDIR%%/location/places_map/places_map.qrc
%%QT_EXAMPLEDIR%%/location/planespotter/Plane.qml
%%QT_EXAMPLEDIR%%/location/planespotter/airplane.png
+%%QT_EXAMPLEDIR%%/location/planespotter/doc/images/planespotter.png
+%%QT_EXAMPLEDIR%%/location/planespotter/doc/src/planespotter.qdoc
%%QT_EXAMPLEDIR%%/location/planespotter/main.cpp
%%QT_EXAMPLEDIR%%/location/planespotter/planespotter.pro
%%QT_EXAMPLEDIR%%/location/planespotter/planespotter.qml
@@ -1395,7 +1434,7 @@
%%QT_EXAMPLEDIR%%/nfc/annotatedurl/mainwindow.ui
%%QT_EXAMPLEDIR%%/nfc/corkboard/Mode.qml
%%QT_EXAMPLEDIR%%/nfc/corkboard/NfcFlag.png
-%%QT_EXAMPLEDIR%%/nfc/corkboard/bar-descriptor.xml
+%%QT_EXAMPLEDIR%%/nfc/corkboard/android/AndroidManifest.xml
%%QT_EXAMPLEDIR%%/nfc/corkboard/cork.jpg
%%QT_EXAMPLEDIR%%/nfc/corkboard/corkboard.pro
%%QT_EXAMPLEDIR%%/nfc/corkboard/corkboard.qrc
@@ -1416,7 +1455,6 @@
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.h
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.ui
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/ndefeditor.pro
-%%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecord.ui
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.cpp
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.h
%%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.ui
@@ -1477,6 +1515,12 @@
%%QT_EXAMPLEDIR%%/opengl/hellogl2/mainwindow.h
%%QT_EXAMPLEDIR%%/opengl/hellogl2/window.cpp
%%QT_EXAMPLEDIR%%/opengl/hellogl2/window.h
+%%QT_EXAMPLEDIR%%/opengl/hellogles3/glwindow.cpp
+%%QT_EXAMPLEDIR%%/opengl/hellogles3/glwindow.h
+%%QT_EXAMPLEDIR%%/opengl/hellogles3/hellogles3.pro
+%%QT_EXAMPLEDIR%%/opengl/hellogles3/hellogles3.qrc
+%%QT_EXAMPLEDIR%%/opengl/hellogles3/main.cpp
+%%QT_EXAMPLEDIR%%/opengl/hellogles3/qtlogo.png
%%QT_EXAMPLEDIR%%/opengl/hellowindow/hellowindow.cpp
%%QT_EXAMPLEDIR%%/opengl/hellowindow/hellowindow.h
%%QT_EXAMPLEDIR%%/opengl/hellowindow/hellowindow.pro
@@ -1568,6 +1612,8 @@
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/mainwindow.cpp
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/mainwindow.h
%%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/threadedqopenglwidget.pro
+%%QT_EXAMPLEDIR%%/positioning/geoflickr/doc/images/qml-flickr-1.jpg
+%%QT_EXAMPLEDIR%%/positioning/geoflickr/doc/src/geoflickr.qdoc
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickr-90.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickr.qml
%%QT_EXAMPLEDIR%%/positioning/geoflickr/flickr.qrc
@@ -1600,6 +1646,7 @@
%%QT_EXAMPLEDIR%%/positioning/geoflickr/qmllocationflickr.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/clientapplication.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/clientapplication.h
+%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/doc/src/logfilepositionsource.qdoc
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfile.qrc
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfilepositionsource.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfilepositionsource.h
@@ -1607,6 +1654,8 @@
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/main.cpp
%%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/simplelog.txt
%%QT_EXAMPLEDIR%%/positioning/positioning.pro
+%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/doc/images/example-satelliteinfo.png
+%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/doc/src/satelliteinfo.qdoc
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/main.cpp
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satelliteinfo.pro
%%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satelliteinfo.qml
@@ -1618,6 +1667,8 @@
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/components/BigForecastIcon.qml
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/components/ForecastIcon.qml
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/components/WeatherIcon.qml
+%%QT_EXAMPLEDIR%%/positioning/weatherinfo/doc/images/example-weatherinfo.png
+%%QT_EXAMPLEDIR%%/positioning/weatherinfo/doc/src/weatherinfo.qdoc
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/README.txt
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-few-clouds.png
%%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-fog.png
@@ -1800,8 +1851,8 @@
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/piechart.h
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/app.qml
-%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/chapter3-binding.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/chapter3-bindings.pro
+%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/chapter3-bindings.qrc
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/piechart.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter3-bindings/piechart.h
@@ -1835,6 +1886,7 @@
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/qmldir
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/main.cpp
%%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/extending-qml.pro
+%%QT_EXAMPLEDIR%%/qml/tutorials/tutorials.pro
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/data.xml
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/doc/images/qml-xmlhttprequest-example.png
%%QT_EXAMPLEDIR%%/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc
@@ -1869,6 +1921,31 @@
%%QT_EXAMPLEDIR%%/qt3d/assimp/doc/src/assimp.qdoc
%%QT_EXAMPLEDIR%%/qt3d/assimp/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/assimp/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/BarEntity.qml
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/Visualizer.qml
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/audio-visualizer-qml.pro
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/audio-visualizer-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/doc/images/audio-visualizer-qml-example.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/doc/src/audio-visualizer-qml.qdoc
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/albumcover.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/demotitle.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/normalmap.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/pausehoverpressed.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/pausenormal.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/playhoverpressed.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/playnormal.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/songtitle.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/stopdisabled.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/stophoverpressed.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/images/stopnormal.png
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/meshes/circle.obj
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/meshes/progressbar.obj
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/music/tiltshifted_lost_neon_sun.mp3
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/music/visualization.raw
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/touchsettings.cpp
+%%QT_EXAMPLEDIR%%/qt3d/audio-visualizer-qml/touchsettings.h
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/basicshapes-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/doc/images/basicshapes-cpp-example.jpg
%%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/doc/src/basicshapes.qdoc
@@ -1883,6 +1960,8 @@
%%QT_EXAMPLEDIR%%/qt3d/bigmodel-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/bigscene-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/doc/src/bigscene-cpp.qdoc
+%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/entity.cpp
+%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/entity.h
%%QT_EXAMPLEDIR%%/qt3d/bigscene-cpp/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/bigscene-instanced-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/bigscene-instanced-qml/bigscene-instanced-qml.qrc
@@ -1919,6 +1998,10 @@
%%QT_EXAMPLEDIR%%/qt3d/cpp_example/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-cpp/custom-mesh-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-cpp/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/custom-mesh-qml.pro
+%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/custom-mesh-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/custom-mesh-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/cylinder-cpp/cylinder-cpp.pro
%%QT_EXAMPLEDIR%%/qt3d/cylinder-cpp/doc/src/cylinder-cpp.qdoc
%%QT_EXAMPLEDIR%%/qt3d/cylinder-cpp/main.cpp
@@ -2095,12 +2178,25 @@
%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/gooch-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/gooch-qml/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instancebuffer.cpp
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instancebuffer.h
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced-arrays-qml.pro
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced-arrays-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced.frag
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/instanced.vert
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/instanced-arrays-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/SphereEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/doc/src/keyboardinput-qml.qdoc
%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/keyboardinput-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/keyboardinput-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/keyboardinput-qml/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/lights/PlaneEntity.qml
+%%QT_EXAMPLEDIR%%/qt3d/lights/lights.pro
+%%QT_EXAMPLEDIR%%/qt3d/lights/lights.qrc
+%%QT_EXAMPLEDIR%%/qt3d/lights/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/lights/main.qml
%%QT_EXAMPLEDIR%%/qt3d/loader-qml/CuboidEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/loader-qml/SphereEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/loader-qml/doc/src/loader-qml.qdoc
@@ -2140,15 +2236,20 @@
%%QT_EXAMPLEDIR%%/qt3d/mouseinput-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/mouseinput-qml/mouseinput-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/mouseinput-qml/mouseinput-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/multiviewport/QuadViewportFrameGraph.qml
+%%QT_EXAMPLEDIR%%/qt3d/multiviewport/SimpleCamera.qml
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/doc/src/multiviewport.qdoc
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/main.qml
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/multiviewport.pro
%%QT_EXAMPLEDIR%%/qt3d/multiviewport/multiviewport.qrc
+%%QT_EXAMPLEDIR%%/qt3d/picking-qml/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/picking-qml/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/picking-qml/picking-qml.pro
+%%QT_EXAMPLEDIR%%/qt3d/picking-qml/picking-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/CloudEffectDS.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/FpsDisplay.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/InfoSheet.qml
-%%QT_EXAMPLEDIR%%/qt3d/planets-qml/Light.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/Planet.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetButton.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetEffectD.qml
@@ -2157,6 +2258,7 @@
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetFrameGraph.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetMaterial.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetShadowEffectD.qml
+%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetsLight.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetsMain.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/Ring.qml
%%QT_EXAMPLEDIR%%/qt3d/planets-qml/SolarSystem.qml
@@ -2239,6 +2341,11 @@
%%QT_EXAMPLEDIR%%/qt3d/playground-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/playground-qml/playground-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/playground-qml/playground-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/qgltf/Scene.qml
+%%QT_EXAMPLEDIR%%/qt3d/qgltf/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/qgltf/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/qgltf/qgltf.pro
+%%QT_EXAMPLEDIR%%/qt3d/qgltf/qgltf_example.qrc
%%QT_EXAMPLEDIR%%/qt3d/qt3d.pro
%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/AnimatedEntity.qml
%%QT_EXAMPLEDIR%%/qt3d/scene3d-loader/Scene.qml
@@ -2256,8 +2363,8 @@
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/AdsEffect.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/AdsMaterial.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/GroundPlane.qml
-%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/Light.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/ShadowMapFrameGraph.qml
+%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/ShadowMapLight.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/Toyplane.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/Trefoil.qml
%%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/doc/images/shadowmapping-depth.png
@@ -2278,6 +2385,7 @@
%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/doc/src/simple-cpp.qdoc
%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/simple-cpp/simple-cpp.pro
+%%QT_EXAMPLEDIR%%/qt3d/simple-qml/CameraController.qml
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/doc/src/simple-qml.qdoc
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/simple-qml/main.qml
@@ -2321,6 +2429,13 @@
%%QT_EXAMPLEDIR%%/qt3d/torus-qml/main.qml
%%QT_EXAMPLEDIR%%/qt3d/torus-qml/torus-qml.pro
%%QT_EXAMPLEDIR%%/qt3d/torus-qml/torus-qml.qrc
+%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/RenderableEntity.qml
+%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/TemporaryCamera.qml
+%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/TrefoilKnot.qml
+%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/main.cpp
+%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/main.qml
+%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/transforms-qml.pro
+%%QT_EXAMPLEDIR%%/qt3d/transforms-qml/transforms-qml.qrc
%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/Scene.qml
%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/main.cpp
%%QT_EXAMPLEDIR%%/qt3d/transparency-qml-scene3d/main.qml
@@ -2397,7 +2512,6 @@
%%QT_EXAMPLEDIR%%/qtestlib/tutorial4/testgui.cpp
%%QT_EXAMPLEDIR%%/qtestlib/tutorial4/tutorial4.pro
%%QT_EXAMPLEDIR%%/qtestlib/tutorial5/benchmarking.cpp
-%%QT_EXAMPLEDIR%%/qtestlib/tutorial5/containers.cpp
%%QT_EXAMPLEDIR%%/qtestlib/tutorial5/tutorial5.pro
%%QT_EXAMPLEDIR%%/quick/animation/animation.pro
%%QT_EXAMPLEDIR%%/quick/animation/animation.qml
@@ -2440,123 +2554,6 @@
%%QT_EXAMPLEDIR%%/quick/canvas/squircle/squircle.qml
%%QT_EXAMPLEDIR%%/quick/canvas/tiger/tiger.js
%%QT_EXAMPLEDIR%%/quick/canvas/tiger/tiger.qml
-%%QT_EXAMPLEDIR%%/quick/controls/basiclayouts/basiclayouts.pro
-%%QT_EXAMPLEDIR%%/quick/controls/basiclayouts/basiclayouts.qmlproject
-%%QT_EXAMPLEDIR%%/quick/controls/basiclayouts/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/basiclayouts/resources.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/basiclayouts/src/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/basiclayouts/src/src.pri
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/calendar.pro
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/images/eventindicator.png
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/qml/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/resources.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/src/event.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/src/event.h
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/src/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/src/sqleventmodel.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/src/sqleventmodel.h
-%%QT_EXAMPLEDIR%%/quick/controls/calendar/src/src.pri
-%%QT_EXAMPLEDIR%%/quick/controls/controls.pro
-%%QT_EXAMPLEDIR%%/quick/controls/filesystembrowser/filesystembrowser.pro
-%%QT_EXAMPLEDIR%%/quick/controls/filesystembrowser/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/filesystembrowser/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/filesystembrowser/qml.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/gallery.pro
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/gallery.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/qml/+android/UI.js
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/qml/+ios/UI.js
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/qml/+osx/UI.js
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/qml/ButtonPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/qml/InputPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/qml/ProgressPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/gallery/qml/UI.js
-%%QT_EXAMPLEDIR%%/quick/controls/shared/qtquickcontrolsapplication.h
-%%QT_EXAMPLEDIR%%/quick/controls/shared/shared.pri
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/bubble.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/button-pressed.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/button.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/progress-background.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/progress-fill.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/slider-handle.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/tab.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/tab_selected.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/images/textfield.png
-%%QT_EXAMPLEDIR%%/quick/controls/styles/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/styles/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/styles/styles.pro
-%%QT_EXAMPLEDIR%%/quick/controls/styles/styles.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/tableview/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/tableview/src/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/tableview/src/sortfilterproxymodel.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/tableview/src/sortfilterproxymodel.h
-%%QT_EXAMPLEDIR%%/quick/controls/tableview/src/src.pri
-%%QT_EXAMPLEDIR%%/quick/controls/tableview/tableview.pro
-%%QT_EXAMPLEDIR%%/quick/controls/tableview/tableview.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/example.html
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/ToolBarSeparator.qml
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/editcopy.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/editcut.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/editpaste.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/editredo.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/editundo.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/exportpdf.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/filenew.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/fileopen.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/fileprint.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/filesave.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/qt-logo.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/textbold.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/textcenter.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/textitalic.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/textjustify.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/textleft.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/textright.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/textunder.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/zoomin.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/images/zoomout.png
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/qml/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/resources.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/src/documenthandler.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/src/documenthandler.h
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/src/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/src/src.pri
-%%QT_EXAMPLEDIR%%/quick/controls/texteditor/texteditor.pro
-%%QT_EXAMPLEDIR%%/quick/controls/touch/content/AndroidDelegate.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/content/ButtonPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/content/ListPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/content/ProgressBarPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/content/SliderPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/content/TabBarPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/content/TextInputPage.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/NOTICE.txt
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/button_default.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/button_pressed.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/navigation_next_item.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/navigation_previous_item.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/tab_selected.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/tabs_standard.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/textinput.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/images/toolbar.png
-%%QT_EXAMPLEDIR%%/quick/controls/touch/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/touch/resources.qrc
-%%QT_EXAMPLEDIR%%/quick/controls/touch/src/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/touch/src/src.pri
-%%QT_EXAMPLEDIR%%/quick/controls/touch/touch.pro
-%%QT_EXAMPLEDIR%%/quick/controls/touch/touch.qmlproject
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/MainForm.ui.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/main.cpp
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/main.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/qml/CustomerModel.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/qml/History.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/qml/HistoryForm.ui.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/qml/Notes.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/qml/NotesForm.ui.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/qml/Settings.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/qml/SettingsForm.ui.qml
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/uiforms.pro
-%%QT_EXAMPLEDIR%%/quick/controls/uiforms/uiforms.qrc
%%QT_EXAMPLEDIR%%/quick/customitems/customitems.pro
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/Dial.qml
%%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/QuitButton.qml
@@ -2592,6 +2589,8 @@
%%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.qrc
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/TextBalloonPlugin/plugin.h
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/TextBalloonPlugin/qmldir
+%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/doc/images/declarative-textballoons_example.png
+%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/doc/src/textballoons.qdoc
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/painteditem.pro
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/painteditem.qrc
%%QT_EXAMPLEDIR%%/quick/customitems/painteditem/textballoon.cpp
@@ -2880,8 +2879,10 @@
%%QT_EXAMPLEDIR%%/quick/demos/samegame/samegame.qml
%%QT_EXAMPLEDIR%%/quick/demos/samegame/samegame.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/samegame/samegame.qrc
+%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/+windows/Settings.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/Button.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/CheckBox.qml
+%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/Settings.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockChart.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockInfo.qml
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/StockListModel.qml
@@ -2892,6 +2893,7 @@
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/images/icon-left-arrow.png
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/images/wheel-touch.png
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/images/wheel.png
+%%QT_EXAMPLEDIR%%/quick/demos/stocqt/content/qmldir
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/doc/images/qtquick-demo-stocqt.png
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/doc/src/stocqt.qdoc
%%QT_EXAMPLEDIR%%/quick/demos/stocqt/main.cpp
@@ -2921,18 +2923,6 @@
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/tweetsearch.qml
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/tweetsearch.qmlproject
%%QT_EXAMPLEDIR%%/quick/demos/tweetsearch/tweetsearch.qrc
-%%QT_EXAMPLEDIR%%/quick/dialogs/dialogs.pro
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/ColorDialogs.qml
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/CustomDialogs.qml
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/FileDialogs.qml
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/FontDialogs.qml
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/MessageDialogs.qml
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/doc/images/systemdialogs-example.jpg
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/doc/src/systemdialogs.qdoc
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/main.cpp
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/systemdialogs.pro
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/systemdialogs.qml
-%%QT_EXAMPLEDIR%%/quick/dialogs/systemdialogs/systemdialogs.qrc
%%QT_EXAMPLEDIR%%/quick/draganddrop/doc/images/qml-draganddrop-example.png
%%QT_EXAMPLEDIR%%/quick/draganddrop/doc/src/draganddrop.qdoc
%%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.pro
@@ -2957,71 +2947,6 @@
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qmlproject
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qrc
%%QT_EXAMPLEDIR%%/quick/externaldraganddrop/main.cpp
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/dashboard.pro
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/dashboard.qrc
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/fonts/DejaVuSans.ttf
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/fonts/LICENSE
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/images/fuel-icon.png
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/images/temperature-icon.png
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/main.cpp
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/qml/DashboardGaugeStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/qml/IconGaugeStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/qml/TachometerStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/qml/TurnIndicator.qml
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/qml/ValueSource.qml
-%%QT_EXAMPLEDIR%%/quick/extras/dashboard/qml/dashboard.qml
-%%QT_EXAMPLEDIR%%/quick/extras/extras.pro
-%%QT_EXAMPLEDIR%%/quick/extras/flat/Content.qml
-%%QT_EXAMPLEDIR%%/quick/extras/flat/SettingsIcon.qml
-%%QT_EXAMPLEDIR%%/quick/extras/flat/flat.pro
-%%QT_EXAMPLEDIR%%/quick/extras/flat/flat.qrc
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-bw-normal.png
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-bw-pressed.png
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-image-bw.jpg
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-image-rgb.jpg
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-image-sepia.jpg
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-rgb-normal.png
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-rgb-pressed.png
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-sepia-normal.png
-%%QT_EXAMPLEDIR%%/quick/extras/flat/images/piemenu-sepia-pressed.png
-%%QT_EXAMPLEDIR%%/quick/extras/flat/main.cpp
-%%QT_EXAMPLEDIR%%/quick/extras/flat/main.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/fonts/LICENSE.txt
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/fonts/OpenSans-Regular.ttf
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/gallery.pro
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/gallery.qrc
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/background-light.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/background.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/center-light.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/center.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/icon-back.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/icon-go.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/icon-settings.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/info.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/needle-light.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/needle.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/qt-logo.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/zoom_in.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/images/zoom_out.png
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/main.cpp
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/BlackButtonBackground.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/BlackButtonStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/CircularGaugeDarkStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/CircularGaugeDefaultStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/CircularGaugeLightStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/CircularGaugeView.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/ControlLabel.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/ControlView.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/ControlViewToolbar.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/CustomizerLabel.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/CustomizerSlider.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/CustomizerSwitch.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/FlickableMoreIndicator.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/PieMenuControlView.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/PieMenuDarkStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/PieMenuDefaultStyle.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/StylePicker.qml
-%%QT_EXAMPLEDIR%%/quick/extras/gallery/qml/gallery.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/animatedsprite.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/borderimage.qml
%%QT_EXAMPLEDIR%%/quick/imageelements/content/BearSheet.png
@@ -3054,6 +2979,12 @@
%%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider.cpp
%%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider.pro
%%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider.qmlproject
+%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/ImageResponseProviderCore/qmldir
+%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/doc/src/imageresponseprovider.qdoc
+%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider-example.qml
+%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider.cpp
+%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider.pro
+%%QT_EXAMPLEDIR%%/quick/imageresponseprovider/imageresponseprovider.qmlproject
%%QT_EXAMPLEDIR%%/quick/keyinteraction/doc/images/qml-keyinteraction-example.png
%%QT_EXAMPLEDIR%%/quick/keyinteraction/doc/src/keyinteraction.qdoc
%%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/ContextMenu.qml
@@ -3108,8 +3039,6 @@
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qml
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qmlproject
%%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qrc
-%%QT_EXAMPLEDIR%%/quick/painteditem/textballoons/doc/images/declarative-textballoons_example.png
-%%QT_EXAMPLEDIR%%/quick/painteditem/textballoons/doc/src/textballoons.qdoc
%%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.pro
%%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qml
%%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qmlproject
@@ -3628,15 +3557,259 @@
%%QT_EXAMPLEDIR%%/quick/window/window.pro
%%QT_EXAMPLEDIR%%/quick/window/window.qml
%%QT_EXAMPLEDIR%%/quick/window/window.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/basiclayouts.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/basiclayouts.qmlproject
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/resources.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/src/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/basiclayouts/src/src.pri
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/calendar.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/images/eventindicator.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/qml/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/resources.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/event.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/event.h
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/sqleventmodel.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/sqleventmodel.h
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/calendar/src/src.pri
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/controls.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/filesystembrowser.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/filesystembrowser/qml.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/gallery.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/gallery.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/+android/UI.js
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/+ios/UI.js
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/+osx/UI.js
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/ButtonPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/InputPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/ProgressPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/gallery/qml/UI.js
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/shared/qtquickcontrolsapplication.h
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/shared/shared.pri
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/bubble.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/button-pressed.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/button.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/progress-background.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/progress-fill.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/slider-handle.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/tab.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/tab_selected.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/images/textfield.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/styles.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/styles/styles.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/sortfilterproxymodel.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/sortfilterproxymodel.h
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/src/src.pri
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/tableview.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/tableview/tableview.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/example.html
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/ToolBarSeparator.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editcopy.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editcut.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editpaste.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editredo.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/editundo.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/exportpdf.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/filenew.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/fileopen.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/fileprint.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/filesave.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/qt-logo.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textbold.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textcenter.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textitalic.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textjustify.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textleft.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textright.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/textunder.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/zoomin.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/images/zoomout.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/qml/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/resources.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/documenthandler.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/documenthandler.h
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/src/src.pri
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/texteditor/texteditor.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/AndroidDelegate.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/ButtonPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/ListPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/ProgressBarPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/SliderPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/TabBarPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/content/TextInputPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/NOTICE.txt
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/button_default.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/button_pressed.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/navigation_next_item.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/navigation_previous_item.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/tab_selected.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/tabs_standard.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/textinput.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/images/toolbar.png
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/resources.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/src/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/src/src.pri
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/touch.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/touch/touch.qmlproject
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/MainForm.ui.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/CustomerModel.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/History.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/HistoryForm.ui.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/Notes.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/NotesForm.ui.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/Settings.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/qml/SettingsForm.ui.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/uiforms.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/controls/uiforms/uiforms.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/dialogs.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/ColorDialogs.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/CustomDialogs.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/FileDialogs.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/FontDialogs.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/MessageDialogs.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/doc/images/systemdialogs-example.jpg
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/doc/src/systemdialogs.qdoc
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/systemdialogs.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/systemdialogs.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/dialogs/systemdialogs/systemdialogs.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/dashboard.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/dashboard.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/fonts/DejaVuSans.ttf
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/fonts/LICENSE
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/images/fuel-icon.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/images/temperature-icon.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/DashboardGaugeStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/IconGaugeStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/TachometerStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/TurnIndicator.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/ValueSource.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/dashboard/qml/dashboard.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/extras.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/Content.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/SettingsIcon.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/flat.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/flat.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-bw-normal.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-bw-pressed.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-image-bw.jpg
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-image-rgb.jpg
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-image-sepia.jpg
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-rgb-normal.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-rgb-pressed.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-sepia-normal.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/images/piemenu-sepia-pressed.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/flat/main.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/fonts/LICENSE.txt
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/fonts/OpenSans-Regular.ttf
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/gallery.pro
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/gallery.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/background-light.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/background.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/center-light.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/center.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/icon-back.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/icon-go.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/icon-settings.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/info.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/needle-light.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/needle.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/qt-logo.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/zoom_in.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/images/zoom_out.png
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/main.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/BlackButtonBackground.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/BlackButtonStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeDarkStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeDefaultStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeLightStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CircularGaugeView.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/ControlLabel.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/ControlView.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/ControlViewToolbar.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CustomizerLabel.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CustomizerSlider.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/CustomizerSwitch.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/FlickableMoreIndicator.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/PieMenuControlView.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/PieMenuDarkStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/PieMenuDefaultStyle.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/StylePicker.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/extras/gallery/qml/gallery.qml
+%%QT_EXAMPLEDIR%%/quickcontrols/quickcontrols.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.cpp
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.pro
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.qrc
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrow@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/arrows@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/drawer@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/menu@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo@2x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo@3x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/images/qt-logo@4x.png
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/BusyIndicatorPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ButtonPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/CheckBoxPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ComboBoxPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DialPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DrawerPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/FramePage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/GroupBoxPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/MenuPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/PageIndicatorPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/PopupPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ProgressBarPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/RadioButtonPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/RangeSliderPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ScrollBarPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/ScrollIndicatorPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SliderPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SpinBoxPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/StackViewPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SwipeViewPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/SwitchPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TabBarPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TextAreaPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TextFieldPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TumblerPage.qml
+%%QT_EXAMPLEDIR%%/quickcontrols2/gallery/qtlabscontrols.conf
+%%QT_EXAMPLEDIR%%/quickcontrols2/quickcontrols2.pro
%%QT_EXAMPLEDIR%%/script/README
-%%QT_EXAMPLEDIR%%/script/calculator/calculator.desktop
%%QT_EXAMPLEDIR%%/script/calculator/calculator.js
%%QT_EXAMPLEDIR%%/script/calculator/calculator.pro
%%QT_EXAMPLEDIR%%/script/calculator/calculator.qrc
%%QT_EXAMPLEDIR%%/script/calculator/calculator.ui
%%QT_EXAMPLEDIR%%/script/calculator/main.cpp
%%QT_EXAMPLEDIR%%/script/context2d/context2d.cpp
-%%QT_EXAMPLEDIR%%/script/context2d/context2d.desktop
%%QT_EXAMPLEDIR%%/script/context2d/context2d.h
%%QT_EXAMPLEDIR%%/script/context2d/context2d.pro
%%QT_EXAMPLEDIR%%/script/context2d/context2d.qrc
@@ -3676,11 +3849,9 @@
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayclass.pri
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayprototype.cpp
%%QT_EXAMPLEDIR%%/script/customclass/bytearrayprototype.h
-%%QT_EXAMPLEDIR%%/script/customclass/customclass.desktop
%%QT_EXAMPLEDIR%%/script/customclass/customclass.pro
%%QT_EXAMPLEDIR%%/script/customclass/main.cpp
%%QT_EXAMPLEDIR%%/script/defaultprototypes/code.js
-%%QT_EXAMPLEDIR%%/script/defaultprototypes/defaultprototypes.desktop
%%QT_EXAMPLEDIR%%/script/defaultprototypes/defaultprototypes.pro
%%QT_EXAMPLEDIR%%/script/defaultprototypes/defaultprototypes.qrc
%%QT_EXAMPLEDIR%%/script/defaultprototypes/doc/images/defaultprototypes-example.png
@@ -3689,20 +3860,16 @@
%%QT_EXAMPLEDIR%%/script/defaultprototypes/prototypes.cpp
%%QT_EXAMPLEDIR%%/script/defaultprototypes/prototypes.h
%%QT_EXAMPLEDIR%%/script/helloscript/doc/src/helloscript.qdoc
-%%QT_EXAMPLEDIR%%/script/helloscript/helloscript.desktop
%%QT_EXAMPLEDIR%%/script/helloscript/helloscript.js
%%QT_EXAMPLEDIR%%/script/helloscript/helloscript.pro
%%QT_EXAMPLEDIR%%/script/helloscript/helloscript.qrc
%%QT_EXAMPLEDIR%%/script/helloscript/main.cpp
%%QT_EXAMPLEDIR%%/script/marshal/main.cpp
-%%QT_EXAMPLEDIR%%/script/marshal/marshal.desktop
%%QT_EXAMPLEDIR%%/script/marshal/marshal.pro
%%QT_EXAMPLEDIR%%/script/qscript/main.cpp
-%%QT_EXAMPLEDIR%%/script/qscript/qscript.desktop
%%QT_EXAMPLEDIR%%/script/qscript/qscript.pro
%%QT_EXAMPLEDIR%%/script/qsdbg/example.js
%%QT_EXAMPLEDIR%%/script/qsdbg/main.cpp
-%%QT_EXAMPLEDIR%%/script/qsdbg/qsdbg.desktop
%%QT_EXAMPLEDIR%%/script/qsdbg/qsdbg.pri
%%QT_EXAMPLEDIR%%/script/qsdbg/qsdbg.pro
%%QT_EXAMPLEDIR%%/script/qsdbg/scriptbreakpointmanager.cpp
@@ -3710,7 +3877,6 @@
%%QT_EXAMPLEDIR%%/script/qsdbg/scriptdebugger.cpp
%%QT_EXAMPLEDIR%%/script/qsdbg/scriptdebugger.h
%%QT_EXAMPLEDIR%%/script/qstetrix/main.cpp
-%%QT_EXAMPLEDIR%%/script/qstetrix/qstetrix.desktop
%%QT_EXAMPLEDIR%%/script/qstetrix/qstetrix.pro
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrix.qrc
%%QT_EXAMPLEDIR%%/script/qstetrix/tetrixboard.cpp
@@ -3738,9 +3904,9 @@
%%QT_EXAMPLEDIR%%/sensors/grue/grue.qml
%%QT_EXAMPLEDIR%%/sensors/grue/grue.xcf
%%QT_EXAMPLEDIR%%/sensors/grue/icon.xcf
+%%QT_EXAMPLEDIR%%/sensors/grue/import/import.json
%%QT_EXAMPLEDIR%%/sensors/grue/import/import.pro
%%QT_EXAMPLEDIR%%/sensors/grue/import/main.cpp
-%%QT_EXAMPLEDIR%%/sensors/grue/import/plugin.json
%%QT_EXAMPLEDIR%%/sensors/grue/import/qmldir
%%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor.cpp
%%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor.h
@@ -3806,9 +3972,9 @@
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/doc/src/sensor_explorer.qdoc
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/explorer.cpp
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/explorer.h
+%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/import.json
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/import.pro
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/main.cpp
-%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/plugin.json
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/propertyinfo.cpp
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/propertyinfo.h
%%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/qmldir
@@ -3839,6 +4005,62 @@
%%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.qml
%%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.qrc
%%QT_EXAMPLEDIR%%/sensors/stub.h
+%%QT_EXAMPLEDIR%%/serialbus/can/can.pro
+%%QT_EXAMPLEDIR%%/serialbus/can/can.qrc
+%%QT_EXAMPLEDIR%%/serialbus/can/connectdialog.cpp
+%%QT_EXAMPLEDIR%%/serialbus/can/connectdialog.h
+%%QT_EXAMPLEDIR%%/serialbus/can/connectdialog.ui
+%%QT_EXAMPLEDIR%%/serialbus/can/images/application-exit.png
+%%QT_EXAMPLEDIR%%/serialbus/can/images/clear.png
+%%QT_EXAMPLEDIR%%/serialbus/can/images/connect.png
+%%QT_EXAMPLEDIR%%/serialbus/can/images/disconnect.png
+%%QT_EXAMPLEDIR%%/serialbus/can/main.cpp
+%%QT_EXAMPLEDIR%%/serialbus/can/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/serialbus/can/mainwindow.h
+%%QT_EXAMPLEDIR%%/serialbus/can/mainwindow.ui
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/adueditor.pro
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/interface.ui
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/main.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/mainwindow.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/modbustcpclient.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/modbustcpclient.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/modbustcpclient_p.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/adueditor/plaintextedit.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/doc/images/modbusmaster.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/doc/src/modbusmaster.qdoc
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/application-exit.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/connect.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/disconnect.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/images/settings.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/main.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/mainwindow.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/mainwindow.ui
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/master.pro
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/master.qrc
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/settingsdialog.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/settingsdialog.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/settingsdialog.ui
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/writeregistermodel.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/master/writeregistermodel.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/modbus.pro
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/doc/images/modbusserver.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/doc/src/modbusslave.qdoc
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/application-exit.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/connect.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/disconnect.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/images/settings.png
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/main.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/mainwindow.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/mainwindow.ui
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/settingsdialog.cpp
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/settingsdialog.h
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/settingsdialog.ui
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/slave.pro
+%%QT_EXAMPLEDIR%%/serialbus/modbus/slave/slave.qrc
+%%QT_EXAMPLEDIR%%/serialbus/serialbus.pro
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/blockingmaster.pro
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/dialog.cpp
%%QT_EXAMPLEDIR%%/serialport/blockingmaster/dialog.h
@@ -4017,7 +4239,6 @@
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/music.png
%%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/photo.png
%%QT_EXAMPLEDIR%%/svg/embedded/embedded.pro
-%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/backup_registration.xml
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/config.xml
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/config_wince/config.xml
%%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/demoapplication.cpp
@@ -4092,8 +4313,6 @@
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/files/default.svg
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/files/v-slider-handle.svg
%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/main.cpp
-%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/shapes.svg
-%%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/spheres.svg
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.cpp
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.h
%%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.pro
@@ -4125,7 +4344,6 @@
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/resources.qrc
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/svgtextobject.cpp
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/svgtextobject.h
-%%QT_EXAMPLEDIR%%/svg/richtext/textobject/textobject.desktop
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/textobject.pro
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/window.cpp
%%QT_EXAMPLEDIR%%/svg/richtext/textobject/window.h
@@ -4137,7 +4355,6 @@
%%QT_EXAMPLEDIR%%/svg/svggenerator/forms/window.ui
%%QT_EXAMPLEDIR%%/svg/svggenerator/main.cpp
%%QT_EXAMPLEDIR%%/svg/svggenerator/resources/shapes.dat
-%%QT_EXAMPLEDIR%%/svg/svggenerator/svggenerator.desktop
%%QT_EXAMPLEDIR%%/svg/svggenerator/svggenerator.pro
%%QT_EXAMPLEDIR%%/svg/svggenerator/svggenerator.qrc
%%QT_EXAMPLEDIR%%/svg/svggenerator/window.cpp
@@ -4152,7 +4369,6 @@
%%QT_EXAMPLEDIR%%/svg/svgviewer/mainwindow.h
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgview.cpp
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgview.h
-%%QT_EXAMPLEDIR%%/svg/svgviewer/svgviewer.desktop
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgviewer.pro
%%QT_EXAMPLEDIR%%/svg/svgviewer/svgviewer.qrc
%%QT_EXAMPLEDIR%%/touch/dials/dials.pro
@@ -4229,496 +4445,6 @@
%%QT_EXAMPLEDIR%%/webchannel/standalone/main.cpp
%%QT_EXAMPLEDIR%%/webchannel/standalone/standalone.pro
%%QT_EXAMPLEDIR%%/webchannel/webchannel.pro
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/_copyright.txt
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/_image_assets.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/_index.html
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_accord.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_demo-rotate.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_demo-scale.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_demo-skew.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_gallery.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_panel.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_pulse.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_skew.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_slide1.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_slide2.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_slide3.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/anim_tabbedSkew.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_accord.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_demo-rotate.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_demo-scale.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_demo-skew.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_gallery.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_panel.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_pulse.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_skew.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_slide.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/anim_tabbedSkew.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_backgrounds.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_border-img.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_grad-radial.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_gradientBack.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_gradientBackStop.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_gradientButton.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_mask-grad.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_mask-img.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_multicol.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_reflect.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_scroll.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_sel-nth.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_shadow.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_shadowBlur.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_text-overflow.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_text-shadow.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/css3_text-stroke.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/form_tapper.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/form_toggler.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/layout_link-fmt.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/layout_tbl-keyhole.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mob_condjs.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mob_mediaquery.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mobile.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mq_desktop.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mq_mobile.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mq_touch.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mqlayout_desktop.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mqlayout_mobile.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/mqlayout_touch.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css/storage.css
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_backgrounds.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_border-img.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_grad-radial.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_gradientBack.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_gradientBackStop.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_gradientButton.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_mask-grad.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_mask-img.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_multicol.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_reflect.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_scroll.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_sel-nth.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_shadow.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_text-overflow.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_text-shadow.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/css3_text-stroke.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/form_tapper.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/form_toggler.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/border-frame.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal1.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal2.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal3.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal4.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal5.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal6.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal7.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gal8.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gradient.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/gray_icon_close.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ag_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ag_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ag_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ag_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_al_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_al_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_al_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_al_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ar_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ar_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ar_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ar_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_b_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_b_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_b_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_b_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_be_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_be_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_be_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_be_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_c_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_c_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_c_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_c_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ca_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ca_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ca_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ca_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cl_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cl_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cl_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cl_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cu_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cu_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cu_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_cu_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_f_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_f_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_f_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_f_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_fe_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_fe_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_fe_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_fe_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_h_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_h_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_h_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_h_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_he_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_he_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_he_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_he_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_k_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_k_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_k_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_k_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_li_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_li_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_li_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_li_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_mg_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_mg_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_mg_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_mg_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_n_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_n_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_n_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_n_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_na_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_na_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_na_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_na_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ne_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ne_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ne_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ne_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ni_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ni_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ni_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_ni_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_o_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_o_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_o_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_o_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_pt_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_pt_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_pt_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_pt_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_si_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_si_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_si_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_si_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_zn_016.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_zn_032.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_zn_036.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/ic_zn_048.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_check.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_check_x24green.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_dismiss.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_dismiss_x22.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_drill-down.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_drill-down_x32.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_drill-up.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_drill-up_x32.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_expand-nav.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_head-collapsed.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_head-collapsed_x13.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_head-expanded.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_head-expanded_x13.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_info.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_info_x24.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-doc.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-email.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-external.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-pdf.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-ppt.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-rss.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-sms.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-tel.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_link-xls.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_list-all.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_list-all_circ.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_nav-start.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_nav-top.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_nav-up.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_nav_end.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_question.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_scroll-left.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_scroll-right.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/icon_trash.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land1.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land2.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land3.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land4.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land5.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land6.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land7.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/land8.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/mask.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal1.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal2.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal3.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal4.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal5.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal6.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal7.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/gal8.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land1.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land2.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land3.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land4.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land5.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land6.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land7.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tmp/land8.jpg
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal1.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal2.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal3.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal4.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal5.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal6.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal7.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/img/tnail_gal8.png
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/anim_accord.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/anim_gallery.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/anim_panel.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/anim_skew.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/css3_backgrounds.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/css3_border-img.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/css3_grad-radial.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/css3_mask-grad.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/css3_mask-img.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/css3_text-overflow.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/form_tapper.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/mob_condjs.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/mobile.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/js/storage.js
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/layout_link-fmt.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/layout_tbl-keyhole.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/mob_condjs.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/mob_layout.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/mob_mediaquery.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/storage.htm
-%%QT_EXAMPLEDIR%%/webkit/webkit-guide/webkit-guide.pro
-%%QT_EXAMPLEDIR%%/webkitqml/flickrview/doc/images/flickrview-example.png
-%%QT_EXAMPLEDIR%%/webkitqml/flickrview/doc/src/flickrview.qdoc
-%%QT_EXAMPLEDIR%%/webkitqml/flickrview/flickrview.pro
-%%QT_EXAMPLEDIR%%/webkitqml/flickrview/flickrview.qml
-%%QT_EXAMPLEDIR%%/webkitqml/flickrview/flickrview.qrc
-%%QT_EXAMPLEDIR%%/webkitqml/flickrview/images/flickr.png
-%%QT_EXAMPLEDIR%%/webkitqml/shared/Button.qml
-%%QT_EXAMPLEDIR%%/webkitqml/shared/LoadIndicator.qml
-%%QT_EXAMPLEDIR%%/webkitqml/shared/images/arrow.png
-%%QT_EXAMPLEDIR%%/webkitqml/shared/images/busy.png
-%%QT_EXAMPLEDIR%%/webkitqml/shared/images/less.png
-%%QT_EXAMPLEDIR%%/webkitqml/shared/images/more.png
-%%QT_EXAMPLEDIR%%/webkitqml/shared/main.cpp
-%%QT_EXAMPLEDIR%%/webkitqml/shared/qmldir
-%%QT_EXAMPLEDIR%%/webkitqml/shared/shared.pro
-%%QT_EXAMPLEDIR%%/webkitqml/shared/shared.qrc
-%%QT_EXAMPLEDIR%%/webkitqml/webkitqml.pro
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/content/YouTubeDialog.qml
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/content/player.html
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/doc/images/youtubeview-example-preset.png
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/doc/images/youtubeview-example.png
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/doc/src/youtubeview.qdoc
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/youtubeview.pro
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/youtubeview.qml
-%%QT_EXAMPLEDIR%%/webkitqml/youtubeview/youtubeview.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/Info_mac.plist
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/addbookmarkdialog.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/autosaver.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/autosaver.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/bookmarks.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/bookmarks.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/bookmarks.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browser.icns
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browser.ico
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browser.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browser.rc
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browserapplication.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browserapplication.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browsermainwindow.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/browsermainwindow.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/chasewidget.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/chasewidget.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/cookiejar.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/cookiejar.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/cookies.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/cookiesexceptions.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/addtab.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/browser.svg
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/closetab.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/data.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/defaultbookmarks.xbel
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/defaulticon.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/history.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/data/loading.gif
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/doc/images/browser-demo.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/doc/src/browser.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/downloaditem.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/downloadmanager.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/downloadmanager.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/downloads.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/edittableview.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/edittableview.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/edittreeview.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/edittreeview.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/history.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/history.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/history.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/htmls/htmls.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/htmls/notfound.html
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/modelmenu.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/modelmenu.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/networkaccessmanager.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/networkaccessmanager.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/passworddialog.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/proxy.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/searchlineedit.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/searchlineedit.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/settings.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/settings.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/settings.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/squeezelabel.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/squeezelabel.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/tabwidget.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/tabwidget.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/toolbarsearch.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/toolbarsearch.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/urllineedit.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/urllineedit.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/webview.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/webview.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/xbel.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/browser/xbel.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/domtraversal/doc/images/webkit-domtraversal.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/domtraversal/doc/src/domtraversal.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/domtraversal/domtraversal.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/domtraversal/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/domtraversal/window.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/domtraversal/window.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/domtraversal/window.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/README.TXT
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/anomaly.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/AddressBar.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/AddressBar.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/BookmarksView.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/BookmarksView.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/BrowserView.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/BrowserView.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/BrowserWindow.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/BrowserWindow.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/ControlStrip.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/ControlStrip.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/HomeView.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/HomeView.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/Main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/TitleBar.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/TitleBar.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/ZoomStrip.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/ZoomStrip.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/anomaly.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/flickcharm.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/flickcharm.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/images/button-close.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/images/edit-find.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/images/go-next.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/images/go-previous.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/images/list-add.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/images/list-remove.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/webview.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/anomaly/src/webview.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/embedded/embedded.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/doc/images/fancybrowser-example.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/doc/src/fancybrowser.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/fancybrowser.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/jquery.min.js
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/jquery.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/fancybrowser/mainwindow.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/doc/images/formextractor-example.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/doc/src/formextractor.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/form.html
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/formextractor.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/formextractor.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/formextractor.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/formextractor.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/formextractor.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/formextractor/mainwindow.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/framecapture/doc/images/framecapture-example.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/framecapture/doc/src/webkit-framecapture.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/framecapture/framecapture.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/framecapture/framecapture.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/framecapture/framecapture.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/framecapture/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/README
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/doc/images/webkit-imageanalyzer-complete.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/doc/images/webkit-imageanalyzer-progress.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/doc/images/webkit-imageanalyzer-screenshot.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/doc/src/webkit-bridge-imageanalyzer.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/imageanalyzer.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/imageanalyzer.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/imageanalyzer.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/mainwindow.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/imageanalyzer.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/images/README
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/images/bellaCoola.jpg
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/images/flower.jpg
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/images/mtRainier.jpg
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/images/seaShell.jpg
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/images/trees.jpg
-%%QT_EXAMPLEDIR%%/webkitwidgets/imageanalyzer/resources/index.html
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/doc/images/previewer-example.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/doc/images/previewer-ui.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/doc/src/previewer.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/mainwindow.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/previewer.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/previewer.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/previewer.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/previewer/previewer.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/plot/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/plot/plot.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/plot/plotwidget.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/plot/plotwidget.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/plot/settingswidget.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/plot/settingswidget.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/scroller.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/wheel/doc/images/wheel-example.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/wheel/doc/src/wheel.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/wheel/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/wheel/wheel.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/wheel/wheelwidget.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/scroller/wheel/wheelwidget.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/simpleselector/doc/images/webkit-simpleselector.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/simpleselector/doc/src/simpleselector.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/simpleselector/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/simpleselector/simpleselector.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/simpleselector/window.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/simpleselector/window.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/simpleselector/window.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/webkitwidgets.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/doc/images/qobjectxmlmodel-example.png
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/doc/src/qobjectxmlmodel.qdoc
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/forms/mainwindow.ui
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/main.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/mainwindow.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.pro
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries.qrc
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries/statisticsInHTML.xq
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/queries/wholeTree.xq
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/xmlsyntaxhighlighter.cpp
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/qobjectxmlmodel/xmlsyntaxhighlighter.h
-%%QT_EXAMPLEDIR%%/webkitwidgets/xmlpatterns/xmlpatterns.pro
%%QT_EXAMPLEDIR%%/websockets/doc/echoclient.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/echoserver.qdoc
%%QT_EXAMPLEDIR%%/websockets/doc/examples.qdoc
@@ -5021,11 +4747,14 @@
%%QT_EXAMPLEDIR%%/widgets/doc/images/plugandpaint-plugindialog.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/plugandpaint.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/regexp-example.png
+%%QT_EXAMPLEDIR%%/widgets/doc/images/regularexpression-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/settingseditor-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/sipdialog-closed.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/sipdialog-opened.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/stylepluginexample.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/stylesheet-pagefold.png
+%%QT_EXAMPLEDIR%%/widgets/doc/images/systemtray-editor.png
+%%QT_EXAMPLEDIR%%/widgets/doc/images/systemtray-example.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/textedit-demo.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/trafficlight-example1.png
%%QT_EXAMPLEDIR%%/widgets/doc/images/trafficlight-example2.png
@@ -5118,8 +4847,8 @@
%%QT_EXAMPLEDIR%%/widgets/doc/src/pingpong.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/pixelator.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/plugandpaint.qdoc
-%%QT_EXAMPLEDIR%%/widgets/doc/src/recentfiles.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/regexp.qdoc
+%%QT_EXAMPLEDIR%%/widgets/doc/src/regularexpression.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/rogue.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/screenshot.qdoc
%%QT_EXAMPLEDIR%%/widgets/doc/src/scribble.qdoc
@@ -5170,8 +4899,6 @@
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/main.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/draggabletext.pro
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/draggabletext.qrc
-%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/draglabel.cpp
-%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/draglabel.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/dragwidget.cpp
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/dragwidget.h
%%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/main.cpp
@@ -5627,10 +5354,6 @@
%%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/mainwindow.h
%%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/menus.pro
-%%QT_EXAMPLEDIR%%/widgets/mainwindows/recentfiles/main.cpp
-%%QT_EXAMPLEDIR%%/widgets/mainwindows/recentfiles/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/widgets/mainwindows/recentfiles/mainwindow.h
-%%QT_EXAMPLEDIR%%/widgets/mainwindows/recentfiles/recentfiles.pro
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/copy.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/cut.png
%%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/new.png
@@ -5926,28 +5649,35 @@
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_sv.ts
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_zh.qm
%%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_zh.ts
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/interfaces.h
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/main.cpp
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/mainwindow.cpp
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/mainwindow.h
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/paintarea.cpp
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/paintarea.h
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/app.pro
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/interfaces.h
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/main.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/mainwindow.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/mainwindow.h
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/paintarea.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/paintarea.h
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/plugindialog.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/app/plugindialog.h
%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugandpaint.pro
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugindialog.cpp
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugindialog.h
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/basictools/basictools.json
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/basictools/basictools.pro
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/basictools/basictoolsplugin.cpp
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/basictools/basictoolsplugin.h
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/extrafilters/extrafilters.json
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/extrafilters/extrafilters.pro
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/extrafilters/extrafiltersplugin.cpp
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/extrafilters/extrafiltersplugin.h
-%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaintplugins/plugandpaintplugins.pro
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictools.json
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictools.pro
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictoolsplugin.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/basictools/basictoolsplugin.h
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafilters.json
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafilters.pro
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafiltersplugin.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/extrafilters/extrafiltersplugin.h
+%%QT_EXAMPLEDIR%%/widgets/tools/plugandpaint/plugins/plugins.pro
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/main.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/regexp.pro
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/regexpdialog.cpp
%%QT_EXAMPLEDIR%%/widgets/tools/regexp/regexpdialog.h
+%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/images/copy.png
+%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/main.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpression.pro
+%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpression.qrc
+%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpressiondialog.cpp
+%%QT_EXAMPLEDIR%%/widgets/tools/regularexpression/regularexpressiondialog.h
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/inifiles/licensepage.ini
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/inifiles/qsa.ini
%%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/locationdialog.cpp
@@ -6262,6 +5992,11 @@
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheeteditor.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheeteditor.h
%%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheeteditor.ui
+%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images.qrc
+%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-airbrush.png
+%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-eraser.png
+%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-felt-marker.png
+%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/images/cursor-pencil.png
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/main.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/mainwindow.cpp
%%QT_EXAMPLEDIR%%/widgets/widgets/tablet/mainwindow.h
@@ -6327,7 +6062,6 @@
%%QT_EXAMPLEDIR%%/xml/htmlinfo/apache_org.html
%%QT_EXAMPLEDIR%%/xml/htmlinfo/htmlinfo.pro
%%QT_EXAMPLEDIR%%/xml/htmlinfo/main.cpp
-%%QT_EXAMPLEDIR%%/xml/htmlinfo/nokia_com.html
%%QT_EXAMPLEDIR%%/xml/htmlinfo/resources.qrc
%%QT_EXAMPLEDIR%%/xml/htmlinfo/simpleexample.html
%%QT_EXAMPLEDIR%%/xml/htmlinfo/trolltech_com.html
@@ -6370,7 +6104,6 @@
%%QT_EXAMPLEDIR%%/xmlpatterns/README
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/doc/src/filetree.qdoc
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.cpp
-%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.desktop
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.h
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/filetree/forms/mainwindow.ui
@@ -6392,7 +6125,6 @@
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/main.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/querymainwindow.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/querymainwindow.h
-%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/recipes.desktop
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/recipes.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/recipes/recipes.qrc
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/doc/src/schema.qdoc
@@ -6408,7 +6140,6 @@
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/main.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/mainwindow.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/mainwindow.h
-%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.desktop
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.qrc
%%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.ui
@@ -6417,7 +6148,6 @@
%%QT_EXAMPLEDIR%%/xmlpatterns/shared/xmlsyntaxhighlighter.h
%%QT_EXAMPLEDIR%%/xmlpatterns/xmlpatterns.pro
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/doc/src/globalVariables.qdoc
-%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globalVariables.desktop
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.cpp
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.gccxml
%%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.html