diff --git a/Mk/Uses/qt-dist.mk b/Mk/Uses/qt-dist.mk index 40b109ee4a9e..d644f0b44d58 100644 --- a/Mk/Uses/qt-dist.mk +++ b/Mk/Uses/qt-dist.mk @@ -1,465 +1,471 @@ # There are three Qt related USES files with different access to Qt. # - qmake: The port requires Qt's qmake to build -- creates the configure target # - auto includes qt.mk # - qt-dist: The port is a port for an part of Qt5 # - auto inclues qt.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # # Usage # qt-dist:[,yes|modulename] # # MAINTAINER: kde@FreeBSD.org .if !defined(_QT_DIST_MK_INCLUDED) _QT_DIST_MK_INCLUDED= qt-dist.mk # Suck in qt.mk and qmake.mk qt_ARGS?= # empty .include "${USESDIR}/qt.mk" qmake_ARGS?= # empty .include "${USESDIR}/qmake.mk" # Supported distribution arguments _QT5_DISTS= 3d activeqt androidextras base charts connectivity datavis3d \ declarative doc gamepad graphicaleffects imageformats location \ lottie macextras multimedia networkauth purchasing quick3d quickcontrols \ quickcontrols2 quicktimeline remoteobjects script scxml sensors serialbus \ serialport speech svg tools translations virtualkeyboard wayland \ webchannel webengine webglplugin websockets webview winextras \ x11extras xmlpatterns _QT_DISTS= ${_QT${_QT_VER}_DISTS} # We only accept one item as an argument. The fetch target further below works # around this. _QT_DIST= # empty . for dist in ${_QT_DISTS:O:u} . if ${qt-dist_ARGS:M${dist}} . if empty(_QT_DIST) _QT_DIST= ${dist} . else IGNORE= cannot be installed: different Qt dists specified via qt-dist:[${qt-dist_ARGS:S/ /,/g}] . endif . endif . endfor # Fall back to sensible defaults for _QT_DIST . if empty(_QT_DIST) . if ${_QT_VER:M5} _QT_DIST= ${PORTNAME} # don't force qt-dist to be set for Qt5 ports which 75% of time are ${PORTNAME} . endif . endif # Check validitiy . if empty(_QT_DISTS:M${_QT_DIST}) IGNORE= Unsupported qt-dist ${_QT_DIST} for qt:${_QT_VER} . endif ################################################################################ # Set standard bsd.port.mk variables LICENSE?= LGPL21 . if !exists(${PKGDIR}/pkg-descr) DESCR?= ${PORTSDIR}/devel/${_QT_RELNAME}/pkg-descr . endif # Stage support. DESTDIRNAME= INSTALL_ROOT . if ${_QT_VER:M5} # KDE maintains a repository with a patched Qt5 distribution. -_KDE_3d= 39 -_KDE_base= 263 -_KDE_charts= 2 -_KDE_connectivity= 1 -_KDE_datavis3d= 2 -_KDE_declarative= 41 -_KDE_gamepad= 2 -_KDE_graphicaleffects= 2 +_KDE_3d= 15 +_KDE_base= 165 +_KDE_charts= 1 +_KDE_connectivity= 5 +_KDE_datavis3d= 0 +_KDE_declarative= 19 +_KDE_gamepad= 0 +_KDE_graphicaleffects= 0 _KDE_imageformats= 3 -_KDE_location= 6 -_KDE_multimedia= 3 -_KDE_networkauth= 2 -_KDE_quick3d= 19 -_KDE_quickcontrols= 3 -_KDE_quickcontrols2= 8 -_KDE_quicktimeline= 3 -_KDE_remoteobjects= 3 -_KDE_script= 4 -_KDE_scxml= 1 -_KDE_sensors= 2 -_KDE_serialbus= 2 -_KDE_serialport= 2 -_KDE_speech= 2 -_KDE_svg= 13 -_KDE_tools= 17 -_KDE_translations= 22 -_KDE_virtualkeyboard= 4 -_KDE_wayland= 37 -_KDE_webchannel= 2 -_KDE_webglplugin= 2 -_KDE_websockets= 4 -_KDE_webview= 2 -_KDE_x11extras= 1 -_KDE_xmlpatterns= 2 +_KDE_location= 3 +_KDE_multimedia= 1 +_KDE_networkauth= 0 +_KDE_quick3d= 1 +_KDE_quickcontrols= 0 +_KDE_quickcontrols2= 5 +_KDE_quicktimeline= 0 +_KDE_remoteobjects= 0 +_KDE_script= 0 +_KDE_script_ORIGIN_TAG= v5.15.10-lts +_KDE_script_VERSION= 5.15.10 +_KDE_scxml= 0 +_KDE_sensors= 0 +_KDE_serialbus= 0 +_KDE_serialport= 0 +_KDE_speech= 1 +_KDE_svg= 10 +_KDE_tools= 1 +_KDE_translations= 2 +_KDE_virtualkeyboard= 3 +_KDE_wayland= 39 +_KDE_webchannel= 3 +_KDE_webglplugin= 0 +_KDE_websockets= 3 +_KDE_webview= 0 +_KDE_x11extras= 0 +_KDE_xmlpatterns= 0 . if defined(_KDE_${_QT_DIST}) # KDE patched Qt parts QT5_KDE_PATCH= p${_KDE_${_QT_DIST}} +_KDE_${_QT_DIST}_VERSION?= ${_QT_VERSION} +_KDE_${_QT_DIST}_ORIGIN_TAG?= v${_KDE_${_QT_DIST}_VERSION}-lts-lgpl MASTER_SITES= LOCAL/tcberner/KDE/Qt/${_QT_VERSION} DISTNAME= ${_QT_DIST:S,^,kde-qt,:S,$,-${DISTVERSION},} COMMENT+= (KDE patched) . else # non KDE patched Qt parts QT5_KDE_PATCH= # MASTER_SITES= ${MASTER_SITE_QT} MASTER_SITE_SUBDIR?= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-everywhere-src-${DISTVERSION},} . endif DISTFILES= ${DISTNAME:S,$,${EXTRACT_SUFX},} DIST_SUBDIR= KDE/Qt/${_QT_VERSION} # Qt (at least when used with qmake) has a tendency to overlink: some libraries # have dependencies on others in the mkspec configurations and the latter are # always passed to the linker even if they are not actually used. By passing # --as-needed to the linker by default when building the Qt ports we do not # have to declare a lot of unnecessary dependencies in USE_QT5. LDFLAGS+= -Wl,--as-needed . if ${.TARGETS:Mmakesum} || ${.TARGETS:Mfetch} && \ defined(DISABLE_SIZE) && defined(NO_CHECKSUM) # Ensure that the "makesum" target (with its inner "fetch" one) uses # devel/qt*/distinfo for every port. . endif # Qt5's tarballs are xz compressed. . if empty(USES:Mtar) EXTRACT_SUFX?= .tar.xz . endif . if ${_QT_DIST} == "base" && ${PORTNAME} != "qmake" # Qt configure requires pkg-config to detect dependencies. .include "${USESDIR}/pkgconfig.mk" . endif # -nomake is only used by qtbase's configure script. # Other ports from other Qt modules will automatically build examples and # tests if the directories exist because of mkspecs/features/qt_parts.prf. EXTRACT_AFTER_ARGS?= ${DISTNAME:S,$,/examples,:S,^,--exclude ,} \ ${DISTNAME:S,$,/tests,:S,^,--exclude ,} \ --no-same-owner --no-same-permissions . endif # ! ${_QT_VER:M5} CONFIGURE_ENV+= MAKE="${MAKE:T}" CONFIGURE_ARGS+= -opensource -confirm-license \ -no-pch \ -prefix ${PREFIX} \ -bindir ${PREFIX}/${QT_BINDIR_REL} \ -headerdir ${PREFIX}/${QT_INCDIR_REL} \ -libdir ${PREFIX}/${QT_LIBDIR_REL} \ -plugindir ${PREFIX}/${QT_PLUGINDIR_REL} \ -importdir ${PREFIX}/${QT_IMPORTDIR_REL} \ -datadir ${PREFIX}/${QT_DATADIR_REL} \ -docdir ${PREFIX}/${QT_DOCDIR_REL} \ -translationdir ${PREFIX}/${QT_L10NDIR_REL} \ -sysconfdir ${PREFIX}/${QT_ETCDIR_REL} . if ${_QT_VER:M5} CONFIGURE_ARGS+= -nomake examples -nomake tests \ -platform ${QMAKESPECNAME} \ -archdatadir ${PREFIX}/${QT_ARCHDIR_REL} \ -libexecdir ${PREFIX}/${QT_LIBEXECDIR_REL} \ -qmldir ${PREFIX}/${QT_QMLDIR_REL} \ -examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL} \ -testsdir ${PREFIX}/${QT_TESTDIR_REL} . if ${ARCH} == i386 && empty(MACHINE_CPU:Msse2) CONFIGURE_ARGS+= -no-sse2 . endif # Work around a bug in current binutils, where the gold linker creates # duplicate symbols. See pr 218187. Disable the gold-linker for Qt5 ports. CONFIGURE_ARGS+= -no-use-gold-linker # Pass -recheck-all so that multiple calls to the configure script really # re-run all checks. CONFIGURE_ARGS+= -recheck-all . endif # ${_QT_VER:M5} . if defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) WITH_DEBUG= yes STRIP= # It's done prior to bsd.qt.mk inclusion. CONFIGURE_ARGS+= -debug -separate-debug-info # Override configuration in global qconfig.pri. QMAKE_ARGS+= QT_CONFIG+="debug separate_debug_info" \ QT_CONFIG-="release" . else CONFIGURE_ARGS+= -release -no-separate-debug-info QMAKE_ARGS+= QT_CONFIG+="release" \ QT_CONFIG-="debug separate_debug_info" . endif # defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) . if defined(WANT_QT_VERBOSE_CONFIGURE) CONFIGURE_ARGS+= -verbose . endif . if ${_QT_DIST} == "base" _EXTRA_PATCHES_QT5= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_create__cmake.prf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_qt__module.prf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_common_bsd_bsd.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-clang_qmake.conf . if ${ARCH:Mmips*} || (${ARCH:Mpowerpc*} && !exists(/usr/bin/clang)) || ${ARCH} == sparc64 _EXTRA_PATCHES_QT5+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_g++-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_gcc-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-g++_qmake.conf USE_GCC= yes . elif ${ARCH} == armv7 || ${ARCH} == powerpc _EXTRA_PATCHES_QT5+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_g++-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_gcc-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-g++_qmake.conf . endif EXTRA_PATCHES?= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-configure \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-sync.profiles \ ${_EXTRA_PATCHES_QT5} . endif # ${_QT_DIST} == "base" # Override settings installed in qconfig.h and *.pri files. The flags will be # installed along with the port, but have to be passed as arguments while # building the port itself. Flags prefixed with "-" (e.g., "-CUPS" and "-cups") # are needed to disable some features. . if !defined(${QT_MODNAME}) || empty(${QT_MODNAME}) # Used for both qconfig-*.h and qt_config_*.pri; it can't be empty. QT_MODNAME= ${PORTNAME} . endif QT_DEFINES?= # For qconfig.h flags (without "QT_" prefix). QT_CONFIG?= # For *.pri files QT_CONFIG flags. . if ${QT_DEFINES} QMAKE_ARGS+= DEFINES+="${QT_DEFINES:O:u:C/^([^-])/QT_\1/:C/^-/QT_NO_/:O}" . endif # ${QT_DEFINES} PKGDEINSTALL= ${WRKDIR}/pkg-deinstall PKGINSTALL= ${WRKDIR}/pkg-install . if ${QT_CONFIG:N-*} QMAKE_ARGS+= QT_CONFIG+="${QT_CONFIG:N-*:O:u}" . endif . if ${QT_CONFIG:M-*} QMAKE_ARGS+= QT_CONFIG-="${QT_CONFIG:M-*:O:u:C/^-//}" . endif PLIST_SUB+= SHORTVER=${_QT_VERSION:R} \ FULLVER=${_QT_VERSION:C/-.*//} # Handle additional PLIST directories, which should only be used for Qt-dist ports. . for dir in CMAKE ETC # Export QT_CMAKEDIR and QT_ETCDIR. PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}" . endfor . if ${_QT_VER:M5} . if ${_QT_DIST} == "base" # qtbase requires some tools to be symlinked to the build directory. _QT_TOOLS= # empty . if ${PORTNAME} != "qmake" _QT_TOOLS+= ${QMAKE} . endif . if ${PORTNAME} != "buildtools" _QT_TOOLS+= ${MOC} ${RCC} . endif . if ${PORTNAME} != "qdoc" _QT_TOOLS+= qdoc . endif . if ${PORTNAME} != "dbus" _QT_TOOLS+= qdbuscpp2xml qdbusxml2cpp . endif . if ${PORTNAME} != "widgets" _QT_TOOLS+= ${UIC} . endif # The list of QtBase components that need to be linked into WRKSRC/lib for # other QtBase ports. See below. _QT5_BASE= core dbus gui network sql widgets _QT5_ADDITIONAL_LINK?= # Ensure definition . if ${_QT_VER:M5} post-patch: gcc-post-patch gcc-post-patch: ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mkspecs/common/gcc-base.conf \ ${WRKSRC}/mkspecs/freebsd-g++/qmake.conf ${REINPLACE_CMD} 's|%%GCC_DEFAULT%%|${GCC_DEFAULT}|g' \ ${WRKSRC}/mkspecs/common/gcc-base.conf \ ${WRKSRC}/mkspecs/common/g++-base.conf \ ${WRKSRC}/mkspecs/common/bsd/bsd.conf \ ${WRKSRC}/mkspecs/freebsd-g++/qmake.conf . endif pre-configure: qtbase-pre-configure qtbase-pre-configure: . for tool in ${_QT_TOOLS} @${TEST} -e ${QT_BINDIR}/${tool:T} && \ ${LN} -sf ${QT_BINDIR}/${tool:T} ${CONFIGURE_WRKSRC}/bin/${tool:T} || \ ${TRUE} . endfor # The following is a fix for the inplace upgrade problem we faced (see # QTBUG-40825 and ports bugs 194088, 195105 and 198720) previously, # which previously was adressed by making sure, that ${LOCALBASE}/lib, which # would often gets added by pkgconf for the dependencies, was passed after # ${WRKSRC}/lib. # * We fix the inplace upgrade problem by moving the Qt5 libraries into # ${LOCALBASE}/lib/qt5. Therefore a -L${LOCALBASE}/lib does no harm anymore. # * However, this means, that the ports belonging to the split up QtBase package # now no longer can find their depending QtBase libraries. We fix this by # linking these into ${CONFIGURE_WRKSRC}/lib if the given QtBase port depends # on them. . if ${_QT_DIST:Mbase} . for basedep in ${_QT5_BASE} . if ! empty(USE_QT:M${basedep}) ${LN} -sf ${QT_LIBDIR}/${${basedep}_LIB} ${CONFIGURE_WRKSRC}/lib . endif . endfor . endif # # **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE **** # # Add ${LOCALBASE}/lib to DEFAULT_LIBDIRS, which we use to filter out # certain paths from pkg-config calls (see the explanation in # devel/qt5/files/patch-configure) as well as for setting # QMAKE_DEFAULT_LIBDIR in mkspecs/qconfig.pri. Part of the solution for # ports/194088. post-patch: qtbase-post-patch qtbase-post-patch: ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mkspecs/common/bsd/bsd.conf \ ${WRKSRC}/mkspecs/freebsd-clang/qmake.conf . if ${PORTNAME} != "qmake" _QMAKE= ${CONFIGURE_WRKSRC}/bin/qmake . endif . endif pre-configure: qt5-pre-configure qt5-pre-configure: # Qt 5.3.2 introduced a check in mkspecs/features/create_cmake.prf that # requires tests/auto/cmake to be present, otherwise the configure stage will # fail. # Since we cannot extract tests/auto/cmake/ and exclude tests/ at the same # time, we have to disable the check in a cache file (the only way to get this # value through to the configure script in qtbase). ${MKDIR} ${CONFIGURE_WRKSRC} ${ECHO_CMD} 'CMAKE_MODULE_TESTS = -' > ${CONFIGURE_WRKSRC}/.qmake.cache # configure will run syncqt.pl if it finds a .git entry in the working directory touch ${WRKSRC}/.git # As the patch collection was created after a version bump, all module verisions # are tagged as 5.15.3 touch ${WRKSRC}/.qmake.conf # easier than to -f before the sed ${REINPLACE_CMD} -e '/MODULE_VERSION/s|5\.15\.[0-9]|${_QT_VERSION}|g' \ ${WRKSRC}/.qmake.conf # **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE **** # # We piggyback on QMAKE_LIBDIR_FLAGS to make sure -L${WRKSRC}/lib is passed to # the linker before -L/usr/local/lib. By default, the opposite happens, which # is a problem when a Qt port is being upgraded, since an existing library # would end up being picked up instead of those built in ${WRKSRC}/lib. Since # qmake appends the value of QMAKE_LIBDIR to QMAKE_LIBDIR_FLAGS, we can use the # latter to get the linker path order right. qmake is smart enough to strip # occurrences of ${WRKSRC}/lib from .pc and .prl files when installing them. # See QTBUG-40825 and ports bugs 194088, 195105 and 198720. ${ECHO_CMD} 'QMAKE_LIBDIR_FLAGS = -L${CONFIGURE_WRKSRC}/lib' >> ${CONFIGURE_WRKSRC}/.qmake.cache ${ECHO_CMD} 'QMAKE_DEFAULT_LIBDIRS += ${LOCALBASE}/lib /usr/lib /lib' >> ${CONFIGURE_WRKSRC}/.qmake.cache ${ECHO_CMD} 'QMAKE_DEFAULT_INCDIRS += ${LOCALBASE}/include /usr/include' >> ${CONFIGURE_WRKSRC}/.qmake.cache # Allow linking of further libraries to the configure directory. . if !empty(_QT5_ADDITIONAL_LINK) . for dep in ${_QT5_ADDITIONAL_LINK} ${MKDIR} ${CONFIGURE_WRKSRC}/lib . if ! empty(USE_QT:M${dep}) ${LN} -sf ${QT_LIBDIR}/${qt-${dep}_LIB} ${CONFIGURE_WRKSRC}/lib . endif . endfor . endif . if ${QT_DEFINES:N-*} # There **are** defines, so we need to **add** this port to the # qconfig-modules.h header; make @need_add empty and comment out # the @need_remove lines in the script (see below in qt-post-install). # If there are no defines, do it the other way around. _sub_need_add= _sub_need_remove= \#\# . else _sub_need_add= \#\# _sub_need_remove= . endif # If a port installs Qt version-specific binaries (e.g. "designer" which # existed as a Qt4 application and exists as a Qt5 application and will # probably be a Qt6 application) the port should set `QT_BINARIES=yes`. . if defined(QT_BINARIES) _sub_need_bin= . else _sub_need_bin= \#\# . endif . if ${QT_MODNAME} == core # QtCore (e.g. devel/qt5-core) is the one that starts the header, # and is also the one that can clean it up when deinstalled. _sub_need_clean= . else _sub_need_clean= \#\# . endif post-install: qt-post-install qt-post-install: # We can't use SUB_FILES with the shared pkg-change.in. # We need it to be a script instead of a group of @unexecs. # Do two steps of processing -- introducing the Qt variables, # and replacing the @tags with comment (or nothing) characters # according to the port's settings -- in one sed and write # to pkg-change.tmp. Then split it up and minify for the # install and deinstall step. @${SED} -e 's,%%QT_MODNAME%%,${QT_MODNAME},g' \ -e 's,%%QT_INCDIR%%,${QT_INCDIR},g' \ -e 's,@need_add,${_sub_need_add},' \ -e 's,@need_remove,${_sub_need_remove},' \ -e 's,@need_clean,${_sub_need_clean},' \ -e 's,@need_bin,${_sub_need_bin},' \ ${PORTSDIR}/devel/${_QT_RELNAME}/${FILESDIR:T}/pkg-change.in > \ ${WRKDIR}/pkg-change.tmp @${SED} -e 's,@install,,' -e 's,@deinstall,##,' ${WRKDIR}/pkg-change.tmp | ${SED} -e '/##/d' > ${PKGINSTALL} @${SED} -e 's,@install,##,' -e 's,@deinstall,,' ${WRKDIR}/pkg-change.tmp | ${SED} -e '/##/d' > ${PKGDEINSTALL} # Drop all leading spaces in the script, to minify @${REINPLACE_CMD} 's/^ *//' ${PKGINSTALL} ${PKGDEINSTALL} . if ${QT_DEFINES:N-*} @${MKDIR} ${STAGEDIR}${QT_INCDIR}/QtCore/modules @${ECHO_CMD} -n \ > ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h . for def in ${QT_DEFINES:N-*:O:u:C/=.*$//} @${ECHO_CMD} "#if !defined(QT_${def}) && !defined(QT_NO_${def})" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h ${ECHO_CMD} "# define QT_${def}" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h @${ECHO_CMD} "#endif" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h @${ECHO_CMD} \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h . endfor @${ECHO_CMD} "${PREFIX}/${QT_INCDIR_REL}/QtCore/modules/qconfig-${QT_MODNAME}.h" \ >> ${TMPPLIST} . endif # ${QT_DEFINES:N-*} . if ${QT_CONFIG:N-*} @${MKDIR} ${STAGEDIR}${QT_MKSPECDIR}/modules ${ECHO_CMD} "QT_CONFIG += ${QT_CONFIG:N-*:O:u}" \ > ${STAGEDIR}${QT_MKSPECDIR}/modules/qt_config_${QT_MODNAME}.pri @${ECHO_CMD} "${PREFIX}/${QT_MKSPECDIR_REL}/modules/qt_config_${QT_MODNAME}.pri" \ >> ${TMPPLIST} . endif # ${QT_CONFIG:N-*} . endif # M5 qt-create-kde-distfile: ${SH} ${PORTSDIR}/devel/${_QT_RELNAME}/files/create_kde-qt_release.sh \ ${_QT_DIST} \ - ${DISTDIR}/${DIST_SUBDIR} + ${DISTDIR}/${DIST_SUBDIR} \ + ${_KDE_${_QT_DIST}_VERSION} \ + ${_KDE_${_QT_DIST}_ORIGIN_TAG} .endif # defined(_QT_DIST_MK_INCLUDED) diff --git a/Mk/Uses/qt.mk b/Mk/Uses/qt.mk index 7cecb91cb169..659dda05c8c8 100644 --- a/Mk/Uses/qt.mk +++ b/Mk/Uses/qt.mk @@ -1,409 +1,409 @@ # There are three Qt related USES files with different access to Qt. # - qmake: The port requires Qt's qmake to build -- creates the configure target # - auto includes qt.mk # - qt-dist: The port is a port for a part of Qt5 # - auto includes qt.mk and qmake.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # Usage: # USES=qt:[,no_env] # # Versions: 5 # # Port variables: # USE_QT - List of Qt modules to depend on, with optional '_build' # and '_run' suffixes. Define it empty to include this file # without depending on Qt ports. # # MAINTAINER: kde@FreeBSD.org .if !defined(_QT_MK_INCLUDED) _QT_MK_INCLUDED= qt.mk # Qt versions currently supported by the framework. _QT_SUPPORTED?= 5 -QT5_VERSION?= 5.15.2 +QT5_VERSION?= 5.15.5 # We accept the Qt version to be passed by either or all of the three mk files. . if empty(qt_ARGS) && empty(qmake_ARGS) && empty(qt-dist_ARGS) IGNORE= qt needs a version (${_QT_SUPPORTED}) passed via qt, qmake or qt-dist. . endif # Gather all the args together _QT_GLOBAL_ARGS= ${qt_ARGS} ${qmake_ARGS} ${qt-dist_ARGS} # Check fo the Qt version to be used _QT_VER= # empty . for ver in ${_QT_SUPPORTED:O:u} . if ${_QT_GLOBAL_ARGS:M${ver}} . if !defined(_QT_VERSION) _QT_VER= ${ver} . else . if ${_QT_VERSION} != ${ver} IGNORE?= cannot be installed: different Qt versions specified via qt:[${_QT_SUPPORTED:S/ //g}], qmake:[${_QT_SUPPORTED:S/ //g}] a qt-dist:[${_QT_SUPPORTED:S/ //g}] . endif . endif . endif . endfor . if empty(_QT_VER) IGNORE?= cannot decide what Qt version to use: specify one via qt:[${_QT_SUPPORTED:S/ //g}], qmake:[${_QT_SUPPORTED:S/ //g}] or qt-dist:[${_QT_SUPPORTED:S/ //g}] . endif # Set the shortcuts used from now on _QT_RELNAME= qt${_QT_VER} _QT_VERSION= ${QT${_QT_VER}_VERSION} # A wrapper (qtchooser) is used to invoke binaries. QT_BINDIR_REL?= ${QT_ARCHDIR_REL}/bin QT_INCDIR_REL?= include/${_QT_RELNAME} QT_LIBDIR_REL?= lib/${_QT_RELNAME} QT_ARCHDIR_REL?= ${QT_LIBDIR_REL} QT_PLUGINDIR_REL?= ${QT_ARCHDIR_REL}/plugins QT_LIBEXECDIR_REL?= libexec/${_QT_RELNAME} QT_IMPORTDIR_REL?= ${QT_ARCHDIR_REL}/imports QT_QMLDIR_REL?= ${QT_ARCHDIR_REL}/qml QT_DATADIR_REL?= share/${_QT_RELNAME} QT_DOCDIR_REL?= share/doc/${_QT_RELNAME} QT_L10NDIR_REL?= ${QT_DATADIR_REL}/translations QT_ETCDIR_REL?= etc/xdg QT_EXAMPLEDIR_REL?= share/examples/${_QT_RELNAME} QT_TESTDIR_REL?= ${QT_DATADIR_REL}/tests QT_CMAKEDIR_REL?= lib/cmake # Not customizable. QT_MKSPECDIR_REL= ${QT_ARCHDIR_REL}/mkspecs _QT_LIBVER= ${_QT_VERSION:R:R} LCONVERT?= ${QT_BINDIR}/lconvert LRELEASE?= ${QT_BINDIR}/lrelease LUPDATE?= ${QT_BINDIR}/lupdate MOC?= ${QT_BINDIR}/moc RCC?= ${QT_BINDIR}/rcc UIC?= ${QT_BINDIR}/uic QMAKE?= ${QT_BINDIR}/qmake QCOLLECTIONGENERATOR?= ${QT_BINDIR}/qcollectiongenerator QHELPGENERATOR?= ${QT_BINDIR}/qhelpgenerator # Needed to redefine the qmake target for internal Qt configuration. _QMAKE?= ${QMAKE} QMAKESPECNAME?= freebsd-${QMAKE_COMPILER} QMAKESPEC?= ${QT_MKSPECDIR}/${QMAKESPECNAME} # The whole Qt distribution should be built with the same compiler, but it's # better to support custom settings. Dereferencing the detection allows to # avoid forking a shell on each inclusion of this file, and to catch any CXX # customization (via USE_GCC, etc.). QMAKE_COMPILER= $$(ccver="$$(${CXX} --version)"; case "$$ccver" in *clang*) echo clang ;; *) echo g++ ;; esac) . for dir in BIN INC LIB ARCH PLUGIN LIBEXEC IMPORT \ QML DATA DOC L10N ETC EXAMPLE TEST MKSPEC \ CMAKE QT_${dir}DIR= ${PREFIX}/${QT_${dir}DIR_REL} # Export all directories to the plist substituion for QT_DIST ports. # For the others, exclude QT_CMAKEDIR and QT_ETCDIR. . if ${dir:NCMAKE} && ${dir:NETC} PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}" . endif . endfor # Pass the chosen Qt version to the environment for qtchooser. CONFIGURE_ENV+= QT_SELECT=${_QT_RELNAME} MAKE_ENV+= QT_SELECT=${_QT_RELNAME} # Make sure both the installed mkspecs as well as the ones being built are # found, with the ones from the port being built having preference. CONFIGURE_ENV+= QMAKEMODULES="${WRKSRC}/mkspecs/modules:${LOCALBASE}/${QT_MKSPECDIR_REL}/modules" MAKE_ENV+= QMAKEMODULES="${WRKSRC}/mkspecs/modules:${LOCALBASE}/${QT_MKSPECDIR_REL}/modules" _USES_POST+= qt .endif # _QT_MK_INCLUDED # ============================================================================= # # ============================================================================= .if defined(_POSTMKINCLUDED) && !defined(_QT_MK_POST_INCLUDED) _QT_MK_POST_INCLUDED= qt.mk # The Qt components supported by qt.mk: list of shared, and version specific ones _USE_QT_ALL= assistant dbus declarative declarative-test designer doc gui help \ imageformats l10n linguist linguisttools multimedia \ network opengl pixeltool qdbusviewer qmake script \ scripttools sql sql-mysql sql-odbc sql-pgsql \ sql-sqlite2 sql-sqlite3 svg testlib webkit \ xml xmlpatterns . if ${ARCH} == amd64 || ${ARCH} == i386 _USE_QT_ALL+= sql-ibase . endif _USE_QT5_ONLY= 3d buildtools charts concurrent connectivity \ core datavis3d diag examples gamepad \ graphicaleffects location networkauth paths phonon4 plugininfo printsupport \ qdbus qdoc qdoc-data qev quick3d quickcontrols quickcontrols2 \ quicktimeline remoteobjects scxml sensors serialbus serialport speech \ sql-tds uiplugin uitools virtualkeyboard wayland webchannel webglplugin \ webengine websockets websockets-qml webview widgets x11extras # Dependency tuples: _LIB should be preferred if possible. qt-3d_PORT= graphics/${_QT_RELNAME}-3d qt-3d_LIB= libQt${_QT_LIBVER}3DCore.so qt-assistant_PORT= devel/${_QT_RELNAME}-assistant qt-assistant_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/assistant # Always build with *this* version's buildtools qt-buildtools_PORT= devel/${_QT_RELNAME}-buildtools -qt-buildtools_PATH= ${_QT_RELNAME}-buildtools>=${_QT_VERSION} +qt-buildtools_PATH= ${_QT_RELNAME}-buildtools>=${_QT_VERSION:R} qt-charts_PORT= x11-toolkits/${_QT_RELNAME}-charts qt-charts_LIB= libQt${_QT_LIBVER}Charts.so qt-concurrent_PORT= devel/${_QT_RELNAME}-concurrent qt-concurrent_LIB= libQt${_QT_LIBVER}Concurrent.so qt-connectivity_PORT= comms/${_QT_RELNAME}-connectivity qt-connectivity_LIB= libQt${_QT_LIBVER}Bluetooth.so qt-core_PORT= devel/${_QT_RELNAME}-core qt-core_LIB= libQt${_QT_LIBVER}Core.so qt-datavis3d_PORT= x11-toolkits/${_QT_RELNAME}-datavis3d qt-datavis3d_LIB= libQt${_QT_LIBVER}DataVisualization.so qt-dbus_PORT= devel/${_QT_RELNAME}-dbus qt-dbus_LIB= libQt${_QT_LIBVER}DBus.so qt-declarative_PORT= x11-toolkits/${_QT_RELNAME}-declarative qt-declarative_LIB= libQt${_QT_LIBVER}Qml.so qt-declarative-test_PORT= x11-toolkits/${_QT_RELNAME}-declarative-test qt-declarative-test_LIB= libQt${_QT_LIBVER}QuickTest.so qt-designer_PORT= devel/${_QT_RELNAME}-designer qt-designer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/designer qt-diag_PORT= sysutils/${_QT_RELNAME}-qtdiag qt-diag_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtdiag qt-doc_PORT= misc/${_QT_RELNAME}-doc qt-doc_PATH= ${_QT_RELNAME}-doc>=${_QT_VERSION:R:R} qt-examples_PORT= misc/${_QT_RELNAME}-examples qt-examples_PATH= ${_QT_RELNAME}-examples>=${_QT_VERSION:R:R} qt-gamepad_PORT= x11-toolkits/${_QT_RELNAME}-gamepad qt-gamepad_LIB= libQt${_QT_LIBVER}Gamepad.so qt-graphicaleffects_PORT= graphics/${_QT_RELNAME}-graphicaleffects qt-graphicaleffects_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtGraphicalEffects/qmldir qt-gui_PORT= x11-toolkits/${_QT_RELNAME}-gui qt-gui_LIB= libQt${_QT_LIBVER}Gui.so qt-help_PORT= devel/${_QT_RELNAME}-help qt-help_LIB= libQt${_QT_LIBVER}Help.so qt-imageformats_PORT= graphics/${_QT_RELNAME}-imageformats qt-imageformats_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/imageformats/libqtiff.so qt-linguist_PORT= devel/${_QT_RELNAME}-linguist qt-linguist_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/linguist qt-linguisttools_PORT= devel/${_QT_RELNAME}-linguisttools qt-linguisttools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/lrelease qt-location_PORT= devel/${_QT_RELNAME}-location qt-location_LIB= libQt${_QT_LIBVER}Location.so qt-l10n_PORT= misc/${_QT_RELNAME}-l10n qt-l10n_PATH= ${_QT_RELNAME}-l10n>=${_QT_VERSION:R:R} qt-multimedia_PORT= multimedia/${_QT_RELNAME}-multimedia qt-multimedia_LIB= libQt${_QT_LIBVER}Multimedia.so qt-network_PORT= net/${_QT_RELNAME}-network qt-network_LIB= libQt${_QT_LIBVER}Network.so qt-networkauth_PORT= net/${_QT_RELNAME}-networkauth qt-networkauth_LIB= libQt${_QT_LIBVER}NetworkAuth.so qt-opengl_PORT= graphics/${_QT_RELNAME}-opengl qt-opengl_LIB= libQt${_QT_LIBVER}OpenGL.so qt-paths_PORT= sysutils/${_QT_RELNAME}-qtpaths qt-paths_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtpaths qt-pixeltool_PORT= graphics/${_QT_RELNAME}-pixeltool qt-pixeltool_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/pixeltool qt-phonon4_PORT= multimedia/phonon qt-phonon4_LIB= libphonon4${_QT_RELNAME}.so qt-plugininfo_PORT= sysutils/${_QT_RELNAME}-qtplugininfo qt-plugininfo_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtplugininfo qt-printsupport_PORT= print/${_QT_RELNAME}-printsupport qt-printsupport_LIB= libQt${_QT_LIBVER}PrintSupport.so qt-qdbus_PORT= devel/${_QT_RELNAME}-qdbus qt-qdbus_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbus qt-qdbusviewer_PORT= devel/${_QT_RELNAME}-qdbusviewer qt-qdbusviewer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbusviewer qt-qdoc_PORT= devel/${_QT_RELNAME}-qdoc qt-qdoc_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdoc qt-qdoc-data_PORT= devel/${_QT_RELNAME}-qdoc-data qt-qdoc-data_PATH= ${LOCALBASE}/${QT_DOCDIR_REL}/global/config.qdocconf qt-qev_PORT= x11/${_QT_RELNAME}-qev qt-qev_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qev # Always build with *this* version's qmake qt-qmake_PORT= devel/${_QT_RELNAME}-qmake -qt-qmake_PATH= ${_QT_RELNAME}-qmake>=${_QT_VERSION} +qt-qmake_PATH= ${_QT_RELNAME}-qmake>=${_QT_VERSION:R} qt-quick3d_PORT= x11-toolkits/${_QT_RELNAME}-quick3d qt-quick3d_LIB= libQt${_QT_LIBVER}Quick3D.so qt-quickcontrols_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols qt-quickcontrols_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtQuick/Controls/qmldir qt-quickcontrols2_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols2 qt-quickcontrols2_LIB= libQt${_QT_LIBVER}QuickControls2.so qt-quicktimeline_PORT= x11-toolkits/${_QT_RELNAME}-quicktimeline qt-quicktimeline_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtQuick/Timeline/libqtquicktimelineplugin.so qt-remoteobjects_PORT= devel/${_QT_RELNAME}-remoteobjects qt-remoteobjects_LIB= libQt${_QT_LIBVER}RemoteObjects.so qt-sensors_PORT= comms/${_QT_RELNAME}-sensors qt-sensors_LIB= libQt${_QT_LIBVER}Sensors.so qt-script_PORT= devel/${_QT_RELNAME}-script qt-script_LIB= libQt${_QT_LIBVER}Script.so qt-scripttools_PORT= devel/${_QT_RELNAME}-scripttools qt-scripttools_LIB= libQt${_QT_LIBVER}ScriptTools.so qt-scxml_PORT= devel/${_QT_RELNAME}-scxml qt-scxml_LIB= libQt${_QT_LIBVER}Scxml.so qt-serialbus_PORT= comms/${_QT_RELNAME}-serialbus qt-serialbus_LIB= libQt${_QT_LIBVER}SerialBus.so qt-serialport_PORT= comms/${_QT_RELNAME}-serialport qt-serialport_LIB= libQt${_QT_LIBVER}SerialPort.so qt-speech_PORT= accessibility/${_QT_RELNAME}-speech qt-speech_LIB= libQt${_QT_LIBVER}TextToSpeech.so qt-sql_PORT= databases/${_QT_RELNAME}-sql qt-sql_LIB= libQt${_QT_LIBVER}Sql.so qt-sql-pgsql_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlpsql.so qt-sql-sqlite3_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlite.so . for db in ibase mysql odbc pgsql sqlite2 sqlite3 tds qt-sql-${db}_PORT= databases/${_QT_RELNAME}-sqldrivers-${db} qt-sql-${db}_PATH?= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsql${db:C/^sql//}.so . endfor qt-svg_PORT= graphics/${_QT_RELNAME}-svg qt-svg_LIB= libQt${_QT_LIBVER}Svg.so qt-testlib_PORT= devel/${_QT_RELNAME}-testlib qt-testlib_LIB= libQt${_QT_LIBVER}Test.so qt-uiplugin_PORT= x11-toolkits/${_QT_RELNAME}-uiplugin qt-uiplugin_PATH= ${LOCALBASE}/${QT_INCDIR_REL}/QtUiPlugin/QtUiPlugin qt-uitools_PORT= devel/${_QT_RELNAME}-uitools qt-uitools_PATH= ${LOCALBASE}/${QT_LIBDIR_REL}/libQt${_QT_LIBVER}UiTools.a qt-virtualkeyboard_PORT= x11-toolkits/${_QT_RELNAME}-virtualkeyboard qt-virtualkeyboard_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/platforminputcontexts/libqtvirtualkeyboardplugin.so qt-wayland_PORT= graphics/${_QT_RELNAME}-wayland qt-wayland_LIB= libQt${_QT_LIBVER}WaylandClient.so qt-webchannel_PORT= www/${_QT_RELNAME}-webchannel qt-webchannel_LIB= libQt${_QT_LIBVER}WebChannel.so qt-webengine_PORT= www/${_QT_RELNAME}-webengine qt-webengine_LIB= libQt${_QT_LIBVER}WebEngine.so qt-webglplugin_PORT= www/${_QT_RELNAME}-webglplugin qt-webglplugin_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/platforms/libqwebgl.so qt-websockets_PORT= www/${_QT_RELNAME}-websockets qt-websockets_LIB= libQt${_QT_LIBVER}WebSockets.so qt-websockets-qml_PORT= www/${_QT_RELNAME}-websockets-qml qt-websockets-qml_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtWebSockets/qmldir qt-webkit_PORT= www/${_QT_RELNAME}-webkit qt-webkit_LIB= libQt${_QT_LIBVER}WebKit.so qt-webview_PORT= www/${_QT_RELNAME}-webview qt-webview_LIB= libQt${_QT_LIBVER}WebView.so qt-widgets_PORT= x11-toolkits/${_QT_RELNAME}-widgets qt-widgets_LIB= libQt${_QT_LIBVER}Widgets.so qt-x11extras_PORT= x11/${_QT_RELNAME}-x11extras qt-x11extras_LIB= libQt${_QT_LIBVER}X11Extras.so qt-xml_PORT= textproc/${_QT_RELNAME}-xml qt-xml_LIB= libQt${_QT_LIBVER}Xml.so qt-xmlpatterns_PORT= textproc/${_QT_RELNAME}-xmlpatterns qt-xmlpatterns_LIB= libQt${_QT_LIBVER}XmlPatterns.so # Actually add the dependencies to the proper lists. _USE_QT_ALL+= ${_USE_QT${_QT_VER}_ONLY} _USE_QT= ${USE_QT} # Iterate through components deprived of suffix. . for component in ${_USE_QT:O:u:C/_(build|run)$//} # Check that the component is valid. . if ${_USE_QT_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(qt-${component}_PORT) && (defined(qt-${component}_PATH) || defined(qt-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == "" qt-${component}_TYPE= # empty . if ${_USE_QT:M${component}_build} != "" qt-${component}_TYPE+= build . endif . if ${_USE_QT:M${component}_run} != "" qt-${component}_TYPE+= run . endif . endif # ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(qt-${component}_TYPE) qt-${component}_TYPE= build run . endif # Set real dependencies. . if defined(qt-${component}_LIB) && ${qt-${component}_TYPE:Mbuild} && ${qt-${component}_TYPE:Mrun} LIB_DEPENDS+= ${qt-${component}_LIB}:${qt-${component}_PORT} . else qt-${component}_PATH?= ${QT_LIBDIR}/${qt-${component}_LIB} qt-${component}_DEPENDS= ${qt-${component}_PATH}:${qt-${component}_PORT} . if ${qt-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${qt-${component}_DEPENDS} . endif . if ${qt-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${qt-${component}_DEPENDS} . endif . endif # ${qt-${component}_LIB} && ${qt-${component}_TYPE:Mbuild} && ${qt-${component}_TYPE:Mrun} . endif # defined(qt-${component}_PORT) && defined(qt-${component}_PATH) . else # ! ${_USE_QT_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_QT component '${component}' . endif # ${_USE_QT_ALL:M${component}} != "" . endfor .endif # defined(_QT_MK_POST_INCLUDED) diff --git a/accessibility/qt5-speech/distinfo b/accessibility/qt5-speech/distinfo index dc27ac3c85c7..6c6adc0ee36e 100644 --- a/accessibility/qt5-speech/distinfo +++ b/accessibility/qt5-speech/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423750 -SHA256 (KDE/Qt/5.15.2/kde-qtspeech-5.15.2p2.tar.xz) = 83f3543ef261b7603615fd07a3f9d938ba1377aa2a955e449b0cc87efd543989 -SIZE (KDE/Qt/5.15.2/kde-qtspeech-5.15.2p2.tar.xz) = 80208 +TIMESTAMP = 1656427309 +SHA256 (KDE/Qt/5.15.5/kde-qtspeech-5.15.5p1.tar.xz) = 46ac06e9a8761375e0588ef79b201147ce9129e5614160f59081f91a6342da13 +SIZE (KDE/Qt/5.15.5/kde-qtspeech-5.15.5p1.tar.xz) = 80124 diff --git a/comms/qt5-connectivity/distinfo b/comms/qt5-connectivity/distinfo index bd6f9d81063d..19157b7ba938 100644 --- a/comms/qt5-connectivity/distinfo +++ b/comms/qt5-connectivity/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423751 -SHA256 (KDE/Qt/5.15.2/kde-qtconnectivity-5.15.2p1.tar.xz) = 768324678b18c535c34d10a304124352b6befc7be6f0496bbb7b6ed6376f382e -SIZE (KDE/Qt/5.15.2/kde-qtconnectivity-5.15.2p1.tar.xz) = 2784408 +TIMESTAMP = 1656427310 +SHA256 (KDE/Qt/5.15.5/kde-qtconnectivity-5.15.5p5.tar.xz) = 5b35c05bdd556b38674e81910532bc1f7a9d61fecb19548a0b7dfce0ae4589b4 +SIZE (KDE/Qt/5.15.5/kde-qtconnectivity-5.15.5p5.tar.xz) = 2784836 diff --git a/comms/qt5-sensors/distinfo b/comms/qt5-sensors/distinfo index 30da2f69b490..c2115e1346ff 100644 --- a/comms/qt5-sensors/distinfo +++ b/comms/qt5-sensors/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423751 -SHA256 (KDE/Qt/5.15.2/kde-qtsensors-5.15.2p2.tar.xz) = ad17bde11441d00f5a0db4ecf87a40833953981ac3a8039243c8de1b0d2122de -SIZE (KDE/Qt/5.15.2/kde-qtsensors-5.15.2p2.tar.xz) = 2030628 +TIMESTAMP = 1656427311 +SHA256 (KDE/Qt/5.15.5/kde-qtsensors-5.15.5p0.tar.xz) = dc57096ab2b6f6167b12c89961378b10fe9c2b1a263da8a8b9cda54c8788f870 +SIZE (KDE/Qt/5.15.5/kde-qtsensors-5.15.5p0.tar.xz) = 2030764 diff --git a/comms/qt5-serialbus/distinfo b/comms/qt5-serialbus/distinfo index ae74f66d9194..0e2e0d4e7059 100644 --- a/comms/qt5-serialbus/distinfo +++ b/comms/qt5-serialbus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423752 -SHA256 (KDE/Qt/5.15.2/kde-qtserialbus-5.15.2p2.tar.xz) = 0d0befb361f18e4b46a3f8ed6ceebc94d34c3266a609720e3ff980a459e26715 -SIZE (KDE/Qt/5.15.2/kde-qtserialbus-5.15.2p2.tar.xz) = 333156 +TIMESTAMP = 1656427312 +SHA256 (KDE/Qt/5.15.5/kde-qtserialbus-5.15.5p0.tar.xz) = d2ebde3c16cd8c7d4fa38280acd17cf6a3d0e1580142992cd95760723c1040aa +SIZE (KDE/Qt/5.15.5/kde-qtserialbus-5.15.5p0.tar.xz) = 333616 diff --git a/comms/qt5-serialport/distinfo b/comms/qt5-serialport/distinfo index fb41f11fd71e..d032a83a2867 100644 --- a/comms/qt5-serialport/distinfo +++ b/comms/qt5-serialport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423754 -SHA256 (KDE/Qt/5.15.2/kde-qtserialport-5.15.2p2.tar.xz) = 767e7b817b01ad747346c2c9bcccd26a652d8ca73915c68dd47386815eef445b -SIZE (KDE/Qt/5.15.2/kde-qtserialport-5.15.2p2.tar.xz) = 300200 +TIMESTAMP = 1656427313 +SHA256 (KDE/Qt/5.15.5/kde-qtserialport-5.15.5p0.tar.xz) = ff96cf4b00336018a6827f8a6cc1860fb73e0b93c7902d5c40c6ef80d780a1c9 +SIZE (KDE/Qt/5.15.5/kde-qtserialport-5.15.5p0.tar.xz) = 300224 diff --git a/databases/qt5-sql/distinfo b/databases/qt5-sql/distinfo index bcdb973c77d3..42008ea24ac2 100644 --- a/databases/qt5-sql/distinfo +++ b/databases/qt5-sql/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423756 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427314 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/databases/qt5-sqldrivers-ibase/distinfo b/databases/qt5-sqldrivers-ibase/distinfo index edd4b2c0b72c..07e1b050e6e1 100644 --- a/databases/qt5-sqldrivers-ibase/distinfo +++ b/databases/qt5-sqldrivers-ibase/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423854 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427315 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/databases/qt5-sqldrivers-mysql/distinfo b/databases/qt5-sqldrivers-mysql/distinfo index dd3005449d03..2b6f29875da5 100644 --- a/databases/qt5-sqldrivers-mysql/distinfo +++ b/databases/qt5-sqldrivers-mysql/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423852 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427317 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/databases/qt5-sqldrivers-odbc/distinfo b/databases/qt5-sqldrivers-odbc/distinfo index b86d11580e62..0244ba3b7e63 100644 --- a/databases/qt5-sqldrivers-odbc/distinfo +++ b/databases/qt5-sqldrivers-odbc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423853 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427318 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/databases/qt5-sqldrivers-pgsql/distinfo b/databases/qt5-sqldrivers-pgsql/distinfo index edd4b2c0b72c..6ee8ef592f65 100644 --- a/databases/qt5-sqldrivers-pgsql/distinfo +++ b/databases/qt5-sqldrivers-pgsql/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423854 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427319 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/databases/qt5-sqldrivers-sqlite2/distinfo b/databases/qt5-sqldrivers-sqlite2/distinfo index 742bb0954b08..51da39b223c0 100644 --- a/databases/qt5-sqldrivers-sqlite2/distinfo +++ b/databases/qt5-sqldrivers-sqlite2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423856 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427320 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/databases/qt5-sqldrivers-sqlite3/distinfo b/databases/qt5-sqldrivers-sqlite3/distinfo index 9e2135710150..6b9e8f7bd5b4 100644 --- a/databases/qt5-sqldrivers-sqlite3/distinfo +++ b/databases/qt5-sqldrivers-sqlite3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423857 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427322 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/databases/qt5-sqldrivers-tds/distinfo b/databases/qt5-sqldrivers-tds/distinfo index d9b36e06ab9c..87a7976430d3 100644 --- a/databases/qt5-sqldrivers-tds/distinfo +++ b/databases/qt5-sqldrivers-tds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423858 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427323 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/devel/qt5-assistant/distinfo b/devel/qt5-assistant/distinfo index 0d4531b45bb2..d92fe0f338ed 100644 --- a/devel/qt5-assistant/distinfo +++ b/devel/qt5-assistant/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423860 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427324 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-buildtools/distinfo b/devel/qt5-buildtools/distinfo index ad7fd12014dd..26474a458fef 100644 --- a/devel/qt5-buildtools/distinfo +++ b/devel/qt5-buildtools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423861 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427325 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/devel/qt5-concurrent/distinfo b/devel/qt5-concurrent/distinfo index 5c3758be8f88..48cdaadfa2e7 100644 --- a/devel/qt5-concurrent/distinfo +++ b/devel/qt5-concurrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423862 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427326 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/devel/qt5-core/distinfo b/devel/qt5-core/distinfo index afc62138a969..7f2e89b20551 100644 --- a/devel/qt5-core/distinfo +++ b/devel/qt5-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423864 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427327 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/devel/qt5-core/files/patch-CVE-2022-25255-qprocess5-15.diff b/devel/qt5-core/files/patch-CVE-2022-25255-qprocess5-15.diff deleted file mode 100644 index 538ab4ead6db..000000000000 --- a/devel/qt5-core/files/patch-CVE-2022-25255-qprocess5-15.diff +++ /dev/null @@ -1,63 +0,0 @@ -This is the patch linked from the announcement - https://lists.qt-project.org/pipermail/announce/2022-February/000333.html -with two changes: in our sources, the copyright year for the -Qt Company is 2016, the upstream patch says 2021. Changed that -to make the patch apply. The upstream patch is fetched with -CRLF line-endings, changed to plain LF. - ---- src/corelib/io/qprocess_unix.cpp -+++ src/corelib/io/qprocess_unix.cpp -@@ -1,7 +1,7 @@ - /**************************************************************************** - ** - ** Copyright (C) 2016 The Qt Company Ltd. --** Copyright (C) 2016 Intel Corporation. -+** Copyright (C) 2022 Intel Corporation. - ** Contact: https://www.qt.io/licensing/ - ** - ** This file is part of the QtCore module of the Qt Toolkit. -@@ -422,14 +422,15 @@ void QProcessPrivate::startProcess() - // Add the program name to the argument list. - argv[0] = nullptr; - if (!program.contains(QLatin1Char('/'))) { -+ // findExecutable() returns its argument if it's an absolute path, -+ // otherwise it searches $PATH; returns empty if not found (we handle -+ // that case much later) - const QString &exeFilePath = QStandardPaths::findExecutable(program); -- if (!exeFilePath.isEmpty()) { -- const QByteArray &tmp = QFile::encodeName(exeFilePath); -- argv[0] = ::strdup(tmp.constData()); -- } -- } -- if (!argv[0]) -+ const QByteArray &tmp = QFile::encodeName(exeFilePath); -+ argv[0] = ::strdup(tmp.constData()); -+ } else { - argv[0] = ::strdup(encodedProgramName.constData()); -+ } - - // Add every argument to the list - for (int i = 0; i < arguments.count(); ++i) -@@ -983,15 +984,16 @@ bool QProcessPrivate::startDetached(qint64 *pid) - envp = _q_dupEnvironment(environment.d.constData()->vars, &envc); - } - -- QByteArray tmp; - if (!program.contains(QLatin1Char('/'))) { -+ // findExecutable() returns its argument if it's an absolute path, -+ // otherwise it searches $PATH; returns empty if not found (we handle -+ // that case much later) - const QString &exeFilePath = QStandardPaths::findExecutable(program); -- if (!exeFilePath.isEmpty()) -- tmp = QFile::encodeName(exeFilePath); -+ const QByteArray &tmp = QFile::encodeName(exeFilePath); -+ argv[0] = ::strdup(tmp.constData()); -+ } else { -+ argv[0] = ::strdup(QFile::encodeName(program)); - } -- if (tmp.isEmpty()) -- tmp = QFile::encodeName(program); -- argv[0] = tmp.data(); - - if (envp) - qt_safe_execve(argv[0], argv, envp); diff --git a/devel/qt5-dbus/distinfo b/devel/qt5-dbus/distinfo index 0e99e5287fd0..6b2aacd9f809 100644 --- a/devel/qt5-dbus/distinfo +++ b/devel/qt5-dbus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423865 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427329 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/devel/qt5-designer/distinfo b/devel/qt5-designer/distinfo index 3bf6e6575462..d883545b03a5 100644 --- a/devel/qt5-designer/distinfo +++ b/devel/qt5-designer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423866 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427330 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-help/distinfo b/devel/qt5-help/distinfo index 18887f18a435..669f766daf6b 100644 --- a/devel/qt5-help/distinfo +++ b/devel/qt5-help/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423867 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427331 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-linguist/distinfo b/devel/qt5-linguist/distinfo index 984afb95baa4..a72677509e5d 100644 --- a/devel/qt5-linguist/distinfo +++ b/devel/qt5-linguist/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423868 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427332 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-linguisttools/distinfo b/devel/qt5-linguisttools/distinfo index f1d1ebf9f91a..e0ec4da77582 100644 --- a/devel/qt5-linguisttools/distinfo +++ b/devel/qt5-linguisttools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423869 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427333 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-location/distinfo b/devel/qt5-location/distinfo index 705ae54f3698..9f00202adc75 100644 --- a/devel/qt5-location/distinfo +++ b/devel/qt5-location/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423870 -SHA256 (KDE/Qt/5.15.2/kde-qtlocation-5.15.2p6.tar.xz) = 82bcf791ce0651b24c43a2875e629a1500f7a9a29378d49100ea5050cd2fa076 -SIZE (KDE/Qt/5.15.2/kde-qtlocation-5.15.2p6.tar.xz) = 4212420 +TIMESTAMP = 1656427334 +SHA256 (KDE/Qt/5.15.5/kde-qtlocation-5.15.5p3.tar.xz) = 72417611720a1a6a19b8aa01aaad3ce39e1ad4d4a4d78fc6afb7045adae7fad6 +SIZE (KDE/Qt/5.15.5/kde-qtlocation-5.15.5p3.tar.xz) = 4212176 diff --git a/devel/qt5-qdbus/distinfo b/devel/qt5-qdbus/distinfo index a9b350ab4e08..fbde38f1eac6 100644 --- a/devel/qt5-qdbus/distinfo +++ b/devel/qt5-qdbus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423871 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427335 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-qdbusviewer/distinfo b/devel/qt5-qdbusviewer/distinfo index 551e04498568..d9aa1cc5f3a0 100644 --- a/devel/qt5-qdbusviewer/distinfo +++ b/devel/qt5-qdbusviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423872 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427336 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-qdoc-data/Makefile b/devel/qt5-qdoc-data/Makefile index ae92b05fa7ac..d52eca24405a 100644 --- a/devel/qt5-qdoc-data/Makefile +++ b/devel/qt5-qdoc-data/Makefile @@ -1,35 +1,36 @@ # While this port is part of the Qt distribution itself, we do not set # QT_DIST=yes because it brings in several patches and targets that are not # needed; this port only installs some static files. PORTNAME= qdoc-data DISTVERSION= ${QT5_VERSION} CATEGORIES= devel textproc MASTER_SITES= QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/submodules/ PKGNAMEPREFIX= qt5- -DISTNAME= qtbase-everywhere-src-${QT5_VERSION} +DISTNAME= qtbase-everywhere-opensource-src-${QT5_VERSION} +WRKSRC= ${WRKDIR}/qtbase-everywhere-src-${QT5_VERSION} DIST_SUBDIR= KDE/Qt/${QT5_VERSION} MAINTAINER= kde@FreeBSD.org COMMENT= QDoc configuration files LICENSE= GFDL LICENSE_FILE= ${WRKSRC}/LICENSE.FDL USES= qt:5 tar:xz USE_QT= # empty -EXTRACT_AFTER_ARGS= --include ${DISTNAME}/LICENSE.FDL \ - --include ${DISTNAME}/doc +EXTRACT_AFTER_ARGS= --include ${DISTNAME:S/-opensource//}/LICENSE.FDL \ + --include ${DISTNAME:S/-opensource//}/doc NO_ARCH= yes NO_BUILD= yes DESCR= ${.CURDIR:H:H}/devel/qt5/pkg-descr do-install: ${MKDIR} ${STAGEDIR}${QT_DOCDIR} && \ cd ${WRKSRC}/doc/global && \ ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/${QT_DOCDIR_REL}/global .include diff --git a/devel/qt5-qdoc-data/distinfo b/devel/qt5-qdoc-data/distinfo index 69871b4e830c..f96723437e5f 100644 --- a/devel/qt5-qdoc-data/distinfo +++ b/devel/qt5-qdoc-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639505201 -SHA256 (KDE/Qt/5.15.2/qtbase-everywhere-src-5.15.2.tar.xz) = 909fad2591ee367993a75d7e2ea50ad4db332f05e1c38dd7a5a274e156a4e0f8 -SIZE (KDE/Qt/5.15.2/qtbase-everywhere-src-5.15.2.tar.xz) = 50179672 +TIMESTAMP = 1656430132 +SHA256 (KDE/Qt/5.15.5/qtbase-everywhere-opensource-src-5.15.5.tar.xz) = 0c42c799aa7c89e479a07c451bf5a301e291266ba789e81afc18f95049524edc +SIZE (KDE/Qt/5.15.5/qtbase-everywhere-opensource-src-5.15.5.tar.xz) = 50247388 diff --git a/devel/qt5-qdoc/distinfo b/devel/qt5-qdoc/distinfo index 79fad251e6a4..e08085493d5b 100644 --- a/devel/qt5-qdoc/distinfo +++ b/devel/qt5-qdoc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423873 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427337 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5-qmake/distinfo b/devel/qt5-qmake/distinfo index 526e93f5af27..ed87e0c74335 100644 --- a/devel/qt5-qmake/distinfo +++ b/devel/qt5-qmake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639421182 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427420 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/devel/qt5-remoteobjects/distinfo b/devel/qt5-remoteobjects/distinfo index 640350bfd20f..bb5f698fbd9a 100644 --- a/devel/qt5-remoteobjects/distinfo +++ b/devel/qt5-remoteobjects/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423876 -SHA256 (KDE/Qt/5.15.2/kde-qtremoteobjects-5.15.2p3.tar.xz) = f1c2d5d2346fdac017b2a40be80468d9ed50c50bfbdefc7e57f88ea1d111e6dd -SIZE (KDE/Qt/5.15.2/kde-qtremoteobjects-5.15.2p3.tar.xz) = 350464 +TIMESTAMP = 1656427421 +SHA256 (KDE/Qt/5.15.5/kde-qtremoteobjects-5.15.5p0.tar.xz) = 9697cb392dc2301bd4c882344eb71c50a74729e83917082a9ee06128723e3a38 +SIZE (KDE/Qt/5.15.5/kde-qtremoteobjects-5.15.5p0.tar.xz) = 351708 diff --git a/devel/qt5-script/Makefile b/devel/qt5-script/Makefile index 20419d33b32a..1959ca52be7f 100644 --- a/devel/qt5-script/Makefile +++ b/devel/qt5-script/Makefile @@ -1,20 +1,22 @@ PORTNAME= script PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 4-compatible scripting module USES= compiler:c++11-lang perl5 qmake qt-dist:5,script USE_PERL5= extract USE_QT= core buildtools_build # Keep make(1) from descending into src/script/obj/ (qmake:outsource # doesn't work). MAKE_ENV= MAKEOBJDIR=. +QT5_VERSION= 5.15.10 + post-patch: @${REINPLACE_CMD} -e '/scripttools/ d' \ ${WRKSRC}/src/src.pro .include diff --git a/devel/qt5-script/distinfo b/devel/qt5-script/distinfo index e1fc1ff6c2fc..7029d5192b2e 100644 --- a/devel/qt5-script/distinfo +++ b/devel/qt5-script/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423877 -SHA256 (KDE/Qt/5.15.2/kde-qtscript-5.15.2p4.tar.xz) = 66671e9516df5b099cef4f0440db97d96d07990665c9311321ccfaaf0687b129 -SIZE (KDE/Qt/5.15.2/kde-qtscript-5.15.2p4.tar.xz) = 2623560 +TIMESTAMP = 1656428746 +SHA256 (KDE/Qt/5.15.10/kde-qtscript-5.15.10p0.tar.xz) = 35b2053c7e92b6af4a1a30dc1089cc433b05866be36f5133c1bce170f63793a7 +SIZE (KDE/Qt/5.15.10/kde-qtscript-5.15.10p0.tar.xz) = 2624152 diff --git a/devel/qt5-scripttools/Makefile b/devel/qt5-scripttools/Makefile index 0f03a044087a..6ca53d33c143 100644 --- a/devel/qt5-scripttools/Makefile +++ b/devel/qt5-scripttools/Makefile @@ -1,18 +1,20 @@ PORTNAME= scripttools PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt Script additional components USES= compiler:c++11-lang qmake qt-dist:5,script USE_QT= core gui script widgets buildtools_build BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME} +QT5_VERSION= 5.15.10 + # Link in QtScript port _QT5_ADDITIONAL_LINK= script .include diff --git a/devel/qt5-scripttools/distinfo b/devel/qt5-scripttools/distinfo index ac9463e8ab1d..63c829b8eff7 100644 --- a/devel/qt5-scripttools/distinfo +++ b/devel/qt5-scripttools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423878 -SHA256 (KDE/Qt/5.15.2/kde-qtscript-5.15.2p4.tar.xz) = 66671e9516df5b099cef4f0440db97d96d07990665c9311321ccfaaf0687b129 -SIZE (KDE/Qt/5.15.2/kde-qtscript-5.15.2p4.tar.xz) = 2623560 +TIMESTAMP = 1656433524 +SHA256 (KDE/Qt/5.15.10/kde-qtscript-5.15.10p0.tar.xz) = 35b2053c7e92b6af4a1a30dc1089cc433b05866be36f5133c1bce170f63793a7 +SIZE (KDE/Qt/5.15.10/kde-qtscript-5.15.10p0.tar.xz) = 2624152 diff --git a/devel/qt5-scxml/distinfo b/devel/qt5-scxml/distinfo index 00cf9c478371..e73cd42659be 100644 --- a/devel/qt5-scxml/distinfo +++ b/devel/qt5-scxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423879 -SHA256 (KDE/Qt/5.15.2/kde-qtscxml-5.15.2p1.tar.xz) = e99d34a972c0bf84ad692edac47b4928e89053d692950a153535c7fc17011f4b -SIZE (KDE/Qt/5.15.2/kde-qtscxml-5.15.2p1.tar.xz) = 408532 +TIMESTAMP = 1656427424 +SHA256 (KDE/Qt/5.15.5/kde-qtscxml-5.15.5p0.tar.xz) = 36c0acc4c85ead9bb8eb192b6d47c57c24384d352c923ab83148b17c2cc9feaf +SIZE (KDE/Qt/5.15.5/kde-qtscxml-5.15.5p0.tar.xz) = 409372 diff --git a/devel/qt5-testlib/distinfo b/devel/qt5-testlib/distinfo index 38f97651ea3c..b97bb89ce593 100644 --- a/devel/qt5-testlib/distinfo +++ b/devel/qt5-testlib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423880 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427425 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/devel/qt5-uitools/distinfo b/devel/qt5-uitools/distinfo index 74e7ddfd2617..fc8190b9165f 100644 --- a/devel/qt5-uitools/distinfo +++ b/devel/qt5-uitools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423881 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427426 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/devel/qt5/files/create_kde-qt_release.sh b/devel/qt5/files/create_kde-qt_release.sh index 8624cd456ac8..d46e4bd088d8 100644 --- a/devel/qt5/files/create_kde-qt_release.sh +++ b/devel/qt5/files/create_kde-qt_release.sh @@ -1,54 +1,55 @@ #!/bin/sh # Creates and updates a git checkout in ${BASE_DIRECTORY} # for the given KDE Qt repository ${PROJECT}. # After that, a new distfile for the ports tree is created. DIST="$1" PROJECT=qt"${DIST}" BASE_DIRECTORY="$2" +# Version of Qt we want +VERSION="$3" +ORIGIN_TAG="$4" # Remote KDE git repository REPO="https://invent.kde.org/qt/qt/${PROJECT}.git" # Local checkout CHECKOUT="${BASE_DIRECTORY}/${PROJECT}" -# Version of Qt we want -VERSION=5.15.2 # KDE-Qt branch BRANCH=kde/5.15 # Make sure we can use ${BASE_DIRECTORY} if [ ! -d "${BASE_DIRECTORY}" ] || [ ! -w "${BASE_DIRECTORY}" ] ; then echo "Directory '${BASE_DIRECTORY}' does not exist" exit 1 fi # Init a new git checkout if it is missing if [ ! -d "${CHECKOUT}" ] ; then git -C "${BASE_DIRECTORY}" clone "${REPO}" fi # Update the checkout of the required branch git -C "${CHECKOUT}" checkout "${BRANCH}" && git -C "${CHECKOUT}" pull --ff-only --rebase --autostash if [ $? -ne 0 ] ; then echo "Failed to update ${CHECKOUT}" exit 1 fi # Count number of patches added by KDE -PATCH_COUNT=$(git -C ${CHECKOUT} rev-list --count origin/${VERSION}..origin/${BRANCH}) +PATCH_COUNT=$(git -C ${CHECKOUT} rev-list --count ${ORIGIN_TAG}..origin/${BRANCH}) # Setup information for the distfile DISTNAME="kde-${PROJECT}-${VERSION}p${PATCH_COUNT}" DISTFILE="${BASE_DIRECTORY}/${DISTNAME}.tar.xz" # Tar and compress distfile git -C ${CHECKOUT} archive --format=tar --prefix="${DISTNAME}/" HEAD | xz > "${DISTFILE}" if [ $? -ne 0 ] ; then echo "Failed to create tarball ${DISTFILE}" exit 1 fi # Printout information required in qt-dist.mk echo -e "Distfile:\t${DISTFILE}\n_KDE_${DIST}=\t${PATCH_COUNT}" diff --git a/graphics/qt5-3d/distinfo b/graphics/qt5-3d/distinfo index 01c40a8f40b0..df5af44ec4c7 100644 --- a/graphics/qt5-3d/distinfo +++ b/graphics/qt5-3d/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639431403 -SHA256 (KDE/Qt/5.15.2/kde-qt3d-5.15.2p39.tar.xz) = 9a3f92cb460eb5e36d80624a177cf073a56ae189aed7ac615e8940286c56c8b8 -SIZE (KDE/Qt/5.15.2/kde-qt3d-5.15.2p39.tar.xz) = 81860360 +TIMESTAMP = 1656427428 +SHA256 (KDE/Qt/5.15.5/kde-qt3d-5.15.5p15.tar.xz) = 84234da187474d2469c68d32422be4355a63313f069a11c3cedb5a84e55a62b5 +SIZE (KDE/Qt/5.15.5/kde-qt3d-5.15.5p15.tar.xz) = 81852048 diff --git a/graphics/qt5-graphicaleffects/distinfo b/graphics/qt5-graphicaleffects/distinfo index 928ff72ea78b..e218ace5d706 100644 --- a/graphics/qt5-graphicaleffects/distinfo +++ b/graphics/qt5-graphicaleffects/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423883 -SHA256 (KDE/Qt/5.15.2/kde-qtgraphicaleffects-5.15.2p2.tar.xz) = 36786c7aaa7e0418a6c5c45771821c5b037c42aadcba332151b41a0dd68a71c1 -SIZE (KDE/Qt/5.15.2/kde-qtgraphicaleffects-5.15.2p2.tar.xz) = 14019160 +TIMESTAMP = 1656427429 +SHA256 (KDE/Qt/5.15.5/kde-qtgraphicaleffects-5.15.5p0.tar.xz) = 5fda551c3ca666909548480c31b92bdf162145a0a8ba858e65d0301bb43dcdeb +SIZE (KDE/Qt/5.15.5/kde-qtgraphicaleffects-5.15.5p0.tar.xz) = 14019140 diff --git a/graphics/qt5-imageformats/distinfo b/graphics/qt5-imageformats/distinfo index d693ee9069a1..65c6fffefcad 100644 --- a/graphics/qt5-imageformats/distinfo +++ b/graphics/qt5-imageformats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423884 -SHA256 (KDE/Qt/5.15.2/kde-qtimageformats-5.15.2p3.tar.xz) = a55d3cbd1f51550d1c8ed3924567e095e88c7a323793d1978803350e3223549e -SIZE (KDE/Qt/5.15.2/kde-qtimageformats-5.15.2p3.tar.xz) = 1788056 +TIMESTAMP = 1656427430 +SHA256 (KDE/Qt/5.15.5/kde-qtimageformats-5.15.5p3.tar.xz) = 5b1a03276a44540e7edafd37ca58274cf25100678f7a19d7b0b61f2eeaf8d4fb +SIZE (KDE/Qt/5.15.5/kde-qtimageformats-5.15.5p3.tar.xz) = 1805008 diff --git a/graphics/qt5-opengl/distinfo b/graphics/qt5-opengl/distinfo index 0e177b2b97d3..fab223c86997 100644 --- a/graphics/qt5-opengl/distinfo +++ b/graphics/qt5-opengl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423885 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427431 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/graphics/qt5-pixeltool/distinfo b/graphics/qt5-pixeltool/distinfo index 266df2e5461c..df2c98ffb8d5 100644 --- a/graphics/qt5-pixeltool/distinfo +++ b/graphics/qt5-pixeltool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423887 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427432 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/graphics/qt5-svg/distinfo b/graphics/qt5-svg/distinfo index c81459068f62..a129f4c81273 100644 --- a/graphics/qt5-svg/distinfo +++ b/graphics/qt5-svg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423888 -SHA256 (KDE/Qt/5.15.2/kde-qtsvg-5.15.2p13.tar.xz) = 665a35b4916d9406c221709d11529dc5bbeed6b674abd1c99cb48db1ad205d6c -SIZE (KDE/Qt/5.15.2/kde-qtsvg-5.15.2p13.tar.xz) = 1864320 +TIMESTAMP = 1656427433 +SHA256 (KDE/Qt/5.15.5/kde-qtsvg-5.15.5p10.tar.xz) = 90a21c3e96d296b4374eaa992f5ebc7b1f93ecdf59aafbf15f9bd7cb8a4fa95c +SIZE (KDE/Qt/5.15.5/kde-qtsvg-5.15.5p10.tar.xz) = 1865000 diff --git a/graphics/qt5-wayland/distinfo b/graphics/qt5-wayland/distinfo index a5cfd67bc6b4..a91a00e9cc91 100644 --- a/graphics/qt5-wayland/distinfo +++ b/graphics/qt5-wayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423889 -SHA256 (KDE/Qt/5.15.2/kde-qtwayland-5.15.2p37.tar.xz) = de116b90858923bd96e6fa541170dbfb208c845263a3301e861086a3b93f5467 -SIZE (KDE/Qt/5.15.2/kde-qtwayland-5.15.2p37.tar.xz) = 533864 +TIMESTAMP = 1656427434 +SHA256 (KDE/Qt/5.15.5/kde-qtwayland-5.15.5p39.tar.xz) = 0d0a4d9bc914c33e1707b13a94afda7fb30a60864c45c7d7e5d6a6d28b9355d6 +SIZE (KDE/Qt/5.15.5/kde-qtwayland-5.15.5p39.tar.xz) = 535820 diff --git a/graphics/qt5-wayland/files/patch-libglvnd b/graphics/qt5-wayland/files/patch-libglvnd deleted file mode 100644 index 50e4c25ca511..000000000000 --- a/graphics/qt5-wayland/files/patch-libglvnd +++ /dev/null @@ -1,38 +0,0 @@ -drm_*.h are part of kernel DRM API, installed under /usr/include on Linux. -FreeBSD (drm-kmod) doesn't install those anywhere, relying on libdrm copies. -libglvnd replaces libEGL from Mesa, so libdrm dependency needs to be explicit. - ---- src/client/configure.json.orig 2020-10-27 08:02:11 UTC -+++ src/client/configure.json -@@ -149,8 +149,7 @@ - "#endif" - ] - }, -- "libs": "-ldrm", -- "use": "egl" -+ "use": "egl drm" - }, - "vulkan-server-buffer": { - "label": "Vulkan Buffer Sharing", ---- src/compositor/configure.json.orig 2020-10-27 08:02:11 UTC -+++ src/compositor/configure.json -@@ -151,8 +151,7 @@ - "#endif" - ] - }, -- "libs": "-ldrm", -- "use": "egl" -+ "use": "egl drm" - }, - "dmabuf-client-buffer": { - "label": "Linux Client dma-buf Buffer Sharing", -@@ -176,8 +175,7 @@ - "return 0;" - ] - }, -- "libs": "-ldrm", -- "use": "egl" -+ "use": "egl drm" - }, - "vulkan-server-buffer": { - "label": "Vulkan Buffer Sharing", diff --git a/misc/qt5-examples/Makefile b/misc/qt5-examples/Makefile index 940fe5715eb3..d34a02d9289c 100644 --- a/misc/qt5-examples/Makefile +++ b/misc/qt5-examples/Makefile @@ -1,48 +1,49 @@ # Created by: Marie Loise Nolden PORTNAME= examples PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} CATEGORIES= misc MASTER_SITES= QT/official_releases/qt/${QT5_VERSION:R}/${QT5_VERSION}/single PKGNAMEPREFIX= qt5- -DISTNAME= qt-everywhere-src-${QT5_VERSION} +DISTNAME= qt-everywhere-opensource-src-${QT5_VERSION} +WRKSRC= ${WRKDIR}/qt-everywhere-src-${QT5_VERSION} DIST_SUBDIR= KDE/Qt/${QT5_VERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 examples sourcecode NO_ARCH= yes NO_BUILD= yes USES= qt:5 tar:xz USE_QT= # DESCR= ${.CURDIR:H:H}/devel/qt5/pkg-descr DISTINFO_FILE= ${.CURDIR}/distinfo EXAMPLESDIR= ${PREFIX}/share/examples/qt5 # The destination location depends on the values given in # share/doc/qt5//examples-manifest.xml. The exception is # qtscript and qtserialbus where the examples are looked up in $EXAMPLESDIR/. # This way, the examples show up in qtcreator on the examples front page. _QT_DISTS= 3d activeqt androidextras base charts connectivity datavis3d \ declarative doc gamepad location \ macextras multimedia networkauth purchasing quickcontrols \ quickcontrols2 remoteobjects script scxml sensors serialbus \ serialport speech svg tools virtualkeyboard wayland \ webchannel webengine websockets webview winextras \ xmlpatterns EXAMPLES= ${_QT_DISTS:C/^/qt/} .for example in ${EXAMPLES} -EXTRACT_AFTER_ARGS+= ${DISTNAME}/${example}/examples +EXTRACT_AFTER_ARGS+= ${DISTNAME:S/-opensource//}/${example}/examples .endfor do-install: .for example in ${EXAMPLES} cd ${WRKSRC}/${example}/examples && \ ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR} .endfor .include diff --git a/misc/qt5-examples/distinfo b/misc/qt5-examples/distinfo index ea977fb7e974..2c1679e698b5 100644 --- a/misc/qt5-examples/distinfo +++ b/misc/qt5-examples/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1605899661 -SHA256 (KDE/Qt/5.15.2/qt-everywhere-src-5.15.2.tar.xz) = 3a530d1b243b5dec00bc54937455471aaa3e56849d2593edb8ded07228202240 -SIZE (KDE/Qt/5.15.2/qt-everywhere-src-5.15.2.tar.xz) = 586690220 +TIMESTAMP = 1656427609 +SHA256 (KDE/Qt/5.15.5/qt-everywhere-opensource-src-5.15.5.tar.xz) = 5a97827bdf9fd515f43bc7651defaf64fecb7a55e051c79b8f80510d0e990f06 +SIZE (KDE/Qt/5.15.5/qt-everywhere-opensource-src-5.15.5.tar.xz) = 623305668 diff --git a/misc/qt5-examples/pkg-plist b/misc/qt5-examples/pkg-plist index 108aa8553ad3..91b026295755 100644 --- a/misc/qt5-examples/pkg-plist +++ b/misc/qt5-examples/pkg-plist @@ -1,8354 +1,8356 @@ %%QT_EXAMPLEDIR%%/README %%QT_EXAMPLEDIR%%/activeqt/README %%QT_EXAMPLEDIR%%/activeqt/activeqt.pro %%QT_EXAMPLEDIR%%/activeqt/comapp/comapp.pro %%QT_EXAMPLEDIR%%/activeqt/comapp/comapp.rc %%QT_EXAMPLEDIR%%/activeqt/comapp/doc/snippets/doc_src_examples_activeqt_comapp.qdoc %%QT_EXAMPLEDIR%%/activeqt/comapp/doc/src/comapp.qdoc %%QT_EXAMPLEDIR%%/activeqt/comapp/main.cpp %%QT_EXAMPLEDIR%%/activeqt/dotnet/walkthrough/Form1.cs %%QT_EXAMPLEDIR%%/activeqt/dotnet/walkthrough/Form1.resx %%QT_EXAMPLEDIR%%/activeqt/dotnet/walkthrough/Form1.vb %%QT_EXAMPLEDIR%%/activeqt/dotnet/walkthrough/csharp.csproj %%QT_EXAMPLEDIR%%/activeqt/dotnet/walkthrough/vb.vbproj %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/app.csproj %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/lib/lib.vcproj %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/lib/networker.cpp %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/lib/networker.h %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/lib/tools.cpp %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/lib/tools.h %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/lib/worker.cpp %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/lib/worker.h %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/main.cs %%QT_EXAMPLEDIR%%/activeqt/dotnet/wrapper/wrapper.sln %%QT_EXAMPLEDIR%%/activeqt/hierarchy/doc/snippets/hierarchy-demo-snippet.qdoc %%QT_EXAMPLEDIR%%/activeqt/hierarchy/doc/src/hierarchy.qdoc %%QT_EXAMPLEDIR%%/activeqt/hierarchy/hierarchy.def %%QT_EXAMPLEDIR%%/activeqt/hierarchy/hierarchy.ico %%QT_EXAMPLEDIR%%/activeqt/hierarchy/hierarchy.inf %%QT_EXAMPLEDIR%%/activeqt/hierarchy/hierarchy.pro %%QT_EXAMPLEDIR%%/activeqt/hierarchy/hierarchy.rc %%QT_EXAMPLEDIR%%/activeqt/hierarchy/main.cpp %%QT_EXAMPLEDIR%%/activeqt/hierarchy/objects.cpp %%QT_EXAMPLEDIR%%/activeqt/hierarchy/objects.h %%QT_EXAMPLEDIR%%/activeqt/mediaplayer/doc/images/activeqt-mediaplayer-example.jpg %%QT_EXAMPLEDIR%%/activeqt/mediaplayer/doc/src/mediaplayer.qdoc %%QT_EXAMPLEDIR%%/activeqt/mediaplayer/main.cpp %%QT_EXAMPLEDIR%%/activeqt/mediaplayer/mainwindow.ui %%QT_EXAMPLEDIR%%/activeqt/mediaplayer/mediaaxwidget.h %%QT_EXAMPLEDIR%%/activeqt/mediaplayer/mediaplayer.pro %%QT_EXAMPLEDIR%%/activeqt/menus/doc/snippets/doc_src_examples_activeqt_menus.qdoc %%QT_EXAMPLEDIR%%/activeqt/menus/doc/src/menus.qdoc %%QT_EXAMPLEDIR%%/activeqt/menus/fileopen.xpm %%QT_EXAMPLEDIR%%/activeqt/menus/filesave.xpm %%QT_EXAMPLEDIR%%/activeqt/menus/main.cpp %%QT_EXAMPLEDIR%%/activeqt/menus/menus.cpp %%QT_EXAMPLEDIR%%/activeqt/menus/menus.def %%QT_EXAMPLEDIR%%/activeqt/menus/menus.h %%QT_EXAMPLEDIR%%/activeqt/menus/menus.ico %%QT_EXAMPLEDIR%%/activeqt/menus/menus.inf %%QT_EXAMPLEDIR%%/activeqt/menus/menus.pro %%QT_EXAMPLEDIR%%/activeqt/menus/menus.rc %%QT_EXAMPLEDIR%%/activeqt/multiple/ax1.h %%QT_EXAMPLEDIR%%/activeqt/multiple/ax2.h %%QT_EXAMPLEDIR%%/activeqt/multiple/doc/src/multiple.qdoc %%QT_EXAMPLEDIR%%/activeqt/multiple/main.cpp %%QT_EXAMPLEDIR%%/activeqt/multiple/multiple.inf %%QT_EXAMPLEDIR%%/activeqt/multiple/multiple.pro %%QT_EXAMPLEDIR%%/activeqt/multiple/multipleax.def %%QT_EXAMPLEDIR%%/activeqt/multiple/multipleax.ico %%QT_EXAMPLEDIR%%/activeqt/multiple/multipleax.rc %%QT_EXAMPLEDIR%%/activeqt/opengl/doc/src/opengl.qdoc %%QT_EXAMPLEDIR%%/activeqt/opengl/glbox.cpp %%QT_EXAMPLEDIR%%/activeqt/opengl/glbox.h %%QT_EXAMPLEDIR%%/activeqt/opengl/globjwin.cpp %%QT_EXAMPLEDIR%%/activeqt/opengl/globjwin.h %%QT_EXAMPLEDIR%%/activeqt/opengl/main.cpp %%QT_EXAMPLEDIR%%/activeqt/opengl/opengl.def %%QT_EXAMPLEDIR%%/activeqt/opengl/opengl.ico %%QT_EXAMPLEDIR%%/activeqt/opengl/opengl.inf %%QT_EXAMPLEDIR%%/activeqt/opengl/opengl.pro %%QT_EXAMPLEDIR%%/activeqt/opengl/opengl.rc %%QT_EXAMPLEDIR%%/activeqt/qutlook/addressview.cpp %%QT_EXAMPLEDIR%%/activeqt/qutlook/addressview.h %%QT_EXAMPLEDIR%%/activeqt/qutlook/doc/src/qutlook.qdoc %%QT_EXAMPLEDIR%%/activeqt/qutlook/fileopen.xpm %%QT_EXAMPLEDIR%%/activeqt/qutlook/fileprint.xpm %%QT_EXAMPLEDIR%%/activeqt/qutlook/filesave.xpm %%QT_EXAMPLEDIR%%/activeqt/qutlook/main.cpp %%QT_EXAMPLEDIR%%/activeqt/qutlook/qutlook.pro %%QT_EXAMPLEDIR%%/activeqt/shared.pri %%QT_EXAMPLEDIR%%/activeqt/simple/doc/src/simple.qdoc %%QT_EXAMPLEDIR%%/activeqt/simple/main.cpp %%QT_EXAMPLEDIR%%/activeqt/simple/simple.def %%QT_EXAMPLEDIR%%/activeqt/simple/simple.ico %%QT_EXAMPLEDIR%%/activeqt/simple/simple.inf %%QT_EXAMPLEDIR%%/activeqt/simple/simple.pro %%QT_EXAMPLEDIR%%/activeqt/simple/simple.rc %%QT_EXAMPLEDIR%%/activeqt/simpleqml/main.cpp %%QT_EXAMPLEDIR%%/activeqt/simpleqml/main.qml %%QT_EXAMPLEDIR%%/activeqt/simpleqml/simpleqml.def %%QT_EXAMPLEDIR%%/activeqt/simpleqml/simpleqml.ico %%QT_EXAMPLEDIR%%/activeqt/simpleqml/simpleqml.pro %%QT_EXAMPLEDIR%%/activeqt/simpleqml/simpleqml.qrc %%QT_EXAMPLEDIR%%/activeqt/simpleqml/simpleqml.rc %%QT_EXAMPLEDIR%%/activeqt/wrapper/doc/src/wrapper.qdoc %%QT_EXAMPLEDIR%%/activeqt/wrapper/main.cpp %%QT_EXAMPLEDIR%%/activeqt/wrapper/wrapper.inf %%QT_EXAMPLEDIR%%/activeqt/wrapper/wrapper.pro %%QT_EXAMPLEDIR%%/activeqt/wrapper/wrapperax.def %%QT_EXAMPLEDIR%%/activeqt/wrapper/wrapperax.ico %%QT_EXAMPLEDIR%%/activeqt/wrapper/wrapperax.rc %%QT_EXAMPLEDIR%%/aggregate/examples.pro %%QT_EXAMPLEDIR%%/androidextras/androidextras.pro %%QT_EXAMPLEDIR%%/androidextras/customactivity/activityhandler.cpp %%QT_EXAMPLEDIR%%/androidextras/customactivity/activityhandler.h %%QT_EXAMPLEDIR%%/androidextras/customactivity/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/customactivity/android/res/layout/second_activity.xml %%QT_EXAMPLEDIR%%/androidextras/customactivity/android/res/values/strings.xml %%QT_EXAMPLEDIR%%/androidextras/customactivity/android/src/org/qtproject/example/activityhandler/CustomActivity.java %%QT_EXAMPLEDIR%%/androidextras/customactivity/customactivity.pro %%QT_EXAMPLEDIR%%/androidextras/customactivity/doc/src/qtandroidextras-example-customactivity.qdoc %%QT_EXAMPLEDIR%%/androidextras/customactivity/main.cpp %%QT_EXAMPLEDIR%%/androidextras/customactivity/main.qml %%QT_EXAMPLEDIR%%/androidextras/customactivity/qml.qrc %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/res/drawable-hdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/res/drawable-ldpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/res/drawable-mdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/res/drawable-xhdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/res/drawable-xxhdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/res/drawable-xxxhdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/android/src/org/qtproject/example/jnimessenger/JniMessenger.java %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/doc/src/qtandroidextras-example-jnimessenger.qdoc %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/jnimessenger.cpp %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/jnimessenger.h %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/jnimessenger.pro %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/main.cpp %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/main.qml %%QT_EXAMPLEDIR%%/androidextras/jnimessenger/qml.qrc %%QT_EXAMPLEDIR%%/androidextras/musiclist/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/musiclist/android/src/org/qtproject/example/musiclist/MusicList.java %%QT_EXAMPLEDIR%%/androidextras/musiclist/doc/src/qtandroidextras-example-musiclist.qdoc %%QT_EXAMPLEDIR%%/androidextras/musiclist/main.cpp %%QT_EXAMPLEDIR%%/androidextras/musiclist/main.qml %%QT_EXAMPLEDIR%%/androidextras/musiclist/musiclist.cpp %%QT_EXAMPLEDIR%%/androidextras/musiclist/musiclist.h %%QT_EXAMPLEDIR%%/androidextras/musiclist/musiclist.pro %%QT_EXAMPLEDIR%%/androidextras/musiclist/qml.qrc %%QT_EXAMPLEDIR%%/androidextras/notification/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/notification/android/res/drawable-hdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/notification/android/res/drawable-ldpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/notification/android/res/drawable-mdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/notification/android/res/drawable-xhdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/notification/android/res/drawable-xxhdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/notification/android/res/drawable-xxxhdpi/icon.png %%QT_EXAMPLEDIR%%/androidextras/notification/android/src/org/qtproject/example/notification/NotificationClient.java %%QT_EXAMPLEDIR%%/androidextras/notification/doc/src/qtandroidextras-example-notification.qdoc %%QT_EXAMPLEDIR%%/androidextras/notification/images/happy.png %%QT_EXAMPLEDIR%%/androidextras/notification/images/sad.png %%QT_EXAMPLEDIR%%/androidextras/notification/main.cpp %%QT_EXAMPLEDIR%%/androidextras/notification/main.qrc %%QT_EXAMPLEDIR%%/androidextras/notification/notification.pro %%QT_EXAMPLEDIR%%/androidextras/notification/notificationclient.cpp %%QT_EXAMPLEDIR%%/androidextras/notification/notificationclient.h %%QT_EXAMPLEDIR%%/androidextras/notification/qml/main.qml %%QT_EXAMPLEDIR%%/androidextras/services/common/common.pri %%QT_EXAMPLEDIR%%/androidextras/services/common/common_broadcast.pri %%QT_EXAMPLEDIR%%/androidextras/services/common/common_ro.pri %%QT_EXAMPLEDIR%%/androidextras/services/common/main.qml %%QT_EXAMPLEDIR%%/androidextras/services/common/qml.qrc %%QT_EXAMPLEDIR%%/androidextras/services/common/qtandroidservice.cpp %%QT_EXAMPLEDIR%%/androidextras/services/common/qtandroidservice.h %%QT_EXAMPLEDIR%%/androidextras/services/common/qtandroidservice.rep %%QT_EXAMPLEDIR%%/androidextras/services/common/qtandroidservice_ro.h %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/android/src/org/qtproject/example/qtandroidservice/QtAndroidService.java %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/androidbinder.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/androidbinder.h %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/doc/src/qtandroidextras-example-service-binder.qdoc %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/qtandroidservice.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/qtandroidservice.h %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/service.pro %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/service_main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/servicebinder.pro %%QT_EXAMPLEDIR%%/androidextras/services/servicebinder/servicebinderclient.pro %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/android/src/org/qtproject/example/qtandroidservice/ActivityUtils.java %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/android/src/org/qtproject/example/qtandroidservice/QtAndroidService.java %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/doc/src/qtandroidextras-example-service-broadcastreceiver.qdoc %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/service.pro %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/service_main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/servicebroadcast.pro %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcast/servicebroadcastclient.pro %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcastsamelib/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcastsamelib/android/src/org/qtproject/example/qtandroidservice/ActivityUtils.java %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcastsamelib/android/src/org/qtproject/example/qtandroidservice/QtAndroidService.java %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcastsamelib/doc/src/qtandroidextras-example-service-broadcastreceiver-samelib.qdoc %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcastsamelib/main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicebroadcastsamelib/servicebroadcastsamelib.pro %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/android/src/org/qtproject/example/qtandroidservice/QtAndroidService.java %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/doc/src/qtandroidextras-example-service-remoteobjects.qdoc %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/service.pro %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/service_main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/serviceremoteobjects.pro %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjects/serviceremoteobjectsclient.pro %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjectssamelib/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjectssamelib/android/src/org/qtproject/example/qtandroidservice/QtAndroidService.java %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjectssamelib/doc/src/qtandroidextras-example-service-remoteobjects-samelib.qdoc %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjectssamelib/main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/serviceremoteobjectssamelib/serviceremoteobjectssamelib.pro %%QT_EXAMPLEDIR%%/androidextras/services/services.pro %%QT_EXAMPLEDIR%%/androidextras/services/servicesameprocess/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/services/servicesameprocess/android/src/org/qtproject/example/qtandroidservice/QtAndroidService.java %%QT_EXAMPLEDIR%%/androidextras/services/servicesameprocess/doc/src/qtandroidextras-example-service-same-process.qdoc %%QT_EXAMPLEDIR%%/androidextras/services/servicesameprocess/main.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicesameprocess/qtandroidservice.cpp %%QT_EXAMPLEDIR%%/androidextras/services/servicesameprocess/qtandroidservice.h %%QT_EXAMPLEDIR%%/androidextras/services/servicesameprocess/servicesameprocess.pro %%QT_EXAMPLEDIR%%/assistant/assistant.pro %%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-example.png %%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-findfiledialog.png %%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-mainwindow.png %%QT_EXAMPLEDIR%%/assistant/doc/src/remotecontrol.qdoc %%QT_EXAMPLEDIR%%/assistant/doc/src/simpletextviewer.qdoc %%QT_EXAMPLEDIR%%/assistant/remotecontrol/enter.png %%QT_EXAMPLEDIR%%/assistant/remotecontrol/main.cpp %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.cpp %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.h %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.pro %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.qrc %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.ui %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/assistant.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/assistant.h %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/about.txt %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/browse.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/filedialog.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/findfile.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/browse.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/fadedfilemenu.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/filedialog.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/handbook.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/icon.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/mainwindow.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/open.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/wildcard.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/index.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/intro.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/openfile.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qch %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhc %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhcp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/wildcardmatching.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/findfiledialog.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/findfiledialog.h %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/main.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/mainwindow.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/mainwindow.h %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/simpletextviewer.pro %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/textedit.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/textedit.h %%QT_EXAMPLEDIR%%/bluetooth/bluetooth.pro %%QT_EXAMPLEDIR%%/bluetooth/btchat/btchat.pro %%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.ui %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatclient.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatclient.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatserver.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatserver.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/doc/images/btchat-example.png %%QT_EXAMPLEDIR%%/bluetooth/btchat/doc/src/btchat.qdoc %%QT_EXAMPLEDIR%%/bluetooth/btchat/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.ui %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/btfiletransfer.pro %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/btfiletransfer.qrc %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/busy.gif %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/doc/images/btfiletransfer-example.png %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/doc/src/btfiletransfer.qdoc %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pairing.gif %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.h %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.ui %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.h %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.ui %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.h %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.ui %%QT_EXAMPLEDIR%%/bluetooth/btscanner/btscanner.pro %%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.cpp %%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.h %%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.ui %%QT_EXAMPLEDIR%%/bluetooth/btscanner/doc/images/btscanner-example.png %%QT_EXAMPLEDIR%%/bluetooth/btscanner/doc/src/btscanner.qdoc %%QT_EXAMPLEDIR%%/bluetooth/btscanner/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.cpp %%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.h %%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.ui %%QT_EXAMPLEDIR%%/bluetooth/chat/Button.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/InputBox.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/Search.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/chat.pro %%QT_EXAMPLEDIR%%/bluetooth/chat/chat.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/chat.qrc %%QT_EXAMPLEDIR%%/bluetooth/chat/doc/images/chat-view.png %%QT_EXAMPLEDIR%%/bluetooth/chat/doc/src/chat.qdoc %%QT_EXAMPLEDIR%%/bluetooth/chat/images/clear.png %%QT_EXAMPLEDIR%%/bluetooth/chat/images/default.png %%QT_EXAMPLEDIR%%/bluetooth/chat/images/lineedit-bg.png %%QT_EXAMPLEDIR%%/bluetooth/chat/qmlchat.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/README.md %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/bluetoothbaseclass.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/bluetoothbaseclass.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/connectionhandler.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/connectionhandler.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicefinder.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicefinder.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicehandler.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicehandler.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/deviceinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/deviceinfo.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-result.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-running.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-search.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-start.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/src/heartrate-game.qdoc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/heartrate-game.pro %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/heartrate-global.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/images.qrc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml.qrc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/App.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/BluetoothAlarmDialog.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/BottomLine.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/Connect.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/GameButton.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/GamePage.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/GameSettings.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/Measure.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/SplashScreen.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/Stats.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/StatsLabel.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/TitleBar.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/images/bt_off_to_on.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/images/heart.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/images/logo.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/main.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/qmldir %%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/doc/src/heartrate-server.qdoc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/heartrate-server.pro %%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Characteristics.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Dialog.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Header.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Label.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Menu.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Services.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/busy_dark.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/main.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/characteristicinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/characteristicinfo.h %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/device.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/device.h %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/deviceinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/deviceinfo.h %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-chars.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-devices.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-services.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/src/lowenergyscanner.qdoc %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/lowenergyscanner.pro %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/resources.qrc %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/serviceinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/serviceinfo.h %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/Button.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/DeviceDiscovery.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/FileSending.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/PictureSelector.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/background.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/bttransfer.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-1.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-2.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-3.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/src/picturetransfer.qdoc %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/filetransfer.cpp %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/filetransfer.h %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/icon.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/picturetransfer.pro %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/qmltransfer.qrc %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Board.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Dialog.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Menu.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/main.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/images/intro.png %%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/images/intro1.png %%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/src/pingpong.qdoc %%QT_EXAMPLEDIR%%/bluetooth/pingpong/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.cpp %%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.h %%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.pro %%QT_EXAMPLEDIR%%/bluetooth/pingpong/resource.qrc %%QT_EXAMPLEDIR%%/bluetooth/scanner/Button.qml %%QT_EXAMPLEDIR%%/bluetooth/scanner/default.png %%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/images/devicescan.png %%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/images/servicescan.png %%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/src/scanner.qdoc %%QT_EXAMPLEDIR%%/bluetooth/scanner/qmlscanner.cpp %%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.pro %%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qml %%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qrc %%QT_EXAMPLEDIR%%/charts/areachart/areachart.pro %%QT_EXAMPLEDIR%%/charts/areachart/main.cpp %%QT_EXAMPLEDIR%%/charts/audio/audio.pro %%QT_EXAMPLEDIR%%/charts/audio/main.cpp %%QT_EXAMPLEDIR%%/charts/audio/widget.cpp %%QT_EXAMPLEDIR%%/charts/audio/widget.h %%QT_EXAMPLEDIR%%/charts/audio/xyseriesiodevice.cpp %%QT_EXAMPLEDIR%%/charts/audio/xyseriesiodevice.h %%QT_EXAMPLEDIR%%/charts/barchart/barchart.pro %%QT_EXAMPLEDIR%%/charts/barchart/main.cpp %%QT_EXAMPLEDIR%%/charts/barmodelmapper/barmodelmapper.pro %%QT_EXAMPLEDIR%%/charts/barmodelmapper/customtablemodel.cpp %%QT_EXAMPLEDIR%%/charts/barmodelmapper/customtablemodel.h %%QT_EXAMPLEDIR%%/charts/barmodelmapper/main.cpp %%QT_EXAMPLEDIR%%/charts/barmodelmapper/tablewidget.cpp %%QT_EXAMPLEDIR%%/charts/barmodelmapper/tablewidget.h %%QT_EXAMPLEDIR%%/charts/boxplotchart/acme_data.txt %%QT_EXAMPLEDIR%%/charts/boxplotchart/boxdatareader.cpp %%QT_EXAMPLEDIR%%/charts/boxplotchart/boxdatareader.h %%QT_EXAMPLEDIR%%/charts/boxplotchart/boxplotchart.pro %%QT_EXAMPLEDIR%%/charts/boxplotchart/boxplotdata.qrc %%QT_EXAMPLEDIR%%/charts/boxplotchart/boxwhisk_data.txt %%QT_EXAMPLEDIR%%/charts/boxplotchart/main.cpp %%QT_EXAMPLEDIR%%/charts/callout/callout.cpp %%QT_EXAMPLEDIR%%/charts/callout/callout.h %%QT_EXAMPLEDIR%%/charts/callout/callout.pro %%QT_EXAMPLEDIR%%/charts/callout/main.cpp %%QT_EXAMPLEDIR%%/charts/callout/view.cpp %%QT_EXAMPLEDIR%%/charts/callout/view.h %%QT_EXAMPLEDIR%%/charts/candlestickchart/acme_data.txt %%QT_EXAMPLEDIR%%/charts/candlestickchart/candlestickchart.pro %%QT_EXAMPLEDIR%%/charts/candlestickchart/candlestickdata.qrc %%QT_EXAMPLEDIR%%/charts/candlestickchart/candlestickdatareader.cpp %%QT_EXAMPLEDIR%%/charts/candlestickchart/candlestickdatareader.h %%QT_EXAMPLEDIR%%/charts/candlestickchart/main.cpp %%QT_EXAMPLEDIR%%/charts/chartinteractions/chart.cpp %%QT_EXAMPLEDIR%%/charts/chartinteractions/chart.h %%QT_EXAMPLEDIR%%/charts/chartinteractions/chartinteractions.pro %%QT_EXAMPLEDIR%%/charts/chartinteractions/chartview.cpp %%QT_EXAMPLEDIR%%/charts/chartinteractions/chartview.h %%QT_EXAMPLEDIR%%/charts/chartinteractions/main.cpp %%QT_EXAMPLEDIR%%/charts/charts.pro %%QT_EXAMPLEDIR%%/charts/chartthemes/chartthemes.pro %%QT_EXAMPLEDIR%%/charts/chartthemes/main.cpp %%QT_EXAMPLEDIR%%/charts/chartthemes/themewidget.cpp %%QT_EXAMPLEDIR%%/charts/chartthemes/themewidget.h %%QT_EXAMPLEDIR%%/charts/chartthemes/themewidget.ui %%QT_EXAMPLEDIR%%/charts/customchart/customchart.pro %%QT_EXAMPLEDIR%%/charts/customchart/main.cpp %%QT_EXAMPLEDIR%%/charts/datetimeaxis/datetimeaxis.pro %%QT_EXAMPLEDIR%%/charts/datetimeaxis/main.cpp %%QT_EXAMPLEDIR%%/charts/datetimeaxis/sun_spots.txt %%QT_EXAMPLEDIR%%/charts/datetimeaxis/sundata.qrc %%QT_EXAMPLEDIR%%/charts/donutbreakdown/donutbreakdown.pro %%QT_EXAMPLEDIR%%/charts/donutbreakdown/donutbreakdownchart.cpp %%QT_EXAMPLEDIR%%/charts/donutbreakdown/donutbreakdownchart.h %%QT_EXAMPLEDIR%%/charts/donutbreakdown/main.cpp %%QT_EXAMPLEDIR%%/charts/donutbreakdown/mainslice.cpp %%QT_EXAMPLEDIR%%/charts/donutbreakdown/mainslice.h %%QT_EXAMPLEDIR%%/charts/donutchart/donutchart.pro %%QT_EXAMPLEDIR%%/charts/donutchart/main.cpp %%QT_EXAMPLEDIR%%/charts/dynamicspline/chart.cpp %%QT_EXAMPLEDIR%%/charts/dynamicspline/chart.h %%QT_EXAMPLEDIR%%/charts/dynamicspline/dynamicspline.pro %%QT_EXAMPLEDIR%%/charts/dynamicspline/main.cpp %%QT_EXAMPLEDIR%%/charts/horizontalbarchart/horizontalbarchart.pro %%QT_EXAMPLEDIR%%/charts/horizontalbarchart/main.cpp %%QT_EXAMPLEDIR%%/charts/horizontalpercentbarchart/horizontalpercentbarchart.pro %%QT_EXAMPLEDIR%%/charts/horizontalpercentbarchart/main.cpp %%QT_EXAMPLEDIR%%/charts/horizontalstackedbarchart/horizontalstackedbarchart.pro %%QT_EXAMPLEDIR%%/charts/horizontalstackedbarchart/main.cpp %%QT_EXAMPLEDIR%%/charts/legend/legend.pro %%QT_EXAMPLEDIR%%/charts/legend/main.cpp %%QT_EXAMPLEDIR%%/charts/legend/mainwidget.cpp %%QT_EXAMPLEDIR%%/charts/legend/mainwidget.h %%QT_EXAMPLEDIR%%/charts/legendmarkers/legendmarkers.pro %%QT_EXAMPLEDIR%%/charts/legendmarkers/main.cpp %%QT_EXAMPLEDIR%%/charts/legendmarkers/mainwidget.cpp %%QT_EXAMPLEDIR%%/charts/legendmarkers/mainwidget.h %%QT_EXAMPLEDIR%%/charts/lineandbar/lineandbar.pro %%QT_EXAMPLEDIR%%/charts/lineandbar/main.cpp %%QT_EXAMPLEDIR%%/charts/linechart/linechart.pro %%QT_EXAMPLEDIR%%/charts/linechart/main.cpp %%QT_EXAMPLEDIR%%/charts/logvalueaxis/logvalueaxis.pro %%QT_EXAMPLEDIR%%/charts/logvalueaxis/main.cpp %%QT_EXAMPLEDIR%%/charts/modeldata/customtablemodel.cpp %%QT_EXAMPLEDIR%%/charts/modeldata/customtablemodel.h %%QT_EXAMPLEDIR%%/charts/modeldata/main.cpp %%QT_EXAMPLEDIR%%/charts/modeldata/modeldata.pro %%QT_EXAMPLEDIR%%/charts/modeldata/tablewidget.cpp %%QT_EXAMPLEDIR%%/charts/modeldata/tablewidget.h %%QT_EXAMPLEDIR%%/charts/multiaxis/main.cpp %%QT_EXAMPLEDIR%%/charts/multiaxis/multiaxis.pro %%QT_EXAMPLEDIR%%/charts/nesteddonuts/main.cpp %%QT_EXAMPLEDIR%%/charts/nesteddonuts/nesteddonuts.pro %%QT_EXAMPLEDIR%%/charts/nesteddonuts/widget.cpp %%QT_EXAMPLEDIR%%/charts/nesteddonuts/widget.h %%QT_EXAMPLEDIR%%/charts/openglseries/datasource.cpp %%QT_EXAMPLEDIR%%/charts/openglseries/datasource.h %%QT_EXAMPLEDIR%%/charts/openglseries/main.cpp %%QT_EXAMPLEDIR%%/charts/openglseries/openglseries.pro %%QT_EXAMPLEDIR%%/charts/percentbarchart/main.cpp %%QT_EXAMPLEDIR%%/charts/percentbarchart/percentbarchart.pro %%QT_EXAMPLEDIR%%/charts/piechart/main.cpp %%QT_EXAMPLEDIR%%/charts/piechart/piechart.pro %%QT_EXAMPLEDIR%%/charts/piechartcustomization/brushtool.cpp %%QT_EXAMPLEDIR%%/charts/piechartcustomization/brushtool.h %%QT_EXAMPLEDIR%%/charts/piechartcustomization/customslice.cpp %%QT_EXAMPLEDIR%%/charts/piechartcustomization/customslice.h %%QT_EXAMPLEDIR%%/charts/piechartcustomization/main.cpp %%QT_EXAMPLEDIR%%/charts/piechartcustomization/mainwidget.cpp %%QT_EXAMPLEDIR%%/charts/piechartcustomization/mainwidget.h %%QT_EXAMPLEDIR%%/charts/piechartcustomization/pentool.cpp %%QT_EXAMPLEDIR%%/charts/piechartcustomization/pentool.h %%QT_EXAMPLEDIR%%/charts/piechartcustomization/piechartcustomization.pro %%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownchart.cpp %%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownchart.h %%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownslice.cpp %%QT_EXAMPLEDIR%%/charts/piechartdrilldown/drilldownslice.h %%QT_EXAMPLEDIR%%/charts/piechartdrilldown/main.cpp %%QT_EXAMPLEDIR%%/charts/piechartdrilldown/piechartdrilldown.pro %%QT_EXAMPLEDIR%%/charts/polarchart/chartview.cpp %%QT_EXAMPLEDIR%%/charts/polarchart/chartview.h %%QT_EXAMPLEDIR%%/charts/polarchart/main.cpp %%QT_EXAMPLEDIR%%/charts/polarchart/polarchart.pro %%QT_EXAMPLEDIR%%/charts/qmlaxes/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/View1.qml %%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/View2.qml %%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/View3.qml %%QT_EXAMPLEDIR%%/charts/qmlaxes/qml/qmlaxes/main.qml %%QT_EXAMPLEDIR%%/charts/qmlaxes/qmlaxes.pro %%QT_EXAMPLEDIR%%/charts/qmlaxes/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlboxplot/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlboxplot/qml/qmlboxplot/main.qml %%QT_EXAMPLEDIR%%/charts/qmlboxplot/qmlboxplot.pro %%QT_EXAMPLEDIR%%/charts/qmlboxplot/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlcandlestick/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlcandlestick/qml/qmlcandlestick/main.qml %%QT_EXAMPLEDIR%%/charts/qmlcandlestick/qmlcandlestick.pro %%QT_EXAMPLEDIR%%/charts/qmlcandlestick/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlchart/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/MainForm.ui.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View1.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View10.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View11.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View12.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View2.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View3.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View4.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View5.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View6.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View7.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View8.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/View9.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qml/qmlchart/main.qml %%QT_EXAMPLEDIR%%/charts/qmlchart/qmlchart.pro %%QT_EXAMPLEDIR%%/charts/qmlchart/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlcustomizations/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlcustomizations/qml/qmlcustomizations/main.qml %%QT_EXAMPLEDIR%%/charts/qmlcustomizations/qmlcustomizations.pro %%QT_EXAMPLEDIR%%/charts/qmlcustomizations/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/AnimatedAreaSeries.qml %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/ChartViewHighlighted.qml %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/ChartViewSelector.qml %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/ChartViewStacked.qml %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/CustomLegend.qml %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qml/qmlcustomlegend/main.qml %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/qmlcustomlegend.pro %%QT_EXAMPLEDIR%%/charts/qmlcustomlegend/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlf1legends/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlf1legends/qml/qmlf1legends/SpeedsXml.qml %%QT_EXAMPLEDIR%%/charts/qmlf1legends/qml/qmlf1legends/main.qml %%QT_EXAMPLEDIR%%/charts/qmlf1legends/qmlf1legends.pro %%QT_EXAMPLEDIR%%/charts/qmlf1legends/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/datasource.cpp %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/datasource.h %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/main.cpp %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/ControlPanel.qml %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/MultiButton.qml %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/ScopeView.qml %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qml/qmloscilloscope/main.qml %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/qmloscilloscope.pro %%QT_EXAMPLEDIR%%/charts/qmloscilloscope/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlpiechart/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlpiechart/qml/qmlpiechart/main.qml %%QT_EXAMPLEDIR%%/charts/qmlpiechart/qmlpiechart.pro %%QT_EXAMPLEDIR%%/charts/qmlpiechart/qmlpiechart.svg %%QT_EXAMPLEDIR%%/charts/qmlpiechart/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlpolarchart/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/View1.qml %%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/View2.qml %%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/View3.qml %%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qml/qmlpolarchart/main.qml %%QT_EXAMPLEDIR%%/charts/qmlpolarchart/qmlpolarchart.pro %%QT_EXAMPLEDIR%%/charts/qmlpolarchart/resources.qrc %%QT_EXAMPLEDIR%%/charts/qmlweather/main.cpp %%QT_EXAMPLEDIR%%/charts/qmlweather/qml/qmlweather/main.qml %%QT_EXAMPLEDIR%%/charts/qmlweather/qmlweather.pro %%QT_EXAMPLEDIR%%/charts/qmlweather/resources.qrc %%QT_EXAMPLEDIR%%/charts/scatterchart/chartview.cpp %%QT_EXAMPLEDIR%%/charts/scatterchart/chartview.h %%QT_EXAMPLEDIR%%/charts/scatterchart/main.cpp %%QT_EXAMPLEDIR%%/charts/scatterchart/scatterchart.pro %%QT_EXAMPLEDIR%%/charts/scatterinteractions/chartview.cpp %%QT_EXAMPLEDIR%%/charts/scatterinteractions/chartview.h %%QT_EXAMPLEDIR%%/charts/scatterinteractions/main.cpp %%QT_EXAMPLEDIR%%/charts/scatterinteractions/scatterinteractions.pro %%QT_EXAMPLEDIR%%/charts/splinechart/main.cpp %%QT_EXAMPLEDIR%%/charts/splinechart/splinechart.pro %%QT_EXAMPLEDIR%%/charts/stackedbarchart/main.cpp %%QT_EXAMPLEDIR%%/charts/stackedbarchart/stackedbarchart.pro %%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownchart.cpp %%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownchart.h %%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownseries.cpp %%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/drilldownseries.h %%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/main.cpp %%QT_EXAMPLEDIR%%/charts/stackedbarchartdrilldown/stackedbarchartdrilldown.pro %%QT_EXAMPLEDIR%%/charts/temperaturerecords/main.cpp %%QT_EXAMPLEDIR%%/charts/temperaturerecords/temperaturerecords.pro %%QT_EXAMPLEDIR%%/charts/zoomlinechart/chart.cpp %%QT_EXAMPLEDIR%%/charts/zoomlinechart/chart.h %%QT_EXAMPLEDIR%%/charts/zoomlinechart/chartview.cpp %%QT_EXAMPLEDIR%%/charts/zoomlinechart/chartview.h %%QT_EXAMPLEDIR%%/charts/zoomlinechart/main.cpp %%QT_EXAMPLEDIR%%/charts/zoomlinechart/zoomlinechart.pro %%QT_EXAMPLEDIR%%/corelib/corelib.pro %%QT_EXAMPLEDIR%%/corelib/ipc/README %%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/localfortuneclient-example.png %%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/localfortuneserver-example.png %%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/sharedmemory-example_1.png %%QT_EXAMPLEDIR%%/corelib/ipc/doc/images/sharedmemory-example_2.png %%QT_EXAMPLEDIR%%/corelib/ipc/doc/src/localfortuneclient.qdoc %%QT_EXAMPLEDIR%%/corelib/ipc/doc/src/localfortuneserver.qdoc %%QT_EXAMPLEDIR%%/corelib/ipc/doc/src/sharedmemory.qdoc %%QT_EXAMPLEDIR%%/corelib/ipc/ipc.pro %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/client.cpp %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/client.h %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/localfortuneclient.pro %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneclient/main.cpp %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/localfortuneserver.pro %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/main.cpp %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/server.cpp %%QT_EXAMPLEDIR%%/corelib/ipc/localfortuneserver/server.h %%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/dialog.cpp %%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/dialog.h %%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/dialog.ui %%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/image.png %%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/main.cpp %%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/qt.png %%QT_EXAMPLEDIR%%/corelib/ipc/sharedmemory/sharedmemory.pro %%QT_EXAMPLEDIR%%/corelib/mimetypes/doc/images/mimetypebrowser.png %%QT_EXAMPLEDIR%%/corelib/mimetypes/doc/src/mimetypebrowser.qdoc %%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/main.cpp %%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mainwindow.cpp %%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mainwindow.h %%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mimetypebrowser.pro %%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mimetypemodel.cpp %%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypebrowser/mimetypemodel.h %%QT_EXAMPLEDIR%%/corelib/mimetypes/mimetypes.pro %%QT_EXAMPLEDIR%%/corelib/serialization/cbordump/cbordump.pro %%QT_EXAMPLEDIR%%/corelib/serialization/cbordump/main.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/cbordump/tag-transform.xslt %%QT_EXAMPLEDIR%%/corelib/serialization/convert/cborconverter.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/convert/cborconverter.h %%QT_EXAMPLEDIR%%/corelib/serialization/convert/convert.pro %%QT_EXAMPLEDIR%%/corelib/serialization/convert/converter.h %%QT_EXAMPLEDIR%%/corelib/serialization/convert/datastreamconverter.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/convert/datastreamconverter.h %%QT_EXAMPLEDIR%%/corelib/serialization/convert/jsonconverter.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/convert/jsonconverter.h %%QT_EXAMPLEDIR%%/corelib/serialization/convert/main.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/convert/nullconverter.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/convert/nullconverter.h %%QT_EXAMPLEDIR%%/corelib/serialization/convert/textconverter.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/convert/textconverter.h %%QT_EXAMPLEDIR%%/corelib/serialization/convert/xmlconverter.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/convert/xmlconverter.h %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/character.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/character.h %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/doc/src/savegame.qdoc %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/game.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/game.h %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/level.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/level.h %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/main.cpp %%QT_EXAMPLEDIR%%/corelib/serialization/savegame/savegame.pro %%QT_EXAMPLEDIR%%/corelib/serialization/serialization.pro %%QT_EXAMPLEDIR%%/corelib/threads/README %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot-example.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_scroll1.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_scroll2.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_scroll3.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_zoom1.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_zoom2.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/mandelbrot_zoom3.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/images/queuedcustomtype-example.png %%QT_EXAMPLEDIR%%/corelib/threads/doc/src/mandelbrot.qdoc %%QT_EXAMPLEDIR%%/corelib/threads/doc/src/queuedcustomtype.qdoc %%QT_EXAMPLEDIR%%/corelib/threads/doc/src/semaphores.qdoc %%QT_EXAMPLEDIR%%/corelib/threads/doc/src/waitconditions.qdoc %%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/main.cpp %%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/mandelbrot.pro %%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/mandelbrotwidget.cpp %%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/mandelbrotwidget.h %%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/renderthread.cpp %%QT_EXAMPLEDIR%%/corelib/threads/mandelbrot/renderthread.h %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/block.cpp %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/block.h %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/main.cpp %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/queuedcustomtype.pro %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/renderthread.cpp %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/renderthread.h %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/window.cpp %%QT_EXAMPLEDIR%%/corelib/threads/queuedcustomtype/window.h %%QT_EXAMPLEDIR%%/corelib/threads/semaphores/semaphores.cpp %%QT_EXAMPLEDIR%%/corelib/threads/semaphores/semaphores.pro %%QT_EXAMPLEDIR%%/corelib/threads/threads.pro %%QT_EXAMPLEDIR%%/corelib/threads/waitconditions/waitconditions.cpp %%QT_EXAMPLEDIR%%/corelib/threads/waitconditions/waitconditions.pro %%QT_EXAMPLEDIR%%/corelib/tools/README %%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/contiguouscache.pro %%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/main.cpp %%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/randomlistmodel.cpp %%QT_EXAMPLEDIR%%/corelib/tools/contiguouscache/randomlistmodel.h %%QT_EXAMPLEDIR%%/corelib/tools/customtype/customtype.pro %%QT_EXAMPLEDIR%%/corelib/tools/customtype/main.cpp %%QT_EXAMPLEDIR%%/corelib/tools/customtype/message.cpp %%QT_EXAMPLEDIR%%/corelib/tools/customtype/message.h %%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/customtypesending.pro %%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/main.cpp %%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/message.cpp %%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/message.h %%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/window.cpp %%QT_EXAMPLEDIR%%/corelib/tools/customtypesending/window.h %%QT_EXAMPLEDIR%%/corelib/tools/doc/src/contiguouscache.qdoc %%QT_EXAMPLEDIR%%/corelib/tools/doc/src/customtype.qdoc %%QT_EXAMPLEDIR%%/corelib/tools/tools.pro %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/audiolevels.cpp %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/audiolevels.h %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/audiolevels.pro %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/audiolevelsiodevice.cpp %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/audiolevelsiodevice.h %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/doc/images/audiolevels-example.png %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/doc/src/audiolevels.qdoc %%QT_EXAMPLEDIR%%/datavisualization/audiolevels/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/bars/bars.pro %%QT_EXAMPLEDIR%%/datavisualization/bars/doc/images/bars-example.png %%QT_EXAMPLEDIR%%/datavisualization/bars/doc/src/bars.qdoc %%QT_EXAMPLEDIR%%/datavisualization/bars/graphmodifier.cpp %%QT_EXAMPLEDIR%%/datavisualization/bars/graphmodifier.h %%QT_EXAMPLEDIR%%/datavisualization/bars/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/custominput/custominput.pro %%QT_EXAMPLEDIR%%/datavisualization/custominput/custominput.qrc %%QT_EXAMPLEDIR%%/datavisualization/custominput/custominputhandler.cpp %%QT_EXAMPLEDIR%%/datavisualization/custominput/custominputhandler.h %%QT_EXAMPLEDIR%%/datavisualization/custominput/data/data.txt %%QT_EXAMPLEDIR%%/datavisualization/custominput/doc/images/custominput-example.png %%QT_EXAMPLEDIR%%/datavisualization/custominput/doc/src/custominput.qdoc %%QT_EXAMPLEDIR%%/datavisualization/custominput/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/custominput/scatterdatamodifier.cpp %%QT_EXAMPLEDIR%%/datavisualization/custominput/scatterdatamodifier.h %%QT_EXAMPLEDIR%%/datavisualization/customitems/customitemgraph.cpp %%QT_EXAMPLEDIR%%/datavisualization/customitems/customitemgraph.h %%QT_EXAMPLEDIR%%/datavisualization/customitems/customitems.pro %%QT_EXAMPLEDIR%%/datavisualization/customitems/customitems.qrc %%QT_EXAMPLEDIR%%/datavisualization/customitems/doc/images/customitems-example.png %%QT_EXAMPLEDIR%%/datavisualization/customitems/doc/src/customitems.qdoc %%QT_EXAMPLEDIR%%/datavisualization/customitems/layer_1.png %%QT_EXAMPLEDIR%%/datavisualization/customitems/layer_2.png %%QT_EXAMPLEDIR%%/datavisualization/customitems/layer_3.png %%QT_EXAMPLEDIR%%/datavisualization/customitems/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/customitems/oilrig.obj %%QT_EXAMPLEDIR%%/datavisualization/customitems/pipe.obj %%QT_EXAMPLEDIR%%/datavisualization/customitems/refinery.obj %%QT_EXAMPLEDIR%%/datavisualization/customproxy/customproxy.pro %%QT_EXAMPLEDIR%%/datavisualization/customproxy/customproxy.qrc %%QT_EXAMPLEDIR%%/datavisualization/customproxy/data/raindata.txt %%QT_EXAMPLEDIR%%/datavisualization/customproxy/doc/images/customproxy-example.png %%QT_EXAMPLEDIR%%/datavisualization/customproxy/doc/src/customproxy.qdoc %%QT_EXAMPLEDIR%%/datavisualization/customproxy/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/customproxy/rainfallgraph.cpp %%QT_EXAMPLEDIR%%/datavisualization/customproxy/rainfallgraph.h %%QT_EXAMPLEDIR%%/datavisualization/customproxy/variantbardatamapping.cpp %%QT_EXAMPLEDIR%%/datavisualization/customproxy/variantbardatamapping.h %%QT_EXAMPLEDIR%%/datavisualization/customproxy/variantbardataproxy.cpp %%QT_EXAMPLEDIR%%/datavisualization/customproxy/variantbardataproxy.h %%QT_EXAMPLEDIR%%/datavisualization/customproxy/variantdataset.cpp %%QT_EXAMPLEDIR%%/datavisualization/customproxy/variantdataset.h %%QT_EXAMPLEDIR%%/datavisualization/datavisualization.pro %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/axesinputhandler.cpp %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/axesinputhandler.h %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/data.cpp %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/data.h %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/doc/images/draggableaxes-example.png %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/doc/src/draggableaxes.qdoc %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/draggableaxes.pro %%QT_EXAMPLEDIR%%/datavisualization/draggableaxes/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/examples.pri %%QT_EXAMPLEDIR%%/datavisualization/itemmodel/doc/images/itemmodel-example-2.png %%QT_EXAMPLEDIR%%/datavisualization/itemmodel/doc/images/itemmodel-example.png %%QT_EXAMPLEDIR%%/datavisualization/itemmodel/doc/src/itemmodel.qdoc %%QT_EXAMPLEDIR%%/datavisualization/itemmodel/itemmodel.pro %%QT_EXAMPLEDIR%%/datavisualization/itemmodel/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/doc/images/qmlaxisdrag-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/doc/src/qmlaxisdrag.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/cube.obj %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/cubetexture.png %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/qml/qmlaxisdrag/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/qmlaxisdrag.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisdrag/qmlaxisdrag.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/customformatter.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/customformatter.h %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/doc/images/qmlaxisformatter-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/doc/src/qmlaxisformatter.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/qml/qmlaxisformatter/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/qml/qmlaxisformatter/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/qml/qmlaxisformatter/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/qmlaxisformatter.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlaxisformatter/qmlaxisformatter.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/doc/images/qmlbars-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/doc/src/qmlbars.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/qml/qmlbars/Axes.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/qml/qmlbars/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/qml/qmlbars/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/qmlbars.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlbars/qmlbars.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/doc/images/qmlcustominput-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/doc/src/qmlcustominput.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/qml/qmlcustominput/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/qml/qmlcustominput/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/qml/qmlcustominput/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/qmlcustominput.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlcustominput/qmlcustominput.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/doc/images/qmllegend-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/doc/src/qmllegend.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/qml/qmllegend/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/qml/qmllegend/LegendItem.qml %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/qml/qmllegend/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/qml/qmllegend/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/qmllegend.pro %%QT_EXAMPLEDIR%%/datavisualization/qmllegend/qmllegend.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/doc/images/qmlmultigraph-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/qml/qmlmultigraph/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/qml/qmlmultigraph/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/qmlmultigraph.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlmultigraph/qmlmultigraph.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/datasource.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/datasource.h %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/doc/images/qmloscilloscope-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/doc/src/qmloscilloscope.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/qml/qmloscilloscope/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/qml/qmloscilloscope/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/qmloscilloscope.pro %%QT_EXAMPLEDIR%%/datavisualization/qmloscilloscope/qmloscilloscope.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/doc/images/qmlscatter-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/doc/src/qmlscatter.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/qml/qmlscatter/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/qml/qmlscatter/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/qml/qmlscatter/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/qmlscatter.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlscatter/qmlscatter.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/doc/images/qmlspectrogram-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/doc/src/qmlspectrogram.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/qml/qmlspectrogram/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/qml/qmlspectrogram/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/qmlspectrogram.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlspectrogram/qmlspectrogram.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/doc/images/qmlsurface-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/doc/src/qmlsurface.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/heightmap.png %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/qml/qmlsurface/Data.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/qml/qmlsurface/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/qml/qmlsurface/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/qmlsurface.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlsurface/qmlsurface.qrc %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/doc/images/qmlsurfacelayers-example.png %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/doc/src/qmlsurfacelayers.qdoc %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/layer_1.png %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/layer_2.png %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/layer_3.png %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/qml/qmlsurfacelayers/NewButton.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/qml/qmlsurfacelayers/main.qml %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/qmlsurfacelayers.pro %%QT_EXAMPLEDIR%%/datavisualization/qmlsurfacelayers/qmlsurfacelayers.qrc %%QT_EXAMPLEDIR%%/datavisualization/rotations/doc/images/rotations-example.png %%QT_EXAMPLEDIR%%/datavisualization/rotations/doc/src/rotations.qdoc %%QT_EXAMPLEDIR%%/datavisualization/rotations/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/rotations/mesh/largesphere.obj %%QT_EXAMPLEDIR%%/datavisualization/rotations/mesh/narrowarrow.obj %%QT_EXAMPLEDIR%%/datavisualization/rotations/rotations.pro %%QT_EXAMPLEDIR%%/datavisualization/rotations/rotations.qrc %%QT_EXAMPLEDIR%%/datavisualization/rotations/scatterdatamodifier.cpp %%QT_EXAMPLEDIR%%/datavisualization/rotations/scatterdatamodifier.h %%QT_EXAMPLEDIR%%/datavisualization/scatter/doc/images/scatter-example.png %%QT_EXAMPLEDIR%%/datavisualization/scatter/doc/src/scatter.qdoc %%QT_EXAMPLEDIR%%/datavisualization/scatter/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/scatter/scatter.pro %%QT_EXAMPLEDIR%%/datavisualization/scatter/scatterdatamodifier.cpp %%QT_EXAMPLEDIR%%/datavisualization/scatter/scatterdatamodifier.h %%QT_EXAMPLEDIR%%/datavisualization/surface/doc/images/surface-example.png %%QT_EXAMPLEDIR%%/datavisualization/surface/doc/src/surface.qdoc %%QT_EXAMPLEDIR%%/datavisualization/surface/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/surface/mountain.png %%QT_EXAMPLEDIR%%/datavisualization/surface/surface.pro %%QT_EXAMPLEDIR%%/datavisualization/surface/surface.qrc %%QT_EXAMPLEDIR%%/datavisualization/surface/surfacegraph.cpp %%QT_EXAMPLEDIR%%/datavisualization/surface/surfacegraph.h %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/custominputhandler.cpp %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/custominputhandler.h %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/doc/images/texturesurface-example.png %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/doc/src/texturesurface.qdoc %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/highlightseries.cpp %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/highlightseries.h %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/license.txt %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/maptexture.jpg %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/surfacegraph.cpp %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/surfacegraph.h %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/texturedsurface.qrc %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/texturesurface.pro %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/topographicseries.cpp %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/topographicseries.h %%QT_EXAMPLEDIR%%/datavisualization/texturesurface/topography.png %%QT_EXAMPLEDIR%%/datavisualization/volumetric/doc/images/volumetric-example.png %%QT_EXAMPLEDIR%%/datavisualization/volumetric/doc/src/volumetric.qdoc %%QT_EXAMPLEDIR%%/datavisualization/volumetric/layer_ground.png %%QT_EXAMPLEDIR%%/datavisualization/volumetric/layer_magma.png %%QT_EXAMPLEDIR%%/datavisualization/volumetric/layer_water.png %%QT_EXAMPLEDIR%%/datavisualization/volumetric/main.cpp %%QT_EXAMPLEDIR%%/datavisualization/volumetric/volumetric.cpp %%QT_EXAMPLEDIR%%/datavisualization/volumetric/volumetric.h %%QT_EXAMPLEDIR%%/datavisualization/volumetric/volumetric.pro %%QT_EXAMPLEDIR%%/datavisualization/volumetric/volumetric.qrc %%QT_EXAMPLEDIR%%/dbus/chat/chat.cpp %%QT_EXAMPLEDIR%%/dbus/chat/chat.h %%QT_EXAMPLEDIR%%/dbus/chat/chat.pro %%QT_EXAMPLEDIR%%/dbus/chat/chatmainwindow.ui %%QT_EXAMPLEDIR%%/dbus/chat/chatsetnickname.ui %%QT_EXAMPLEDIR%%/dbus/chat/org.example.chat.xml %%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexping.cpp %%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexping.h %%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexping.pro %%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpingpong.pro %%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpong.cpp %%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpong.h %%QT_EXAMPLEDIR%%/dbus/complexpingpong/complexpong.pro %%QT_EXAMPLEDIR%%/dbus/complexpingpong/ping-common.h %%QT_EXAMPLEDIR%%/dbus/dbus.pro %%QT_EXAMPLEDIR%%/dbus/doc/images/dbus-chat-example.png %%QT_EXAMPLEDIR%%/dbus/doc/src/chat.qdoc %%QT_EXAMPLEDIR%%/dbus/doc/src/complexpingpong.qdoc %%QT_EXAMPLEDIR%%/dbus/doc/src/listnames.qdoc %%QT_EXAMPLEDIR%%/dbus/doc/src/pingpong.qdoc %%QT_EXAMPLEDIR%%/dbus/listnames/listnames.cpp %%QT_EXAMPLEDIR%%/dbus/listnames/listnames.pro %%QT_EXAMPLEDIR%%/dbus/pingpong/ping-common.h %%QT_EXAMPLEDIR%%/dbus/pingpong/ping.cpp %%QT_EXAMPLEDIR%%/dbus/pingpong/ping.pro %%QT_EXAMPLEDIR%%/dbus/pingpong/pingpong.pro %%QT_EXAMPLEDIR%%/dbus/pingpong/pong.cpp %%QT_EXAMPLEDIR%%/dbus/pingpong/pong.h %%QT_EXAMPLEDIR%%/dbus/pingpong/pong.pro %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.cpp %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.h %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.pro %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/car.xml %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/car/main.cpp %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/car.xml %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.cpp %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.h %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.pro %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/controller.ui %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/controller/main.cpp %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/doc/images/remotecontrolledcar-car-example.png %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/doc/src/dbus-remotecontrolledcar.qdoc %%QT_EXAMPLEDIR%%/dbus/remotecontrolledcar/remotecontrolledcar.pro %%QT_EXAMPLEDIR%%/demos/calqlatr/calqlatr.pro %%QT_EXAMPLEDIR%%/demos/calqlatr/calqlatr.qml %%QT_EXAMPLEDIR%%/demos/calqlatr/calqlatr.qmlproject %%QT_EXAMPLEDIR%%/demos/calqlatr/calqlatr.qrc %%QT_EXAMPLEDIR%%/demos/calqlatr/content/Button.qml %%QT_EXAMPLEDIR%%/demos/calqlatr/content/Display.qml %%QT_EXAMPLEDIR%%/demos/calqlatr/content/NumberPad.qml %%QT_EXAMPLEDIR%%/demos/calqlatr/content/calculator.js %%QT_EXAMPLEDIR%%/demos/calqlatr/content/images/paper-edge-left.png %%QT_EXAMPLEDIR%%/demos/calqlatr/content/images/paper-edge-right.png %%QT_EXAMPLEDIR%%/demos/calqlatr/content/images/paper-grip.png %%QT_EXAMPLEDIR%%/demos/calqlatr/doc/images/qtquick-demo-calqlatr.png %%QT_EXAMPLEDIR%%/demos/calqlatr/doc/src/calqlatr.qdoc %%QT_EXAMPLEDIR%%/demos/calqlatr/main.cpp %%QT_EXAMPLEDIR%%/demos/clocks/clocks.pro %%QT_EXAMPLEDIR%%/demos/clocks/clocks.qml %%QT_EXAMPLEDIR%%/demos/clocks/clocks.qmlproject %%QT_EXAMPLEDIR%%/demos/clocks/clocks.qrc %%QT_EXAMPLEDIR%%/demos/clocks/content/Clock.qml %%QT_EXAMPLEDIR%%/demos/clocks/content/arrow.png %%QT_EXAMPLEDIR%%/demos/clocks/content/background.png %%QT_EXAMPLEDIR%%/demos/clocks/content/center.png %%QT_EXAMPLEDIR%%/demos/clocks/content/clock-night.png %%QT_EXAMPLEDIR%%/demos/clocks/content/clock.png %%QT_EXAMPLEDIR%%/demos/clocks/content/hour.png %%QT_EXAMPLEDIR%%/demos/clocks/content/minute.png %%QT_EXAMPLEDIR%%/demos/clocks/content/quit.png %%QT_EXAMPLEDIR%%/demos/clocks/content/second.png %%QT_EXAMPLEDIR%%/demos/clocks/doc/images/qtquick-demo-clocks-small.png %%QT_EXAMPLEDIR%%/demos/clocks/doc/src/clocks.qdoc %%QT_EXAMPLEDIR%%/demos/clocks/main.cpp %%QT_EXAMPLEDIR%%/demos/coffee/ApplicationFlow.qml %%QT_EXAMPLEDIR%%/demos/coffee/ApplicationFlowForm.ui.qml %%QT_EXAMPLEDIR%%/demos/coffee/Brewing.qml %%QT_EXAMPLEDIR%%/demos/coffee/BrewingForm.ui.qml %%QT_EXAMPLEDIR%%/demos/coffee/ChoosingCoffee.ui.qml %%QT_EXAMPLEDIR%%/demos/coffee/CoffeeButton.qml %%QT_EXAMPLEDIR%%/demos/coffee/Cup.qml %%QT_EXAMPLEDIR%%/demos/coffee/CupForm.ui.qml %%QT_EXAMPLEDIR%%/demos/coffee/EmptyCup.qml %%QT_EXAMPLEDIR%%/demos/coffee/EmptyCupForm.ui.qml %%QT_EXAMPLEDIR%%/demos/coffee/LICENSE.txt %%QT_EXAMPLEDIR%%/demos/coffee/NavigationButton.ui.qml %%QT_EXAMPLEDIR%%/demos/coffee/SideBar.qml %%QT_EXAMPLEDIR%%/demos/coffee/SideBarForm.ui.qml %%QT_EXAMPLEDIR%%/demos/coffee/coffee.pro %%QT_EXAMPLEDIR%%/demos/coffee/coffee.qdoc %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/coffee_cup_large.png %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/coffee_cup_outline.png %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/cup elements/coffee_cup_back.png %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/cup elements/coffee_cup_coverplate.png %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/cup elements/coffee_cup_front.png %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/liquids/liquid_coffee.png %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/liquids/liquid_foam.png %%QT_EXAMPLEDIR%%/demos/coffee/images/cup structure/liquids/liquid_milk.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/coffees/Americano.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/coffees/Espresso.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/coffees/Latte.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/coffees/Macchiato.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/coffees/cappucino.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/contents/coffee.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/contents/milk.png %%QT_EXAMPLEDIR%%/demos/coffee/images/icons/contents/sugar.png %%QT_EXAMPLEDIR%%/demos/coffee/images/ui controls/buttons/back/white.png %%QT_EXAMPLEDIR%%/demos/coffee/images/ui controls/buttons/go/white.png %%QT_EXAMPLEDIR%%/demos/coffee/images/ui controls/line.png %%QT_EXAMPLEDIR%%/demos/coffee/imports/Coffee/Constants.qml %%QT_EXAMPLEDIR%%/demos/coffee/imports/Coffee/TitilliumWeb-Regular.ttf %%QT_EXAMPLEDIR%%/demos/coffee/imports/Coffee/qmldir %%QT_EXAMPLEDIR%%/demos/coffee/main.cpp %%QT_EXAMPLEDIR%%/demos/coffee/main.qml %%QT_EXAMPLEDIR%%/demos/coffee/qml.qrc %%QT_EXAMPLEDIR%%/demos/coffee/qt_attribution.json %%QT_EXAMPLEDIR%%/demos/coffee/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/demos/demos.pro %%QT_EXAMPLEDIR%%/demos/maroon/content/BuildButton.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/GameCanvas.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/GameOverScreen.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/InfoBar.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/NewGameScreen.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/SoundEffect.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/bomb-action.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/catch-action.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/catch.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/currency.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/factory-action.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/melee-action.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/projectile-action.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/audio/shooter-action.wav %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/background.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/bomb-action.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/bomb-idle.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/bomb.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/button-help.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/button-play.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/catch-action.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/catch.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/cloud.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/currency.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/dialog-bomb.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/dialog-factory.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/dialog-melee.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/dialog-pointer.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/dialog-shooter.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/dialog.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/factory-action.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/factory-idle.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/factory.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/grid.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/help.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/lifes.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/logo-bubble.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/logo-fish.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/logo.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/melee-action.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/melee-idle.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/melee.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/mob-idle.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/mob.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/points.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/projectile-action.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/projectile.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/scores.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/shooter-action.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/shooter-idle.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/shooter.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/sunlight.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/text-1.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/text-2.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/text-3.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/text-blank.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/text-gameover.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/text-go.png %%QT_EXAMPLEDIR%%/demos/maroon/content/gfx/wave.png %%QT_EXAMPLEDIR%%/demos/maroon/content/logic.js %%QT_EXAMPLEDIR%%/demos/maroon/content/mobs/MobBase.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/towers/Bomb.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/towers/Factory.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/towers/Melee.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/towers/Ranged.qml %%QT_EXAMPLEDIR%%/demos/maroon/content/towers/TowerBase.qml %%QT_EXAMPLEDIR%%/demos/maroon/doc/images/qtquick-demo-maroon-med-1.png %%QT_EXAMPLEDIR%%/demos/maroon/doc/images/qtquick-demo-maroon-med-2.png %%QT_EXAMPLEDIR%%/demos/maroon/doc/images/qtquick-demo-maroon-med-3.jpg %%QT_EXAMPLEDIR%%/demos/maroon/doc/images/qtquick-demo-maroon-med-4.jpg %%QT_EXAMPLEDIR%%/demos/maroon/doc/images/qtquick-demo-maroon-med-5.jpg %%QT_EXAMPLEDIR%%/demos/maroon/doc/images/qtquick-demo-maroon-med-6.jpg %%QT_EXAMPLEDIR%%/demos/maroon/doc/src/maroon.qdoc %%QT_EXAMPLEDIR%%/demos/maroon/main.cpp %%QT_EXAMPLEDIR%%/demos/maroon/maroon.pro %%QT_EXAMPLEDIR%%/demos/maroon/maroon.qml %%QT_EXAMPLEDIR%%/demos/maroon/maroon.qmlproject %%QT_EXAMPLEDIR%%/demos/maroon/maroon.qrc %%QT_EXAMPLEDIR%%/demos/photosurface/doc/images/qtquick-demo-photosurface-small.png %%QT_EXAMPLEDIR%%/demos/photosurface/doc/src/photosurface.qdoc %%QT_EXAMPLEDIR%%/demos/photosurface/main.cpp %%QT_EXAMPLEDIR%%/demos/photosurface/photosurface.pro %%QT_EXAMPLEDIR%%/demos/photosurface/photosurface.qml %%QT_EXAMPLEDIR%%/demos/photosurface/photosurface.qmlproject %%QT_EXAMPLEDIR%%/demos/photosurface/photosurface.qrc %%QT_EXAMPLEDIR%%/demos/photosurface/resources/folder.png %%QT_EXAMPLEDIR%%/demos/photosurface/resources/icon.png %%QT_EXAMPLEDIR%%/demos/photosurface/resources/photosurface.icns %%QT_EXAMPLEDIR%%/demos/photosurface/resources/photosurface.ico %%QT_EXAMPLEDIR%%/demos/photosurface/resources/photosurface.rc %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/AlbumDelegate.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/BusyIndicator.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/Button.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/EditableButton.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/PhotoDelegate.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/ProgressBar.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/RssModel.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/Tag.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/images/box-shadow.png %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/images/busy.png %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/images/cardboard.png %%QT_EXAMPLEDIR%%/demos/photoviewer/PhotoViewerCore/script/script.mjs %%QT_EXAMPLEDIR%%/demos/photoviewer/doc/images/qtquick-demo-photoviewer-small.png %%QT_EXAMPLEDIR%%/demos/photoviewer/doc/src/photoviewer.qdoc %%QT_EXAMPLEDIR%%/demos/photoviewer/i18n/qml_de.ts %%QT_EXAMPLEDIR%%/demos/photoviewer/i18n/qml_en.ts %%QT_EXAMPLEDIR%%/demos/photoviewer/i18n/qml_fr.ts %%QT_EXAMPLEDIR%%/demos/photoviewer/main.cpp %%QT_EXAMPLEDIR%%/demos/photoviewer/main.qml %%QT_EXAMPLEDIR%%/demos/photoviewer/photoviewer.pro %%QT_EXAMPLEDIR%%/demos/rssnews/content/BusyIndicator.qml %%QT_EXAMPLEDIR%%/demos/rssnews/content/CategoryDelegate.qml %%QT_EXAMPLEDIR%%/demos/rssnews/content/NewsDelegate.qml %%QT_EXAMPLEDIR%%/demos/rssnews/content/RssFeeds.qml %%QT_EXAMPLEDIR%%/demos/rssnews/content/ScrollBar.qml %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Asia.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Business.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Entertainment.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Europe.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Health.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Politics.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Science.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Sports.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/Technology.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/TopStories.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/USNational.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/World.jpg %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/btn_close.png %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/busy.png %%QT_EXAMPLEDIR%%/demos/rssnews/content/images/scrollbar.png %%QT_EXAMPLEDIR%%/demos/rssnews/doc/images/qtquick-demo-rssnews-small.png %%QT_EXAMPLEDIR%%/demos/rssnews/doc/src/rssnews.qdoc %%QT_EXAMPLEDIR%%/demos/rssnews/main.cpp %%QT_EXAMPLEDIR%%/demos/rssnews/rssnews.pro %%QT_EXAMPLEDIR%%/demos/rssnews/rssnews.qml %%QT_EXAMPLEDIR%%/demos/rssnews/rssnews.qmlproject %%QT_EXAMPLEDIR%%/demos/rssnews/rssnews.qrc %%QT_EXAMPLEDIR%%/demos/samegame/content/Block.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/BlockEmitter.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/Button.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/GameArea.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/LogoAnimation.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/MenuEmitter.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/PaintEmitter.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/PrimaryPack.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/PuzzleBlock.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/SamegameText.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/Settings.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/SimpleBlock.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/SmokeText.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/background-puzzle.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/background.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/bar.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/blue-puzzle.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/blue.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/bubble-highscore.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/bubble-puzzle.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-game-1.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-game-2.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-game-3.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-game-4.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-game-new.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-menu.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-puzzle-next.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/but-quit.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/green-puzzle.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/green.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/icon-fail.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/icon-ok.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/icon-time.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/logo-a.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/logo-e.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/logo-g.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/logo-m.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/logo-s.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/logo.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/particle-brick.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/particle-paint.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/particle-smoke.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/red-puzzle.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/red.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-highscore-new.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-highscore.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-no-winner.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-p1-go.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-p1-won.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-p1.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-p2-go.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-p2-won.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/text-p2.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/yellow-puzzle.png %%QT_EXAMPLEDIR%%/demos/samegame/content/gfx/yellow.png %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/TemplateBase.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level0.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level1.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level2.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level3.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level4.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level5.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level6.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level7.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level8.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/levels/level9.qml %%QT_EXAMPLEDIR%%/demos/samegame/content/qmldir %%QT_EXAMPLEDIR%%/demos/samegame/content/samegame.js %%QT_EXAMPLEDIR%%/demos/samegame/doc/images/qtquick-demo-samegame-med-1.png %%QT_EXAMPLEDIR%%/demos/samegame/doc/images/qtquick-demo-samegame-med-2.png %%QT_EXAMPLEDIR%%/demos/samegame/doc/src/samegame.qdoc %%QT_EXAMPLEDIR%%/demos/samegame/main.cpp %%QT_EXAMPLEDIR%%/demos/samegame/samegame.pro %%QT_EXAMPLEDIR%%/demos/samegame/samegame.qml %%QT_EXAMPLEDIR%%/demos/samegame/samegame.qmlproject %%QT_EXAMPLEDIR%%/demos/samegame/samegame.qrc %%QT_EXAMPLEDIR%%/demos/stocqt/content/+windows/Settings.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/Banner.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/Button.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/CheckBox.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/Settings.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockChart.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockInfo.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockListDelegate.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockListModel.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockListView.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockModel.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockSettingsPanel.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/StockView.qml %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/AAPL.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/ADSK.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/AMD.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/AMZN.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/CSCO.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/EA.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/EBAY.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/FB.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/GOOG.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/GOOGL.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/INTC.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/MSFT.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/NCLH.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/NFLX.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/NTAP.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/NVDA.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/PYPL.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/QCOM.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/TSLA.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/data/TXN.csv %%QT_EXAMPLEDIR%%/demos/stocqt/content/images/icon-left-arrow.png %%QT_EXAMPLEDIR%%/demos/stocqt/content/images/wheel-touch.png %%QT_EXAMPLEDIR%%/demos/stocqt/content/images/wheel.png %%QT_EXAMPLEDIR%%/demos/stocqt/content/qmldir %%QT_EXAMPLEDIR%%/demos/stocqt/doc/images/qtquick-demo-stocqt.png %%QT_EXAMPLEDIR%%/demos/stocqt/doc/src/stocqt.qdoc %%QT_EXAMPLEDIR%%/demos/stocqt/main.cpp %%QT_EXAMPLEDIR%%/demos/stocqt/stocqt.pro %%QT_EXAMPLEDIR%%/demos/stocqt/stocqt.qml %%QT_EXAMPLEDIR%%/demos/stocqt/stocqt.qmlproject %%QT_EXAMPLEDIR%%/demos/stocqt/stocqt.qrc %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/FlipBar.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/LineInput.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/ListFooter.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/ListHeader.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/SearchDelegate.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/TweetDelegate.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/TweetsModel.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/resources/anonymous.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/resources/bird-anim-sprites.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/resources/icon-clear.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/resources/icon-loading.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/resources/icon-refresh.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/resources/icon-search.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/content/tweetsearch.mjs %%QT_EXAMPLEDIR%%/demos/tweetsearch/doc/images/qtquick-demo-tweetsearch-med-1.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/doc/images/qtquick-demo-tweetsearch-med-2.png %%QT_EXAMPLEDIR%%/demos/tweetsearch/doc/src/tweetsearch.qdoc %%QT_EXAMPLEDIR%%/demos/tweetsearch/main.cpp %%QT_EXAMPLEDIR%%/demos/tweetsearch/tweetsearch.pro %%QT_EXAMPLEDIR%%/demos/tweetsearch/tweetsearch.qml %%QT_EXAMPLEDIR%%/demos/tweetsearch/tweetsearch.qmlproject %%QT_EXAMPLEDIR%%/designer/README %%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorbuilder.pro %%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorbuilder.qrc %%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorform.cpp %%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorform.h %%QT_EXAMPLEDIR%%/designer/calculatorbuilder/calculatorform.ui %%QT_EXAMPLEDIR%%/designer/calculatorbuilder/main.cpp %%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.cpp %%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.h %%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.pro %%QT_EXAMPLEDIR%%/designer/calculatorform/calculatorform.ui %%QT_EXAMPLEDIR%%/designer/calculatorform/main.cpp %%QT_EXAMPLEDIR%%/designer/containerextension/containerextension.pro %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidget.cpp %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidget.h %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetcontainerextension.cpp %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetcontainerextension.h %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetextensionfactory.cpp %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetextensionfactory.h %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetplugin.cpp %%QT_EXAMPLEDIR%%/designer/containerextension/multipagewidgetplugin.h %%QT_EXAMPLEDIR%%/designer/customwidgetplugin/analogclock.cpp %%QT_EXAMPLEDIR%%/designer/customwidgetplugin/analogclock.h %%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.cpp %%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.h %%QT_EXAMPLEDIR%%/designer/customwidgetplugin/customwidgetplugin.pro %%QT_EXAMPLEDIR%%/designer/designer.pro %%QT_EXAMPLEDIR%%/designer/doc/images/arthurplugin-demo.png %%QT_EXAMPLEDIR%%/designer/doc/images/calculatorbuilder-example.png %%QT_EXAMPLEDIR%%/designer/doc/images/calculatorform-example.png %%QT_EXAMPLEDIR%%/designer/doc/images/containerextension-example.png %%QT_EXAMPLEDIR%%/designer/doc/images/customwidgetplugin-example.png %%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-dialog.png %%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-example-faded.png %%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-example.png %%QT_EXAMPLEDIR%%/designer/doc/images/taskmenuextension-menu.png %%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclock-connection.png %%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclock-signalandslot.png %%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclockbuilder-example.png %%QT_EXAMPLEDIR%%/designer/doc/images/worldtimeclockplugin-example.png %%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_containerextension.pro %%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_customwidgetplugin.pro %%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_taskmenuextension.pro %%QT_EXAMPLEDIR%%/designer/doc/snippets/doc_src_examples_worldtimeclockplugin.pro %%QT_EXAMPLEDIR%%/designer/doc/src/calculatorbuilder.qdoc %%QT_EXAMPLEDIR%%/designer/doc/src/calculatorform.qdoc %%QT_EXAMPLEDIR%%/designer/doc/src/containerextension.qdoc %%QT_EXAMPLEDIR%%/designer/doc/src/customwidgetplugin.qdoc %%QT_EXAMPLEDIR%%/designer/doc/src/taskmenuextension.qdoc %%QT_EXAMPLEDIR%%/designer/doc/src/worldtimeclockbuilder.qdoc %%QT_EXAMPLEDIR%%/designer/doc/src/worldtimeclockplugin.qdoc %%QT_EXAMPLEDIR%%/designer/taskmenuextension/taskmenuextension.pro %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoe.cpp %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoe.h %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoedialog.cpp %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoedialog.h %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoeplugin.cpp %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoeplugin.h %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoetaskmenu.cpp %%QT_EXAMPLEDIR%%/designer/taskmenuextension/tictactoetaskmenu.h %%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/form.ui %%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/main.cpp %%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/worldtimeclockbuilder.pro %%QT_EXAMPLEDIR%%/designer/worldtimeclockbuilder/worldtimeclockbuilder.qrc %%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclock.cpp %%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclock.h %%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.cpp %%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.h %%QT_EXAMPLEDIR%%/designer/worldtimeclockplugin/worldtimeclockplugin.pro %%QT_EXAMPLEDIR%%/embedded/digiflip/digiflip.cpp %%QT_EXAMPLEDIR%%/embedded/digiflip/digiflip.pro %%QT_EXAMPLEDIR%%/embedded/embedded.pro %%QT_EXAMPLEDIR%%/embedded/flickable/flickable.cpp %%QT_EXAMPLEDIR%%/embedded/flickable/flickable.h %%QT_EXAMPLEDIR%%/embedded/flickable/flickable.pro %%QT_EXAMPLEDIR%%/embedded/flickable/main.cpp %%QT_EXAMPLEDIR%%/embedded/flightinfo/aircraft.png %%QT_EXAMPLEDIR%%/embedded/flightinfo/flightinfo.cpp %%QT_EXAMPLEDIR%%/embedded/flightinfo/flightinfo.pro %%QT_EXAMPLEDIR%%/embedded/flightinfo/flightinfo.qrc %%QT_EXAMPLEDIR%%/embedded/flightinfo/form.ui %%QT_EXAMPLEDIR%%/embedded/lightmaps/lightmaps.cpp %%QT_EXAMPLEDIR%%/embedded/lightmaps/lightmaps.h %%QT_EXAMPLEDIR%%/embedded/lightmaps/lightmaps.pro %%QT_EXAMPLEDIR%%/embedded/lightmaps/main.cpp %%QT_EXAMPLEDIR%%/embedded/lightmaps/mapzoom.cpp %%QT_EXAMPLEDIR%%/embedded/lightmaps/mapzoom.h %%QT_EXAMPLEDIR%%/embedded/lightmaps/slippymap.cpp %%QT_EXAMPLEDIR%%/embedded/lightmaps/slippymap.h %%QT_EXAMPLEDIR%%/embedded/raycasting/raycasting.cpp %%QT_EXAMPLEDIR%%/embedded/raycasting/raycasting.pro %%QT_EXAMPLEDIR%%/embedded/raycasting/raycasting.qrc %%QT_EXAMPLEDIR%%/embedded/raycasting/textures.png %%QT_EXAMPLEDIR%%/embedded/styleexample/files/add.png %%QT_EXAMPLEDIR%%/embedded/styleexample/files/application.qss %%QT_EXAMPLEDIR%%/embedded/styleexample/files/blue.qss %%QT_EXAMPLEDIR%%/embedded/styleexample/files/khaki.qss %%QT_EXAMPLEDIR%%/embedded/styleexample/files/nature_1.jpg %%QT_EXAMPLEDIR%%/embedded/styleexample/files/nostyle.qss %%QT_EXAMPLEDIR%%/embedded/styleexample/files/remove.png %%QT_EXAMPLEDIR%%/embedded/styleexample/files/transparent.qss %%QT_EXAMPLEDIR%%/embedded/styleexample/main.cpp %%QT_EXAMPLEDIR%%/embedded/styleexample/styleexample.pro %%QT_EXAMPLEDIR%%/embedded/styleexample/styleexample.qrc %%QT_EXAMPLEDIR%%/embedded/styleexample/stylewidget.cpp %%QT_EXAMPLEDIR%%/embedded/styleexample/stylewidget.h %%QT_EXAMPLEDIR%%/embedded/styleexample/stylewidget.ui %%QT_EXAMPLEDIR%%/examples.pro %%QT_EXAMPLEDIR%%/gamepad/configureButtons/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/gamepad/configureButtons/configureButtons.pro %%QT_EXAMPLEDIR%%/gamepad/configureButtons/doc/images/configuregamepadbuttons-example.png %%QT_EXAMPLEDIR%%/gamepad/configureButtons/doc/src/configbuttonsexample.qdoc %%QT_EXAMPLEDIR%%/gamepad/configureButtons/main.cpp %%QT_EXAMPLEDIR%%/gamepad/configureButtons/main.qml %%QT_EXAMPLEDIR%%/gamepad/configureButtons/qml.qrc %%QT_EXAMPLEDIR%%/gamepad/gamepad.pro %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/doc/images/keynavigationgamepad-example.png %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/doc/src/keynaviexample.qdoc %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/keyNavigation.pro %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/keyNavigation64.png %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/keyNavigation80.png %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/main.cpp %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/qml.qrc %%QT_EXAMPLEDIR%%/gamepad/keyNavigation/qml/main.qml %%QT_EXAMPLEDIR%%/gamepad/mouseItem/doc/src/mouseitemexample.qdoc %%QT_EXAMPLEDIR%%/gamepad/mouseItem/main.cpp %%QT_EXAMPLEDIR%%/gamepad/mouseItem/mouseItem.pro %%QT_EXAMPLEDIR%%/gamepad/mouseItem/mouseItem64.png %%QT_EXAMPLEDIR%%/gamepad/mouseItem/mouseItem80.png %%QT_EXAMPLEDIR%%/gamepad/mouseItem/qml.qrc %%QT_EXAMPLEDIR%%/gamepad/mouseItem/qml/main.qml %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/doc/images/qtquickgamepad-example.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/doc/src/quickgamepadexample.qdoc %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/main.cpp %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml.qrc %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/ButtonImage.qml %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/DPad.qml %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/JoystickViewer.qml %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/LeftThumbstick.qml %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/RightThumbstick.qml %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/main.qml %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerBack.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonA.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonB.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonGuide.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonX.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerButtonY.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerDPad.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerLeftShoulder.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerLeftThumbstick.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerLeftTrigger.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerRightShoulder.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerRightThumbstick.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerRightTrigger.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/qml/xboxControllerStart.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/quickGamepad.pro %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/quickGamepad64.png %%QT_EXAMPLEDIR%%/gamepad/quickGamepad/quickGamepad80.png %%QT_EXAMPLEDIR%%/gamepad/simple/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/gamepad/simple/doc/src/simpleexample.qdoc %%QT_EXAMPLEDIR%%/gamepad/simple/gamepadmonitor.cpp %%QT_EXAMPLEDIR%%/gamepad/simple/gamepadmonitor.h %%QT_EXAMPLEDIR%%/gamepad/simple/main.cpp %%QT_EXAMPLEDIR%%/gamepad/simple/simple.pro %%QT_EXAMPLEDIR%%/gui/analogclock/analogclock.pro %%QT_EXAMPLEDIR%%/gui/analogclock/main.cpp %%QT_EXAMPLEDIR%%/gui/doc/images/analogclock-window-example.png %%QT_EXAMPLEDIR%%/gui/doc/images/analogclockwindow-viewport.png %%QT_EXAMPLEDIR%%/gui/doc/images/openglwindow-example.png %%QT_EXAMPLEDIR%%/gui/doc/src/analogclockwindow.qdoc %%QT_EXAMPLEDIR%%/gui/doc/src/openglwindow.qdoc %%QT_EXAMPLEDIR%%/gui/doc/src/rasterwindow.qdoc %%QT_EXAMPLEDIR%%/gui/gui.pro %%QT_EXAMPLEDIR%%/gui/openglwindow/main.cpp %%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.cpp %%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.h %%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.pri %%QT_EXAMPLEDIR%%/gui/openglwindow/openglwindow.pro %%QT_EXAMPLEDIR%%/gui/rasterwindow/main.cpp %%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.cpp %%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.h %%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.pri %%QT_EXAMPLEDIR%%/gui/rasterwindow/rasterwindow.pro %%QT_EXAMPLEDIR%%/help/README %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/contextsensitivehelp.pro %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/amount.html %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/filter.html %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/plants.html %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/rain.html %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/source.html %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/temperature.html %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/time.html %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qch %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qhc %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qhcp %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/docs/wateringmachine.qhp %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/helpbrowser.cpp %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/helpbrowser.h %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/main.cpp %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/wateringconfigdialog.cpp %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/wateringconfigdialog.h %%QT_EXAMPLEDIR%%/help/contextsensitivehelp/wateringconfigdialog.ui %%QT_EXAMPLEDIR%%/help/doc/src/contextsensitivehelp.qdoc %%QT_EXAMPLEDIR%%/help/help.pro %%QT_EXAMPLEDIR%%/linguist/README %%QT_EXAMPLEDIR%%/linguist/arrowpad/arrowpad.cpp %%QT_EXAMPLEDIR%%/linguist/arrowpad/arrowpad.h %%QT_EXAMPLEDIR%%/linguist/arrowpad/arrowpad.pro %%QT_EXAMPLEDIR%%/linguist/arrowpad/main.cpp %%QT_EXAMPLEDIR%%/linguist/arrowpad/mainwindow.cpp %%QT_EXAMPLEDIR%%/linguist/arrowpad/mainwindow.h %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-arrowpad_en.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-arrowpad_fr.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-arrowpad_nl.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-hellotr_en.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-hellotr_la.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_10_en.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_10_pt_bad.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_10_pt_good.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_11_en.png %%QT_EXAMPLEDIR%%/linguist/doc/images/linguist-trollprint_11_pt.png %%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_arrowpad.cpp %%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_arrowpad.qdoc %%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_hellotr.qdoc %%QT_EXAMPLEDIR%%/linguist/doc/snippets/doc_src_examples_trollprint.cpp %%QT_EXAMPLEDIR%%/linguist/doc/src/arrowpad.qdoc %%QT_EXAMPLEDIR%%/linguist/doc/src/hellotr.qdoc %%QT_EXAMPLEDIR%%/linguist/doc/src/trollprint.qdoc %%QT_EXAMPLEDIR%%/linguist/hellotr/hellotr.pro %%QT_EXAMPLEDIR%%/linguist/hellotr/main.cpp %%QT_EXAMPLEDIR%%/linguist/linguist.pro %%QT_EXAMPLEDIR%%/linguist/trollprint/main.cpp %%QT_EXAMPLEDIR%%/linguist/trollprint/mainwindow.cpp %%QT_EXAMPLEDIR%%/linguist/trollprint/mainwindow.h %%QT_EXAMPLEDIR%%/linguist/trollprint/printpanel.cpp %%QT_EXAMPLEDIR%%/linguist/trollprint/printpanel.h %%QT_EXAMPLEDIR%%/linguist/trollprint/trollprint.pro %%QT_EXAMPLEDIR%%/linguist/trollprint/trollprint_pt.ts %%QT_EXAMPLEDIR%%/location/geojson_viewer/GeoJsonDelegate.qml %%QT_EXAMPLEDIR%%/location/geojson_viewer/GeoJsonDelegateMapObject.qml %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/01-point.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/02-linestring.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/03-multipoint.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/04-polygon.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/05-multilinestring.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/06-multipolygon.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/07-geometrycollection.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/08-feature.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/09-featurecollection.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/10-countries.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/10-countries_LICENSE %%QT_EXAMPLEDIR%%/location/geojson_viewer/data/11-full.json %%QT_EXAMPLEDIR%%/location/geojson_viewer/geojson_viewer.pro %%QT_EXAMPLEDIR%%/location/geojson_viewer/main.cpp %%QT_EXAMPLEDIR%%/location/geojson_viewer/main.qml %%QT_EXAMPLEDIR%%/location/geojson_viewer/qml.qrc %%QT_EXAMPLEDIR%%/location/itemview_transitions/OsloListModel.qml %%QT_EXAMPLEDIR%%/location/itemview_transitions/doc/images/itemview_transitions.jpg %%QT_EXAMPLEDIR%%/location/itemview_transitions/doc/src/itemview_transitions.qdoc %%QT_EXAMPLEDIR%%/location/itemview_transitions/itemview_transitions.pro %%QT_EXAMPLEDIR%%/location/itemview_transitions/main.cpp %%QT_EXAMPLEDIR%%/location/itemview_transitions/main.qml %%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 %%QT_EXAMPLEDIR%%/location/mapviewer/forms/LocaleForm.ui.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/Message.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/MessageForm.ui.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/ReverseGeocode.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/ReverseGeocodeForm.ui.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteAddress.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteAddressForm.ui.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteCoordinate.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteCoordinateForm.ui.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteList.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteListDelegate.qml %%QT_EXAMPLEDIR%%/location/mapviewer/forms/RouteListHeader.qml %%QT_EXAMPLEDIR%%/location/mapviewer/helper.js %%QT_EXAMPLEDIR%%/location/mapviewer/main.cpp %%QT_EXAMPLEDIR%%/location/mapviewer/map/CircleItem.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/ImageItem.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/MapComponent.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/MapSliders.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/Marker.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/MiniMap.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/PolygonItem.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/PolylineItem.qml %%QT_EXAMPLEDIR%%/location/mapviewer/map/RectangleItem.qml %%QT_EXAMPLEDIR%%/location/mapviewer/mapviewer.pro %%QT_EXAMPLEDIR%%/location/mapviewer/mapviewer.qml %%QT_EXAMPLEDIR%%/location/mapviewer/mapviewer.qrc %%QT_EXAMPLEDIR%%/location/mapviewer/menus/ItemPopupMenu.qml %%QT_EXAMPLEDIR%%/location/mapviewer/menus/MainMenu.qml %%QT_EXAMPLEDIR%%/location/mapviewer/menus/MapPopupMenu.qml %%QT_EXAMPLEDIR%%/location/mapviewer/menus/MarkerPopupMenu.qml %%QT_EXAMPLEDIR%%/location/mapviewer/resources/icon.png %%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/minimal_map/doc/images/minimal_map.png %%QT_EXAMPLEDIR%%/location/minimal_map/doc/src/minimal_map.qdoc %%QT_EXAMPLEDIR%%/location/minimal_map/main.cpp %%QT_EXAMPLEDIR%%/location/minimal_map/main.qml %%QT_EXAMPLEDIR%%/location/minimal_map/minimal_map.pro %%QT_EXAMPLEDIR%%/location/minimal_map/qml.qrc %%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 %%QT_EXAMPLEDIR%%/location/places/forms/PlaceDetailsForm.ui.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingBox.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingBoxForm.ui.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingCircle.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchBoundingCircleForm.ui.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchCenter.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchCenterForm.ui.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchOptions.qml %%QT_EXAMPLEDIR%%/location/places/forms/SearchOptionsForm.ui.qml %%QT_EXAMPLEDIR%%/location/places/helper.js %%QT_EXAMPLEDIR%%/location/places/items/MainMenu.qml %%QT_EXAMPLEDIR%%/location/places/items/MapComponent.qml %%QT_EXAMPLEDIR%%/location/places/items/SearchBar.qml %%QT_EXAMPLEDIR%%/location/places/main.cpp %%QT_EXAMPLEDIR%%/location/places/places.pro %%QT_EXAMPLEDIR%%/location/places/places.qml %%QT_EXAMPLEDIR%%/location/places/places.qrc %%QT_EXAMPLEDIR%%/location/places/resources/categories.png %%QT_EXAMPLEDIR%%/location/places/resources/left.png %%QT_EXAMPLEDIR%%/location/places/resources/marker.png %%QT_EXAMPLEDIR%%/location/places/resources/right.png %%QT_EXAMPLEDIR%%/location/places/resources/scale.png %%QT_EXAMPLEDIR%%/location/places/resources/scale_end.png %%QT_EXAMPLEDIR%%/location/places/resources/search.png %%QT_EXAMPLEDIR%%/location/places/resources/star.png %%QT_EXAMPLEDIR%%/location/places/views/CategoryDelegate.qml %%QT_EXAMPLEDIR%%/location/places/views/CategoryView.qml %%QT_EXAMPLEDIR%%/location/places/views/EditorialDelegate.qml %%QT_EXAMPLEDIR%%/location/places/views/EditorialPage.qml %%QT_EXAMPLEDIR%%/location/places/views/EditorialView.qml %%QT_EXAMPLEDIR%%/location/places/views/ImageView.qml %%QT_EXAMPLEDIR%%/location/places/views/RatingView.qml %%QT_EXAMPLEDIR%%/location/places/views/ReviewDelegate.qml %%QT_EXAMPLEDIR%%/location/places/views/ReviewPage.qml %%QT_EXAMPLEDIR%%/location/places/views/ReviewView.qml %%QT_EXAMPLEDIR%%/location/places/views/SearchResultDelegate.qml %%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 %%QT_EXAMPLEDIR%%/location/places_map/places_map.qml %%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 %%QT_EXAMPLEDIR%%/location/planespotter/qml.qrc %%QT_EXAMPLEDIR%%/macextras/embeddedqwindow/doc/src/qtmacextras-example-embeddedqwindow.qdoc %%QT_EXAMPLEDIR%%/macextras/embeddedqwindow/embeddedqwindow.pro %%QT_EXAMPLEDIR%%/macextras/embeddedqwindow/main.mm %%QT_EXAMPLEDIR%%/macextras/embeddedqwindow/window.cpp %%QT_EXAMPLEDIR%%/macextras/embeddedqwindow/window.h %%QT_EXAMPLEDIR%%/macextras/macextras.pro %%QT_EXAMPLEDIR%%/macextras/macfunctions/doc/src/qtmacextras-example-macfunctions.qdoc %%QT_EXAMPLEDIR%%/macextras/macfunctions/macfunctions.pro %%QT_EXAMPLEDIR%%/macextras/macfunctions/macfunctions.qrc %%QT_EXAMPLEDIR%%/macextras/macfunctions/main.cpp %%QT_EXAMPLEDIR%%/macextras/macfunctions/qtlogo.png %%QT_EXAMPLEDIR%%/macextras/macpasteboardmime/doc/src/qtmacextras-example-macpasteboardmime.qdoc %%QT_EXAMPLEDIR%%/macextras/macpasteboardmime/macpasteboardmime.pro %%QT_EXAMPLEDIR%%/macextras/macpasteboardmime/main.cpp %%QT_EXAMPLEDIR%%/macextras/mactoolbar/mactoolbar.pro %%QT_EXAMPLEDIR%%/macextras/mactoolbar/mactoolbar.qrc %%QT_EXAMPLEDIR%%/macextras/mactoolbar/main.cpp %%QT_EXAMPLEDIR%%/macextras/mactoolbar/qtlogo.png %%QT_EXAMPLEDIR%%/macextras/mactoolbar/rasterwindow.cpp %%QT_EXAMPLEDIR%%/macextras/mactoolbar/rasterwindow.h %%QT_EXAMPLEDIR%%/macextras/mactoolbar/toolbarcontrollerwindow.cpp %%QT_EXAMPLEDIR%%/macextras/mactoolbar/toolbarcontrollerwindow.h %%QT_EXAMPLEDIR%%/multimedia/audiodecoder/audiodecoder.cpp %%QT_EXAMPLEDIR%%/multimedia/audiodecoder/audiodecoder.h %%QT_EXAMPLEDIR%%/multimedia/audiodecoder/audiodecoder.pro %%QT_EXAMPLEDIR%%/multimedia/audiodecoder/main.cpp %%QT_EXAMPLEDIR%%/multimedia/audiodecoder/wavefilewriter.cpp %%QT_EXAMPLEDIR%%/multimedia/audiodecoder/wavefilewriter.h %%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevices.cpp %%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevices.h %%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevices.pro %%QT_EXAMPLEDIR%%/multimedia/audiodevices/audiodevicesbase.ui %%QT_EXAMPLEDIR%%/multimedia/audiodevices/doc/images/audiodevices.png %%QT_EXAMPLEDIR%%/multimedia/audiodevices/doc/src/audiodevices.qdoc %%QT_EXAMPLEDIR%%/multimedia/audiodevices/main.cpp %%QT_EXAMPLEDIR%%/multimedia/audioengine/audioengine.pro %%QT_EXAMPLEDIR%%/multimedia/audioengine/doc/src/audioengine.qdoc %%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/audioengine.qml %%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/audioengine.qmlproject %%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/MyAudioEngine.qml %%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/engine-loop.wav %%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/horn.wav %%QT_EXAMPLEDIR%%/multimedia/audioengine/qml/content/whistle.wav %%QT_EXAMPLEDIR%%/multimedia/audioinput/audioinput.cpp %%QT_EXAMPLEDIR%%/multimedia/audioinput/audioinput.h %%QT_EXAMPLEDIR%%/multimedia/audioinput/audioinput.pro %%QT_EXAMPLEDIR%%/multimedia/audioinput/doc/images/audioinput-example.png %%QT_EXAMPLEDIR%%/multimedia/audioinput/doc/src/audioinput.qdoc %%QT_EXAMPLEDIR%%/multimedia/audioinput/main.cpp %%QT_EXAMPLEDIR%%/multimedia/audiooutput/audiooutput.cpp %%QT_EXAMPLEDIR%%/multimedia/audiooutput/audiooutput.h %%QT_EXAMPLEDIR%%/multimedia/audiooutput/audiooutput.pro %%QT_EXAMPLEDIR%%/multimedia/audiooutput/doc/images/audiooutput-example.png %%QT_EXAMPLEDIR%%/multimedia/audiooutput/doc/src/audiooutput.qdoc %%QT_EXAMPLEDIR%%/multimedia/audiooutput/main.cpp %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiolevel.cpp %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiolevel.h %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.cpp %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.h %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.pro %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/audiorecorder.ui %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/doc/images/audiorecorder.png %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/doc/src/audiorecorder.qdoc %%QT_EXAMPLEDIR%%/multimedia/audiorecorder/main.cpp %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraButton.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraListButton.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraListPopup.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraPropertyButton.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/CameraPropertyPopup.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/FocusButton.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/Info.plist %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/PhotoCaptureControls.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/PhotoPreview.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/Popup.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/VideoCaptureControls.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/VideoPreview.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/ZoomControl.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.pro %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.qmlproject %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/declarative-camera.qrc %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/doc/images/qml-camera.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/doc/src/declarative-camera.qdoc %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_auto_mode.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_camera_setting.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_auto.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_fill.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_off.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_flash_redeye.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_cloudy.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_flourescent.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_incandescent.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/camera_white_balance_sunny.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/toolbutton.png %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/images/toolbutton.sci %%QT_EXAMPLEDIR%%/multimedia/declarative-camera/qmlcamera.cpp %%QT_EXAMPLEDIR%%/multimedia/declarative-radio/Button.qml %%QT_EXAMPLEDIR%%/multimedia/declarative-radio/declarative-radio.pro %%QT_EXAMPLEDIR%%/multimedia/declarative-radio/declarative-radio.qrc %%QT_EXAMPLEDIR%%/multimedia/declarative-radio/doc/images/declarative-radio-example.png %%QT_EXAMPLEDIR%%/multimedia/declarative-radio/doc/src/declarative-radio.qdoc %%QT_EXAMPLEDIR%%/multimedia/declarative-radio/main.cpp %%QT_EXAMPLEDIR%%/multimedia/declarative-radio/view.qml %%QT_EXAMPLEDIR%%/multimedia/multimedia.pro %%QT_EXAMPLEDIR%%/multimedia/radio/main.cpp %%QT_EXAMPLEDIR%%/multimedia/radio/radio.cpp %%QT_EXAMPLEDIR%%/multimedia/radio/radio.h %%QT_EXAMPLEDIR%%/multimedia/radio/radio.pro %%QT_EXAMPLEDIR%%/multimedia/shared/shared.pri %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/Array.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/Array.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/DynArray.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/DynArray.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.dsp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.dsw %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTReal.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealFixLen.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealFixLen.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealFixLenParam.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassDirect.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassDirect.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassInverse.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealPassInverse.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealSelect.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealSelect.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealUseTrigo.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/FFTRealUseTrigo.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/OscSinCos.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/OscSinCos.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestAccuracy.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestAccuracy.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperFixLen.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperFixLen.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperNormal.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestHelperNormal.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestSpeed.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestSpeed.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestWhiteNoiseGen.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/TestWhiteNoiseGen.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/bwins/fftrealu.def %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/def.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/eabi/fftrealu.def %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal.pas %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal.pro %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal_wrapper.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/fftreal_wrapper.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/license.txt %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/readme.txt %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/ClockCycleCounter.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/ClockCycleCounter.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/ClockCycleCounter.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/Int64.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/StopWatch.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/StopWatch.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/StopWatch.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/def.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/fnc.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/stopwatch/fnc.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test_fnc.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test_fnc.hpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/test_settings.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/3rdparty/fftreal/testapp.dpr %%QT_EXAMPLEDIR%%/multimedia/spectrum/README.txt %%QT_EXAMPLEDIR%%/multimedia/spectrum/TODO.txt %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/app.pro %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/engine.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/engine.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/frequencyspectrum.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/frequencyspectrum.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/images/record.png %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/images/settings.png %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/levelmeter.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/levelmeter.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/main.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/mainwidget.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/mainwidget.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/progressbar.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/progressbar.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/settingsdialog.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/settingsdialog.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrograph.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrograph.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrum.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrum.qrc %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrumanalyser.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/spectrumanalyser.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegenerator.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegenerator.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegeneratordialog.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/tonegeneratordialog.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/utils.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/utils.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/waveform.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/waveform.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/wavfile.cpp %%QT_EXAMPLEDIR%%/multimedia/spectrum/app/wavfile.h %%QT_EXAMPLEDIR%%/multimedia/spectrum/doc/images/spectrum-demo.png %%QT_EXAMPLEDIR%%/multimedia/spectrum/doc/src/spectrum.qdoc %%QT_EXAMPLEDIR%%/multimedia/spectrum/spectrum.pri %%QT_EXAMPLEDIR%%/multimedia/spectrum/spectrum.pro %%QT_EXAMPLEDIR%%/multimedia/video/android/android.pro %%QT_EXAMPLEDIR%%/multimedia/video/android/gstreamer/gstreamer.pro %%QT_EXAMPLEDIR%%/multimedia/video/android/gstreamer/main.cpp %%QT_EXAMPLEDIR%%/multimedia/video/android/gstreamer/main.qml %%QT_EXAMPLEDIR%%/multimedia/video/android/gstreamer/qml.qrc %%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideo-menu.jpg %%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideo-overlay.jpg %%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-camera-glow.jpg %%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-camera-wobble.jpg %%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-effects-menu.jpg %%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-video-edgedetection.jpg %%QT_EXAMPLEDIR%%/multimedia/video/doc/images/qmlvideofx-video-pagecurl.jpg %%QT_EXAMPLEDIR%%/multimedia/video/doc/src/qmlvideo.qdoc %%QT_EXAMPLEDIR%%/multimedia/video/doc/src/qmlvideofx.qdoc %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/images/folder.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/images/leaves.jpg %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/images/up.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/main.cpp %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/Button.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraBasic.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraDrag.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraDummy.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraFullScreen.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraFullScreenInverted.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraItem.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraMove.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraOverlay.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraResize.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraRotate.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/CameraSpin.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/Content.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/ErrorDialog.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/FileBrowser.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/Scene.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneBasic.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneDrag.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneFullScreen.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneFullScreenInverted.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneMove.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneMulti.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneOverlay.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneResize.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneRotate.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneSelectionPanel.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SceneSpin.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/SeekControl.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoBasic.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoDrag.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoDummy.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoFillMode.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoFullScreen.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoFullScreenInverted.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoItem.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoMetadata.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoMove.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoOverlay.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoPlaybackRate.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoResize.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoRotate.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoSeek.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/VideoSpin.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qml/qmlvideo/main.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.pro %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.qrc %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/qmlvideo.svg %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideo/trace.h %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/README %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/main.cpp %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/main.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/qmlvideofilter_opencl.pro %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/qmlvideofilter_opencl.qrc %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofilter_opencl/rgbframehelper.h %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/Info.plist %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/filereader.cpp %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/filereader.h %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Dropdown_arrows.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Slider_bar.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Slider_handle.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Triangle_Top.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/Triangle_bottom.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/icon_BackArrow.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/icon_Folder.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/icon_Menu.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/images/qt-logo.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/main.cpp %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Button.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Content.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ContentCamera.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ContentImage.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ContentVideo.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Curtain.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Divider.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Effect.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectBillboard.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectBlackAndWhite.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectEmboss.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectGaussianBlur.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectGlow.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectIsolate.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectMagnify.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPageCurl.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPassThrough.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPixelate.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPosterize.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectRipple.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSelectionList.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSepia.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSharpen.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectShockwave.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSobelEdgeDetection1.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectTiltShift.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectToon.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectVignette.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectWarhol.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/EffectWobble.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/FileOpen.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/HintedMouseArea.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Main.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/ParameterPanel.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qml/qmlvideofx/Slider.qml %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.cpp %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.h %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.pri %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.png %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.pro %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.qrc %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/qmlvideofx.svg %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/billboard.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/blackandwhite.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/emboss.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/gaussianblur_h.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/gaussianblur_v.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/glow.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/isolate.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/magnify.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/pagecurl.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/pixelate.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/posterize.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/ripple.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/selectionpanel.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/sepia.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/sharpen.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/shockwave.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/sobeledgedetection1.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/tiltshift.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/toon.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/vignette.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/warhol.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/shaders/wobble.fsh %%QT_EXAMPLEDIR%%/multimedia/video/qmlvideofx/trace.h %%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitor.cpp %%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitor.h %%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitor.pri %%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitordeclarative.cpp %%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitordeclarative.pri %%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/frequencymonitordeclarative.qrc %%QT_EXAMPLEDIR%%/multimedia/video/snippets/frequencymonitor/qml/frequencymonitor/FrequencyItem.qml %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitor.cpp %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitor.h %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitor.pri %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.cpp %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.h %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.pri %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/performancemonitordeclarative.qrc %%QT_EXAMPLEDIR%%/multimedia/video/snippets/performancemonitor/qml/performancemonitor/PerformanceItem.qml %%QT_EXAMPLEDIR%%/multimedia/video/video.pro %%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.h %%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.pro %%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.qrc %%QT_EXAMPLEDIR%%/multimediawidgets/camera/camera.ui %%QT_EXAMPLEDIR%%/multimediawidgets/camera/doc/images/camera-example.png %%QT_EXAMPLEDIR%%/multimediawidgets/camera/doc/src/camera.qdoc %%QT_EXAMPLEDIR%%/multimediawidgets/camera/images/shutter.svg %%QT_EXAMPLEDIR%%/multimediawidgets/camera/imagesettings.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/camera/imagesettings.h %%QT_EXAMPLEDIR%%/multimediawidgets/camera/imagesettings.ui %%QT_EXAMPLEDIR%%/multimediawidgets/camera/main.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/camera/videosettings.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/camera/videosettings.h %%QT_EXAMPLEDIR%%/multimediawidgets/camera/videosettings.ui %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/customvideoitem.pro %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/main.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoitem.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoitem.h %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoplayer.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideoitem/videoplayer.h %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideosurface.pro %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/customvideowidget.pro %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/main.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videoplayer.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videoplayer.h %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidget.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidget.h %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidgetsurface.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/customvideosurface/customvideowidget/videowidgetsurface.h %%QT_EXAMPLEDIR%%/multimediawidgets/multimediawidgets.pro %%QT_EXAMPLEDIR%%/multimediawidgets/player/doc/images/mediaplayerex.jpg %%QT_EXAMPLEDIR%%/multimediawidgets/player/doc/src/player.qdoc %%QT_EXAMPLEDIR%%/multimediawidgets/player/histogramwidget.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/player/histogramwidget.h %%QT_EXAMPLEDIR%%/multimediawidgets/player/main.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/player/player.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/player/player.h %%QT_EXAMPLEDIR%%/multimediawidgets/player/player.pro %%QT_EXAMPLEDIR%%/multimediawidgets/player/playercontrols.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/player/playercontrols.h %%QT_EXAMPLEDIR%%/multimediawidgets/player/playlistmodel.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/player/playlistmodel.h %%QT_EXAMPLEDIR%%/multimediawidgets/player/videowidget.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/player/videowidget.h %%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/doc/images/video-videographicsitem.png %%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/doc/src/videographicsitem.qdoc %%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/main.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/videographicsitem.pro %%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/videoplayer.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/videographicsitem/videoplayer.h %%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/doc/images/video-videowidget.png %%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/doc/src/videowidget.qdoc %%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/main.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/videoplayer.cpp %%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/videoplayer.h %%QT_EXAMPLEDIR%%/multimediawidgets/videowidget/videowidget.pro %%QT_EXAMPLEDIR%%/network/README %%QT_EXAMPLEDIR%%/network/blockingfortuneclient/blockingclient.cpp %%QT_EXAMPLEDIR%%/network/blockingfortuneclient/blockingclient.h %%QT_EXAMPLEDIR%%/network/blockingfortuneclient/blockingfortuneclient.pro %%QT_EXAMPLEDIR%%/network/blockingfortuneclient/fortunethread.cpp %%QT_EXAMPLEDIR%%/network/blockingfortuneclient/fortunethread.h %%QT_EXAMPLEDIR%%/network/blockingfortuneclient/main.cpp %%QT_EXAMPLEDIR%%/network/broadcastreceiver/broadcastreceiver.pro %%QT_EXAMPLEDIR%%/network/broadcastreceiver/main.cpp %%QT_EXAMPLEDIR%%/network/broadcastreceiver/receiver.cpp %%QT_EXAMPLEDIR%%/network/broadcastreceiver/receiver.h %%QT_EXAMPLEDIR%%/network/broadcastsender/broadcastsender.pro %%QT_EXAMPLEDIR%%/network/broadcastsender/main.cpp %%QT_EXAMPLEDIR%%/network/broadcastsender/sender.cpp %%QT_EXAMPLEDIR%%/network/broadcastsender/sender.h %%QT_EXAMPLEDIR%%/network/dnslookup/dnslookup.cpp %%QT_EXAMPLEDIR%%/network/dnslookup/dnslookup.h %%QT_EXAMPLEDIR%%/network/dnslookup/dnslookup.pro %%QT_EXAMPLEDIR%%/network/doc/images/blockingfortuneclient-example.png %%QT_EXAMPLEDIR%%/network/doc/images/broadcastreceiver-example.png %%QT_EXAMPLEDIR%%/network/doc/images/broadcastsender-example.png %%QT_EXAMPLEDIR%%/network/doc/images/fortuneclient-example.png %%QT_EXAMPLEDIR%%/network/doc/images/fortuneserver-example.png %%QT_EXAMPLEDIR%%/network/doc/images/googlesuggest-example.png %%QT_EXAMPLEDIR%%/network/doc/images/http-example.png %%QT_EXAMPLEDIR%%/network/doc/images/loopback-example.png %%QT_EXAMPLEDIR%%/network/doc/images/multicastreceiver-example.png %%QT_EXAMPLEDIR%%/network/doc/images/multicastsender-example.png %%QT_EXAMPLEDIR%%/network/doc/images/network-chat-example.png %%QT_EXAMPLEDIR%%/network/doc/images/securesocketclient.png %%QT_EXAMPLEDIR%%/network/doc/images/securesocketclient2.png %%QT_EXAMPLEDIR%%/network/doc/images/secureudpclient-example.png %%QT_EXAMPLEDIR%%/network/doc/images/secureudpserver-example.png %%QT_EXAMPLEDIR%%/network/doc/images/threadedfortuneserver-example.png %%QT_EXAMPLEDIR%%/network/doc/images/torrent-example.png %%QT_EXAMPLEDIR%%/network/doc/src/blockingfortuneclient.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/broadcastreceiver.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/broadcastsender.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/fortuneclient.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/fortuneserver.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/googlesuggest.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/http.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/loopback.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/multicastreceiver.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/multicastsender.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/network-chat.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/network-download.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/network-downloadmanager.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/securesocketclient.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/secureudpclient.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/secureudpserver.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/threadedfortuneserver.qdoc %%QT_EXAMPLEDIR%%/network/doc/src/torrent.qdoc %%QT_EXAMPLEDIR%%/network/download/download.pro %%QT_EXAMPLEDIR%%/network/download/main.cpp %%QT_EXAMPLEDIR%%/network/downloadmanager/downloadmanager.cpp %%QT_EXAMPLEDIR%%/network/downloadmanager/downloadmanager.h %%QT_EXAMPLEDIR%%/network/downloadmanager/downloadmanager.pro %%QT_EXAMPLEDIR%%/network/downloadmanager/main.cpp %%QT_EXAMPLEDIR%%/network/downloadmanager/textprogressbar.cpp %%QT_EXAMPLEDIR%%/network/downloadmanager/textprogressbar.h %%QT_EXAMPLEDIR%%/network/fortuneclient/client.cpp %%QT_EXAMPLEDIR%%/network/fortuneclient/client.h %%QT_EXAMPLEDIR%%/network/fortuneclient/fortuneclient.pro %%QT_EXAMPLEDIR%%/network/fortuneclient/main.cpp %%QT_EXAMPLEDIR%%/network/fortuneserver/fortuneserver.pro %%QT_EXAMPLEDIR%%/network/fortuneserver/main.cpp %%QT_EXAMPLEDIR%%/network/fortuneserver/server.cpp %%QT_EXAMPLEDIR%%/network/fortuneserver/server.h %%QT_EXAMPLEDIR%%/network/googlesuggest/googlesuggest.cpp %%QT_EXAMPLEDIR%%/network/googlesuggest/googlesuggest.h %%QT_EXAMPLEDIR%%/network/googlesuggest/googlesuggest.pro %%QT_EXAMPLEDIR%%/network/googlesuggest/main.cpp %%QT_EXAMPLEDIR%%/network/googlesuggest/searchbox.cpp %%QT_EXAMPLEDIR%%/network/googlesuggest/searchbox.h %%QT_EXAMPLEDIR%%/network/http/authenticationdialog.ui %%QT_EXAMPLEDIR%%/network/http/http.pro %%QT_EXAMPLEDIR%%/network/http/httpwindow.cpp %%QT_EXAMPLEDIR%%/network/http/httpwindow.h %%QT_EXAMPLEDIR%%/network/http/main.cpp %%QT_EXAMPLEDIR%%/network/loopback/dialog.cpp %%QT_EXAMPLEDIR%%/network/loopback/dialog.h %%QT_EXAMPLEDIR%%/network/loopback/loopback.pro %%QT_EXAMPLEDIR%%/network/loopback/main.cpp %%QT_EXAMPLEDIR%%/network/multicastreceiver/main.cpp %%QT_EXAMPLEDIR%%/network/multicastreceiver/multicastreceiver.pro %%QT_EXAMPLEDIR%%/network/multicastreceiver/receiver.cpp %%QT_EXAMPLEDIR%%/network/multicastreceiver/receiver.h %%QT_EXAMPLEDIR%%/network/multicastsender/main.cpp %%QT_EXAMPLEDIR%%/network/multicastsender/multicastsender.pro %%QT_EXAMPLEDIR%%/network/multicastsender/sender.cpp %%QT_EXAMPLEDIR%%/network/multicastsender/sender.h %%QT_EXAMPLEDIR%%/network/multistreamclient/chatconsumer.cpp %%QT_EXAMPLEDIR%%/network/multistreamclient/chatconsumer.h %%QT_EXAMPLEDIR%%/network/multistreamclient/client.cpp %%QT_EXAMPLEDIR%%/network/multistreamclient/client.h %%QT_EXAMPLEDIR%%/network/multistreamclient/consumer.h %%QT_EXAMPLEDIR%%/network/multistreamclient/main.cpp %%QT_EXAMPLEDIR%%/network/multistreamclient/movieconsumer.cpp %%QT_EXAMPLEDIR%%/network/multistreamclient/movieconsumer.h %%QT_EXAMPLEDIR%%/network/multistreamclient/multistreamclient.pro %%QT_EXAMPLEDIR%%/network/multistreamclient/timeconsumer.cpp %%QT_EXAMPLEDIR%%/network/multistreamclient/timeconsumer.h %%QT_EXAMPLEDIR%%/network/multistreamserver/animation.gif %%QT_EXAMPLEDIR%%/network/multistreamserver/chatprovider.cpp %%QT_EXAMPLEDIR%%/network/multistreamserver/chatprovider.h %%QT_EXAMPLEDIR%%/network/multistreamserver/main.cpp %%QT_EXAMPLEDIR%%/network/multistreamserver/movieprovider.cpp %%QT_EXAMPLEDIR%%/network/multistreamserver/movieprovider.h %%QT_EXAMPLEDIR%%/network/multistreamserver/multistreamserver.pro %%QT_EXAMPLEDIR%%/network/multistreamserver/provider.h %%QT_EXAMPLEDIR%%/network/multistreamserver/server.cpp %%QT_EXAMPLEDIR%%/network/multistreamserver/server.h %%QT_EXAMPLEDIR%%/network/multistreamserver/timeprovider.cpp %%QT_EXAMPLEDIR%%/network/multistreamserver/timeprovider.h %%QT_EXAMPLEDIR%%/network/network-chat/chatdialog.cpp %%QT_EXAMPLEDIR%%/network/network-chat/chatdialog.h %%QT_EXAMPLEDIR%%/network/network-chat/chatdialog.ui %%QT_EXAMPLEDIR%%/network/network-chat/client.cpp %%QT_EXAMPLEDIR%%/network/network-chat/client.h %%QT_EXAMPLEDIR%%/network/network-chat/connection.cpp %%QT_EXAMPLEDIR%%/network/network-chat/connection.h %%QT_EXAMPLEDIR%%/network/network-chat/main.cpp %%QT_EXAMPLEDIR%%/network/network-chat/network-chat.pro %%QT_EXAMPLEDIR%%/network/network-chat/peermanager.cpp %%QT_EXAMPLEDIR%%/network/network-chat/peermanager.h %%QT_EXAMPLEDIR%%/network/network-chat/server.cpp %%QT_EXAMPLEDIR%%/network/network-chat/server.h %%QT_EXAMPLEDIR%%/network/network.pro %%QT_EXAMPLEDIR%%/network/securesocketclient/certificateinfo.cpp %%QT_EXAMPLEDIR%%/network/securesocketclient/certificateinfo.h %%QT_EXAMPLEDIR%%/network/securesocketclient/certificateinfo.ui %%QT_EXAMPLEDIR%%/network/securesocketclient/encrypted.png %%QT_EXAMPLEDIR%%/network/securesocketclient/main.cpp %%QT_EXAMPLEDIR%%/network/securesocketclient/securesocketclient.pro %%QT_EXAMPLEDIR%%/network/securesocketclient/securesocketclient.qrc %%QT_EXAMPLEDIR%%/network/securesocketclient/sslclient.cpp %%QT_EXAMPLEDIR%%/network/securesocketclient/sslclient.h %%QT_EXAMPLEDIR%%/network/securesocketclient/sslclient.ui %%QT_EXAMPLEDIR%%/network/securesocketclient/sslerrors.ui %%QT_EXAMPLEDIR%%/network/secureudpclient/addressdialog.cpp %%QT_EXAMPLEDIR%%/network/secureudpclient/addressdialog.h %%QT_EXAMPLEDIR%%/network/secureudpclient/addressdialog.ui %%QT_EXAMPLEDIR%%/network/secureudpclient/association.cpp %%QT_EXAMPLEDIR%%/network/secureudpclient/association.h %%QT_EXAMPLEDIR%%/network/secureudpclient/main.cpp %%QT_EXAMPLEDIR%%/network/secureudpclient/mainwindow.cpp %%QT_EXAMPLEDIR%%/network/secureudpclient/mainwindow.h %%QT_EXAMPLEDIR%%/network/secureudpclient/mainwindow.ui %%QT_EXAMPLEDIR%%/network/secureudpclient/secureudpclient.pro %%QT_EXAMPLEDIR%%/network/secureudpserver/main.cpp %%QT_EXAMPLEDIR%%/network/secureudpserver/mainwindow.cpp %%QT_EXAMPLEDIR%%/network/secureudpserver/mainwindow.h %%QT_EXAMPLEDIR%%/network/secureudpserver/mainwindow.ui %%QT_EXAMPLEDIR%%/network/secureudpserver/nicselector.cpp %%QT_EXAMPLEDIR%%/network/secureudpserver/nicselector.h %%QT_EXAMPLEDIR%%/network/secureudpserver/nicselector.ui %%QT_EXAMPLEDIR%%/network/secureudpserver/secureudpserver.pro %%QT_EXAMPLEDIR%%/network/secureudpserver/server.cpp %%QT_EXAMPLEDIR%%/network/secureudpserver/server.h %%QT_EXAMPLEDIR%%/network/shared/sctpchannels.h %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/dialog.cpp %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/dialog.h %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortuneserver.cpp %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortuneserver.h %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortunethread.cpp %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/fortunethread.h %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/main.cpp %%QT_EXAMPLEDIR%%/network/threadedfortuneserver/threadedfortuneserver.pro %%QT_EXAMPLEDIR%%/network/torrent/addtorrentdialog.cpp %%QT_EXAMPLEDIR%%/network/torrent/addtorrentdialog.h %%QT_EXAMPLEDIR%%/network/torrent/bencodeparser.cpp %%QT_EXAMPLEDIR%%/network/torrent/bencodeparser.h %%QT_EXAMPLEDIR%%/network/torrent/connectionmanager.cpp %%QT_EXAMPLEDIR%%/network/torrent/connectionmanager.h %%QT_EXAMPLEDIR%%/network/torrent/filemanager.cpp %%QT_EXAMPLEDIR%%/network/torrent/filemanager.h %%QT_EXAMPLEDIR%%/network/torrent/forms/addtorrentform.ui %%QT_EXAMPLEDIR%%/network/torrent/icons.qrc %%QT_EXAMPLEDIR%%/network/torrent/icons/1downarrow.png %%QT_EXAMPLEDIR%%/network/torrent/icons/1uparrow.png %%QT_EXAMPLEDIR%%/network/torrent/icons/bottom.png %%QT_EXAMPLEDIR%%/network/torrent/icons/edit_add.png %%QT_EXAMPLEDIR%%/network/torrent/icons/edit_remove.png %%QT_EXAMPLEDIR%%/network/torrent/icons/exit.png %%QT_EXAMPLEDIR%%/network/torrent/icons/peertopeer.png %%QT_EXAMPLEDIR%%/network/torrent/icons/player_pause.png %%QT_EXAMPLEDIR%%/network/torrent/icons/player_play.png %%QT_EXAMPLEDIR%%/network/torrent/icons/player_stop.png %%QT_EXAMPLEDIR%%/network/torrent/icons/stop.png %%QT_EXAMPLEDIR%%/network/torrent/main.cpp %%QT_EXAMPLEDIR%%/network/torrent/mainwindow.cpp %%QT_EXAMPLEDIR%%/network/torrent/mainwindow.h %%QT_EXAMPLEDIR%%/network/torrent/metainfo.cpp %%QT_EXAMPLEDIR%%/network/torrent/metainfo.h %%QT_EXAMPLEDIR%%/network/torrent/peerwireclient.cpp %%QT_EXAMPLEDIR%%/network/torrent/peerwireclient.h %%QT_EXAMPLEDIR%%/network/torrent/ratecontroller.cpp %%QT_EXAMPLEDIR%%/network/torrent/ratecontroller.h %%QT_EXAMPLEDIR%%/network/torrent/torrent.pro %%QT_EXAMPLEDIR%%/network/torrent/torrentclient.cpp %%QT_EXAMPLEDIR%%/network/torrent/torrentclient.h %%QT_EXAMPLEDIR%%/network/torrent/torrentserver.cpp %%QT_EXAMPLEDIR%%/network/torrent/torrentserver.h %%QT_EXAMPLEDIR%%/network/torrent/trackerclient.cpp %%QT_EXAMPLEDIR%%/network/torrent/trackerclient.h %%QT_EXAMPLEDIR%%/nfc/annotatedurl/annotatedurl.cpp %%QT_EXAMPLEDIR%%/nfc/annotatedurl/annotatedurl.h %%QT_EXAMPLEDIR%%/nfc/annotatedurl/annotatedurl.pro %%QT_EXAMPLEDIR%%/nfc/annotatedurl/doc/images/annotatedurl.png %%QT_EXAMPLEDIR%%/nfc/annotatedurl/doc/images/annotatedurl2.png %%QT_EXAMPLEDIR%%/nfc/annotatedurl/doc/src/annotatedurl.qdoc %%QT_EXAMPLEDIR%%/nfc/annotatedurl/main.cpp %%QT_EXAMPLEDIR%%/nfc/annotatedurl/mainwindow.cpp %%QT_EXAMPLEDIR%%/nfc/annotatedurl/mainwindow.h %%QT_EXAMPLEDIR%%/nfc/annotatedurl/mainwindow.ui %%QT_EXAMPLEDIR%%/nfc/corkboard/Mode.qml %%QT_EXAMPLEDIR%%/nfc/corkboard/NfcFlag.png %%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 %%QT_EXAMPLEDIR%%/nfc/corkboard/corkboards.qml %%QT_EXAMPLEDIR%%/nfc/corkboard/doc/images/corkboard.png %%QT_EXAMPLEDIR%%/nfc/corkboard/doc/src/corkboard.qdoc %%QT_EXAMPLEDIR%%/nfc/corkboard/icon.png %%QT_EXAMPLEDIR%%/nfc/corkboard/main.cpp %%QT_EXAMPLEDIR%%/nfc/corkboard/note-yellow.png %%QT_EXAMPLEDIR%%/nfc/corkboard/tack.png %%QT_EXAMPLEDIR%%/nfc/ndefeditor/doc/images/ndefeditor.png %%QT_EXAMPLEDIR%%/nfc/ndefeditor/doc/src/ndefeditor.qdoc %%QT_EXAMPLEDIR%%/nfc/ndefeditor/main.cpp %%QT_EXAMPLEDIR%%/nfc/ndefeditor/mainwindow.cpp %%QT_EXAMPLEDIR%%/nfc/ndefeditor/mainwindow.h %%QT_EXAMPLEDIR%%/nfc/ndefeditor/mainwindow.ui %%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.cpp %%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.h %%QT_EXAMPLEDIR%%/nfc/ndefeditor/mimeimagerecordeditor.ui %%QT_EXAMPLEDIR%%/nfc/ndefeditor/ndefeditor.pro %%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.cpp %%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.h %%QT_EXAMPLEDIR%%/nfc/ndefeditor/textrecordeditor.ui %%QT_EXAMPLEDIR%%/nfc/ndefeditor/urirecordeditor.cpp %%QT_EXAMPLEDIR%%/nfc/ndefeditor/urirecordeditor.h %%QT_EXAMPLEDIR%%/nfc/ndefeditor/urirecordeditor.ui %%QT_EXAMPLEDIR%%/nfc/nfc.pro %%QT_EXAMPLEDIR%%/nfc/poster/doc/images/qml-poster-example.png %%QT_EXAMPLEDIR%%/nfc/poster/doc/src/poster.qdoc %%QT_EXAMPLEDIR%%/nfc/poster/poster.pro %%QT_EXAMPLEDIR%%/nfc/poster/poster.qml %%QT_EXAMPLEDIR%%/nfc/poster/poster.qrc %%QT_EXAMPLEDIR%%/nfc/poster/qmlposter.cpp %%QT_EXAMPLEDIR%%/oauth/oauth.pro %%QT_EXAMPLEDIR%%/oauth/redditclient/doc/images/redditclient-example.png %%QT_EXAMPLEDIR%%/oauth/redditclient/doc/src/qtnetworkauth-redditclient.qdoc %%QT_EXAMPLEDIR%%/oauth/redditclient/main.cpp %%QT_EXAMPLEDIR%%/oauth/redditclient/redditclient.pro %%QT_EXAMPLEDIR%%/oauth/redditclient/redditmodel.cpp %%QT_EXAMPLEDIR%%/oauth/redditclient/redditmodel.h %%QT_EXAMPLEDIR%%/oauth/redditclient/redditwrapper.cpp %%QT_EXAMPLEDIR%%/oauth/redditclient/redditwrapper.h %%QT_EXAMPLEDIR%%/oauth/twittertimeline/doc/images/twittertimeline-example.png %%QT_EXAMPLEDIR%%/oauth/twittertimeline/doc/src/qtnetworkauth-twittertimeline.qdoc %%QT_EXAMPLEDIR%%/oauth/twittertimeline/main.cpp %%QT_EXAMPLEDIR%%/oauth/twittertimeline/twitter.cpp %%QT_EXAMPLEDIR%%/oauth/twittertimeline/twitter.h %%QT_EXAMPLEDIR%%/oauth/twittertimeline/twitterdialog.ui %%QT_EXAMPLEDIR%%/oauth/twittertimeline/twittertimeline.pro %%QT_EXAMPLEDIR%%/oauth/twittertimeline/twittertimelinemodel.cpp %%QT_EXAMPLEDIR%%/oauth/twittertimeline/twittertimelinemodel.h %%QT_EXAMPLEDIR%%/opengl/2dpainting/2dpainting.pro %%QT_EXAMPLEDIR%%/opengl/2dpainting/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/2dpainting/glwidget.h %%QT_EXAMPLEDIR%%/opengl/2dpainting/helper.cpp %%QT_EXAMPLEDIR%%/opengl/2dpainting/helper.h %%QT_EXAMPLEDIR%%/opengl/2dpainting/main.cpp %%QT_EXAMPLEDIR%%/opengl/2dpainting/widget.cpp %%QT_EXAMPLEDIR%%/opengl/2dpainting/widget.h %%QT_EXAMPLEDIR%%/opengl/2dpainting/window.cpp %%QT_EXAMPLEDIR%%/opengl/2dpainting/window.h %%QT_EXAMPLEDIR%%/opengl/README %%QT_EXAMPLEDIR%%/opengl/computegles31/Qt-logo-medium.png %%QT_EXAMPLEDIR%%/opengl/computegles31/computegles31.pro %%QT_EXAMPLEDIR%%/opengl/computegles31/computegles31.qrc %%QT_EXAMPLEDIR%%/opengl/computegles31/glwindow.cpp %%QT_EXAMPLEDIR%%/opengl/computegles31/glwindow.h %%QT_EXAMPLEDIR%%/opengl/computegles31/main.cpp %%QT_EXAMPLEDIR%%/opengl/contextinfo/contextinfo.pro %%QT_EXAMPLEDIR%%/opengl/contextinfo/main.cpp %%QT_EXAMPLEDIR%%/opengl/contextinfo/renderwindow.cpp %%QT_EXAMPLEDIR%%/opengl/contextinfo/renderwindow.h %%QT_EXAMPLEDIR%%/opengl/contextinfo/widget.cpp %%QT_EXAMPLEDIR%%/opengl/contextinfo/widget.h %%QT_EXAMPLEDIR%%/opengl/cube/cube.png %%QT_EXAMPLEDIR%%/opengl/cube/cube.pro %%QT_EXAMPLEDIR%%/opengl/cube/fshader.glsl %%QT_EXAMPLEDIR%%/opengl/cube/geometryengine.cpp %%QT_EXAMPLEDIR%%/opengl/cube/geometryengine.h %%QT_EXAMPLEDIR%%/opengl/cube/main.cpp %%QT_EXAMPLEDIR%%/opengl/cube/mainwidget.cpp %%QT_EXAMPLEDIR%%/opengl/cube/mainwidget.h %%QT_EXAMPLEDIR%%/opengl/cube/shaders.qrc %%QT_EXAMPLEDIR%%/opengl/cube/textures.qrc %%QT_EXAMPLEDIR%%/opengl/cube/vshader.glsl %%QT_EXAMPLEDIR%%/opengl/doc/images/2dpainting-example.png %%QT_EXAMPLEDIR%%/opengl/doc/images/cube.png %%QT_EXAMPLEDIR%%/opengl/doc/images/cube_faces.png %%QT_EXAMPLEDIR%%/opengl/doc/images/hellogl2-example.png %%QT_EXAMPLEDIR%%/opengl/doc/images/textures-example.png %%QT_EXAMPLEDIR%%/opengl/doc/src/2dpainting.qdoc %%QT_EXAMPLEDIR%%/opengl/doc/src/cube.qdoc %%QT_EXAMPLEDIR%%/opengl/doc/src/hellogl2.qdoc %%QT_EXAMPLEDIR%%/opengl/doc/src/textures.qdoc %%QT_EXAMPLEDIR%%/opengl/hellogl2/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/hellogl2/glwidget.h %%QT_EXAMPLEDIR%%/opengl/hellogl2/hellogl2.pro %%QT_EXAMPLEDIR%%/opengl/hellogl2/logo.cpp %%QT_EXAMPLEDIR%%/opengl/hellogl2/logo.h %%QT_EXAMPLEDIR%%/opengl/hellogl2/main.cpp %%QT_EXAMPLEDIR%%/opengl/hellogl2/mainwindow.cpp %%QT_EXAMPLEDIR%%/opengl/hellogl2/mainwindow.h %%QT_EXAMPLEDIR%%/opengl/hellogl2/window.cpp %%QT_EXAMPLEDIR%%/opengl/hellogl2/window.h %%QT_EXAMPLEDIR%%/opengl/hellogles3/doc/images/hellogles3-example.png %%QT_EXAMPLEDIR%%/opengl/hellogles3/doc/src/hellogles3.qdoc %%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 %%QT_EXAMPLEDIR%%/opengl/hellowindow/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/README %%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/cubelogo.png %%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/framebufferobject2.pro %%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/framebufferobject2.qrc %%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/glwidget.h %%QT_EXAMPLEDIR%%/opengl/legacy/framebufferobject2/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/grabber/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/grabber/glwidget.h %%QT_EXAMPLEDIR%%/opengl/legacy/grabber/grabber.pro %%QT_EXAMPLEDIR%%/opengl/legacy/grabber/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/grabber/mainwindow.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/grabber/mainwindow.h %%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/glwidget.h %%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/hellogl.pro %%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/window.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/hellogl/window.h %%QT_EXAMPLEDIR%%/opengl/legacy/legacy.pro %%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/bubble.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/bubble.h %%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/glwidget.h %%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/overpainting/overpainting.pro %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/cube.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/cube.h %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/cubelogo.png %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/glwidget.h %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/pbuffers.pro %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers/pbuffers.qrc %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/bubbles.svg %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/designer.png %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/glwidget.h %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/pbuffers2.pro %%QT_EXAMPLEDIR%%/opengl/legacy/pbuffers2/pbuffers2.qrc %%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/glwidget.h %%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/main.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/samplebuffers/samplebuffers.pro %%QT_EXAMPLEDIR%%/opengl/legacy/shared/qtlogo.cpp %%QT_EXAMPLEDIR%%/opengl/legacy/shared/qtlogo.h %%QT_EXAMPLEDIR%%/opengl/opengl.pro %%QT_EXAMPLEDIR%%/opengl/paintedwindow/main.cpp %%QT_EXAMPLEDIR%%/opengl/paintedwindow/paintedwindow.cpp %%QT_EXAMPLEDIR%%/opengl/paintedwindow/paintedwindow.h %%QT_EXAMPLEDIR%%/opengl/paintedwindow/paintedwindow.pro %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/bubble.cpp %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/bubble.h %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/glwidget.h %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/main.cpp %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/mainwindow.cpp %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/mainwindow.h %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/qopenglwidget.pro %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/qt.png %%QT_EXAMPLEDIR%%/opengl/qopenglwidget/texture.qrc %%QT_EXAMPLEDIR%%/opengl/qopenglwindow/background.frag %%QT_EXAMPLEDIR%%/opengl/qopenglwindow/background_renderer.cpp %%QT_EXAMPLEDIR%%/opengl/qopenglwindow/background_renderer.h %%QT_EXAMPLEDIR%%/opengl/qopenglwindow/main.cpp %%QT_EXAMPLEDIR%%/opengl/qopenglwindow/qopenglwindow.pro %%QT_EXAMPLEDIR%%/opengl/qopenglwindow/shaders.qrc %%QT_EXAMPLEDIR%%/opengl/textures/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/textures/glwidget.h %%QT_EXAMPLEDIR%%/opengl/textures/images/side1.png %%QT_EXAMPLEDIR%%/opengl/textures/images/side2.png %%QT_EXAMPLEDIR%%/opengl/textures/images/side3.png %%QT_EXAMPLEDIR%%/opengl/textures/images/side4.png %%QT_EXAMPLEDIR%%/opengl/textures/images/side5.png %%QT_EXAMPLEDIR%%/opengl/textures/images/side6.png %%QT_EXAMPLEDIR%%/opengl/textures/main.cpp %%QT_EXAMPLEDIR%%/opengl/textures/textures.pro %%QT_EXAMPLEDIR%%/opengl/textures/textures.qrc %%QT_EXAMPLEDIR%%/opengl/textures/window.cpp %%QT_EXAMPLEDIR%%/opengl/textures/window.h %%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/glwidget.cpp %%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/glwidget.h %%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/main.cpp %%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/mainwindow.cpp %%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/mainwindow.h %%QT_EXAMPLEDIR%%/opengl/threadedqopenglwidget/threadedqopenglwidget.pro %%QT_EXAMPLEDIR%%/pdf/multipage/main.cpp %%QT_EXAMPLEDIR%%/pdf/multipage/multipage.pro %%QT_EXAMPLEDIR%%/pdf/multipage/resources/document-open.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/edit-clear.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/edit-copy.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/edit-select-all.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/go-down-search.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/go-next-view-page.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/go-previous-view-page.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/go-up-search.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/rotate-left.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/rotate-right.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/test.pdf %%QT_EXAMPLEDIR%%/pdf/multipage/resources/zoom-fit-best.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/zoom-fit-width.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/zoom-in.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/zoom-original.svg %%QT_EXAMPLEDIR%%/pdf/multipage/resources/zoom-out.svg %%QT_EXAMPLEDIR%%/pdf/multipage/viewer.qml %%QT_EXAMPLEDIR%%/pdf/multipage/viewer.qrc %%QT_EXAMPLEDIR%%/pdf/pdf.pro %%QT_EXAMPLEDIR%%/pdf/pdfviewer/main.cpp %%QT_EXAMPLEDIR%%/pdf/pdfviewer/pdfviewer.pro %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/document-open.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/edit-clear.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/edit-copy.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/edit-select-all.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/go-down-search.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/go-next-view-page.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/go-previous-view-page.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/go-up-search.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/rotate-left.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/rotate-right.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/test.pdf %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/zoom-fit-best.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/zoom-fit-width.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/zoom-in.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/zoom-original.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/resources/zoom-out.svg %%QT_EXAMPLEDIR%%/pdf/pdfviewer/viewer.qml %%QT_EXAMPLEDIR%%/pdf/pdfviewer/viewer.qrc %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/doc/src/pdfviewer.qdoc %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/busy.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/fileopen.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/go-next-24.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/go-previous-24.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/zoom-in-24.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/zoom-in-32.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/zoom-out-24.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/images/zoom-out-32.png %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/main.cpp %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/mainwindow.cpp %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/mainwindow.h %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/mainwindow.ui %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/pageselector.cpp %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/pageselector.h %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/pdfviewer.pro %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/resources.qrc %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/zoomselector.cpp %%QT_EXAMPLEDIR%%/pdfwidgets/pdfviewer/zoomselector.h %%QT_EXAMPLEDIR%%/pdfwidgets/pdfwidgets.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 %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/Progress.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/RestModel.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/ScrollBar.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrcommon/Slider.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/Button.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/GeoTab.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/GridDelegate.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/ImageDetails.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/ListDelegate.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/TitleBar.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/ToolBar.qml %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/gloss.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/lineedit.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/lineedit.sci %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/moon.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/quit.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/star.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/stripes.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/sun.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/titlebar.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/titlebar.sci %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/toolbutton.png %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/images/toolbutton.sci %%QT_EXAMPLEDIR%%/positioning/geoflickr/flickrmobile/nmealog.txt %%QT_EXAMPLEDIR%%/positioning/geoflickr/geoflickr.pro %%QT_EXAMPLEDIR%%/positioning/geoflickr/geoflickr.qmlproject %%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 %%QT_EXAMPLEDIR%%/positioning/logfilepositionsource/logfilepositionsource.pro %%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 %%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satelliteinfo.qrc %%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satellitemodel.cpp %%QT_EXAMPLEDIR%%/positioning/satelliteinfo/satellitemodel.h %%QT_EXAMPLEDIR%%/positioning/weatherinfo/appmodel.cpp %%QT_EXAMPLEDIR%%/positioning/weatherinfo/appmodel.h %%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/qt_attribution.json %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-few-clouds.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-fog.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-haze.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-icy.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-overcast.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-showers.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-sleet.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-snow.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-storm.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-sunny-very-few-clouds.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-sunny.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/icons/weather-thundershower.png %%QT_EXAMPLEDIR%%/positioning/weatherinfo/main.cpp %%QT_EXAMPLEDIR%%/positioning/weatherinfo/weatherinfo.pro %%QT_EXAMPLEDIR%%/positioning/weatherinfo/weatherinfo.qml %%QT_EXAMPLEDIR%%/positioning/weatherinfo/weatherinfo.qrc %%QT_EXAMPLEDIR%%/purchasing/purchasing.pro %%QT_EXAMPLEDIR%%/purchasing/qthangman/doc/images/qthangman-example.png %%QT_EXAMPLEDIR%%/purchasing/qthangman/doc/images/qthangman-store-example.png %%QT_EXAMPLEDIR%%/purchasing/qthangman/doc/src/qthangman.qdoc %%QT_EXAMPLEDIR%%/purchasing/qthangman/enable2.txt %%QT_EXAMPLEDIR%%/purchasing/qthangman/hangmangame.cpp %%QT_EXAMPLEDIR%%/purchasing/qthangman/hangmangame.h %%QT_EXAMPLEDIR%%/purchasing/qthangman/main.cpp %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/+windows/Settings.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/GameView.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/GuessWordView.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Hangman.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/HowToView.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Key.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Letter.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/LetterSelector.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/MainView.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/PageHeader.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/ScoreItem.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Settings.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/SimpleButton.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/SplashScreen.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/StoreItem.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/StoreView.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/Word.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/main.qml %%QT_EXAMPLEDIR%%/purchasing/qthangman/qml/qthangman/qmldir %%QT_EXAMPLEDIR%%/purchasing/qthangman/qthangman.pro %%QT_EXAMPLEDIR%%/purchasing/qthangman/resources.qrc %%QT_EXAMPLEDIR%%/purchasing/qthangman/winrt/QtStoreSimulation.xml %%QT_EXAMPLEDIR%%/purchasing/qthangman/winrt/winrt.qrc %%QT_EXAMPLEDIR%%/qmake/precompile/main.cpp %%QT_EXAMPLEDIR%%/qmake/precompile/mydialog.cpp %%QT_EXAMPLEDIR%%/qmake/precompile/mydialog.h %%QT_EXAMPLEDIR%%/qmake/precompile/mydialog.ui %%QT_EXAMPLEDIR%%/qmake/precompile/myobject.cpp %%QT_EXAMPLEDIR%%/qmake/precompile/myobject.h %%QT_EXAMPLEDIR%%/qmake/precompile/precompile.pro %%QT_EXAMPLEDIR%%/qmake/precompile/stable.h %%QT_EXAMPLEDIR%%/qmake/precompile/util.cpp %%QT_EXAMPLEDIR%%/qmake/tutorial/hello.cpp %%QT_EXAMPLEDIR%%/qmake/tutorial/hello.h %%QT_EXAMPLEDIR%%/qmake/tutorial/hellounix.cpp %%QT_EXAMPLEDIR%%/qmake/tutorial/hellowin.cpp %%QT_EXAMPLEDIR%%/qmake/tutorial/main.cpp %%QT_EXAMPLEDIR%%/qml/doc/src/qml-extending.qdoc %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/Button.qml %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/GenericSceneItem.qml %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/PaletteItem.qml %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/PerspectiveItem.qml %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/Sun.qml %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/NOTE %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/face-smile.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/moon.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/rabbit_brown.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/rabbit_bw.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/star.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/sun.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/images/tree_s.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/content/itemCreation.js %%QT_EXAMPLEDIR%%/qml/dynamicscene/doc/images/qml-dynamicscene-example.png %%QT_EXAMPLEDIR%%/qml/dynamicscene/doc/src/dynamicscene.qdoc %%QT_EXAMPLEDIR%%/qml/dynamicscene/dynamicscene.pro %%QT_EXAMPLEDIR%%/qml/dynamicscene/dynamicscene.qml %%QT_EXAMPLEDIR%%/qml/dynamicscene/dynamicscene.qmlproject %%QT_EXAMPLEDIR%%/qml/dynamicscene/dynamicscene.qrc %%QT_EXAMPLEDIR%%/qml/dynamicscene/main.cpp %%QT_EXAMPLEDIR%%/qml/locale/locale.qml %%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/doc/src/networkaccessmanagerfactory.qdoc %%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/main.cpp %%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/networkaccessmanagerfactory.pro %%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/networkaccessmanagerfactory.qmlproject %%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/networkaccessmanagerfactory.qrc %%QT_EXAMPLEDIR%%/qml/networkaccessmanagerfactory/view.qml %%QT_EXAMPLEDIR%%/qml/qml-i18n/doc/images/qml-i18n-example.png %%QT_EXAMPLEDIR%%/qml/qml-i18n/doc/src/i18n.qdoc %%QT_EXAMPLEDIR%%/qml/qml-i18n/i18n/base.ts %%QT_EXAMPLEDIR%%/qml/qml-i18n/i18n/qml_en.ts %%QT_EXAMPLEDIR%%/qml/qml-i18n/i18n/qml_en_AU.ts %%QT_EXAMPLEDIR%%/qml/qml-i18n/i18n/qml_fr.ts %%QT_EXAMPLEDIR%%/qml/qml-i18n/main.cpp %%QT_EXAMPLEDIR%%/qml/qml-i18n/qml-i18n.pro %%QT_EXAMPLEDIR%%/qml/qml-i18n/qml-i18n.qml %%QT_EXAMPLEDIR%%/qml/qml-i18n/qml-i18n.qmlproject %%QT_EXAMPLEDIR%%/qml/qml-i18n/qml-i18n.qrc %%QT_EXAMPLEDIR%%/qml/qml.pro %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/doc/images/qml-plugins-example.png %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/doc/src/qmlpluginex.qdoc %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/Clock.qml %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/center.png %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/clock.png %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/hour.png %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/minute.png %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/imports/TimeExample/qmldir %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/plugin.cpp %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/plugins.qml %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/plugins.qmlproject %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/qmlextensionplugins.pro %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/timemodel.cpp %%QT_EXAMPLEDIR%%/qml/qmlextensionplugins/timemodel.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/adding.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/adding.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/adding/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/attached.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/attached.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/attached/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/binding.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/binding.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/happybirthdaysong.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/happybirthdaysong.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/binding/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/coercion.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/coercion.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/coercion/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/default.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/default.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/default/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/extended.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/extended.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/lineedit.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/lineedit.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/extended/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/grouped.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/grouped.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/grouped/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/methods.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/methods.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/methods/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/properties.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/properties/properties.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/referenceexamples.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/referenceexamples.qmlproject %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/signal.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/signal/signal.qrc %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/birthdayparty.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/birthdayparty.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/example.qml %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/happybirthdaysong.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/happybirthdaysong.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/main.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/person.cpp %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/person.h %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/valuesource.pro %%QT_EXAMPLEDIR%%/qml/referenceexamples/valuesource/valuesource.qrc %%QT_EXAMPLEDIR%%/qml/shell/main.cpp %%QT_EXAMPLEDIR%%/qml/shell/shell.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/app.qml %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/chapter1-basics.qrc %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/main.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/piechart.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter1-basics/piechart.h %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/app.qml %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/chapter2-methods.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/chapter2-methods.qrc %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter2-methods/main.cpp %%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-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 %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/app.qml %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/chapter4-customPropertyTypes.qrc %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/main.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/piechart.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/piechart.h %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/pieslice.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter4-customPropertyTypes/pieslice.h %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/app.qml %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/chapter5-listproperties.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/chapter5-listproperties.qrc %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/main.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/piechart.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/piechart.h %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/pieslice.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter5-listproperties/pieslice.h %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/app.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/app.qml %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/app.qrc %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/chapter6-plugins.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/chartsplugin.h %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/import.pro %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/piechart.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/piechart.h %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/pieslice.cpp %%QT_EXAMPLEDIR%%/qml/tutorials/extending-qml/chapter6-plugins/import/pieslice.h %%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/Get.qml %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/GetForm.ui.qml %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/data.xml %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/doc/images/qml-xmlhttprequest-example.png %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/doc/src/xmlhttprequest.qdoc %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/main.cpp %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/methods.js %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.pro %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.qml %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.qmlproject %%QT_EXAMPLEDIR%%/qml/xmlhttprequest/xmlhttprequest.qrc %%QT_EXAMPLEDIR%%/qmltest/qmltest.pro %%QT_EXAMPLEDIR%%/qmltest/qmltest/qmltest.pro %%QT_EXAMPLEDIR%%/qmltest/qmltest/tst_basic.qml %%QT_EXAMPLEDIR%%/qmltest/qmltest/tst_item.qml %%QT_EXAMPLEDIR%%/qmltest/qmltest/tst_qmltest.cpp %%QT_EXAMPLEDIR%%/qpa/qpa.pro %%QT_EXAMPLEDIR%%/qpa/qrasterwindow/main.cpp %%QT_EXAMPLEDIR%%/qpa/qrasterwindow/qrasterwindow.pro %%QT_EXAMPLEDIR%%/qpa/windows/main.cpp %%QT_EXAMPLEDIR%%/qpa/windows/window.cpp %%QT_EXAMPLEDIR%%/qpa/windows/window.h %%QT_EXAMPLEDIR%%/qpa/windows/windows.pro %%QT_EXAMPLEDIR%%/qt3d/3d-text/3d-text.pro %%QT_EXAMPLEDIR%%/qt3d/3d-text/main.cpp %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/SceneRoot.qml %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/Water.qml %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/WaterMaterial.qml %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/advancedcustommaterial.pro %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/doc/images/advanced-custom-material.jpg %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/doc/src/advancedcustommaterial.qdoc %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/main.cpp %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/main.qml %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/models.qrc %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/models/waterPlane.obj %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/qml.qrc %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/shaders.qrc %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/shaders/es2/water.frag %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/shaders/es2/water.vert %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/shaders/gl3/water.frag %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/shaders/gl3/water.vert %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/textures.qrc %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/textures/WaterDiffuse.jpg %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/textures/WaterNormal.jpg %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/textures/WaterSpecular.jpg %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/textures/Waterwave.jpg %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/textures/foam.jpg %%QT_EXAMPLEDIR%%/qt3d/advancedcustommaterial/textures/sky.jpg %%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/StereoCamera.qml %%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/StereoFrameGraph.qml %%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/anaglyph-rendering.pro %%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/main.cpp %%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/main.qml %%QT_EXAMPLEDIR%%/qt3d/anaglyph-rendering/resources.qrc %%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 %%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/main.cpp %%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/scenemodifier.cpp %%QT_EXAMPLEDIR%%/qt3d/basicshapes-cpp/scenemodifier.h %%QT_EXAMPLEDIR%%/qt3d/compute-particles/ComputeFrameGraph.qml %%QT_EXAMPLEDIR%%/qt3d/compute-particles/ComputeMaterial.qml %%QT_EXAMPLEDIR%%/qt3d/compute-particles/ParticlesScene.qml %%QT_EXAMPLEDIR%%/qt3d/compute-particles/compute-particles.pro %%QT_EXAMPLEDIR%%/qt3d/compute-particles/compute-particles.qrc %%QT_EXAMPLEDIR%%/qt3d/compute-particles/main.cpp %%QT_EXAMPLEDIR%%/qt3d/compute-particles/main.qml %%QT_EXAMPLEDIR%%/qt3d/compute-particles/particles.comp %%QT_EXAMPLEDIR%%/qt3d/compute-particles/particles.frag %%QT_EXAMPLEDIR%%/qt3d/compute-particles/particles.vert %%QT_EXAMPLEDIR%%/qt3d/controls/Logo.qml %%QT_EXAMPLEDIR%%/qt3d/controls/Qt_logo.obj %%QT_EXAMPLEDIR%%/qt3d/controls/controls.pro %%QT_EXAMPLEDIR%%/qt3d/controls/controls.qrc %%QT_EXAMPLEDIR%%/qt3d/controls/main.cpp %%QT_EXAMPLEDIR%%/qt3d/controls/main.qml %%QT_EXAMPLEDIR%%/qt3d/controlsunderlay/Logo.qml %%QT_EXAMPLEDIR%%/qt3d/controlsunderlay/Qt_logo.obj %%QT_EXAMPLEDIR%%/qt3d/controlsunderlay/controls.qrc %%QT_EXAMPLEDIR%%/qt3d/controlsunderlay/controlsunderlay.pro %%QT_EXAMPLEDIR%%/qt3d/controlsunderlay/main.cpp %%QT_EXAMPLEDIR%%/qt3d/controlsunderlay/main.qml %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/LICENSE %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/default/default_irradiance.dds %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/default/default_specular.dds %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/README.TXT %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_negx.webp %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_negy.webp %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_negz.webp %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_posx.webp %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_posy.webp %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/miramar_posz.webp %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/cubemaps/miramar/qt_attribution.json %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/envmaps/cedar-bridge/cedar_bridge_irradiance.dds %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/envmaps/cedar-bridge/cedar_bridge_specular.dds %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/2.0/RiggedFigure/RiggedFigure.gltf %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/2.0/RiggedFigure/RiggedFigure0.bin %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/2.0/RiggedSimple/RiggedSimple.gltf %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/2.0/RiggedSimple/RiggedSimple0.bin %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/LICENSE.md %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/LICENSE.md %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/Wood_Cherry_Original_.jpg %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/_2004_old_vine_zinfandel_btl_xlg.jpg %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/artezin_bottle.jpg %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/qt_attribution.json %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine.bin %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine.dae %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine.gltf %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine0FS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine0VS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine1FS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine1VS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine2FS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine2VS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine3FS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/gltf/wine/wine3VS.glsl %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/ball.obj %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/material-sphere.obj %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/plane-10x10.obj %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/qt_attribution.json %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/toyplane.obj %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/obj/trefoil.obj %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/test_scene.dae %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_basecolor.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_metallic.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_normal.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_roughness.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_basecolor.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_metallic.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_normal.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_roughness.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_ambient_occlusion.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_basecolor.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_metallic.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_normal.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_roughness.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_basecolor.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_metallic.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_normal.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_roughness.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/copper_brushed/copper_brushed_basecolor.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/copper_brushed/copper_brushed_metallic.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/copper_brushed/copper_brushed_normal.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/copper_brushed/copper_brushed_roughness.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_basecolor.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_metallic.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_normal.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_roughness.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/no-ao.png %%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/textures/pattern_09/readme.txt %%QT_EXAMPLEDIR%%/qt3d/exampleresources/cubemaps.qrc %%QT_EXAMPLEDIR%%/qt3d/exampleresources/envmaps.qrc %%QT_EXAMPLEDIR%%/qt3d/exampleresources/gltf.qrc %%QT_EXAMPLEDIR%%/qt3d/exampleresources/obj.qrc %%QT_EXAMPLEDIR%%/qt3d/exampleresources/test_scene.qrc %%QT_EXAMPLEDIR%%/qt3d/exampleresources/textures.qrc %%QT_EXAMPLEDIR%%/qt3d/examples.pri %%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/lights/PlaneEntity.qml %%QT_EXAMPLEDIR%%/qt3d/lights/SimpleForwardRenderer.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/multiviewport/Gear_scene.dae %%QT_EXAMPLEDIR%%/qt3d/multiviewport/QuadViewportFrameGraph.qml %%QT_EXAMPLEDIR%%/qt3d/multiviewport/SimpleCamera.qml %%QT_EXAMPLEDIR%%/qt3d/multiviewport/doc/images/multiviewport-qml-example.jpg %%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/pbr-materials/BasicCamera.qml %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/Lights.qml %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/TrefoilKnot.qml %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/doc/images/pbr-materials.png %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/doc/src/materials.qdoc %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/main.cpp %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/main.qml %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/materials.qrc %%QT_EXAMPLEDIR%%/qt3d/pbr-materials/pbr-materials.pro %%QT_EXAMPLEDIR%%/qt3d/phong-cubes/CubeEntity.qml %%QT_EXAMPLEDIR%%/qt3d/phong-cubes/main.cpp %%QT_EXAMPLEDIR%%/qt3d/phong-cubes/main.qml %%QT_EXAMPLEDIR%%/qt3d/phong-cubes/phong-cubes.pro %%QT_EXAMPLEDIR%%/qt3d/phong-cubes/phong-cubes.qrc %%QT_EXAMPLEDIR%%/qt3d/planets-qml/AppleTVInput.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/FpsDisplay.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/InfoSheet.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/Planet.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetButton.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetEffect.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetFrameGraph.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/PlanetMaterial.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/ShadowEffect.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/SolarSystem.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/StyledSlider.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/SunEffect.qml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/res/drawable-hdpi/icon.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/res/drawable-ldpi/icon.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/android/res/drawable-mdpi/icon.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/doc/images/planets-qml-example.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/doc/src/planets-qml.qdoc %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/earth.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/jupiter.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/mars.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/mercury.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/nasa/license.txt %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/nasa/qt_attribution.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/nasa/uranusringcolortrans.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/neptune.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/saturn.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/earthcloudmapcolortrans.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/earthcloudmapspec.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/earthmap2k.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/earthnormal2k.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/earthspec2k.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/galaxy_starfield.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/jupitermap.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/license.txt %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/marsmap2k.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/marsnormal2k.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/mercurymap.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/mercurynormal.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/moonmap2k.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/moonnormal2k.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/neptunemap.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/qt_attribution.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/saturnmap.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/saturnringcolortrans.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/sunmap.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/uranusmap.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/venusmap.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/solarsystemscope/venusnormal.jpg %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/sun.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/uranus.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/images/venus.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/main.cpp %%QT_EXAMPLEDIR%%/qt3d/planets-qml/meshes/ring.obj %%QT_EXAMPLEDIR%%/qt3d/planets-qml/meshes/starfield.obj %%QT_EXAMPLEDIR%%/qt3d/planets-qml/networkcontroller.cpp %%QT_EXAMPLEDIR%%/qt3d/planets-qml/networkcontroller.h %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-qml-images.qrc %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-qml.pro %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-qml.qrc %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit App/Assets.xcassets/AppIcon.appiconset/home_icon.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit App/Assets.xcassets/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit App/Base.lproj/Interface.storyboard %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit App/Info.plist %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/ExtensionDelegate.h %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/ExtensionDelegate.m %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/Info.plist %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/InterfaceController.h %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient WatchKit Extension/InterfaceController.m %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient.xcodeproj/project.pbxproj %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient.xcodeproj/project.xcworkspace/contents.xcworkspacedata %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/AppDelegate.h %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/AppDelegate.m %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/Assets.xcassets/AppIcon.appiconset/Contents.json %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/Assets.xcassets/AppIcon.appiconset/icon120.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/Assets.xcassets/AppIcon.appiconset/icon180.png %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/Base.lproj/LaunchScreen.storyboard %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/Base.lproj/Main.storyboard %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/Info.plist %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/ViewController.h %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/ViewController.m %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets-watchos/PlanetsClient/main.m %%QT_EXAMPLEDIR%%/qt3d/planets-qml/planets.js %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetD.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetD.vert %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDB.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDB.vert %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDS.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/planetDSB.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/sun.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/es2/sun.vert %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetD.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetD.vert %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDB.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDB.vert %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDS.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDSB.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDShadow.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/planetDShadow.vert %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/shadowmap.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/shadowmap.vert %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/sun.frag %%QT_EXAMPLEDIR%%/qt3d/planets-qml/shaders/gl3/sun.vert %%QT_EXAMPLEDIR%%/qt3d/qardboard/Info.plist %%QT_EXAMPLEDIR%%/qt3d/qardboard/PlacedEntity.qml %%QT_EXAMPLEDIR%%/qt3d/qardboard/QardboardCamera.qml %%QT_EXAMPLEDIR%%/qt3d/qardboard/QardboardFrameGraph.qml %%QT_EXAMPLEDIR%%/qt3d/qardboard/QardboardRootEntity.qml %%QT_EXAMPLEDIR%%/qt3d/qardboard/QardboardScene3D.qml %%QT_EXAMPLEDIR%%/qt3d/qardboard/abstractdeviceorientation.cpp %%QT_EXAMPLEDIR%%/qt3d/qardboard/abstractdeviceorientation.h %%QT_EXAMPLEDIR%%/qt3d/qardboard/dummydeviceorientation.cpp %%QT_EXAMPLEDIR%%/qt3d/qardboard/dummydeviceorientation.h %%QT_EXAMPLEDIR%%/qt3d/qardboard/iosdeviceorientation.h %%QT_EXAMPLEDIR%%/qt3d/qardboard/iosdeviceorientation.mm %%QT_EXAMPLEDIR%%/qt3d/qardboard/iosdeviceorientation_p.h %%QT_EXAMPLEDIR%%/qt3d/qardboard/iosdeviceorientation_p.mm %%QT_EXAMPLEDIR%%/qt3d/qardboard/main.cpp %%QT_EXAMPLEDIR%%/qt3d/qardboard/main.qml %%QT_EXAMPLEDIR%%/qt3d/qardboard/qardboard.pro %%QT_EXAMPLEDIR%%/qt3d/qardboard/resources.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/scene2d/LogoControls.qml %%QT_EXAMPLEDIR%%/qt3d/scene2d/Qt_logo.obj %%QT_EXAMPLEDIR%%/qt3d/scene2d/doc/images/scene2d.png %%QT_EXAMPLEDIR%%/qt3d/scene2d/doc/src/scene2d.qdoc %%QT_EXAMPLEDIR%%/qt3d/scene2d/main.cpp %%QT_EXAMPLEDIR%%/qt3d/scene2d/main.qml %%QT_EXAMPLEDIR%%/qt3d/scene2d/scene2d.pro %%QT_EXAMPLEDIR%%/qt3d/scene2d/scene2d.qrc %%QT_EXAMPLEDIR%%/qt3d/scene3d/AnimatedEntity.qml %%QT_EXAMPLEDIR%%/qt3d/scene3d/doc/images/scene3d.png %%QT_EXAMPLEDIR%%/qt3d/scene3d/doc/src/scene3d.qdoc %%QT_EXAMPLEDIR%%/qt3d/scene3d/main.cpp %%QT_EXAMPLEDIR%%/qt3d/scene3d/main.qml %%QT_EXAMPLEDIR%%/qt3d/scene3d/scene3d.pro %%QT_EXAMPLEDIR%%/qt3d/scene3d/scene3d.qrc %%QT_EXAMPLEDIR%%/qt3d/scene3dview/AnimatedEntity.qml %%QT_EXAMPLEDIR%%/qt3d/scene3dview/doc/images/scene3dview.png %%QT_EXAMPLEDIR%%/qt3d/scene3dview/doc/src/scene3dview.qdoc %%QT_EXAMPLEDIR%%/qt3d/scene3dview/main.cpp %%QT_EXAMPLEDIR%%/qt3d/scene3dview/main.qml %%QT_EXAMPLEDIR%%/qt3d/scene3dview/scene3dview.pro %%QT_EXAMPLEDIR%%/qt3d/scene3dview/scene3dview.qrc %%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/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 %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/doc/images/shadowmapping-qt3d.png %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/doc/src/shadow-map-qml.qdoc %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/main.cpp %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/main.qml %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/ads.frag %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/ads.vert %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/ads.frag %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/ads.vert %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/shadowmap.frag %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/es3/shadowmap.vert %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/shadowmap.frag %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shaders/shadowmap.vert %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shadow-map-qml.pro %%QT_EXAMPLEDIR%%/qt3d/shadow-map-qml/shadow-map-qml.qrc %%QT_EXAMPLEDIR%%/qt3d/simple-cpp/doc/images/simple-cpp.png %%QT_EXAMPLEDIR%%/qt3d/simple-cpp/doc/src/simple-cpp.qdoc %%QT_EXAMPLEDIR%%/qt3d/simple-cpp/main.cpp %%QT_EXAMPLEDIR%%/qt3d/simple-cpp/orbittransformcontroller.cpp %%QT_EXAMPLEDIR%%/qt3d/simple-cpp/orbittransformcontroller.h %%QT_EXAMPLEDIR%%/qt3d/simple-cpp/simple-cpp.pro %%QT_EXAMPLEDIR%%/qt3d/simple-qml/doc/images/simple-qml.png %%QT_EXAMPLEDIR%%/qt3d/simple-qml/doc/src/simple-qml.qdoc %%QT_EXAMPLEDIR%%/qt3d/simple-qml/main.cpp %%QT_EXAMPLEDIR%%/qt3d/simple-qml/main.qml %%QT_EXAMPLEDIR%%/qt3d/simple-qml/simple-qml.pro %%QT_EXAMPLEDIR%%/qt3d/simple-qml/simple-qml.qrc %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/PlaneModel.qml %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/SceneRoot.qml %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/SimpleMaterial.qml %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/doc/images/simple-custom-material.jpg %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/doc/src/simplecustommaterial.qdoc %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/main.cpp %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/main.qml %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/models.qrc %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/qml.qrc %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/shaders.qrc %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/shaders/es2/simpleColor.frag %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/shaders/es2/simpleColor.vert %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/shaders/gl3/simpleColor.frag %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/shaders/gl3/simpleColor.vert %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/simplecustommaterial.pro %%QT_EXAMPLEDIR%%/qt3d/simplecustommaterial/textures.qrc %%QT_EXAMPLEDIR%%/qt3d/torus-qml/main.qml %%QT_EXAMPLEDIR%%/qt3d/wave/Background.qml %%QT_EXAMPLEDIR%%/qt3d/wave/BackgroundEffect.qml %%QT_EXAMPLEDIR%%/qt3d/wave/BasicCamera.qml %%QT_EXAMPLEDIR%%/qt3d/wave/Wave.qml %%QT_EXAMPLEDIR%%/qt3d/wave/WaveEffect.qml %%QT_EXAMPLEDIR%%/qt3d/wave/WaveForwardRenderer.qml %%QT_EXAMPLEDIR%%/qt3d/wave/WaveMaterial.qml %%QT_EXAMPLEDIR%%/qt3d/wave/doc/images/wave.png %%QT_EXAMPLEDIR%%/qt3d/wave/doc/src/wave.qdoc %%QT_EXAMPLEDIR%%/qt3d/wave/main.cpp %%QT_EXAMPLEDIR%%/qt3d/wave/main.qml %%QT_EXAMPLEDIR%%/qt3d/wave/shaders/background.frag %%QT_EXAMPLEDIR%%/qt3d/wave/shaders/background.vert %%QT_EXAMPLEDIR%%/qt3d/wave/shaders/ribbon.frag %%QT_EXAMPLEDIR%%/qt3d/wave/shaders/ribbon.vert %%QT_EXAMPLEDIR%%/qt3d/wave/shaders/ribbonwireframe.frag %%QT_EXAMPLEDIR%%/qt3d/wave/shaders/robustwireframe.geom %%QT_EXAMPLEDIR%%/qt3d/wave/wave.pro %%QT_EXAMPLEDIR%%/qt3d/wave/wave.qrc %%QT_EXAMPLEDIR%%/qt3d/widgets-scene3d/doc/images/widgets-scene3d.png %%QT_EXAMPLEDIR%%/qt3d/widgets-scene3d/doc/src/widgets-scene3d.qdoc %%QT_EXAMPLEDIR%%/qt3d/widgets-scene3d/main.cpp %%QT_EXAMPLEDIR%%/qt3d/widgets-scene3d/widgets-scene3d.pro %%QT_EXAMPLEDIR%%/qt3d/widgets-scene3d/widgets-scene3d.qrc %%QT_EXAMPLEDIR%%/qt3d/wireframe/BasicCamera.qml %%QT_EXAMPLEDIR%%/qt3d/wireframe/TrefoilKnot.qml %%QT_EXAMPLEDIR%%/qt3d/wireframe/WireframeEffect.qml %%QT_EXAMPLEDIR%%/qt3d/wireframe/WireframeMaterial.qml %%QT_EXAMPLEDIR%%/qt3d/wireframe/doc/images/qt3d-wireframe-rendering.png %%QT_EXAMPLEDIR%%/qt3d/wireframe/doc/src/wireframe.qdoc %%QT_EXAMPLEDIR%%/qt3d/wireframe/main.cpp %%QT_EXAMPLEDIR%%/qt3d/wireframe/main.qml %%QT_EXAMPLEDIR%%/qt3d/wireframe/shaders/robustwireframe.frag %%QT_EXAMPLEDIR%%/qt3d/wireframe/shaders/robustwireframe.geom %%QT_EXAMPLEDIR%%/qt3d/wireframe/shaders/robustwireframe.vert %%QT_EXAMPLEDIR%%/qt3d/wireframe/wireframe.pro %%QT_EXAMPLEDIR%%/qt3d/wireframe/wireframe.qrc %%QT_EXAMPLEDIR%%/qtconcurrent/README %%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/doc/images/imagescaling_example.png %%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/doc/src/qtconcurrent-imagescaling.qdoc %%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/imagescaling.cpp %%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/imagescaling.h %%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/imagescaling.pro %%QT_EXAMPLEDIR%%/qtconcurrent/imagescaling/main.cpp %%QT_EXAMPLEDIR%%/qtconcurrent/map/doc/src/qtconcurrent-map.qdoc %%QT_EXAMPLEDIR%%/qtconcurrent/map/main.cpp %%QT_EXAMPLEDIR%%/qtconcurrent/map/map.pro %%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/doc/images/qtconcurrent-progressdialog.png %%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/doc/src/qtconcurrent-progressdialog.qdoc %%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/main.cpp %%QT_EXAMPLEDIR%%/qtconcurrent/progressdialog/progressdialog.pro %%QT_EXAMPLEDIR%%/qtconcurrent/qtconcurrent.pro %%QT_EXAMPLEDIR%%/qtconcurrent/runfunction/doc/src/qtconcurrent-runfunction.qdoc %%QT_EXAMPLEDIR%%/qtconcurrent/runfunction/main.cpp %%QT_EXAMPLEDIR%%/qtconcurrent/runfunction/runfunction.pro %%QT_EXAMPLEDIR%%/qtconcurrent/wordcount/doc/src/qtconcurrent-wordcount.qdoc %%QT_EXAMPLEDIR%%/qtconcurrent/wordcount/main.cpp %%QT_EXAMPLEDIR%%/qtconcurrent/wordcount/wordcount.pro %%QT_EXAMPLEDIR%%/qtestlib/README %%QT_EXAMPLEDIR%%/qtestlib/qtestlib.pro %%QT_EXAMPLEDIR%%/qtestlib/tutorial1/testqstring.cpp %%QT_EXAMPLEDIR%%/qtestlib/tutorial1/tutorial1.pro %%QT_EXAMPLEDIR%%/qtestlib/tutorial2/testqstring.cpp %%QT_EXAMPLEDIR%%/qtestlib/tutorial2/tutorial2.pro %%QT_EXAMPLEDIR%%/qtestlib/tutorial3/testgui.cpp %%QT_EXAMPLEDIR%%/qtestlib/tutorial3/tutorial3.pro %%QT_EXAMPLEDIR%%/qtestlib/tutorial4/testgui.cpp %%QT_EXAMPLEDIR%%/qtestlib/tutorial4/tutorial4.pro %%QT_EXAMPLEDIR%%/qtestlib/tutorial5/benchmarking.cpp %%QT_EXAMPLEDIR%%/qtestlib/tutorial5/tutorial5.pro %%QT_EXAMPLEDIR%%/quick/animation/animation.pro %%QT_EXAMPLEDIR%%/quick/animation/animation.qml %%QT_EXAMPLEDIR%%/quick/animation/animation.qmlproject %%QT_EXAMPLEDIR%%/quick/animation/animation.qrc %%QT_EXAMPLEDIR%%/quick/animation/basics/animators.qml %%QT_EXAMPLEDIR%%/quick/animation/basics/color-animation.qml %%QT_EXAMPLEDIR%%/quick/animation/basics/images/face-smile.png %%QT_EXAMPLEDIR%%/quick/animation/basics/images/moon.png %%QT_EXAMPLEDIR%%/quick/animation/basics/images/shadow.png %%QT_EXAMPLEDIR%%/quick/animation/basics/images/star.png %%QT_EXAMPLEDIR%%/quick/animation/basics/images/sun.png %%QT_EXAMPLEDIR%%/quick/animation/basics/property-animation.qml %%QT_EXAMPLEDIR%%/quick/animation/behaviors/FocusRect.qml %%QT_EXAMPLEDIR%%/quick/animation/behaviors/SideRect.qml %%QT_EXAMPLEDIR%%/quick/animation/behaviors/behavior-example.qml %%QT_EXAMPLEDIR%%/quick/animation/behaviors/tvtennis.qml %%QT_EXAMPLEDIR%%/quick/animation/behaviors/wigglytext.qml %%QT_EXAMPLEDIR%%/quick/animation/doc/images/qml-animations-example.png %%QT_EXAMPLEDIR%%/quick/animation/doc/src/animation.qdoc %%QT_EXAMPLEDIR%%/quick/animation/easing/easing.qml %%QT_EXAMPLEDIR%%/quick/animation/main.cpp %%QT_EXAMPLEDIR%%/quick/animation/pathanimation/pathanimation.qml %%QT_EXAMPLEDIR%%/quick/animation/pathinterpolator/pathinterpolator.qml %%QT_EXAMPLEDIR%%/quick/animation/states/qt-logo.png %%QT_EXAMPLEDIR%%/quick/animation/states/states.qml %%QT_EXAMPLEDIR%%/quick/animation/states/transitions.qml %%QT_EXAMPLEDIR%%/quick/canvas/bezierCurve/bezierCurve.qml %%QT_EXAMPLEDIR%%/quick/canvas/canvas.pro %%QT_EXAMPLEDIR%%/quick/canvas/canvas.qml %%QT_EXAMPLEDIR%%/quick/canvas/canvas.qrc %%QT_EXAMPLEDIR%%/quick/canvas/clip/clip.qml %%QT_EXAMPLEDIR%%/quick/canvas/contents/qt-logo.png %%QT_EXAMPLEDIR%%/quick/canvas/doc/images/qml-canvas-example.png %%QT_EXAMPLEDIR%%/quick/canvas/doc/src/canvas.qdoc %%QT_EXAMPLEDIR%%/quick/canvas/main.cpp %%QT_EXAMPLEDIR%%/quick/canvas/quadraticCurveTo/quadraticCurveTo.qml %%QT_EXAMPLEDIR%%/quick/canvas/roundedrect/roundedrect.qml %%QT_EXAMPLEDIR%%/quick/canvas/smile/smile.qml %%QT_EXAMPLEDIR%%/quick/canvas/squircle/squircle.png %%QT_EXAMPLEDIR%%/quick/canvas/squircle/squircle.qml %%QT_EXAMPLEDIR%%/quick/canvas/tiger/tiger.js %%QT_EXAMPLEDIR%%/quick/canvas/tiger/tiger.qml %%QT_EXAMPLEDIR%%/quick/customitems/customitems.pro %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/Dial.qml %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/QuitButton.qml %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/background.png %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/needle.png %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/needle_shadow.png %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/overlay.png %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/content/quit.png %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.pro %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.qml %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.qmlproject %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/dialcontrol.qrc %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/doc/images/qml-dialcontrol-example.png %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/doc/src/dialcontrol.qdoc %%QT_EXAMPLEDIR%%/quick/customitems/dialcontrol/main.cpp %%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/5_heart.png %%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/9_club.png %%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/Card.qml %%QT_EXAMPLEDIR%%/quick/customitems/flipable/content/back.png %%QT_EXAMPLEDIR%%/quick/customitems/flipable/doc/images/qml-flipable-example.png %%QT_EXAMPLEDIR%%/quick/customitems/flipable/doc/src/flipable.qdoc %%QT_EXAMPLEDIR%%/quick/customitems/flipable/flipable.pro %%QT_EXAMPLEDIR%%/quick/customitems/flipable/flipable.qml %%QT_EXAMPLEDIR%%/quick/customitems/flipable/flipable.qmlproject %%QT_EXAMPLEDIR%%/quick/customitems/flipable/flipable.qrc %%QT_EXAMPLEDIR%%/quick/customitems/flipable/main.cpp %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/images/cloud_1.png %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/images/cloud_2.png %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/images/moon.png %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/main.cpp %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.cpp %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.h %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.pro %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.qml %%QT_EXAMPLEDIR%%/quick/customitems/maskedmousearea/maskedmousearea.qmlproject %%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 %%QT_EXAMPLEDIR%%/quick/customitems/painteditem/textballoon.h %%QT_EXAMPLEDIR%%/quick/customitems/painteditem/textballoons.qml %%QT_EXAMPLEDIR%%/quick/customitems/progressbar/content/ProgressBar.qml %%QT_EXAMPLEDIR%%/quick/customitems/progressbar/content/background.png %%QT_EXAMPLEDIR%%/quick/customitems/progressbar/main.qml %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/ScrollBar.qml %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/doc/images/qml-scrollbar-example.png %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/doc/src/scrollbar.qdoc %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/main.cpp %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/main.qml %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/pics/niagara_falls.jpg %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/scrollbar.pro %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/scrollbar.qmlproject %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/scrollbar.qrc %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/SearchBox.qml %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/images/clear.png %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/images/lineedit-bg-focus.png %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/images/lineedit-bg.png %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/main.cpp %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/main.qml %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/searchbox.pro %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/searchbox.qmlproject %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/searchbox.qrc %%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/Switch.qml %%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/background.png %%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/background.svg %%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/knob.png %%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/content/knob.svg %%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/doc/src/example-slideswitch.qdoc %%QT_EXAMPLEDIR%%/quick/customitems/slideswitch/slideswitch.qml %%QT_EXAMPLEDIR%%/quick/customitems/spinner/content/Spinner.qml %%QT_EXAMPLEDIR%%/quick/customitems/spinner/content/spinner-bg.png %%QT_EXAMPLEDIR%%/quick/customitems/spinner/content/spinner-select.png %%QT_EXAMPLEDIR%%/quick/customitems/spinner/main.cpp %%QT_EXAMPLEDIR%%/quick/customitems/spinner/main.qml %%QT_EXAMPLEDIR%%/quick/customitems/spinner/spinner.pro %%QT_EXAMPLEDIR%%/quick/customitems/spinner/spinner.qmlproject %%QT_EXAMPLEDIR%%/quick/customitems/spinner/spinner.qrc %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/TabWidget.qml %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/doc/images/qml-tabwidget-example.png %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/doc/images/tab.png %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/doc/src/tabwidget.qdoc %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/main.cpp %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/main.qml %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/tabwidget.pro %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/tabwidget.qmlproject %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/tabwidget.qrc %%QT_EXAMPLEDIR%%/quick/delegatechooser/delegatechooser.pro %%QT_EXAMPLEDIR%%/quick/delegatechooser/delegatechooser.qml %%QT_EXAMPLEDIR%%/quick/delegatechooser/main.cpp %%QT_EXAMPLEDIR%%/quick/delegatechooser/qml.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 %%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.qml %%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.qmlproject %%QT_EXAMPLEDIR%%/quick/draganddrop/draganddrop.qrc %%QT_EXAMPLEDIR%%/quick/draganddrop/main.cpp %%QT_EXAMPLEDIR%%/quick/draganddrop/tiles/DragTile.qml %%QT_EXAMPLEDIR%%/quick/draganddrop/tiles/DropTile.qml %%QT_EXAMPLEDIR%%/quick/draganddrop/tiles/tiles.qml %%QT_EXAMPLEDIR%%/quick/draganddrop/views/Icon.qml %%QT_EXAMPLEDIR%%/quick/draganddrop/views/gridview.qml %%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/TextBox.qml %%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/embeddedinwidgets.pro %%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/embeddedinwidgets.qrc %%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/main.cpp %%QT_EXAMPLEDIR%%/quick/embeddedinwidgets/main.qml %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/DragAndDropTextItem.qml %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/doc/images/qml-dnd2-example.png %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/doc/src/externaldraganddrop.qdoc %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.pro %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qml %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qmlproject %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/externaldraganddrop.qrc %%QT_EXAMPLEDIR%%/quick/externaldraganddrop/main.cpp %%QT_EXAMPLEDIR%%/quick/imageelements/animatedimage.qml %%QT_EXAMPLEDIR%%/quick/imageelements/animatedsprite.qml %%QT_EXAMPLEDIR%%/quick/imageelements/borderimage.qml %%QT_EXAMPLEDIR%%/quick/imageelements/content/BearSheet.png %%QT_EXAMPLEDIR%%/quick/imageelements/content/BorderImageSelector.qml %%QT_EXAMPLEDIR%%/quick/imageelements/content/ImageCell.qml %%QT_EXAMPLEDIR%%/quick/imageelements/content/MyBorderImage.qml %%QT_EXAMPLEDIR%%/quick/imageelements/content/ShadowRectangle.qml %%QT_EXAMPLEDIR%%/quick/imageelements/content/Uniflow_steam_engine.gif %%QT_EXAMPLEDIR%%/quick/imageelements/content/arrow.png %%QT_EXAMPLEDIR%%/quick/imageelements/content/bw.png %%QT_EXAMPLEDIR%%/quick/imageelements/content/colors-round.sci %%QT_EXAMPLEDIR%%/quick/imageelements/content/colors-stretch.sci %%QT_EXAMPLEDIR%%/quick/imageelements/content/colors.png %%QT_EXAMPLEDIR%%/quick/imageelements/content/multi.ico %%QT_EXAMPLEDIR%%/quick/imageelements/content/qt-logo.png %%QT_EXAMPLEDIR%%/quick/imageelements/content/shadow.png %%QT_EXAMPLEDIR%%/quick/imageelements/content/speaker.png %%QT_EXAMPLEDIR%%/quick/imageelements/doc/images/qml-imageelements-example.png %%QT_EXAMPLEDIR%%/quick/imageelements/doc/src/imageelements.qdoc %%QT_EXAMPLEDIR%%/quick/imageelements/framestepping.qml %%QT_EXAMPLEDIR%%/quick/imageelements/image.qml %%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.pro %%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.qml %%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.qmlproject %%QT_EXAMPLEDIR%%/quick/imageelements/imageelements.qrc %%QT_EXAMPLEDIR%%/quick/imageelements/main.cpp %%QT_EXAMPLEDIR%%/quick/imageelements/multiframeborderimage.qml %%QT_EXAMPLEDIR%%/quick/imageelements/shadows.qml %%QT_EXAMPLEDIR%%/quick/imageelements/spritesequence.qml %%QT_EXAMPLEDIR%%/quick/imageprovider/ImageProviderCore/qmldir %%QT_EXAMPLEDIR%%/quick/imageprovider/doc/images/qml-imageprovider-example.png %%QT_EXAMPLEDIR%%/quick/imageprovider/doc/src/imageprovider.qdoc %%QT_EXAMPLEDIR%%/quick/imageprovider/imageprovider-example.qml %%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 %%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/GridMenu.qml %%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/ListMenu.qml %%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/ListViewDelegate.qml %%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/TabMenu.qml %%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/images/arrow.png %%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/Core/images/qt-logo.png %%QT_EXAMPLEDIR%%/quick/keyinteraction/focus/focus.qml %%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.pro %%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.qml %%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.qmlproject %%QT_EXAMPLEDIR%%/quick/keyinteraction/keyinteraction.qrc %%QT_EXAMPLEDIR%%/quick/keyinteraction/main.cpp %%QT_EXAMPLEDIR%%/quick/layouts/doc/src/qtquicklayouts-examples.qdoc %%QT_EXAMPLEDIR%%/quick/layouts/layouts.pro %%QT_EXAMPLEDIR%%/quick/layouts/layouts.qml %%QT_EXAMPLEDIR%%/quick/layouts/layouts.qmlproject %%QT_EXAMPLEDIR%%/quick/layouts/layouts.qrc %%QT_EXAMPLEDIR%%/quick/layouts/main.cpp %%QT_EXAMPLEDIR%%/quick/localstorage/doc/src/localstorage.qdoc %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage.pro %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/Database.js %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/Header.qml %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/MyButton.qml %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/MyDelegate.qml %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/MyModel.qml %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/localstorage.pro %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/localstorage.qml %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/localstorage.qrc %%QT_EXAMPLEDIR%%/quick/localstorage/localstorage/main.cpp %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pro %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/abstractitemmodel.qrc %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/doc/images/qml-abstractitemmodel-example.png %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/doc/src/abstractitemmodel-example.qdoc %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/main.cpp %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/model.cpp %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/model.h %%QT_EXAMPLEDIR%%/quick/models/abstractitemmodel/view.qml %%QT_EXAMPLEDIR%%/quick/models/models.pro %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/dataobject.cpp %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/dataobject.h %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/doc/images/qml-objectlistmodel-example.png %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/doc/src/objectlistmodel-example.qdoc %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/main.cpp %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/objectlistmodel.pro %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/objectlistmodel.qrc %%QT_EXAMPLEDIR%%/quick/models/objectlistmodel/view.qml %%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/doc/images/qml-stringlistmodel-example.png %%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/doc/src/stringlistmodel-example.qdoc %%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/main.cpp %%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/stringlistmodel.pro %%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/stringlistmodel.qrc %%QT_EXAMPLEDIR%%/quick/models/stringlistmodel/view.qml %%QT_EXAMPLEDIR%%/quick/mousearea/doc/images/qml-mousearea-example.png %%QT_EXAMPLEDIR%%/quick/mousearea/doc/src/mousearea.qdoc %%QT_EXAMPLEDIR%%/quick/mousearea/main.cpp %%QT_EXAMPLEDIR%%/quick/mousearea/mousearea-wheel-example.qml %%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.pro %%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qml %%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qmlproject %%QT_EXAMPLEDIR%%/quick/mousearea/mousearea.qrc %%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.pro %%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qmlproject %%QT_EXAMPLEDIR%%/quick/particles/affectors/affectors.qrc %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/GreyButton.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/age.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/attractor.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/customaffector.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/friction.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/gravity.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/groupgoal.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/move.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/spritegoal.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/turbulence.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/content/wander.qml %%QT_EXAMPLEDIR%%/quick/particles/affectors/doc/images/qml-affectors-example.png %%QT_EXAMPLEDIR%%/quick/particles/affectors/doc/src/affectors.qdoc %%QT_EXAMPLEDIR%%/quick/particles/affectors/main.cpp %%QT_EXAMPLEDIR%%/quick/particles/customparticle/content/blurparticles.qml %%QT_EXAMPLEDIR%%/quick/particles/customparticle/content/fragmentshader.qml %%QT_EXAMPLEDIR%%/quick/particles/customparticle/content/imagecolors.qml %%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.pro %%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.qml %%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.qmlproject %%QT_EXAMPLEDIR%%/quick/particles/customparticle/customparticle.qrc %%QT_EXAMPLEDIR%%/quick/particles/customparticle/doc/images/qml-customparticle-example.png %%QT_EXAMPLEDIR%%/quick/particles/customparticle/doc/src/customparticle.qdoc %%QT_EXAMPLEDIR%%/quick/particles/customparticle/main.cpp %%QT_EXAMPLEDIR%%/quick/particles/emitters/content/burstandpulse.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/content/customemitter.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/content/emitmask.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/content/maximumemitted.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/content/shapeanddirection.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/content/trailemitter.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/content/velocityfrommotion.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/doc/images/qml-emitters-example.png %%QT_EXAMPLEDIR%%/quick/particles/emitters/doc/src/emitters.qdoc %%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.pro %%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.qml %%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.qmlproject %%QT_EXAMPLEDIR%%/quick/particles/emitters/emitters.qrc %%QT_EXAMPLEDIR%%/quick/particles/emitters/main.cpp %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/allatonce.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/colored.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/colortable.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/deformation.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/rotation.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/sharing.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/content/sprites.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/doc/images/qml-imageparticle-example.png %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/doc/src/imageparticle.qdoc %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.pro %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.qml %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.qmlproject %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/imageparticle.qrc %%QT_EXAMPLEDIR%%/quick/particles/imageparticle/main.cpp %%QT_EXAMPLEDIR%%/quick/particles/images.qrc %%QT_EXAMPLEDIR%%/quick/particles/images/_explo.png %%QT_EXAMPLEDIR%%/quick/particles/images/backgroundLeaves.jpg %%QT_EXAMPLEDIR%%/quick/particles/images/bear_tiles.png %%QT_EXAMPLEDIR%%/quick/particles/images/candle.png %%QT_EXAMPLEDIR%%/quick/particles/images/colortable.png %%QT_EXAMPLEDIR%%/quick/particles/images/finalfrontier.png %%QT_EXAMPLEDIR%%/quick/particles/images/flower.png %%QT_EXAMPLEDIR%%/quick/particles/images/matchmask.png %%QT_EXAMPLEDIR%%/quick/particles/images/meteor.png %%QT_EXAMPLEDIR%%/quick/particles/images/meteor_explo.png %%QT_EXAMPLEDIR%%/quick/particles/images/meteors.png %%QT_EXAMPLEDIR%%/quick/particles/images/nullRock.png %%QT_EXAMPLEDIR%%/quick/particles/images/particle2.png %%QT_EXAMPLEDIR%%/quick/particles/images/particle3.png %%QT_EXAMPLEDIR%%/quick/particles/images/particleA.png %%QT_EXAMPLEDIR%%/quick/particles/images/portal_bg.png %%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf1.png %%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf2.png %%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf3.png %%QT_EXAMPLEDIR%%/quick/particles/images/realLeaf4.png %%QT_EXAMPLEDIR%%/quick/particles/images/rocket.png %%QT_EXAMPLEDIR%%/quick/particles/images/rocket2.png %%QT_EXAMPLEDIR%%/quick/particles/images/sizeInOut.png %%QT_EXAMPLEDIR%%/quick/particles/images/snowflake.png %%QT_EXAMPLEDIR%%/quick/particles/images/sparkleSize.png %%QT_EXAMPLEDIR%%/quick/particles/images/starfish_0.png %%QT_EXAMPLEDIR%%/quick/particles/images/starfish_1.png %%QT_EXAMPLEDIR%%/quick/particles/images/starfish_2.png %%QT_EXAMPLEDIR%%/quick/particles/images/starfish_3.png %%QT_EXAMPLEDIR%%/quick/particles/images/starfish_4.png %%QT_EXAMPLEDIR%%/quick/particles/images/starfish_mask.png %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/Delegate.qml %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/Delegate2.qml %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/ExpandingDelegate.qml %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/bubble.png %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/content/script.js %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/delegates.qml %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/itemparticle.pro %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/main.cpp %%QT_EXAMPLEDIR%%/quick/particles/itemparticle/particleview.qml %%QT_EXAMPLEDIR%%/quick/particles/particles.pro %%QT_EXAMPLEDIR%%/quick/particles/system/content/dynamiccomparison.qml %%QT_EXAMPLEDIR%%/quick/particles/system/content/dynamicemitters.qml %%QT_EXAMPLEDIR%%/quick/particles/system/content/multiplepainters.qml %%QT_EXAMPLEDIR%%/quick/particles/system/content/startstop.qml %%QT_EXAMPLEDIR%%/quick/particles/system/content/timedgroupchanges.qml %%QT_EXAMPLEDIR%%/quick/particles/system/doc/images/qml-system-example.png %%QT_EXAMPLEDIR%%/quick/particles/system/doc/src/system.qdoc %%QT_EXAMPLEDIR%%/quick/particles/system/main.cpp %%QT_EXAMPLEDIR%%/quick/particles/system/system.pro %%QT_EXAMPLEDIR%%/quick/particles/system/system.qml %%QT_EXAMPLEDIR%%/quick/particles/system/system.qmlproject %%QT_EXAMPLEDIR%%/quick/particles/system/system.qrc %%QT_EXAMPLEDIR%%/quick/positioners/doc/images/qml-positioners-example.png %%QT_EXAMPLEDIR%%/quick/positioners/doc/src/positioners.qdoc %%QT_EXAMPLEDIR%%/quick/positioners/main.cpp %%QT_EXAMPLEDIR%%/quick/positioners/positioners-attachedproperties.qml %%QT_EXAMPLEDIR%%/quick/positioners/positioners-transitions.qml %%QT_EXAMPLEDIR%%/quick/positioners/positioners.pro %%QT_EXAMPLEDIR%%/quick/positioners/positioners.qml %%QT_EXAMPLEDIR%%/quick/positioners/positioners.qmlproject %%QT_EXAMPLEDIR%%/quick/positioners/positioners.qrc %%QT_EXAMPLEDIR%%/quick/quick-accessibility/accessibility.qml %%QT_EXAMPLEDIR%%/quick/quick-accessibility/accessibility.qmlproject %%QT_EXAMPLEDIR%%/quick/quick-accessibility/accessibility.qrc %%QT_EXAMPLEDIR%%/quick/quick-accessibility/content/Button.qml %%QT_EXAMPLEDIR%%/quick/quick-accessibility/content/Checkbox.qml %%QT_EXAMPLEDIR%%/quick/quick-accessibility/content/Slider.qml %%QT_EXAMPLEDIR%%/quick/quick-accessibility/doc/src/accessibility.qdoc %%QT_EXAMPLEDIR%%/quick/quick-accessibility/main.cpp %%QT_EXAMPLEDIR%%/quick/quick-accessibility/quick-accessibility.pro %%QT_EXAMPLEDIR%%/quick/quick.pro %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/fbitem.cpp %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/fbitem.h %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/logo.cpp %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/logo.h %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/main.cpp %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/mainwindow.cpp %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/mainwindow.h %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/qquickviewcomparison.pro %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/qquickviewcomparison.qrc %%QT_EXAMPLEDIR%%/quick/quickwidgets/qquickviewcomparison/test.qml %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/customgl.qml %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/doc/images/qtquickwidgets-example.png %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/doc/src/quickwidget.qdoc %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/fbitem.cpp %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/fbitem.h %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/main.cpp %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/quickwidget.pro %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/quickwidget.qrc %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/rotatingsquare.qml %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidget/rotatingsquaretab.qml %%QT_EXAMPLEDIR%%/quick/quickwidgets/quickwidgets.pro %%QT_EXAMPLEDIR%%/quick/rendercontrol/cuberenderer.cpp %%QT_EXAMPLEDIR%%/quick/rendercontrol/cuberenderer.h %%QT_EXAMPLEDIR%%/quick/rendercontrol/demo.qml %%QT_EXAMPLEDIR%%/quick/rendercontrol/doc/images/rendercontrol-example.jpg %%QT_EXAMPLEDIR%%/quick/rendercontrol/doc/src/rendercontrol.qdoc %%QT_EXAMPLEDIR%%/quick/rendercontrol/main.cpp %%QT_EXAMPLEDIR%%/quick/rendercontrol/rendercontrol.pro %%QT_EXAMPLEDIR%%/quick/rendercontrol/rendercontrol.qrc %%QT_EXAMPLEDIR%%/quick/rendercontrol/window_multithreaded.cpp %%QT_EXAMPLEDIR%%/quick/rendercontrol/window_multithreaded.h %%QT_EXAMPLEDIR%%/quick/rendercontrol/window_singlethreaded.cpp %%QT_EXAMPLEDIR%%/quick/rendercontrol/window_singlethreaded.h %%QT_EXAMPLEDIR%%/quick/righttoleft/doc/images/qml-righttoleft-example.png %%QT_EXAMPLEDIR%%/quick/righttoleft/doc/src/righttoleft.qdoc %%QT_EXAMPLEDIR%%/quick/righttoleft/layoutdirection/layoutdirection.qml %%QT_EXAMPLEDIR%%/quick/righttoleft/layoutdirection/layoutdirection.qmlproject %%QT_EXAMPLEDIR%%/quick/righttoleft/layoutmirroring/layoutmirroring.qml %%QT_EXAMPLEDIR%%/quick/righttoleft/layoutmirroring/layoutmirroring.qmlproject %%QT_EXAMPLEDIR%%/quick/righttoleft/main.cpp %%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.pro %%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.qml %%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.qmlproject %%QT_EXAMPLEDIR%%/quick/righttoleft/righttoleft.qrc %%QT_EXAMPLEDIR%%/quick/righttoleft/textalignment/textalignment.qml %%QT_EXAMPLEDIR%%/quick/righttoleft/textalignment/textalignment.qmlproject %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/beziercurve.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/beziercurve.h %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/customgeometry.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/customgeometry.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/doc/images/custom-geometry-example.png %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/doc/src/customgeometry.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/customgeometry/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/d3d11squircle.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/d3d11squircle.h %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/d3d11underqml.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/d3d11underqml.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/doc/images/d3d11underqml-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/doc/src/d3d11underqml.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/squircle.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/d3d11underqml/squircle.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/doc/images/fboitem-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/doc/src/fboitem.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/fboinsgrenderer.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/fboinsgrenderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/fboitem.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/fboitem.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/shaders/+qsb/checker.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/shaders/checker.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/fboitem/shaders/checker_rhi.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/doc/images/graph-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/doc/src/graph.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.h %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/graph.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/gridnode.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/gridnode.h %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/linenode.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/linenode.h %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/noisynode.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/noisynode.h %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/line.fsh %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/line.vsh %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/noisy.fsh %%QT_EXAMPLEDIR%%/quick/scenegraph/graph/shaders/noisy.vsh %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/doc/images/metaltextureimport-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/doc/src/metaltextureimport.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/metaltextureimport.h %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/metaltextureimport.mm %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/metaltextureimport.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/metaltextureimport.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/squircle.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/metaltextureimport/squircle.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/doc/images/metalunderqml-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/doc/src/metalunderqml.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/metalsquircle.h %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/metalsquircle.mm %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/metalunderqml.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/metalunderqml.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/squircle.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/metalunderqml/squircle.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/doc/images/openglunderqml-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/doc/src/openglunderqml.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/openglunderqml.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/openglunderqml.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/squircle.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/openglunderqml/squircle.h %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/customrenderitem.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/customrenderitem.h %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/d3d12renderer.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/d3d12renderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/doc/images/rendernode-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/doc/src/rendernode.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/metalrenderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/metalrenderer.mm %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/metalshader.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/metalshader.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/openglrenderer.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/openglrenderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/rendernode.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/rendernode.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/shader.hlsl %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/shader_frag.cso %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/shader_vert.cso %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/softwarerenderer.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/softwarerenderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/scenegraph.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/face-smile.png %%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/sgengine.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/sgengine.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/window.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/sgengine/window.h %%QT_EXAMPLEDIR%%/quick/scenegraph/shared/logorenderer.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/shared/logorenderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/shared/squircle_rhi.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/shared/squircle_rhi.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/doc/images/simplematerial-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/doc/src/simplematerial.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerial.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerial.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerial.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerialitem.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/simplematerial/simplematerialitem.h %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/doc/images/textureinthread-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/doc/src/textureinthread.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/error.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/textureinthread.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/textureinthread.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/threadrenderer.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinthread/threadrenderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/spinner.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/spinner.h %%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/spinner.png %%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/threadedanimation.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/threadedanimation/threadedanimation.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/doc/images/twotextureproviders-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/doc/src/twotextureproviders.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/+qsb/checker.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/+qsb/xorblender.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/+qsb/xorblender.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/checker.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/checker_rhi.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/xorblender.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/xorblender.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/xorblender_rhi.frag %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/shaders/xorblender_rhi.vert %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/twotextureproviders.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/twotextureproviders.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/xorblender.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/twotextureproviders/xorblender.h %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/doc/images/vulkantextureimport-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/doc/src/vulkantextureimport.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/squircle.frag.spv %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/squircle.vert.spv %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/vulkantextureimport.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/vulkantextureimport.h %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/vulkantextureimport.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkantextureimport/vulkantextureimport.qrc %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/doc/images/vulkanunderqml-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/doc/src/vulkanunderqml.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/squircle.frag.spv %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/squircle.vert.spv %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/vulkansquircle.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/vulkansquircle.h %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/vulkanunderqml.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/vulkanunderqml/vulkanunderqml.qrc %%QT_EXAMPLEDIR%%/quick/shadereffects/content/Slider.qml %%QT_EXAMPLEDIR%%/quick/shadereffects/content/face-smile.png %%QT_EXAMPLEDIR%%/quick/shadereffects/content/qt-logo.png %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+hlsl/blur.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+hlsl/colorize.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+hlsl/genie.vert %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+hlsl/outline.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+hlsl/shadow.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+hlsl/wobble.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+qsb/blur.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+qsb/colorize.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+qsb/genie.vert %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+qsb/outline.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+qsb/shadow.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/+qsb/wobble.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/blur.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/colorize.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/genie.vert %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/outline.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/rhi/blur.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/rhi/colorize.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/rhi/compile.bat %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/rhi/genie.vert %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/rhi/outline.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/rhi/shadow.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/rhi/wobble.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/shadow.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/content/shaders/wobble.frag %%QT_EXAMPLEDIR%%/quick/shadereffects/doc/images/qml-shadereffects-example.png %%QT_EXAMPLEDIR%%/quick/shadereffects/doc/src/shadereffects.qdoc %%QT_EXAMPLEDIR%%/quick/shadereffects/main.cpp %%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.pro %%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.qml %%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.qmlproject %%QT_EXAMPLEDIR%%/quick/shadereffects/shadereffects.qrc %%QT_EXAMPLEDIR%%/quick/shapes/content/clippedtigers.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/interactive.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item10.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item11.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item12.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item13.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item14.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item15.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item17.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item18.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item2.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item3.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item4.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item5.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item6.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item7.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item8.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/item9.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/main.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/sampling.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/shapegallery.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/tapableTriangle.qml %%QT_EXAMPLEDIR%%/quick/shapes/content/tiger.qml %%QT_EXAMPLEDIR%%/quick/shapes/doc/images/qml-shapes-example.png %%QT_EXAMPLEDIR%%/quick/shapes/doc/src/shapes.qdoc %%QT_EXAMPLEDIR%%/quick/shapes/main.cpp %%QT_EXAMPLEDIR%%/quick/shapes/shapes.pro %%QT_EXAMPLEDIR%%/quick/shapes/shapes.qrc %%QT_EXAMPLEDIR%%/quick/shared/Button.qml %%QT_EXAMPLEDIR%%/quick/shared/CheckBox.qml %%QT_EXAMPLEDIR%%/quick/shared/FlickrRssModel.qml %%QT_EXAMPLEDIR%%/quick/shared/Label.qml %%QT_EXAMPLEDIR%%/quick/shared/LauncherList.qml %%QT_EXAMPLEDIR%%/quick/shared/README %%QT_EXAMPLEDIR%%/quick/shared/SimpleLauncherDelegate.qml %%QT_EXAMPLEDIR%%/quick/shared/Slider.qml %%QT_EXAMPLEDIR%%/quick/shared/TabSet.qml %%QT_EXAMPLEDIR%%/quick/shared/TextField.qml %%QT_EXAMPLEDIR%%/quick/shared/images/back.png %%QT_EXAMPLEDIR%%/quick/shared/images/checkmark.png %%QT_EXAMPLEDIR%%/quick/shared/images/next.png %%QT_EXAMPLEDIR%%/quick/shared/images/qt-logo.png %%QT_EXAMPLEDIR%%/quick/shared/images/slider_handle.png %%QT_EXAMPLEDIR%%/quick/shared/images/tab.png %%QT_EXAMPLEDIR%%/quick/shared/qmldir %%QT_EXAMPLEDIR%%/quick/shared/quick_shared.qrc %%QT_EXAMPLEDIR%%/quick/shared/shared.h %%QT_EXAMPLEDIR%%/quick/shared/shared.qrc %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/doc/images/gameoflife.png %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/doc/src/gameoflife.qdoc %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/gameoflife.pro %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/gameoflifemodel.cpp %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/gameoflifemodel.h %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/gosperglidergun.cells %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/main.cpp %%QT_EXAMPLEDIR%%/quick/tableview/gameoflife/main.qml %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/doc/images/qt-pixelator.png %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/doc/src/pixelator.qdoc %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/imagemodel.cpp %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/imagemodel.h %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/main.cpp %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/main.qml %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/pixelator.pro %%QT_EXAMPLEDIR%%/quick/tableview/pixelator/qt.png %%QT_EXAMPLEDIR%%/quick/tableview/tableview.pro %%QT_EXAMPLEDIR%%/quick/text/doc/images/qml-text-example.png %%QT_EXAMPLEDIR%%/quick/text/doc/src/text.qdoc %%QT_EXAMPLEDIR%%/quick/text/fonts/availableFonts.qml %%QT_EXAMPLEDIR%%/quick/text/fonts/banner.qml %%QT_EXAMPLEDIR%%/quick/text/fonts/content/fonts/tarzeau_ocr_a.ttf %%QT_EXAMPLEDIR%%/quick/text/fonts/fonts.qml %%QT_EXAMPLEDIR%%/quick/text/fonts/hello.qml %%QT_EXAMPLEDIR%%/quick/text/imgtag/TextWithImage.qml %%QT_EXAMPLEDIR%%/quick/text/imgtag/images/face-sad.png %%QT_EXAMPLEDIR%%/quick/text/imgtag/images/face-smile-big.png %%QT_EXAMPLEDIR%%/quick/text/imgtag/images/face-smile.png %%QT_EXAMPLEDIR%%/quick/text/imgtag/images/heart200.png %%QT_EXAMPLEDIR%%/quick/text/imgtag/images/qtlogo.png %%QT_EXAMPLEDIR%%/quick/text/imgtag/images/starfish_2.png %%QT_EXAMPLEDIR%%/quick/text/imgtag/imgtag.qml %%QT_EXAMPLEDIR%%/quick/text/main.cpp %%QT_EXAMPLEDIR%%/quick/text/styledtext-layout.qml %%QT_EXAMPLEDIR%%/quick/text/text.pro %%QT_EXAMPLEDIR%%/quick/text/text.qml %%QT_EXAMPLEDIR%%/quick/text/text.qmlproject %%QT_EXAMPLEDIR%%/quick/text/text.qrc %%QT_EXAMPLEDIR%%/quick/text/textselection/pics/endHandle.png %%QT_EXAMPLEDIR%%/quick/text/textselection/pics/endHandle.sci %%QT_EXAMPLEDIR%%/quick/text/textselection/pics/startHandle.png %%QT_EXAMPLEDIR%%/quick/text/textselection/pics/startHandle.sci %%QT_EXAMPLEDIR%%/quick/text/textselection/textselection.qml %%QT_EXAMPLEDIR%%/quick/textureprovider/Label.qml %%QT_EXAMPLEDIR%%/quick/textureprovider/etcprovider.cpp %%QT_EXAMPLEDIR%%/quick/textureprovider/etcprovider.h %%QT_EXAMPLEDIR%%/quick/textureprovider/images/qt-logo.jpg %%QT_EXAMPLEDIR%%/quick/textureprovider/images/qt-logo.pkm %%QT_EXAMPLEDIR%%/quick/textureprovider/main.cpp %%QT_EXAMPLEDIR%%/quick/textureprovider/textureprovider.pro %%QT_EXAMPLEDIR%%/quick/textureprovider/textureprovider.qml %%QT_EXAMPLEDIR%%/quick/textureprovider/textureprovider.qrc %%QT_EXAMPLEDIR%%/quick/threading/doc/images/qml-threading-example.png %%QT_EXAMPLEDIR%%/quick/threading/doc/src/threading.qdoc %%QT_EXAMPLEDIR%%/quick/threading/main.cpp %%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/dataloader.mjs %%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/doc/src/threadedlistmodel.qdoc %%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/threadedlistmodel.qmlproject %%QT_EXAMPLEDIR%%/quick/threading/threadedlistmodel/timedisplay.qml %%QT_EXAMPLEDIR%%/quick/threading/threading.pro %%QT_EXAMPLEDIR%%/quick/threading/threading.qml %%QT_EXAMPLEDIR%%/quick/threading/threading.qmlproject %%QT_EXAMPLEDIR%%/quick/threading/threading.qrc %%QT_EXAMPLEDIR%%/quick/threading/workerscript/Spinner.qml %%QT_EXAMPLEDIR%%/quick/threading/workerscript/workerscript.mjs %%QT_EXAMPLEDIR%%/quick/threading/workerscript/workerscript.qml %%QT_EXAMPLEDIR%%/quick/threading/workerscript/workerscript.qmlproject %%QT_EXAMPLEDIR%%/quick/touchinteraction/doc/images/qml-touchinteraction-example.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/doc/src/touchinteraction.qdoc %%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/basic-flickable.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/Panel.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/cork.jpg %%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/note-yellow.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/content/tack.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/flickable/corkboards.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/main.cpp %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/bearwhack.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/AugmentedTouchPoint.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear0.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear1.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear2.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/Bear3.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/BearB.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/BearWhackParticleSystem.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/ParticleFlame.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/blur-circle.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/blur-circle3.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/heart-blur.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/content/title.png %%QT_EXAMPLEDIR%%/quick/touchinteraction/multipointtouch/multiflame.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/pincharea/flickresize.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/pincharea/qt-logo.jpg %%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.pro %%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.qml %%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.qmlproject %%QT_EXAMPLEDIR%%/quick/touchinteraction/touchinteraction.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/PetsModel.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/dynamicview.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/dynamicview1.pro %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/dynamicview1.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/dynamicview1.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview1/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/PetsModel.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview2.pro %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview2.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview2.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/PetsModel.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview3.pro %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview3.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview3.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/ListSelector.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/PetsModel.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/dynamicview.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/dynamicview4.pro %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/dynamicview4.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/dynamicview4.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview4/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/Cell.qml %%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/tutorial1.qml %%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/tutorial2.qml %%QT_EXAMPLEDIR%%/quick/tutorials/helloworld/tutorial3.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/Block.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/Button.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/samegame1.pro %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/samegame1.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/samegame1.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/Block.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/Button.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame.js %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame2.pro %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame2.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame2.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/Block.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/Button.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/Dialog.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame.js %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame3.pro %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame3.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame3.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/BoomBlock.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/Button.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/Dialog.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/content/samegame.js %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/README %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/score_data.xml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/score_style.xsl %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/highscores/scores.php %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/main.cpp %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/samegame4.pro %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/samegame4.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/samegame4.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/background.jpg %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/blueStar.png %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/blueStone.png %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/greenStar.png %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/greenStone.png %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/redStar.png %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/redStone.png %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/shared.qrc %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/star.png %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/shared/pics/yellowStone.png %%QT_EXAMPLEDIR%%/quick/tutorials/tutorials.pro %%QT_EXAMPLEDIR%%/quick/views/delegatemodel/delegatemodel.qmlproject %%QT_EXAMPLEDIR%%/quick/views/delegatemodel/dragselection.qml %%QT_EXAMPLEDIR%%/quick/views/delegatemodel/flipable.pro %%QT_EXAMPLEDIR%%/quick/views/delegatemodel/flipable.qrc %%QT_EXAMPLEDIR%%/quick/views/delegatemodel/main.cpp %%QT_EXAMPLEDIR%%/quick/views/delegatemodel/slideshow.qml %%QT_EXAMPLEDIR%%/quick/views/doc/images/qml-modelviews-example.png %%QT_EXAMPLEDIR%%/quick/views/doc/src/views.qdoc %%QT_EXAMPLEDIR%%/quick/views/gridview/gridview-example.qml %%QT_EXAMPLEDIR%%/quick/views/gridview/pics/AddressBook_48.png %%QT_EXAMPLEDIR%%/quick/views/gridview/pics/AudioPlayer_48.png %%QT_EXAMPLEDIR%%/quick/views/gridview/pics/Camera_48.png %%QT_EXAMPLEDIR%%/quick/views/gridview/pics/DateBook_48.png %%QT_EXAMPLEDIR%%/quick/views/gridview/pics/EMail_48.png %%QT_EXAMPLEDIR%%/quick/views/gridview/pics/TodoList_48.png %%QT_EXAMPLEDIR%%/quick/views/gridview/pics/VideoPlayer_48.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/PetsModel.qml %%QT_EXAMPLEDIR%%/quick/views/listview/content/PressAndHoldButton.qml %%QT_EXAMPLEDIR%%/quick/views/listview/content/RecipesModel.qml %%QT_EXAMPLEDIR%%/quick/views/listview/content/SmallText.qml %%QT_EXAMPLEDIR%%/quick/views/listview/content/TextButton.qml %%QT_EXAMPLEDIR%%/quick/views/listview/content/ToggleButton.qml %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/arrow-down.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/arrow-up.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/fruit-salad.jpg %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/hamburger.jpg %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/lemonade.jpg %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/list-delete.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/minus-sign.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/moreDown.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/moreUp.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/pancakes.jpg %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/plus-sign.png %%QT_EXAMPLEDIR%%/quick/views/listview/content/pics/vegetable-soup.jpg %%QT_EXAMPLEDIR%%/quick/views/listview/displaymargin.qml %%QT_EXAMPLEDIR%%/quick/views/listview/dynamiclist.qml %%QT_EXAMPLEDIR%%/quick/views/listview/expandingdelegates.qml %%QT_EXAMPLEDIR%%/quick/views/listview/highlight.qml %%QT_EXAMPLEDIR%%/quick/views/listview/highlightranges.qml %%QT_EXAMPLEDIR%%/quick/views/listview/sections.qml %%QT_EXAMPLEDIR%%/quick/views/main.cpp %%QT_EXAMPLEDIR%%/quick/views/objectmodel/objectmodel.qml %%QT_EXAMPLEDIR%%/quick/views/package/Delegate.qml %%QT_EXAMPLEDIR%%/quick/views/package/view.qml %%QT_EXAMPLEDIR%%/quick/views/pathview/pathview-example.qml %%QT_EXAMPLEDIR%%/quick/views/pathview/pics/AddressBook_48.png %%QT_EXAMPLEDIR%%/quick/views/pathview/pics/AudioPlayer_48.png %%QT_EXAMPLEDIR%%/quick/views/pathview/pics/Camera_48.png %%QT_EXAMPLEDIR%%/quick/views/pathview/pics/DateBook_48.png %%QT_EXAMPLEDIR%%/quick/views/pathview/pics/EMail_48.png %%QT_EXAMPLEDIR%%/quick/views/pathview/pics/TodoList_48.png %%QT_EXAMPLEDIR%%/quick/views/pathview/pics/VideoPlayer_48.png %%QT_EXAMPLEDIR%%/quick/views/views.pro %%QT_EXAMPLEDIR%%/quick/views/views.qml %%QT_EXAMPLEDIR%%/quick/views/views.qmlproject %%QT_EXAMPLEDIR%%/quick/views/views.qrc %%QT_EXAMPLEDIR%%/quick/window/AllScreens.qml %%QT_EXAMPLEDIR%%/quick/window/CurrentScreen.qml %%QT_EXAMPLEDIR%%/quick/window/Splash.qml %%QT_EXAMPLEDIR%%/quick/window/doc/images/qml-window-example.png %%QT_EXAMPLEDIR%%/quick/window/doc/src/window.qdoc %%QT_EXAMPLEDIR%%/quick/window/main.cpp %%QT_EXAMPLEDIR%%/quick/window/resources/icon.icns %%QT_EXAMPLEDIR%%/quick/window/resources/icon.ico %%QT_EXAMPLEDIR%%/quick/window/resources/icon.svg %%QT_EXAMPLEDIR%%/quick/window/resources/icon64.png %%QT_EXAMPLEDIR%%/quick/window/resources/window.rc %%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/chattutorial/chapter1-settingup/chapter1-settingup.pro %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter1-settingup/main.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter1-settingup/main.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter1-settingup/qml.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/chapter2-lists.pro %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/main.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/main.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter2-lists/qml.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/ContactPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/ConversationPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/chapter3-navigation.pro %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/main.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/main.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter3-navigation/qml.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/ContactPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/ConversationPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/chapter4-models.pro %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/main.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/main.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/qml.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlcontactmodel.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlcontactmodel.h %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlconversationmodel.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter4-models/sqlconversationmodel.h %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/+material/ChatToolBar.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/ChatToolBar.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/ContactPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/ConversationPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/chapter5-styling.pro %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/main.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/main.qml %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/qml.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlcontactmodel.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlcontactmodel.h %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlconversationmodel.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chapter5-styling/sqlconversationmodel.h %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/chattutorial.pro %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter1.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter2-listview-header.gif %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter2.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter3-listview-header.gif %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter3-view-margins.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter3.gif %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter4-long-message.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter4-message-timestamp.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter4.gif %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-material-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-material-test.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-material.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-universal-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-contacts-universal.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-material-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-material-test.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-material.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-universal-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/images/qtquickcontrols2-chattutorial-chapter5-conversations-universal.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/doc/src/qtquickcontrols2-chattutorial.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert_Einstein.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert_Einstein@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert_Einstein@3x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Albert_Einstein@4x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest_Hemingway.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest_Hemingway@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest_Hemingway@3x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Ernest_Hemingway@4x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans_Gude.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans_Gude@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans_Gude@3x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/Hans_Gude@4x.png %%QT_EXAMPLEDIR%%/quickcontrols2/chattutorial/shared/shared.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/ContactDelegate.ui.qml %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/ContactDialog.qml %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/ContactForm.ui.qml %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/ContactView.ui.qml %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/SectionDelegate.ui.qml %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/contactlist.pro %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/contactlist.qml %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/contactmodel.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/contactmodel.h %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/designer/Backend/ContactModel.qml %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/designer/Backend/qmldir %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/doc/images/qtquickcontrols2-contactlist.png %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/doc/src/qtquickcontrols2-contactlist.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/contactlist/main.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/Flat/Button.qml %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/Flat/CheckBox.qml %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/Flat/Switch.qml %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/MainForm.ui.qml %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/doc/images/qtquickcontrols2-flatstyle-creator.png %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/doc/images/qtquickcontrols2-flatstyle.png %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/doc/src/qtquickcontrols2-flatstyle.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/flatstyle.pro %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/flatstyle.qml %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/imports/Theme/Theme.qml %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/imports/Theme/qmldir %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/main.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/flatstyle/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/images/qtquickcontrols2-gallery-drawer.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/images/qtquickcontrols2-gallery-menu.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/images/qtquickcontrols2-gallery-welcome.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/doc/src/qtquickcontrols2-gallery.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.pro %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/gallery.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20/back.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20/drawer.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20/menu.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@2/back.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@2/drawer.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@2/menu.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@3/back.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@3/drawer.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@3/menu.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@4/back.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@4/drawer.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/20x20@4/menu.png %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/icons/gallery/index.theme %%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/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/DelayButtonPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DelegatePage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DialPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/DialogPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/FramePage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/GroupBoxPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/PageIndicatorPage.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/ScrollablePage.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/ToolTipPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/pages/TumblerPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/gallery/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/automotive.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/automotive.pro %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/doc/images/qtquickcontrols2-automotive.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/doc/src/qtquickcontrols2-automotive.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/air-con.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/command.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/message.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/music.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/seats.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/settings.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/statistics.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44/windows.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/air-con.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/command.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/message.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/music.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/navigation.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/seats.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/settings.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/statistics.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/44x44@2/windows.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/icons.svg %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/automotive/index.theme %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/car.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/car@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/icons.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/warning.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/warning@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/weather.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/icons/weather@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/applicationwindow-background.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/applicationwindow-background@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-checked@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-pressed.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background-pressed@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/button-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-background-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-background-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-background-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-background-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-background.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-background@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-handle-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-handle-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-handle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/dial-handle@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/frame-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/frame-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/imagine-assets.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-checked.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-checked@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-pressed.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background-pressed@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/itemdelegate-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-checked@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/radiobutton-indicator@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/scrollindicator-handle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/scrollindicator-handle@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-background-horizontal.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-background-horizontal@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-handle-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-handle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-handle@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/slider-progress-horizontal@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-checked@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-handle@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/switchdelegate-indicator@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/toolseparator-separator-vertical.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/imagine-assets/toolseparator-separator-vertical@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/qml/CustomGlow.qml %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/qml/FeatureButton.qml %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/qml/GlowingLabel.qml %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/qml/automotive.qml %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/qml/qml.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/automotive/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/doc/images/qtquickcontrols2-musicplayer.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/doc/src/qtquickcontrols2-musicplayer.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/icons.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/bluetooth.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/cart.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/cloud.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/favorite.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/filter.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/folder.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/message.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/music.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/next.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/pause.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/power.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/previous.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/repeat.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/save.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/settings.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/shuffle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32/stop.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/bluetooth.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/cart.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/cloud.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/favorite.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/filter.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/folder.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/grid.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/message.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/music.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/next.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/pause.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/power.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/previous.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/repeat.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/save.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/settings.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/shuffle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/32x32@2/stop.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/icons.svg %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/icons/musicplayer/index.theme %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/images/album-cover.jpg %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/applicationwindow-background.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-checked@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-disabled.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-disabled@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-pressed.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background-pressed@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/button-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-open.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-open@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-pressed.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background-pressed@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-open.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-open@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-indicator@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-popup.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/combobox-popup@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-background@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/dial-handle@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/frame-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/frame-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/imagine-assets.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-checked.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-checked@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/itemdelegate-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-checked@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-disabled.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-disabled@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/roundbutton-background@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-horizontal@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-background-vertical@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-disabled.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-disabled@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-hovered.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle-hovered@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-handle@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-horizontal.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-horizontal@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/slider-progress-vertical@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background-disabled.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background-disabled@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/textfield-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbar-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbar-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-checked@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-hovered.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-hovered@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-pressed.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background-pressed@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/toolbutton-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/tooltip-background.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/imagine-assets/tooltip-background@2x.9.png %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/musicplayer.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/musicplayer.pro %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/musicplayer.qml %%QT_EXAMPLEDIR%%/quickcontrols2/imagine/musicplayer/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/quickcontrols2/quickcontrols2.pro %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/doc/images/qtquickcontrols2-sidepanel-landscape.png %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/doc/images/qtquickcontrols2-sidepanel-portrait.png %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/doc/src/qtquickcontrols2-sidepanel.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/images/qt-logo.png %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/images/qt-logo@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/images/qt-logo@3x.png %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/images/qt-logo@4x.png %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/sidepanel.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/sidepanel.pro %%QT_EXAMPLEDIR%%/quickcontrols2/sidepanel/sidepanel.qml %%QT_EXAMPLEDIR%%/quickcontrols2/swipetoremove/doc/images/qtquickcontrols2-swipetoremove.png %%QT_EXAMPLEDIR%%/quickcontrols2/swipetoremove/doc/src/qtquickcontrols2-swipetoremove.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/swipetoremove/fonts/LICENSE.txt %%QT_EXAMPLEDIR%%/quickcontrols2/swipetoremove/fonts/fontello.ttf %%QT_EXAMPLEDIR%%/quickcontrols2/swipetoremove/swipetoremove.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/swipetoremove/swipetoremove.pro %%QT_EXAMPLEDIR%%/quickcontrols2/swipetoremove/swipetoremove.qml %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/+touch/texteditor.html %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/creatorKateHighlighter.png %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/doc/images/qtquickcontrols2-texteditor-desktop.jpg %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/doc/images/qtquickcontrols2-texteditor-touch.jpg %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/doc/src/qtquickcontrols2-texteditor.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/documenthandler.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/documenthandler.h %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/einstein.png %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/example.md %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/fonts/fontello.ttf %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/images/qt-logo.png %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/qml/+touch/texteditor.qml %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/qml/texteditor.qml %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/red.png %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/texteditor.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/texteditor.html %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/texteditor.pro %%QT_EXAMPLEDIR%%/quickcontrols2/texteditor/texteditor.qrc %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/doc/images/qtquickcontrols2-wearable.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/doc/src/qtquickcontrols2-wearable.qdoc %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36/alarms.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36/fitness.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36/navigation.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36/notifications.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36/settings.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36/weather.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36/worldclock.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36@2/alarms.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36@2/fitness.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36@2/navigation.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36@2/notifications.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36@2/settings.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36@2/weather.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/36x36@2/worldclock.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/icons/wearable/index.theme %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/back.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/back@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/back@3x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/back@4x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/background-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/background-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/home.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/home@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/home@3x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/images/home@4x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Alarms/AlarmsPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/DemoMode.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/DemoModeIndicator.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/FitnessPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/fitness.js %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-running-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-running-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-running-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-running-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-walking-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-walking-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-walking-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Fitness/images/man-walking-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/LauncherPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/NaviButton.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/NavigationPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/RouteElement.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/end.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/end@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/leftturn-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/leftturn-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/leftturn-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/leftturn-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/marker.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/navigation-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/navigation-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/navigation-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/navigation-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/rightturn-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/rightturn-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/rightturn-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/rightturn-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/start.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/start@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/straight-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/straight-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/straight-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/straight-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/uturn.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/images/uturn@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/navigation.js %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Navigation/walk_route.json %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/NotificationsPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarf-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarf-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarf-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarf-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarm-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarm-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarm-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/avatarm-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/missedcall-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/missedcall-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/missedcall-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/images/missedcall-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Notifications/notifications.js %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/SettingsPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/bluetooth-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/bluetooth-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/bluetooth-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/bluetooth-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/brightness-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/brightness-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/brightness-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/brightness-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/demo-mode-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/demo-mode-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/demo-mode-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/demo-mode-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/demo-mode-white.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/demo-mode-white@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/demo-mode.svg %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/theme-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/theme-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/theme-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/theme-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/theme.svg %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/wifi-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/wifi-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/wifi-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Settings/images/wifi-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Style/PageIndicator.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Style/Slider.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Style/Switch.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Style/UIStyle.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Style/qmldir %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/SwipeViewPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/WeatherPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/humidity-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/humidity-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/humidity-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/humidity-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/pressure-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/pressure-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/pressure-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/pressure-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunrise-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunrise-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunrise-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunrise-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunset-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunset-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunset-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/sunset-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/temperature-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/temperature-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/temperature-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/temperature-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/wind-dark.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/wind-dark@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/wind-light.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/images/wind-light@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/weather.js %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/Weather/weather.json %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/Clock.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/WorldClockPage.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/center.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/center@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/clock-night.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/clock-night@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/clock.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/second.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/second@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissdaydial.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissdaydial@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissdayhour.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissdayhour@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissdayminute.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissdayminute@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissnightdial.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissnightdial@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissnighthour.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissnighthour@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissnightminute.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissnightminute@2x.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/qml/WorldClock/images/swissseconds.png %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/wearable.cpp %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/wearable.pro %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/wearable.qml %%QT_EXAMPLEDIR%%/quickcontrols2/wearable/wearable.qrc %%QT_EXAMPLEDIR%%/remoteobjects/clientapp/clientapp.pro %%QT_EXAMPLEDIR%%/remoteobjects/clientapp/clientapp.qrc %%QT_EXAMPLEDIR%%/remoteobjects/clientapp/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/clientapp/qml/plugins.qml %%QT_EXAMPLEDIR%%/remoteobjects/clientapp/qml/plugins0.qml %%QT_EXAMPLEDIR%%/remoteobjects/clientapp/qml/plugins1.qml %%QT_EXAMPLEDIR%%/remoteobjects/clientapp/qml/plugins2.qml %%QT_EXAMPLEDIR%%/remoteobjects/cppclient/cppclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/cppclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/cppclient/timemodel.rep %%QT_EXAMPLEDIR%%/remoteobjects/modelviewclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/modelviewclient/modelviewclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/modelviewserver/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/modelviewserver/modelviewserver.pro %%QT_EXAMPLEDIR%%/remoteobjects/plugins/imports/TimeExample/Clock.qml %%QT_EXAMPLEDIR%%/remoteobjects/plugins/imports/TimeExample/center.png %%QT_EXAMPLEDIR%%/remoteobjects/plugins/imports/TimeExample/clock.png %%QT_EXAMPLEDIR%%/remoteobjects/plugins/imports/TimeExample/hour.png %%QT_EXAMPLEDIR%%/remoteobjects/plugins/imports/TimeExample/minute.png %%QT_EXAMPLEDIR%%/remoteobjects/plugins/imports/TimeExample/qmldir %%QT_EXAMPLEDIR%%/remoteobjects/plugins/plugin.cpp %%QT_EXAMPLEDIR%%/remoteobjects/plugins/plugins.pro %%QT_EXAMPLEDIR%%/remoteobjects/plugins/plugins.qml %%QT_EXAMPLEDIR%%/remoteobjects/plugins/plugins0.qml %%QT_EXAMPLEDIR%%/remoteobjects/plugins/plugins1.qml %%QT_EXAMPLEDIR%%/remoteobjects/plugins/plugins2.qml %%QT_EXAMPLEDIR%%/remoteobjects/qmlmodelviewclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/qmlmodelviewclient/main.qml %%QT_EXAMPLEDIR%%/remoteobjects/qmlmodelviewclient/qml.qrc %%QT_EXAMPLEDIR%%/remoteobjects/qmlmodelviewclient/qmlmodelviewclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/remoteobjects.pro %%QT_EXAMPLEDIR%%/remoteobjects/server/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/server/server.pro %%QT_EXAMPLEDIR%%/remoteobjects/server/timemodel.cpp %%QT_EXAMPLEDIR%%/remoteobjects/server/timemodel.h %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectclient/client.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectclient/client.h %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectclient/directconnectclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectclient/simpleswitch.rep %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectdynamicclient/directconnectdynamicclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectdynamicclient/dynamicclient.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectdynamicclient/dynamicclient.h %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectdynamicclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectserver/directconnectserver.pro %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectserver/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectserver/simpleswitch.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectserver/simpleswitch.h %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/directconnectserver/simpleswitch.rep %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedclient/dynamicclient.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedclient/dynamicclient.h %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedclient/registryconnectedclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedserver/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedserver/registryconnectedserver.pro %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedserver/simpleswitch.cpp %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedserver/simpleswitch.h %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/registryconnectedserver/simpleswitch.rep %%QT_EXAMPLEDIR%%/remoteobjects/simpleswitch/simpleswitch.pro %%QT_EXAMPLEDIR%%/remoteobjects/ssl/ssl.pro %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslcppclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslcppclient/sslcppclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslcppclient/timemodel.rep %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/cert.qrc %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/client.crt %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/client.key +%%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/readme %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/rootCA.key %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/rootCA.pem %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/rootCA.srl %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/server.crt %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/cert/server.key %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/sslserver.cpp %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/sslserver.h %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/sslserver.pro %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/timemodel.cpp %%QT_EXAMPLEDIR%%/remoteobjects/ssl/sslserver/timemodel.h %%QT_EXAMPLEDIR%%/remoteobjects/timemodel.rep %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/cert.qrc %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/client.crt %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/client.key +%%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/readme %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/rootCA.key %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/rootCA.pem %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/rootCA.srl %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/server.crt %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/cert/server.key %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/common.pri %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/websocketiodevice.cpp %%QT_EXAMPLEDIR%%/remoteobjects/websockets/common/websocketiodevice.h %%QT_EXAMPLEDIR%%/remoteobjects/websockets/websockets.pro %%QT_EXAMPLEDIR%%/remoteobjects/websockets/wsclient/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/websockets/wsclient/wsclient.pro %%QT_EXAMPLEDIR%%/remoteobjects/websockets/wsserver/main.cpp %%QT_EXAMPLEDIR%%/remoteobjects/websockets/wsserver/wsserver.pro %%QT_EXAMPLEDIR%%/script/README %%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.h %%QT_EXAMPLEDIR%%/script/context2d/context2d.pro %%QT_EXAMPLEDIR%%/script/context2d/context2d.qrc %%QT_EXAMPLEDIR%%/script/context2d/doc/images/context2d-example-smileysmile.png %%QT_EXAMPLEDIR%%/script/context2d/doc/images/context2d-example.png %%QT_EXAMPLEDIR%%/script/context2d/doc/src/context2d.qdoc %%QT_EXAMPLEDIR%%/script/context2d/domimage.cpp %%QT_EXAMPLEDIR%%/script/context2d/domimage.h %%QT_EXAMPLEDIR%%/script/context2d/environment.cpp %%QT_EXAMPLEDIR%%/script/context2d/environment.h %%QT_EXAMPLEDIR%%/script/context2d/main.cpp %%QT_EXAMPLEDIR%%/script/context2d/qcontext2dcanvas.cpp %%QT_EXAMPLEDIR%%/script/context2d/qcontext2dcanvas.h %%QT_EXAMPLEDIR%%/script/context2d/scripts/alpha.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/arc.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/bezier.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/clock.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/fill1.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/grad.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/linecap.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/linestye.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/moveto.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/moveto2.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/pacman.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/plasma.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/pong.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/quad.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/rgba.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/rotate.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/scale.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/stroke1.js %%QT_EXAMPLEDIR%%/script/context2d/scripts/translate.js %%QT_EXAMPLEDIR%%/script/context2d/window.cpp %%QT_EXAMPLEDIR%%/script/context2d/window.h %%QT_EXAMPLEDIR%%/script/customclass/bytearrayclass.cpp %%QT_EXAMPLEDIR%%/script/customclass/bytearrayclass.h %%QT_EXAMPLEDIR%%/script/customclass/bytearrayclass.pri %%QT_EXAMPLEDIR%%/script/customclass/bytearrayprototype.cpp %%QT_EXAMPLEDIR%%/script/customclass/bytearrayprototype.h %%QT_EXAMPLEDIR%%/script/customclass/customclass.pro %%QT_EXAMPLEDIR%%/script/customclass/main.cpp %%QT_EXAMPLEDIR%%/script/defaultprototypes/code.js %%QT_EXAMPLEDIR%%/script/defaultprototypes/defaultprototypes.pro %%QT_EXAMPLEDIR%%/script/defaultprototypes/defaultprototypes.qrc %%QT_EXAMPLEDIR%%/script/defaultprototypes/doc/images/defaultprototypes-example.png %%QT_EXAMPLEDIR%%/script/defaultprototypes/doc/src/defaultprototypes.qdoc %%QT_EXAMPLEDIR%%/script/defaultprototypes/main.cpp %%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.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.pro %%QT_EXAMPLEDIR%%/script/qscript/main.cpp %%QT_EXAMPLEDIR%%/script/qscript/qscript.pro %%QT_EXAMPLEDIR%%/script/qsdbg/example.js %%QT_EXAMPLEDIR%%/script/qsdbg/main.cpp %%QT_EXAMPLEDIR%%/script/qsdbg/qsdbg.pri %%QT_EXAMPLEDIR%%/script/qsdbg/qsdbg.pro %%QT_EXAMPLEDIR%%/script/qsdbg/scriptbreakpointmanager.cpp %%QT_EXAMPLEDIR%%/script/qsdbg/scriptbreakpointmanager.h %%QT_EXAMPLEDIR%%/script/qsdbg/scriptdebugger.cpp %%QT_EXAMPLEDIR%%/script/qsdbg/scriptdebugger.h %%QT_EXAMPLEDIR%%/script/qstetrix/main.cpp %%QT_EXAMPLEDIR%%/script/qstetrix/qstetrix.pro %%QT_EXAMPLEDIR%%/script/qstetrix/tetrix.qrc %%QT_EXAMPLEDIR%%/script/qstetrix/tetrixboard.cpp %%QT_EXAMPLEDIR%%/script/qstetrix/tetrixboard.h %%QT_EXAMPLEDIR%%/script/qstetrix/tetrixboard.js %%QT_EXAMPLEDIR%%/script/qstetrix/tetrixpiece.js %%QT_EXAMPLEDIR%%/script/qstetrix/tetrixwindow.js %%QT_EXAMPLEDIR%%/script/qstetrix/tetrixwindow.ui %%QT_EXAMPLEDIR%%/script/script.pro %%QT_EXAMPLEDIR%%/scxml/calculator-common/doc/src/calculator-compiling.qdocinc %%QT_EXAMPLEDIR%%/scxml/calculator-common/statemachine.scxml %%QT_EXAMPLEDIR%%/scxml/calculator-qml/Button.qml %%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.cpp %%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.pro %%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.qml %%QT_EXAMPLEDIR%%/scxml/calculator-qml/calculator-qml.qrc %%QT_EXAMPLEDIR%%/scxml/calculator-qml/doc/images/calculator-qml.png %%QT_EXAMPLEDIR%%/scxml/calculator-qml/doc/src/calculator-qml.qdoc %%QT_EXAMPLEDIR%%/scxml/calculator-widgets/calculator-widgets.cpp %%QT_EXAMPLEDIR%%/scxml/calculator-widgets/calculator-widgets.pro %%QT_EXAMPLEDIR%%/scxml/calculator-widgets/doc/images/calculator.png %%QT_EXAMPLEDIR%%/scxml/calculator-widgets/doc/src/calculator.qdoc %%QT_EXAMPLEDIR%%/scxml/calculator-widgets/mainwindow.cpp %%QT_EXAMPLEDIR%%/scxml/calculator-widgets/mainwindow.h %%QT_EXAMPLEDIR%%/scxml/calculator-widgets/mainwindow.ui %%QT_EXAMPLEDIR%%/scxml/ftpclient/doc/images/ftpclient-statechart.png %%QT_EXAMPLEDIR%%/scxml/ftpclient/doc/src/ftpclient.qdoc %%QT_EXAMPLEDIR%%/scxml/ftpclient/ftpclient.pro %%QT_EXAMPLEDIR%%/scxml/ftpclient/ftpcontrolchannel.cpp %%QT_EXAMPLEDIR%%/scxml/ftpclient/ftpcontrolchannel.h %%QT_EXAMPLEDIR%%/scxml/ftpclient/ftpdatachannel.cpp %%QT_EXAMPLEDIR%%/scxml/ftpclient/ftpdatachannel.h %%QT_EXAMPLEDIR%%/scxml/ftpclient/main.cpp %%QT_EXAMPLEDIR%%/scxml/ftpclient/simpleftp.scxml %%QT_EXAMPLEDIR%%/scxml/invoke-common/Button.qml %%QT_EXAMPLEDIR%%/scxml/invoke-common/MainView.qml %%QT_EXAMPLEDIR%%/scxml/invoke-common/SubView.qml %%QT_EXAMPLEDIR%%/scxml/invoke-common/statemachine.scxml %%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/doc/images/invoke-dynamic.png %%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/doc/src/invoke-dynamic.qdoc %%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.cpp %%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.pro %%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.qml %%QT_EXAMPLEDIR%%/scxml/invoke-dynamic/invoke-dynamic.qrc %%QT_EXAMPLEDIR%%/scxml/invoke-static/doc/images/invoke-static.png %%QT_EXAMPLEDIR%%/scxml/invoke-static/doc/src/invoke-static.qdoc %%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.cpp %%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.pro %%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.qml %%QT_EXAMPLEDIR%%/scxml/invoke-static/invoke-static.qrc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/Mediaplayer.qml %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/images/mediaplayer.png %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/src/mediaplayer-compiling.qdocinc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/src/mediaplayer-ecmascript-data-model.qdocinc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/doc/src/mediaplayer-widgets-connecting-to-states.qdocinc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mainwindow.cpp %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mainwindow.h %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mainwindow.ui %%QT_EXAMPLEDIR%%/scxml/mediaplayer-common/mediaplayer.scxml %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/doc/src/mediaplayer-qml-cppdatamodel.qdoc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-cppdatamodel.scxml %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.cpp %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.pro %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.qml %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/mediaplayer-qml-cppdatamodel.qrc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/thedatamodel.cpp %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-cppdatamodel/thedatamodel.h %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/doc/src/mediaplayer-qml-dynamic.qdoc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.cpp %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.pro %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.qml %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-dynamic/mediaplayer-qml-dynamic.qrc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/doc/src/mediaplayer-qml-static.qdoc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.cpp %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.pro %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.qml %%QT_EXAMPLEDIR%%/scxml/mediaplayer-qml-static/mediaplayer-qml-static.qrc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/doc/src/mediaplayer-widgets-dynamic.qdoc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/mediaplayer-widgets-dynamic.cpp %%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/mediaplayer-widgets-dynamic.pro %%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-dynamic/mediaplayer.qrc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-static/doc/src/mediaplayer-widgets-static.qdoc %%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-static/mediaplayer-widgets-static.cpp %%QT_EXAMPLEDIR%%/scxml/mediaplayer-widgets-static/mediaplayer-widgets-static.pro %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-global.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-guicontrol.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-internalstate.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-logicalstate.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-modestate.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-onstate.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball-statechart-workflow.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/images/pinball.png %%QT_EXAMPLEDIR%%/scxml/pinball/doc/src/pinball.qdoc %%QT_EXAMPLEDIR%%/scxml/pinball/main.cpp %%QT_EXAMPLEDIR%%/scxml/pinball/mainwindow.cpp %%QT_EXAMPLEDIR%%/scxml/pinball/mainwindow.h %%QT_EXAMPLEDIR%%/scxml/pinball/mainwindow.ui %%QT_EXAMPLEDIR%%/scxml/pinball/pinball.pro %%QT_EXAMPLEDIR%%/scxml/pinball/pinball.scxml %%QT_EXAMPLEDIR%%/scxml/scxml.pro %%QT_EXAMPLEDIR%%/scxml/sudoku/data/nearly-solved-sudoku.data %%QT_EXAMPLEDIR%%/scxml/sudoku/data/sudoku.data %%QT_EXAMPLEDIR%%/scxml/sudoku/doc/images/sudoku.png %%QT_EXAMPLEDIR%%/scxml/sudoku/doc/src/sudoku.qdoc %%QT_EXAMPLEDIR%%/scxml/sudoku/main.cpp %%QT_EXAMPLEDIR%%/scxml/sudoku/mainwindow.cpp %%QT_EXAMPLEDIR%%/scxml/sudoku/mainwindow.h %%QT_EXAMPLEDIR%%/scxml/sudoku/sudoku.js %%QT_EXAMPLEDIR%%/scxml/sudoku/sudoku.pro %%QT_EXAMPLEDIR%%/scxml/sudoku/sudoku.qrc %%QT_EXAMPLEDIR%%/scxml/sudoku/sudoku.scxml %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/Button.qml %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/Lights.ui.qml %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/TrafficLight.qml %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/background.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/doc/images/trafficlight.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/doc/src/trafficlight-compiling.qdocinc %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/doc/src/trafficlight-state-machine.qdocinc %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/green.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/pause.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/play.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/red.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/statemachine.scxml %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/trafficlight.cpp %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/trafficlight.h %%QT_EXAMPLEDIR%%/scxml/trafficlight-common/yellow.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/doc/src/trafficlight-qml-dynamic.qdoc %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.cpp %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.pro %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qrc %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-simple/Light.qml %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-simple/TrafficLight.qml %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-simple/doc/images/trafficlight.png %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-simple/doc/src/trafficlight-qml-simple.qdoc %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-simple/trafficlight-qml-simple.cpp %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-simple/trafficlight-qml-simple.pro %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-simple/trafficlight-qml-simple.qrc %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/doc/src/trafficlight-qml-static.qdoc %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.cpp %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.pro %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.qml %%QT_EXAMPLEDIR%%/scxml/trafficlight-qml-static/trafficlight-qml-static.qrc %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/doc/src/trafficlight-widgets-dynamic.qdoc %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/trafficlight-widgets-dynamic.cpp %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/trafficlight-widgets-dynamic.pro %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-dynamic/trafficlight-widgets-dynamic.qrc %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/doc/src/trafficlight-widgets-static.qdoc %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/trafficlight-widgets-static.cpp %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/trafficlight-widgets-static.pro %%QT_EXAMPLEDIR%%/scxml/trafficlight-widgets-static/trafficlight-widgets-static.qrc %%QT_EXAMPLEDIR%%/sensors/accelbubble/Info.plist %%QT_EXAMPLEDIR%%/sensors/accelbubble/accelbubble.pro %%QT_EXAMPLEDIR%%/sensors/accelbubble/accelbubble.qml %%QT_EXAMPLEDIR%%/sensors/accelbubble/accelbubble.qrc %%QT_EXAMPLEDIR%%/sensors/accelbubble/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/sensors/accelbubble/content/Bluebubble.svg %%QT_EXAMPLEDIR%%/sensors/accelbubble/doc/images/accelbubble.png %%QT_EXAMPLEDIR%%/sensors/accelbubble/doc/src/accelbubble.qdoc %%QT_EXAMPLEDIR%%/sensors/accelbubble/main.cpp %%QT_EXAMPLEDIR%%/sensors/grue/console_app/console_app.pro %%QT_EXAMPLEDIR%%/sensors/grue/console_app/main.cpp %%QT_EXAMPLEDIR%%/sensors/grue/doc/images/qtsensors-examples-grue.png %%QT_EXAMPLEDIR%%/sensors/grue/doc/src/grue.qdoc %%QT_EXAMPLEDIR%%/sensors/grue/grue.png %%QT_EXAMPLEDIR%%/sensors/grue/grue.pro %%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/qmldir %%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor.cpp %%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor.h %%QT_EXAMPLEDIR%%/sensors/grue/lib/gruesensor_p.h %%QT_EXAMPLEDIR%%/sensors/grue/lib/lib.pri %%QT_EXAMPLEDIR%%/sensors/grue/lib/lib.pro %%QT_EXAMPLEDIR%%/sensors/grue/main.cpp %%QT_EXAMPLEDIR%%/sensors/grue/plugin/gruesensorimpl.cpp %%QT_EXAMPLEDIR%%/sensors/grue/plugin/gruesensorimpl.h %%QT_EXAMPLEDIR%%/sensors/grue/plugin/main.cpp %%QT_EXAMPLEDIR%%/sensors/grue/plugin/plugin.json %%QT_EXAMPLEDIR%%/sensors/grue/plugin/plugin.pro %%QT_EXAMPLEDIR%%/sensors/grue/qml.pro %%QT_EXAMPLEDIR%%/sensors/grue/qml.qrc %%QT_EXAMPLEDIR%%/sensors/maze/Congratulation.qml %%QT_EXAMPLEDIR%%/sensors/maze/LabyrinthSquare.qml %%QT_EXAMPLEDIR%%/sensors/maze/Mouse.qml %%QT_EXAMPLEDIR%%/sensors/maze/android/AndroidManifest.xml %%QT_EXAMPLEDIR%%/sensors/maze/components/ApplicationWindow.qml %%QT_EXAMPLEDIR%%/sensors/maze/components/Button.qml %%QT_EXAMPLEDIR%%/sensors/maze/components/images/button_background_disabled.png %%QT_EXAMPLEDIR%%/sensors/maze/components/images/button_background_normal.png %%QT_EXAMPLEDIR%%/sensors/maze/components/images/button_background_pressed.png %%QT_EXAMPLEDIR%%/sensors/maze/content/00.png %%QT_EXAMPLEDIR%%/sensors/maze/content/01.png %%QT_EXAMPLEDIR%%/sensors/maze/content/cheese.png %%QT_EXAMPLEDIR%%/sensors/maze/content/cheeseeating.gif %%QT_EXAMPLEDIR%%/sensors/maze/content/congratulations.gif %%QT_EXAMPLEDIR%%/sensors/maze/content/mouse_down.gif %%QT_EXAMPLEDIR%%/sensors/maze/content/start.png %%QT_EXAMPLEDIR%%/sensors/maze/doc/src/maze.qdoc %%QT_EXAMPLEDIR%%/sensors/maze/lib.js %%QT_EXAMPLEDIR%%/sensors/maze/main.cpp %%QT_EXAMPLEDIR%%/sensors/maze/maze.pro %%QT_EXAMPLEDIR%%/sensors/maze/maze.qml %%QT_EXAMPLEDIR%%/sensors/maze/maze.qrc %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/ApplicationWindow.qml %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/Button.qml %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/Divider.qml %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/images/button_background_disabled.png %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/images/button_background_normal.png %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/components/images/button_background_pressed.png %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/doc/src/qmlqtsensors.qdoc %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/main.cpp %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/qmlqtsensors.pro %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/qmlqtsensors.qml %%QT_EXAMPLEDIR%%/sensors/qmlqtsensors/qmlqtsensors.qrc %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/Button.qml %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/GestureList.qml %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/GestureView.qml %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/GesturesView.qml %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/doc/src/qmlsensorgestures.qdoc %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/main.cpp %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/plugin.pro %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcountergestureplugin.cpp %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcountergestureplugin.h %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcounterrecognizer.cpp %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/plugin/qcounterrecognizer.h %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qml.pro %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qml.qrc %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qmlsensorgestures.pro %%QT_EXAMPLEDIR%%/sensors/qmlsensorgestures/qmlsensorgestures.qml %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/doc/images/qtsensors-examples-explorer.png %%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/main.h %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/propertyinfo.cpp %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/propertyinfo.h %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/qmldir %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/sensoritem.cpp %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/import/sensoritem.h %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/main.cpp %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/qml.pro %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/qml.qrc %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/sensor_explorer.pro %%QT_EXAMPLEDIR%%/sensors/sensor_explorer/sensor_explorer.qml %%QT_EXAMPLEDIR%%/sensors/sensorgestures/doc/images/sensorgesturecpp.png %%QT_EXAMPLEDIR%%/sensors/sensorgestures/doc/src/sensorgestures.qdoc %%QT_EXAMPLEDIR%%/sensors/sensorgestures/main.cpp %%QT_EXAMPLEDIR%%/sensors/sensorgestures/mainwindow.cpp %%QT_EXAMPLEDIR%%/sensors/sensorgestures/mainwindow.h %%QT_EXAMPLEDIR%%/sensors/sensorgestures/mainwindow.ui %%QT_EXAMPLEDIR%%/sensors/sensorgestures/sensorgestures.pro %%QT_EXAMPLEDIR%%/sensors/sensors.pro %%QT_EXAMPLEDIR%%/sensors/shakeit/audio/loopy2a_mono.wav %%QT_EXAMPLEDIR%%/sensors/shakeit/audio/phone.wav %%QT_EXAMPLEDIR%%/sensors/shakeit/content/triangle.png %%QT_EXAMPLEDIR%%/sensors/shakeit/content/triangle2.png %%QT_EXAMPLEDIR%%/sensors/shakeit/content/triangle3.png %%QT_EXAMPLEDIR%%/sensors/shakeit/doc/images/shakeit.png %%QT_EXAMPLEDIR%%/sensors/shakeit/doc/src/shakeit.qdoc %%QT_EXAMPLEDIR%%/sensors/shakeit/main.cpp %%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.pro %%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.qml %%QT_EXAMPLEDIR%%/sensors/shakeit/shakeit.qrc %%QT_EXAMPLEDIR%%/sensors/stub.h %%QT_EXAMPLEDIR%%/serialbus/can/bitratebox.cpp %%QT_EXAMPLEDIR%%/serialbus/can/bitratebox.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/can/sendframebox.cpp %%QT_EXAMPLEDIR%%/serialbus/can/sendframebox.h %%QT_EXAMPLEDIR%%/serialbus/can/sendframebox.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 %%QT_EXAMPLEDIR%%/serialport/blockingmaster/main.cpp %%QT_EXAMPLEDIR%%/serialport/blockingmaster/masterthread.cpp %%QT_EXAMPLEDIR%%/serialport/blockingmaster/masterthread.h %%QT_EXAMPLEDIR%%/serialport/blockingslave/blockingslave.pro %%QT_EXAMPLEDIR%%/serialport/blockingslave/dialog.cpp %%QT_EXAMPLEDIR%%/serialport/blockingslave/dialog.h %%QT_EXAMPLEDIR%%/serialport/blockingslave/main.cpp %%QT_EXAMPLEDIR%%/serialport/blockingslave/slavethread.cpp %%QT_EXAMPLEDIR%%/serialport/blockingslave/slavethread.h %%QT_EXAMPLEDIR%%/serialport/cenumerator/cenumerator.pro %%QT_EXAMPLEDIR%%/serialport/cenumerator/main.cpp %%QT_EXAMPLEDIR%%/serialport/creaderasync/creaderasync.pro %%QT_EXAMPLEDIR%%/serialport/creaderasync/main.cpp %%QT_EXAMPLEDIR%%/serialport/creaderasync/serialportreader.cpp %%QT_EXAMPLEDIR%%/serialport/creaderasync/serialportreader.h %%QT_EXAMPLEDIR%%/serialport/creadersync/creadersync.pro %%QT_EXAMPLEDIR%%/serialport/creadersync/main.cpp %%QT_EXAMPLEDIR%%/serialport/cwriterasync/cwriterasync.pro %%QT_EXAMPLEDIR%%/serialport/cwriterasync/main.cpp %%QT_EXAMPLEDIR%%/serialport/cwriterasync/serialportwriter.cpp %%QT_EXAMPLEDIR%%/serialport/cwriterasync/serialportwriter.h %%QT_EXAMPLEDIR%%/serialport/cwritersync/cwritersync.pro %%QT_EXAMPLEDIR%%/serialport/cwritersync/main.cpp %%QT_EXAMPLEDIR%%/serialport/doc/blockingmaster.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/blockingslave.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/cenumerator.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/creaderasync.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/creadersync.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/cwriterasync.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/cwritersync.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/enumerator.qdoc %%QT_EXAMPLEDIR%%/serialport/doc/terminal.qdoc %%QT_EXAMPLEDIR%%/serialport/enumerator/enumerator.pro %%QT_EXAMPLEDIR%%/serialport/enumerator/main.cpp %%QT_EXAMPLEDIR%%/serialport/master/dialog.cpp %%QT_EXAMPLEDIR%%/serialport/master/dialog.h %%QT_EXAMPLEDIR%%/serialport/master/main.cpp %%QT_EXAMPLEDIR%%/serialport/master/master.pro %%QT_EXAMPLEDIR%%/serialport/serialport.pro %%QT_EXAMPLEDIR%%/serialport/slave/dialog.cpp %%QT_EXAMPLEDIR%%/serialport/slave/dialog.h %%QT_EXAMPLEDIR%%/serialport/slave/main.cpp %%QT_EXAMPLEDIR%%/serialport/slave/slave.pro %%QT_EXAMPLEDIR%%/serialport/slave/slavethread.cpp %%QT_EXAMPLEDIR%%/serialport/slave/slavethread.h %%QT_EXAMPLEDIR%%/serialport/terminal/console.cpp %%QT_EXAMPLEDIR%%/serialport/terminal/console.h %%QT_EXAMPLEDIR%%/serialport/terminal/images/application-exit.png %%QT_EXAMPLEDIR%%/serialport/terminal/images/clear.png %%QT_EXAMPLEDIR%%/serialport/terminal/images/connect.png %%QT_EXAMPLEDIR%%/serialport/terminal/images/disconnect.png %%QT_EXAMPLEDIR%%/serialport/terminal/images/settings.png %%QT_EXAMPLEDIR%%/serialport/terminal/main.cpp %%QT_EXAMPLEDIR%%/serialport/terminal/mainwindow.cpp %%QT_EXAMPLEDIR%%/serialport/terminal/mainwindow.h %%QT_EXAMPLEDIR%%/serialport/terminal/mainwindow.ui %%QT_EXAMPLEDIR%%/serialport/terminal/settingsdialog.cpp %%QT_EXAMPLEDIR%%/serialport/terminal/settingsdialog.h %%QT_EXAMPLEDIR%%/serialport/terminal/settingsdialog.ui %%QT_EXAMPLEDIR%%/serialport/terminal/terminal.pro %%QT_EXAMPLEDIR%%/serialport/terminal/terminal.qrc %%QT_EXAMPLEDIR%%/speech/hello_speak/doc/images/hellospeak-example.png %%QT_EXAMPLEDIR%%/speech/hello_speak/doc/src/hellospeakex.qdoc %%QT_EXAMPLEDIR%%/speech/hello_speak/hello_speak.pro %%QT_EXAMPLEDIR%%/speech/hello_speak/main.cpp %%QT_EXAMPLEDIR%%/speech/hello_speak/mainwindow.cpp %%QT_EXAMPLEDIR%%/speech/hello_speak/mainwindow.h %%QT_EXAMPLEDIR%%/speech/hello_speak/mainwindow.ui %%QT_EXAMPLEDIR%%/speech/speech.pro %%QT_EXAMPLEDIR%%/sql/README %%QT_EXAMPLEDIR%%/sql/books/bookdelegate.cpp %%QT_EXAMPLEDIR%%/sql/books/bookdelegate.h %%QT_EXAMPLEDIR%%/sql/books/books.pro %%QT_EXAMPLEDIR%%/sql/books/books.qrc %%QT_EXAMPLEDIR%%/sql/books/bookwindow.cpp %%QT_EXAMPLEDIR%%/sql/books/bookwindow.h %%QT_EXAMPLEDIR%%/sql/books/bookwindow.ui %%QT_EXAMPLEDIR%%/sql/books/images/star.png %%QT_EXAMPLEDIR%%/sql/books/initdb.h %%QT_EXAMPLEDIR%%/sql/books/main.cpp %%QT_EXAMPLEDIR%%/sql/cachedtable/cachedtable.pro %%QT_EXAMPLEDIR%%/sql/cachedtable/main.cpp %%QT_EXAMPLEDIR%%/sql/cachedtable/tableeditor.cpp %%QT_EXAMPLEDIR%%/sql/cachedtable/tableeditor.h %%QT_EXAMPLEDIR%%/sql/connection.h %%QT_EXAMPLEDIR%%/sql/doc/images/books-demo.png %%QT_EXAMPLEDIR%%/sql/doc/images/cachedtable-example.png %%QT_EXAMPLEDIR%%/sql/doc/images/drilldown-example.png %%QT_EXAMPLEDIR%%/sql/doc/images/masterdetail-example.png %%QT_EXAMPLEDIR%%/sql/doc/images/querymodel-example.png %%QT_EXAMPLEDIR%%/sql/doc/images/relationaltablemodel-example.png %%QT_EXAMPLEDIR%%/sql/doc/images/sql-widget-mapper.png %%QT_EXAMPLEDIR%%/sql/doc/images/sqlbrowser-demo.png %%QT_EXAMPLEDIR%%/sql/doc/images/tablemodel-example.png %%QT_EXAMPLEDIR%%/sql/doc/images/widgetmapper-sql-mapping-table.png %%QT_EXAMPLEDIR%%/sql/doc/images/widgetmapper-sql-mapping.png %%QT_EXAMPLEDIR%%/sql/doc/src/books.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/cachedtable.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/drilldown.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/masterdetail.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/querymodel.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/relationaltablemodel.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/sqlbrowser.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/sqlwidgetmapper.qdoc %%QT_EXAMPLEDIR%%/sql/doc/src/tablemodel.qdoc %%QT_EXAMPLEDIR%%/sql/drilldown/drilldown.pro %%QT_EXAMPLEDIR%%/sql/drilldown/drilldown.qrc %%QT_EXAMPLEDIR%%/sql/drilldown/imageitem.cpp %%QT_EXAMPLEDIR%%/sql/drilldown/imageitem.h %%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-creator.png %%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-logo.png %%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-project.png %%QT_EXAMPLEDIR%%/sql/drilldown/images/qt-quick.png %%QT_EXAMPLEDIR%%/sql/drilldown/informationwindow.cpp %%QT_EXAMPLEDIR%%/sql/drilldown/informationwindow.h %%QT_EXAMPLEDIR%%/sql/drilldown/main.cpp %%QT_EXAMPLEDIR%%/sql/drilldown/view.cpp %%QT_EXAMPLEDIR%%/sql/drilldown/view.h %%QT_EXAMPLEDIR%%/sql/masterdetail/albumdetails.xml %%QT_EXAMPLEDIR%%/sql/masterdetail/database.h %%QT_EXAMPLEDIR%%/sql/masterdetail/dialog.cpp %%QT_EXAMPLEDIR%%/sql/masterdetail/dialog.h %%QT_EXAMPLEDIR%%/sql/masterdetail/images/icon.png %%QT_EXAMPLEDIR%%/sql/masterdetail/images/image.png %%QT_EXAMPLEDIR%%/sql/masterdetail/main.cpp %%QT_EXAMPLEDIR%%/sql/masterdetail/mainwindow.cpp %%QT_EXAMPLEDIR%%/sql/masterdetail/mainwindow.h %%QT_EXAMPLEDIR%%/sql/masterdetail/masterdetail.pro %%QT_EXAMPLEDIR%%/sql/masterdetail/masterdetail.qrc %%QT_EXAMPLEDIR%%/sql/querymodel/customsqlmodel.cpp %%QT_EXAMPLEDIR%%/sql/querymodel/customsqlmodel.h %%QT_EXAMPLEDIR%%/sql/querymodel/editablesqlmodel.cpp %%QT_EXAMPLEDIR%%/sql/querymodel/editablesqlmodel.h %%QT_EXAMPLEDIR%%/sql/querymodel/main.cpp %%QT_EXAMPLEDIR%%/sql/querymodel/querymodel.pro %%QT_EXAMPLEDIR%%/sql/relationaltablemodel/relationaltablemodel.cpp %%QT_EXAMPLEDIR%%/sql/relationaltablemodel/relationaltablemodel.pro %%QT_EXAMPLEDIR%%/sql/sql.pro %%QT_EXAMPLEDIR%%/sql/sqlbrowser/browser.cpp %%QT_EXAMPLEDIR%%/sql/sqlbrowser/browser.h %%QT_EXAMPLEDIR%%/sql/sqlbrowser/browserwidget.ui %%QT_EXAMPLEDIR%%/sql/sqlbrowser/connectionwidget.cpp %%QT_EXAMPLEDIR%%/sql/sqlbrowser/connectionwidget.h %%QT_EXAMPLEDIR%%/sql/sqlbrowser/main.cpp %%QT_EXAMPLEDIR%%/sql/sqlbrowser/qsqlconnectiondialog.cpp %%QT_EXAMPLEDIR%%/sql/sqlbrowser/qsqlconnectiondialog.h %%QT_EXAMPLEDIR%%/sql/sqlbrowser/qsqlconnectiondialog.ui %%QT_EXAMPLEDIR%%/sql/sqlbrowser/sqlbrowser.pro %%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/main.cpp %%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/sqlwidgetmapper.pro %%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/window.cpp %%QT_EXAMPLEDIR%%/sql/sqlwidgetmapper/window.h %%QT_EXAMPLEDIR%%/sql/tablemodel/tablemodel.cpp %%QT_EXAMPLEDIR%%/sql/tablemodel/tablemodel.pro %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/delayedencoding.pro %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/delayedencoding.qrc %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/images/drag.png %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/images/example.svg %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/main.cpp %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/mimedata.cpp %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/mimedata.h %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/sourcewidget.cpp %%QT_EXAMPLEDIR%%/svg/draganddrop/delayedencoding/sourcewidget.h %%QT_EXAMPLEDIR%%/svg/draganddrop/draganddrop.pro %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/contenttab.cpp %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/contenttab.h %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/Explosion.wav %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/designer.png %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/monkey_on_64x64.png %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/data/sax.mp3 %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopservices.pro %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopservices.qrc %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopwidget.cpp %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/desktopwidget.h %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/linktab.cpp %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/linktab.h %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/main.cpp %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/browser.png %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/heart.svg %%QT_EXAMPLEDIR%%/svg/embedded/desktopservices/resources/message.png %%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/config.xml %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/demoapplication.cpp %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/demoapplication.h %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.cpp %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.h %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.pro %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/fluidlauncher.qrc %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/main.cpp %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/pictureflow.cpp %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/pictureflow.h %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/anomaly_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/concentriccircles.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/context2d_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/deform.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/desktopservices_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/digiflip.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/elasticnodes.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/embeddedsvgviewer.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/embeddedsvgviewer_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/flickable.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/flightinfo_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/fridgemagnets_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/ftp_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/lightmaps.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/mediaplayer.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/pathstroke.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlcalculator.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlclocks.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmldialcontrol.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmleasing.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlflickr.jpg %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmlphotoviewer.jpg %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/qmltwitter.jpg %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/raycasting.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/saxbookmarks_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/softkeys_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/spectrum.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/styledemo.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/styledemo_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/weatherinfo.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/wiggly.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/screenshots/wiggly_s60.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_1.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_2.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_3.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_4.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_5.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slides/demo_6.png %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slideshow.cpp %%QT_EXAMPLEDIR%%/svg/embedded/fluidlauncher/slideshow.h %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/README.txt %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-few-clouds.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-fog.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-haze.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-icy.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-overcast.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-showers.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-sleet.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-snow.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-storm.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-sunny-very-few-clouds.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-sunny.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/icons/weather-thundershower.svg %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/weatherinfo.cpp %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/weatherinfo.pro %%QT_EXAMPLEDIR%%/svg/embedded/weatherinfo/weatherinfo.qrc %%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.cpp %%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.h %%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.pro %%QT_EXAMPLEDIR%%/svg/embeddedsvgviewer/embeddedsvgviewer.qrc %%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/opengl/framebufferobject/bubbles.svg %%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/designer.png %%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/framebufferobject.pro %%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/framebufferobject.qrc %%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/glwidget.cpp %%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/glwidget.h %%QT_EXAMPLEDIR%%/svg/opengl/framebufferobject/main.cpp %%QT_EXAMPLEDIR%%/svg/opengl/opengl.pro %%QT_EXAMPLEDIR%%/svg/richtext/richtext.pro %%QT_EXAMPLEDIR%%/svg/richtext/textobject/doc/images/textobject-example.png %%QT_EXAMPLEDIR%%/svg/richtext/textobject/doc/src/textobject.qdoc %%QT_EXAMPLEDIR%%/svg/richtext/textobject/files/heart.svg %%QT_EXAMPLEDIR%%/svg/richtext/textobject/main.cpp %%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.pro %%QT_EXAMPLEDIR%%/svg/richtext/textobject/window.cpp %%QT_EXAMPLEDIR%%/svg/richtext/textobject/window.h %%QT_EXAMPLEDIR%%/svg/svg.pro %%QT_EXAMPLEDIR%%/svg/svggenerator/displaywidget.cpp %%QT_EXAMPLEDIR%%/svg/svggenerator/displaywidget.h %%QT_EXAMPLEDIR%%/svg/svggenerator/doc/images/svggenerator-example.png %%QT_EXAMPLEDIR%%/svg/svggenerator/doc/src/svggenerator.qdoc %%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.pro %%QT_EXAMPLEDIR%%/svg/svggenerator/svggenerator.qrc %%QT_EXAMPLEDIR%%/svg/svggenerator/window.cpp %%QT_EXAMPLEDIR%%/svg/svggenerator/window.h %%QT_EXAMPLEDIR%%/svg/svgviewer/doc/images/svgviewer-example.png %%QT_EXAMPLEDIR%%/svg/svgviewer/doc/src/svgviewer.qdoc %%QT_EXAMPLEDIR%%/svg/svgviewer/exportdialog.cpp %%QT_EXAMPLEDIR%%/svg/svgviewer/exportdialog.h %%QT_EXAMPLEDIR%%/svg/svgviewer/files/bubbles.svg %%QT_EXAMPLEDIR%%/svg/svgviewer/files/cubic.svg %%QT_EXAMPLEDIR%%/svg/svgviewer/files/spheres.svg %%QT_EXAMPLEDIR%%/svg/svgviewer/main.cpp %%QT_EXAMPLEDIR%%/svg/svgviewer/mainwindow.cpp %%QT_EXAMPLEDIR%%/svg/svgviewer/mainwindow.h %%QT_EXAMPLEDIR%%/svg/svgviewer/svgview.cpp %%QT_EXAMPLEDIR%%/svg/svgviewer/svgview.h %%QT_EXAMPLEDIR%%/svg/svgviewer/svgviewer.pro %%QT_EXAMPLEDIR%%/svg/svgviewer/svgviewer.qrc %%QT_EXAMPLEDIR%%/tutorials/alarms/AlarmDelegate.qml %%QT_EXAMPLEDIR%%/tutorials/alarms/AlarmDialog.qml %%QT_EXAMPLEDIR%%/tutorials/alarms/AlarmModel.qml %%QT_EXAMPLEDIR%%/tutorials/alarms/TumblerDelegate.qml %%QT_EXAMPLEDIR%%/tutorials/alarms/alarms.pro %%QT_EXAMPLEDIR%%/tutorials/alarms/main.cpp %%QT_EXAMPLEDIR%%/tutorials/alarms/main.qml %%QT_EXAMPLEDIR%%/tutorials/alarms/qml.qrc %%QT_EXAMPLEDIR%%/tutorials/alarms/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/uitools/doc/images/multipleinheritance-example.png %%QT_EXAMPLEDIR%%/uitools/doc/images/textfinder-example-userinterface.png %%QT_EXAMPLEDIR%%/uitools/doc/src/multipleinheritance.qdoc %%QT_EXAMPLEDIR%%/uitools/doc/src/textfinder.qdoc %%QT_EXAMPLEDIR%%/uitools/multipleinheritance/calculatorform.cpp %%QT_EXAMPLEDIR%%/uitools/multipleinheritance/calculatorform.h %%QT_EXAMPLEDIR%%/uitools/multipleinheritance/calculatorform.ui %%QT_EXAMPLEDIR%%/uitools/multipleinheritance/main.cpp %%QT_EXAMPLEDIR%%/uitools/multipleinheritance/multipleinheritance.pro %%QT_EXAMPLEDIR%%/uitools/textfinder/forms/input.txt %%QT_EXAMPLEDIR%%/uitools/textfinder/forms/textfinder.ui %%QT_EXAMPLEDIR%%/uitools/textfinder/main.cpp %%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.cpp %%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.h %%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.pro %%QT_EXAMPLEDIR%%/uitools/textfinder/textfinder.qrc %%QT_EXAMPLEDIR%%/uitools/uitools.pro %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/Basic.qml %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/basic-b2qt.qml %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/basic.pro %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/AutoScroller.qml %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/FloatingButton_Active.svg %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/FloatingButton_Available.svg %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/FloatingButton_Unavailable.svg %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/HandwritingModeButton.qml %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/TextArea.qml %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/content/TextField.qml %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/demo.qrc %%QT_EXAMPLEDIR%%/virtualkeyboard/basic/main.cpp %%QT_EXAMPLEDIR%%/virtualkeyboard/virtualkeyboard.pro %%QT_EXAMPLEDIR%%/vulkan/doc/images/hellovulkancubes.png %%QT_EXAMPLEDIR%%/vulkan/doc/images/hellovulkantexture.png %%QT_EXAMPLEDIR%%/vulkan/doc/images/hellovulkantriangle.png %%QT_EXAMPLEDIR%%/vulkan/doc/images/hellovulkanwidget.png %%QT_EXAMPLEDIR%%/vulkan/doc/images/hellovulkanwindow.png %%QT_EXAMPLEDIR%%/vulkan/doc/src/hellovulkancubes.qdoc %%QT_EXAMPLEDIR%%/vulkan/doc/src/hellovulkantexture.qdoc %%QT_EXAMPLEDIR%%/vulkan/doc/src/hellovulkantriangle.qdoc %%QT_EXAMPLEDIR%%/vulkan/doc/src/hellovulkanwidget.qdoc %%QT_EXAMPLEDIR%%/vulkan/doc/src/hellovulkanwindow.qdoc %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/camera.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/camera.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color.frag %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color.vert %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color_frag.spv %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color_phong.frag %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color_phong.vert %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color_phong_frag.spv %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color_phong_vert.spv %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/color_vert.spv %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/hellovulkancubes.pro %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/hellovulkancubes.qrc %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/main.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/mainwindow.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/mainwindow.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/mesh.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/mesh.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/renderer.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/renderer.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/shader.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/shader.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/vulkanwindow.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkancubes/vulkanwindow.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/hellovulkantexture.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/hellovulkantexture.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/hellovulkantexture.pro %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/hellovulkantexture.qrc %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/main.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/qt256.png %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/texture.frag %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/texture.vert %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/texture_frag.spv %%QT_EXAMPLEDIR%%/vulkan/hellovulkantexture/texture_vert.spv %%QT_EXAMPLEDIR%%/vulkan/hellovulkantriangle/hellovulkantriangle.pro %%QT_EXAMPLEDIR%%/vulkan/hellovulkantriangle/hellovulkantriangle.qrc %%QT_EXAMPLEDIR%%/vulkan/hellovulkantriangle/main.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwidget/hellovulkanwidget.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwidget/hellovulkanwidget.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwidget/hellovulkanwidget.pro %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwidget/hellovulkanwidget.qrc %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwidget/main.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwindow/hellovulkanwindow.cpp %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwindow/hellovulkanwindow.h %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwindow/hellovulkanwindow.pro %%QT_EXAMPLEDIR%%/vulkan/hellovulkanwindow/main.cpp %%QT_EXAMPLEDIR%%/vulkan/shared/block.buf %%QT_EXAMPLEDIR%%/vulkan/shared/block.txt %%QT_EXAMPLEDIR%%/vulkan/shared/color.frag %%QT_EXAMPLEDIR%%/vulkan/shared/color.vert %%QT_EXAMPLEDIR%%/vulkan/shared/color_frag.spv %%QT_EXAMPLEDIR%%/vulkan/shared/color_vert.spv %%QT_EXAMPLEDIR%%/vulkan/shared/objconvert.js %%QT_EXAMPLEDIR%%/vulkan/shared/qt_logo.buf %%QT_EXAMPLEDIR%%/vulkan/shared/qt_logo.txt %%QT_EXAMPLEDIR%%/vulkan/shared/trianglerenderer.cpp %%QT_EXAMPLEDIR%%/vulkan/shared/trianglerenderer.h %%QT_EXAMPLEDIR%%/vulkan/vulkan.pro %%QT_EXAMPLEDIR%%/wayland/custom-extension/client-common/customextension.cpp %%QT_EXAMPLEDIR%%/wayland/custom-extension/client-common/customextension.h %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/compositor.pro %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/compositor.qrc %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/customextension.cpp %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/customextension.h %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/images/background.png %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/main.cpp %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/qml/Screen.qml %%QT_EXAMPLEDIR%%/wayland/custom-extension/compositor/qml/main.qml %%QT_EXAMPLEDIR%%/wayland/custom-extension/cpp-client/cpp-client.pro %%QT_EXAMPLEDIR%%/wayland/custom-extension/cpp-client/main.cpp %%QT_EXAMPLEDIR%%/wayland/custom-extension/custom-extension.pro %%QT_EXAMPLEDIR%%/wayland/custom-extension/protocol/custom.xml %%QT_EXAMPLEDIR%%/wayland/custom-extension/qml-client/main.cpp %%QT_EXAMPLEDIR%%/wayland/custom-extension/qml-client/main.qml %%QT_EXAMPLEDIR%%/wayland/custom-extension/qml-client/qml-client.pro %%QT_EXAMPLEDIR%%/wayland/custom-extension/qml-client/qml.qrc %%QT_EXAMPLEDIR%%/wayland/hwlayer-compositor/hwlayer-compositor.pro %%QT_EXAMPLEDIR%%/wayland/hwlayer-compositor/hwlayer-compositor.qrc %%QT_EXAMPLEDIR%%/wayland/hwlayer-compositor/main.cpp %%QT_EXAMPLEDIR%%/wayland/hwlayer-compositor/main.qml %%QT_EXAMPLEDIR%%/wayland/ivi-compositor/doc/src/ivi-compositor.qdoc %%QT_EXAMPLEDIR%%/wayland/ivi-compositor/ivi-compositor.pro %%QT_EXAMPLEDIR%%/wayland/ivi-compositor/ivi-compositor.qrc %%QT_EXAMPLEDIR%%/wayland/ivi-compositor/main.cpp %%QT_EXAMPLEDIR%%/wayland/ivi-compositor/main.qml %%QT_EXAMPLEDIR%%/wayland/minimal-cpp/README %%QT_EXAMPLEDIR%%/wayland/minimal-cpp/compositor.cpp %%QT_EXAMPLEDIR%%/wayland/minimal-cpp/compositor.h %%QT_EXAMPLEDIR%%/wayland/minimal-cpp/main.cpp %%QT_EXAMPLEDIR%%/wayland/minimal-cpp/minimal-cpp.pro %%QT_EXAMPLEDIR%%/wayland/minimal-cpp/window.cpp %%QT_EXAMPLEDIR%%/wayland/minimal-cpp/window.h %%QT_EXAMPLEDIR%%/wayland/minimal-qml/doc/src/minimal-qml.qdoc %%QT_EXAMPLEDIR%%/wayland/minimal-qml/main.cpp %%QT_EXAMPLEDIR%%/wayland/minimal-qml/main.qml %%QT_EXAMPLEDIR%%/wayland/minimal-qml/minimal-qml.pro %%QT_EXAMPLEDIR%%/wayland/minimal-qml/minimal-qml.qrc %%QT_EXAMPLEDIR%%/wayland/multi-output/doc/src/multi-output.qdoc %%QT_EXAMPLEDIR%%/wayland/multi-output/images/background.jpg %%QT_EXAMPLEDIR%%/wayland/multi-output/main.cpp %%QT_EXAMPLEDIR%%/wayland/multi-output/multi-output.pro %%QT_EXAMPLEDIR%%/wayland/multi-output/multi-output.qrc %%QT_EXAMPLEDIR%%/wayland/multi-output/qml/GridScreen.qml %%QT_EXAMPLEDIR%%/wayland/multi-output/qml/ShellChrome.qml %%QT_EXAMPLEDIR%%/wayland/multi-output/qml/ShellScreen.qml %%QT_EXAMPLEDIR%%/wayland/multi-output/qml/main.qml %%QT_EXAMPLEDIR%%/wayland/multi-screen/doc/src/multi-screen.qdoc %%QT_EXAMPLEDIR%%/wayland/multi-screen/main.cpp %%QT_EXAMPLEDIR%%/wayland/multi-screen/multi-screen.pro %%QT_EXAMPLEDIR%%/wayland/multi-screen/multi-screen.qrc %%QT_EXAMPLEDIR%%/wayland/multi-screen/qml/Chrome.qml %%QT_EXAMPLEDIR%%/wayland/multi-screen/qml/Screen.qml %%QT_EXAMPLEDIR%%/wayland/multi-screen/qml/main.qml %%QT_EXAMPLEDIR%%/wayland/overview-compositor/doc/src/overview-compositor.qdoc %%QT_EXAMPLEDIR%%/wayland/overview-compositor/main.cpp %%QT_EXAMPLEDIR%%/wayland/overview-compositor/main.qml %%QT_EXAMPLEDIR%%/wayland/overview-compositor/overview-compositor.pro %%QT_EXAMPLEDIR%%/wayland/overview-compositor/overview-compositor.qrc %%QT_EXAMPLEDIR%%/wayland/pure-qml/doc/src/pure-qml.qdoc %%QT_EXAMPLEDIR%%/wayland/pure-qml/images/background.jpg %%QT_EXAMPLEDIR%%/wayland/pure-qml/main.cpp %%QT_EXAMPLEDIR%%/wayland/pure-qml/pure-qml.pro %%QT_EXAMPLEDIR%%/wayland/pure-qml/pure-qml.qrc %%QT_EXAMPLEDIR%%/wayland/pure-qml/qml/Chrome.qml %%QT_EXAMPLEDIR%%/wayland/pure-qml/qml/Keyboard.qml %%QT_EXAMPLEDIR%%/wayland/pure-qml/qml/Screen.qml %%QT_EXAMPLEDIR%%/wayland/pure-qml/qml/main.qml %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/compositor.cpp %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/compositor.h %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/doc/src/qwindow-compositor.qdoc %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/main.cpp %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/qwindow-compositor.pro %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/qwindow-compositor.qrc %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/window.cpp %%QT_EXAMPLEDIR%%/wayland/qwindow-compositor/window.h %%QT_EXAMPLEDIR%%/wayland/server-buffer/README %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/compositor.pro %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/compositor.qrc %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/images/Siberischer_tiger_de_edit02.jpg %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/images/Siberischer_tiger_de_edit02.txt %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/images/background.png %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/main.cpp %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/qml/main.qml %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/sharebufferextension.cpp %%QT_EXAMPLEDIR%%/wayland/server-buffer/compositor/sharebufferextension.h %%QT_EXAMPLEDIR%%/wayland/server-buffer/cpp-client/cpp-client.pro %%QT_EXAMPLEDIR%%/wayland/server-buffer/cpp-client/main.cpp %%QT_EXAMPLEDIR%%/wayland/server-buffer/cpp-client/sharebufferextension.cpp %%QT_EXAMPLEDIR%%/wayland/server-buffer/cpp-client/sharebufferextension.h %%QT_EXAMPLEDIR%%/wayland/server-buffer/server-buffer.pro %%QT_EXAMPLEDIR%%/wayland/server-buffer/share-buffer.xml %%QT_EXAMPLEDIR%%/wayland/server-side-decoration/doc/src/server-side-decoration.qdoc %%QT_EXAMPLEDIR%%/wayland/server-side-decoration/main.cpp %%QT_EXAMPLEDIR%%/wayland/server-side-decoration/main.qml %%QT_EXAMPLEDIR%%/wayland/server-side-decoration/server-side-decoration.pro %%QT_EXAMPLEDIR%%/wayland/server-side-decoration/server-side-decoration.qrc %%QT_EXAMPLEDIR%%/wayland/spanning-screens/doc/src/spanning-screens.qdoc %%QT_EXAMPLEDIR%%/wayland/spanning-screens/main.cpp %%QT_EXAMPLEDIR%%/wayland/spanning-screens/main.qml %%QT_EXAMPLEDIR%%/wayland/spanning-screens/spanning-screens.pro %%QT_EXAMPLEDIR%%/wayland/spanning-screens/spanning-screens.qrc %%QT_EXAMPLEDIR%%/wayland/texture-sharing/README %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/compositor.qrc %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/custom-compositor.pro %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/images/background.png %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/images/car.ktx %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/images/qt4.astc %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/images/qt_logo.png %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/main.cpp %%QT_EXAMPLEDIR%%/wayland/texture-sharing/custom-compositor/qml/main.qml %%QT_EXAMPLEDIR%%/wayland/texture-sharing/minimal-compositor.qml %%QT_EXAMPLEDIR%%/wayland/texture-sharing/qml-client/main.cpp %%QT_EXAMPLEDIR%%/wayland/texture-sharing/qml-client/main.qml %%QT_EXAMPLEDIR%%/wayland/texture-sharing/qml-client/qml-client.pro %%QT_EXAMPLEDIR%%/wayland/texture-sharing/qml-client/qml-client.qrc %%QT_EXAMPLEDIR%%/wayland/texture-sharing/texture-sharing.pro %%QT_EXAMPLEDIR%%/wayland/wayland.pro %%QT_EXAMPLEDIR%%/webchannel/chatclient-html/chatclient-html.pro %%QT_EXAMPLEDIR%%/webchannel/chatclient-html/chatclient.html %%QT_EXAMPLEDIR%%/webchannel/chatclient-html/doc/images/chatclient-html.png %%QT_EXAMPLEDIR%%/webchannel/chatclient-html/doc/src/chatclient-html.qdoc %%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/LoginForm.ui.qml %%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/MainForm.ui.qml %%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/chatclient-qml.pro %%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/doc/images/chatclient-qml.png %%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/doc/src/chatclient-qml.qdoc %%QT_EXAMPLEDIR%%/webchannel/chatclient-qml/qmlchatclient.qml %%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/chatserver-cpp.pro %%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/chatserver.cpp %%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/chatserver.h %%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/doc/images/chatserver-cpp.png %%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/doc/src/chatserver-cpp.qdoc %%QT_EXAMPLEDIR%%/webchannel/chatserver-cpp/main.cpp %%QT_EXAMPLEDIR%%/webchannel/exampleassets.pri %%QT_EXAMPLEDIR%%/webchannel/nodejs/README %%QT_EXAMPLEDIR%%/webchannel/nodejs/chatclient.js %%QT_EXAMPLEDIR%%/webchannel/nodejs/nodejs.pro %%QT_EXAMPLEDIR%%/webchannel/nodejs/package.json %%QT_EXAMPLEDIR%%/webchannel/qwclient/README %%QT_EXAMPLEDIR%%/webchannel/qwclient/package.json %%QT_EXAMPLEDIR%%/webchannel/qwclient/qwclient.js %%QT_EXAMPLEDIR%%/webchannel/qwclient/qwclient.pro %%QT_EXAMPLEDIR%%/webchannel/shared/qwebchannel.js %%QT_EXAMPLEDIR%%/webchannel/shared/websocketclientwrapper.cpp %%QT_EXAMPLEDIR%%/webchannel/shared/websocketclientwrapper.h %%QT_EXAMPLEDIR%%/webchannel/shared/websockettransport.cpp %%QT_EXAMPLEDIR%%/webchannel/shared/websockettransport.h %%QT_EXAMPLEDIR%%/webchannel/standalone/core.h %%QT_EXAMPLEDIR%%/webchannel/standalone/dialog.cpp %%QT_EXAMPLEDIR%%/webchannel/standalone/dialog.h %%QT_EXAMPLEDIR%%/webchannel/standalone/dialog.ui %%QT_EXAMPLEDIR%%/webchannel/standalone/doc/images/standalone-screenshot.png %%QT_EXAMPLEDIR%%/webchannel/standalone/doc/src/standalone.qdoc %%QT_EXAMPLEDIR%%/webchannel/standalone/index.html %%QT_EXAMPLEDIR%%/webchannel/standalone/main.cpp %%QT_EXAMPLEDIR%%/webchannel/standalone/standalone.pro %%QT_EXAMPLEDIR%%/webchannel/webchannel.pro %%QT_EXAMPLEDIR%%/webengine/customdialogs/MessageRectangle.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/SwitchButton.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/WebView.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/customdialogs.pro %%QT_EXAMPLEDIR%%/webengine/customdialogs/customdialogs.qrc %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-auth1.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-auth2.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-color1.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-color2.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-file1.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-file2.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-menu.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-prompt1.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-prompt2.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs-tooltip.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/images/customdialogs.png %%QT_EXAMPLEDIR%%/webengine/customdialogs/doc/src/customdialogs.qdoc %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/Authentication.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/AuthenticationForm.ui.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/Button.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/ColorCell.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/ColorPicker.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/ColorPickerForm.ui.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/FilePicker.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/FilePickerForm.ui.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/FileRow.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/JavaScript.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/JavaScriptForm.ui.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/Menu.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/forms/MenuForm.ui.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/icon.svg %%QT_EXAMPLEDIR%%/webengine/customdialogs/index.html %%QT_EXAMPLEDIR%%/webengine/customdialogs/main.cpp %%QT_EXAMPLEDIR%%/webengine/customdialogs/main.qml %%QT_EXAMPLEDIR%%/webengine/customdialogs/server.cpp %%QT_EXAMPLEDIR%%/webengine/customdialogs/server.h %%QT_EXAMPLEDIR%%/webengine/customdialogs/style.css %%QT_EXAMPLEDIR%%/webengine/lifecycle/WebBrowser.qml %%QT_EXAMPLEDIR%%/webengine/lifecycle/WebTab.qml %%QT_EXAMPLEDIR%%/webengine/lifecycle/WebTabBar.qml %%QT_EXAMPLEDIR%%/webengine/lifecycle/WebTabButton.qml %%QT_EXAMPLEDIR%%/webengine/lifecycle/WebTabStack.qml %%QT_EXAMPLEDIR%%/webengine/lifecycle/WebToolButton.qml %%QT_EXAMPLEDIR%%/webengine/lifecycle/doc/images/lifecycle-automatic.png %%QT_EXAMPLEDIR%%/webengine/lifecycle/doc/images/lifecycle-manual.png %%QT_EXAMPLEDIR%%/webengine/lifecycle/doc/images/lifecycle.png %%QT_EXAMPLEDIR%%/webengine/lifecycle/doc/src/lifecycle.qdoc %%QT_EXAMPLEDIR%%/webengine/lifecycle/lifecycle.pro %%QT_EXAMPLEDIR%%/webengine/lifecycle/main.cpp %%QT_EXAMPLEDIR%%/webengine/lifecycle/qtquickcontrols2.conf %%QT_EXAMPLEDIR%%/webengine/lifecycle/resources.qrc %%QT_EXAMPLEDIR%%/webengine/minimal/doc/src/minimal.qdoc %%QT_EXAMPLEDIR%%/webengine/minimal/main.cpp %%QT_EXAMPLEDIR%%/webengine/minimal/main.qml %%QT_EXAMPLEDIR%%/webengine/minimal/minimal.pro %%QT_EXAMPLEDIR%%/webengine/minimal/qml.qrc %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/ApplicationRoot.qml %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/BrowserDialog.qml %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/BrowserWindow.qml %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/DownloadView.qml %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/FindBar.qml %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/FullScreenNotification.qml %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/doc/images/quicknanobrowser-demo.jpg %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/doc/src/quicknanobrowser.qdoc %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/icons/3rdparty/COPYING %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/icons/3rdparty/go-next.png %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/icons/3rdparty/go-previous.png %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/icons/3rdparty/process-stop.png %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/icons/3rdparty/qt_attribution.json %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/icons/3rdparty/view-refresh.png %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/main.cpp %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/quicknanobrowser.pro %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/resources.qrc %%QT_EXAMPLEDIR%%/webengine/quicknanobrowser/utils.h %%QT_EXAMPLEDIR%%/webengine/recipebrowser/doc/images/recipebrowser-demo.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/doc/src/recipebrowser.qdoc %%QT_EXAMPLEDIR%%/webengine/recipebrowser/main.cpp %%QT_EXAMPLEDIR%%/webengine/recipebrowser/recipebrowser.pro %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/assets/3rdparty/MARKDOWN-LICENSE.txt %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/assets/3rdparty/MARKED-LICENSE.txt %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/assets/3rdparty/markdown.css %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/assets/3rdparty/marked.js %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/assets/3rdparty/qt_attribution.json %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/assets/custom.css %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/assets/custom.js %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/burger.html %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/cupcakes.html %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/images/burger.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/images/cupcakes.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/images/pasta.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/images/pizza.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/images/skewers.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/images/soup.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/images/steak.jpg %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/pasta.html %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/pizza.html %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/skewers.html %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/soup.html %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/pages/steak.html %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/qml/RecipeList.qml %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/qml/main.qml %%QT_EXAMPLEDIR%%/webengine/recipebrowser/resources/resources.qrc %%QT_EXAMPLEDIR%%/webengine/webengine.pro %%QT_EXAMPLEDIR%%/webengine/webengineaction/doc/images/webengineaction-example.png %%QT_EXAMPLEDIR%%/webengine/webengineaction/doc/src/webengineaction.qdoc %%QT_EXAMPLEDIR%%/webengine/webengineaction/main.cpp %%QT_EXAMPLEDIR%%/webengine/webengineaction/main.qml %%QT_EXAMPLEDIR%%/webengine/webengineaction/qml.qrc %%QT_EXAMPLEDIR%%/webengine/webengineaction/webengineaction.pro %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/contentmanipulation.pro %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/doc/images/contentmanipulation-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/doc/src/contentmanipulation.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/jquery.min.js %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/jquery.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/mainwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/contentmanipulation/mainwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/3rdparty/COPYING %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/3rdparty/qt_attribution.json %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/3rdparty/view-refresh.png %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/cookiebrowser.pro %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/cookiebrowser.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/cookiedialog.ui %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/cookiewidget.ui %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/doc/images/cookiebrowser.png %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/doc/src/cookiebrowser.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/mainwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/mainwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/cookiebrowser/mainwindow.ui %%QT_EXAMPLEDIR%%/webenginewidgets/html2pdf/doc/images/html2pdf-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/html2pdf/doc/src/html2pdf.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/html2pdf/html2pdf.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/html2pdf/html2pdf.pro %%QT_EXAMPLEDIR%%/webenginewidgets/maps/doc/images/maps-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/maps/doc/src/maps.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/maps/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/maps/mainwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/maps/mainwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/maps/maps.pro %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/doc/images/markdowneditor-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/doc/src/markdowneditor.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/document.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/document.h %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/mainwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/mainwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/mainwindow.ui %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/markdowneditor.pro %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/previewpage.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/previewpage.h %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/3rdparty/MARKDOWN-LICENSE.txt %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/3rdparty/MARKED-LICENSE.txt %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/3rdparty/markdown.css %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/3rdparty/marked.js %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/3rdparty/qt_attribution.json %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/default.md %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/index.html %%QT_EXAMPLEDIR%%/webenginewidgets/markdowneditor/resources/markdowneditor.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/minimal/doc/images/minimal-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/minimal/doc/src/minimal.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/minimal/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/minimal/minimal.pro %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/data/data.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/data/icon.png %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/data/index.html %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/doc/images/notifications-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/doc/src/notifications.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/notificationpopup.h %%QT_EXAMPLEDIR%%/webenginewidgets/notifications/notifications.pro %%QT_EXAMPLEDIR%%/webenginewidgets/printme/data/data.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/printme/data/icon.svg %%QT_EXAMPLEDIR%%/webenginewidgets/printme/data/index.html %%QT_EXAMPLEDIR%%/webenginewidgets/printme/data/style.css %%QT_EXAMPLEDIR%%/webenginewidgets/printme/doc/images/printme-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/printme/doc/src/printme.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/printme/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/printme/printhandler.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/printme/printhandler.h %%QT_EXAMPLEDIR%%/webenginewidgets/printme/printme.pro %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/browser.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/browser.h %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/browserwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/browserwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/certificateerrordialog.ui %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/COPYING %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/dialog-error.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/edit-clear.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/go-bottom.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/go-next.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/go-previous.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/process-stop.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/qt_attribution.json %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/text-html.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/3rdparty/view-refresh.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/AppLogoColor.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/ninja.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/data/simplebrowser.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/doc/images/simplebrowser-model.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/doc/images/simplebrowser.png %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/doc/src/simplebrowser-model.qmodel %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/doc/src/simplebrowser.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/downloadmanagerwidget.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/downloadmanagerwidget.h %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/downloadmanagerwidget.ui %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/downloadwidget.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/downloadwidget.h %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/downloadwidget.ui %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/passworddialog.ui %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/simplebrowser.pro %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/tabwidget.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/tabwidget.h %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/webpage.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/webpage.h %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/webpopupwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/webpopupwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/webview.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/simplebrowser/webview.h %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/data/icon.svg %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/data/index.html %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/data/spellchecker.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/data/style.css %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/dict/de/README.txt %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/dict/de/de-DE.aff %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/dict/de/de-DE.dic %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/dict/en/README.txt %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/dict/en/en-US.aff %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/dict/en/en-US.dic %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/doc/images/spellchecker-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/doc/src/spellchecker.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/spellchecker.pro %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/webview.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/spellchecker/webview.h %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/3rdparty/COPYING %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/3rdparty/qt_attribution.json %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/3rdparty/view-refresh.png %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/doc/images/stylesheetbrowser.png %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/doc/src/stylesheetbrowser.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/mainwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/mainwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/mainwindow.ui %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/stylesheetbrowser.pro %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/stylesheetbrowser.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/stylesheetdialog.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/stylesheetdialog.h %%QT_EXAMPLEDIR%%/webenginewidgets/stylesheetbrowser/stylesheetdialog.ui %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/data/index.html %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/data/videoplayer.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/doc/images/videoplayer-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/doc/src/videoplayer.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/fullscreennotification.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/fullscreennotification.h %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/fullscreenwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/fullscreenwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/mainwindow.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/mainwindow.h %%QT_EXAMPLEDIR%%/webenginewidgets/videoplayer/videoplayer.pro %%QT_EXAMPLEDIR%%/webenginewidgets/webenginewidgets.pro %%QT_EXAMPLEDIR%%/webenginewidgets/webui/about.html %%QT_EXAMPLEDIR%%/webenginewidgets/webui/doc/images/webui-example.png %%QT_EXAMPLEDIR%%/webenginewidgets/webui/doc/src/webui.qdoc %%QT_EXAMPLEDIR%%/webenginewidgets/webui/main.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/webui/webui.pro %%QT_EXAMPLEDIR%%/webenginewidgets/webui/webui.qrc %%QT_EXAMPLEDIR%%/webenginewidgets/webui/webuihandler.cpp %%QT_EXAMPLEDIR%%/webenginewidgets/webui/webuihandler.h %%QT_EXAMPLEDIR%%/websockets/doc/echoclient.qdoc %%QT_EXAMPLEDIR%%/websockets/doc/echoserver.qdoc %%QT_EXAMPLEDIR%%/websockets/doc/examples.qdoc %%QT_EXAMPLEDIR%%/websockets/doc/images/echoclient-html-example.png %%QT_EXAMPLEDIR%%/websockets/doc/qmlwebsocketclient.qdoc %%QT_EXAMPLEDIR%%/websockets/doc/qmlwebsocketserver.qdoc %%QT_EXAMPLEDIR%%/websockets/doc/simplechat.qdoc %%QT_EXAMPLEDIR%%/websockets/doc/sslechoclient.qdoc %%QT_EXAMPLEDIR%%/websockets/doc/sslechoserver.qdoc %%QT_EXAMPLEDIR%%/websockets/echoclient/echoclient.cpp %%QT_EXAMPLEDIR%%/websockets/echoclient/echoclient.h %%QT_EXAMPLEDIR%%/websockets/echoclient/echoclient.pro %%QT_EXAMPLEDIR%%/websockets/echoclient/main.cpp %%QT_EXAMPLEDIR%%/websockets/echoserver/echoclient.html %%QT_EXAMPLEDIR%%/websockets/echoserver/echoserver.cpp %%QT_EXAMPLEDIR%%/websockets/echoserver/echoserver.h %%QT_EXAMPLEDIR%%/websockets/echoserver/echoserver.pro %%QT_EXAMPLEDIR%%/websockets/echoserver/main.cpp %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/data.qrc %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/main.cpp %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/qml/qmlwebsocketclient/main.qml %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketclient/qmlwebsocketclient.pro %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/data.qrc %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/main.cpp %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/qml/qmlwebsocketserver/main.qml %%QT_EXAMPLEDIR%%/websockets/qmlwebsocketserver/qmlwebsocketserver.pro %%QT_EXAMPLEDIR%%/websockets/simplechat/chatclient.html %%QT_EXAMPLEDIR%%/websockets/simplechat/chatserver.cpp %%QT_EXAMPLEDIR%%/websockets/simplechat/chatserver.h %%QT_EXAMPLEDIR%%/websockets/simplechat/main.cpp %%QT_EXAMPLEDIR%%/websockets/simplechat/simplechat.pro %%QT_EXAMPLEDIR%%/websockets/sslechoclient/main.cpp %%QT_EXAMPLEDIR%%/websockets/sslechoclient/sslechoclient.cpp %%QT_EXAMPLEDIR%%/websockets/sslechoclient/sslechoclient.h %%QT_EXAMPLEDIR%%/websockets/sslechoclient/sslechoclient.pro %%QT_EXAMPLEDIR%%/websockets/sslechoserver/localhost.cert %%QT_EXAMPLEDIR%%/websockets/sslechoserver/localhost.key %%QT_EXAMPLEDIR%%/websockets/sslechoserver/main.cpp %%QT_EXAMPLEDIR%%/websockets/sslechoserver/securesocketclient.qrc %%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoclient.html %%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoserver.cpp %%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoserver.h %%QT_EXAMPLEDIR%%/websockets/sslechoserver/sslechoserver.pro %%QT_EXAMPLEDIR%%/websockets/websockets.pro %%QT_EXAMPLEDIR%%/webview/minibrowser/+android/LoadProgressStyle.qml %%QT_EXAMPLEDIR%%/webview/minibrowser/LoadProgressStyle.qml %%QT_EXAMPLEDIR%%/webview/minibrowser/doc/images/webview-example.jpg %%QT_EXAMPLEDIR%%/webview/minibrowser/doc/src/minibrowser.qdoc %%QT_EXAMPLEDIR%%/webview/minibrowser/images/left-32.png %%QT_EXAMPLEDIR%%/webview/minibrowser/images/refresh-32.png %%QT_EXAMPLEDIR%%/webview/minibrowser/images/right-32.png %%QT_EXAMPLEDIR%%/webview/minibrowser/images/stop-32.png %%QT_EXAMPLEDIR%%/webview/minibrowser/ios/Info.plist %%QT_EXAMPLEDIR%%/webview/minibrowser/macos/Info.plist %%QT_EXAMPLEDIR%%/webview/minibrowser/main.cpp %%QT_EXAMPLEDIR%%/webview/minibrowser/main.qml %%QT_EXAMPLEDIR%%/webview/minibrowser/minibrowser.pro %%QT_EXAMPLEDIR%%/webview/minibrowser/qml.qrc %%QT_EXAMPLEDIR%%/webview/webview.pro %%QT_EXAMPLEDIR%%/widgets/animation/README %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/animatedtiles.pro %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/animatedtiles.qrc %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/Time-For-Lunch-2.jpg %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/centered.png %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/ellipse.png %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/figure8.png %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/kinetic.png %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/random.png %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/images/tile.png %%QT_EXAMPLEDIR%%/widgets/animation/animatedtiles/main.cpp %%QT_EXAMPLEDIR%%/widgets/animation/animation.pro %%QT_EXAMPLEDIR%%/widgets/animation/easing/animation.h %%QT_EXAMPLEDIR%%/widgets/animation/easing/easing.pro %%QT_EXAMPLEDIR%%/widgets/animation/easing/easing.qrc %%QT_EXAMPLEDIR%%/widgets/animation/easing/form.ui %%QT_EXAMPLEDIR%%/widgets/animation/easing/images/qt-logo.png %%QT_EXAMPLEDIR%%/widgets/animation/easing/main.cpp %%QT_EXAMPLEDIR%%/widgets/animation/easing/window.cpp %%QT_EXAMPLEDIR%%/widgets/animation/easing/window.h %%QT_EXAMPLEDIR%%/widgets/animation/moveblocks/main.cpp %%QT_EXAMPLEDIR%%/widgets/animation/moveblocks/moveblocks.pro %%QT_EXAMPLEDIR%%/widgets/animation/states/accessories-dictionary.png %%QT_EXAMPLEDIR%%/widgets/animation/states/akregator.png %%QT_EXAMPLEDIR%%/widgets/animation/states/digikam.png %%QT_EXAMPLEDIR%%/widgets/animation/states/help-browser.png %%QT_EXAMPLEDIR%%/widgets/animation/states/k3b.png %%QT_EXAMPLEDIR%%/widgets/animation/states/kchart.png %%QT_EXAMPLEDIR%%/widgets/animation/states/main.cpp %%QT_EXAMPLEDIR%%/widgets/animation/states/states.pro %%QT_EXAMPLEDIR%%/widgets/animation/states/states.qrc %%QT_EXAMPLEDIR%%/widgets/animation/stickman/animation.cpp %%QT_EXAMPLEDIR%%/widgets/animation/stickman/animation.h %%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/chilling.bin %%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/dancing.bin %%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/dead.bin %%QT_EXAMPLEDIR%%/widgets/animation/stickman/animations/jumping.bin %%QT_EXAMPLEDIR%%/widgets/animation/stickman/graphicsview.cpp %%QT_EXAMPLEDIR%%/widgets/animation/stickman/graphicsview.h %%QT_EXAMPLEDIR%%/widgets/animation/stickman/lifecycle.cpp %%QT_EXAMPLEDIR%%/widgets/animation/stickman/lifecycle.h %%QT_EXAMPLEDIR%%/widgets/animation/stickman/main.cpp %%QT_EXAMPLEDIR%%/widgets/animation/stickman/node.cpp %%QT_EXAMPLEDIR%%/widgets/animation/stickman/node.h %%QT_EXAMPLEDIR%%/widgets/animation/stickman/rectbutton.cpp %%QT_EXAMPLEDIR%%/widgets/animation/stickman/rectbutton.h %%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.cpp %%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.h %%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.pro %%QT_EXAMPLEDIR%%/widgets/animation/stickman/stickman.qrc %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/animationmanager.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/animationmanager.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/boat.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/boat.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/boat_p.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/bomb.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/bomb.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/data.xml %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/graphicsscene.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/graphicsscene.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/main.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/background.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/boat.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/bomb.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step1.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step2.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step3.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/boat/step4.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step1.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step2.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step3.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/explosion/submarine/step4.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/submarine.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/surface.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/big/torpedo.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/background-n810.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/background.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/boat.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/bomb.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/sand.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/see.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/sky.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/sub-attaq.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/submarine.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/surface.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/scalable/torpedo.svg %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/background.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/boat.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/bomb.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/submarine.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/surface.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/small/torpedo.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-a.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-a2.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-b.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-dash.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-excl.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-q.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-s.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-t.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-t2.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pics/welcome/logo-u.png %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pixmapitem.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/pixmapitem.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/progressitem.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/progressitem.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/qanimationstate.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/qanimationstate.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/states.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/states.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/sub-attaq.pro %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/subattaq.qrc %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/submarine.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/submarine.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/submarine_p.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/textinformationitem.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/textinformationitem.h %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/torpedo.cpp %%QT_EXAMPLEDIR%%/widgets/animation/sub-attaq/torpedo.h %%QT_EXAMPLEDIR%%/widgets/desktop/README %%QT_EXAMPLEDIR%%/widgets/desktop/desktop.pro %%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/main.cpp %%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/screenshot.cpp %%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/screenshot.h %%QT_EXAMPLEDIR%%/widgets/desktop/screenshot/screenshot.pro %%QT_EXAMPLEDIR%%/widgets/desktop/systray/doc/images/systemtray-editor.png %%QT_EXAMPLEDIR%%/widgets/desktop/systray/doc/images/systemtray-example.png %%QT_EXAMPLEDIR%%/widgets/desktop/systray/doc/src/systray.qdoc %%QT_EXAMPLEDIR%%/widgets/desktop/systray/images/bad.png %%QT_EXAMPLEDIR%%/widgets/desktop/systray/images/heart.png %%QT_EXAMPLEDIR%%/widgets/desktop/systray/images/trash.png %%QT_EXAMPLEDIR%%/widgets/desktop/systray/main.cpp %%QT_EXAMPLEDIR%%/widgets/desktop/systray/systray.pro %%QT_EXAMPLEDIR%%/widgets/desktop/systray/systray.qrc %%QT_EXAMPLEDIR%%/widgets/desktop/systray/window.cpp %%QT_EXAMPLEDIR%%/widgets/desktop/systray/window.h %%QT_EXAMPLEDIR%%/widgets/dialogs/README %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.h %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.pro %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/classwizard.qrc %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/background.png %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/banner.png %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/logo1.png %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/logo2.png %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/logo3.png %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/watermark1.png %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/images/watermark2.png %%QT_EXAMPLEDIR%%/widgets/dialogs/classwizard/main.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/dialogs.pro %%QT_EXAMPLEDIR%%/widgets/dialogs/extension/extension.pro %%QT_EXAMPLEDIR%%/widgets/dialogs/extension/finddialog.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/extension/finddialog.h %%QT_EXAMPLEDIR%%/widgets/dialogs/extension/main.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/findfiles.pro %%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/main.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/window.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/findfiles/window.h %%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/images/logo.png %%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/images/watermark.png %%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.h %%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.pro %%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/licensewizard.qrc %%QT_EXAMPLEDIR%%/widgets/dialogs/licensewizard/main.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/dialog.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/dialog.h %%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/main.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/standarddialogs/standarddialogs.pro %%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/main.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/tabdialog.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/tabdialog.h %%QT_EXAMPLEDIR%%/widgets/dialogs/tabdialog/tabdialog.pro %%QT_EXAMPLEDIR%%/widgets/dialogs/trivialwizard/trivialwizard.cpp %%QT_EXAMPLEDIR%%/widgets/dialogs/trivialwizard/trivialwizard.pro %%QT_EXAMPLEDIR%%/widgets/doc/dropsite.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-adddialog.png %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-classes.png %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-editdialog.png %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-filemenu.png %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-newaddresstab.png %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-signals.png %%QT_EXAMPLEDIR%%/widgets/doc/images/addressbook-toolsmenu.png %%QT_EXAMPLEDIR%%/widgets/doc/images/analogclock-viewport.png %%QT_EXAMPLEDIR%%/widgets/doc/images/basicgraphicslayouts-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/basiclayouts-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/calendar-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/collidingmice-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-country.png %%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-dirmodel.png %%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-qdirmodel.png %%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example-word.png %%QT_EXAMPLEDIR%%/widgets/doc/images/completer-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/draganddroppuzzle-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/dropsite-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/echoplugin.png %%QT_EXAMPLEDIR%%/widgets/doc/images/echopluginexample.png %%QT_EXAMPLEDIR%%/widgets/doc/images/factorial-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/fademessageeffect-example-faded.png %%QT_EXAMPLEDIR%%/widgets/doc/images/fademessageeffect-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/fridgemagnets-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/geometry.png %%QT_EXAMPLEDIR%%/widgets/doc/images/graphicsanchorlayout-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/graphicsflowlayout-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/graphicssimpleanchorlayout-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_monkey.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_monkey_mess.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_16x16.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_17x17.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_32x32.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_33x33.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_48x48.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_64x64.png %%QT_EXAMPLEDIR%%/widgets/doc/images/icons_qt_extended_8x8.png %%QT_EXAMPLEDIR%%/widgets/doc/images/imagegestures-example.jpg %%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-fit_to_window_1.png %%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-fit_to_window_2.png %%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-original_size.png %%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-zoom_in_1.png %%QT_EXAMPLEDIR%%/widgets/doc/images/imageviewer-zoom_in_2.png %%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-indexes.png %%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-items.png %%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-model.png %%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel-values.png %%QT_EXAMPLEDIR%%/widgets/doc/images/itemviews-editabletreemodel.png %%QT_EXAMPLEDIR%%/widgets/doc/images/itemviewspuzzle-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/layout1.png %%QT_EXAMPLEDIR%%/widgets/doc/images/layout2.png %%QT_EXAMPLEDIR%%/widgets/doc/images/mainwindow-demo.png %%QT_EXAMPLEDIR%%/widgets/doc/images/mousebutton-buttontester.png %%QT_EXAMPLEDIR%%/widgets/doc/images/notepad.png %%QT_EXAMPLEDIR%%/widgets/doc/images/notepad1.png %%QT_EXAMPLEDIR%%/widgets/doc/images/notepad2.png %%QT_EXAMPLEDIR%%/widgets/doc/images/notepad3.png %%QT_EXAMPLEDIR%%/widgets/doc/images/notepad4.png %%QT_EXAMPLEDIR%%/widgets/doc/images/notepad_menu.png %%QT_EXAMPLEDIR%%/widgets/doc/images/orderform-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/pingpong-example.png %%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 %%QT_EXAMPLEDIR%%/widgets/doc/images/treemodel-structure.png %%QT_EXAMPLEDIR%%/widgets/doc/images/treemodelcompleter-example.png %%QT_EXAMPLEDIR%%/widgets/doc/images/undodemo.png %%QT_EXAMPLEDIR%%/widgets/doc/images/undoframeworkexample.png %%QT_EXAMPLEDIR%%/widgets/doc/images/weatheranchorlayout-example.png %%QT_EXAMPLEDIR%%/widgets/doc/mousebuttons.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/addressbook-tutorial.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/addressbook.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/affine.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/analogclock.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/animatedtiles.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/application.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/basicdrawing.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/basicgraphicslayouts.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/basiclayouts.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/basicsortfiltermodel.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/blurpicker.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/borderlayout.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/boxes.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/calculator.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/calendar.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/calendarwidget.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/charactermap.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/chart.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/chip.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/classwizard.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/codeeditor.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/collidingmice-example.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/coloreditorfactory.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/combowidgetmapper.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/completer.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/composition.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/concentriccircles.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/customsortfiltermodel.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/deform.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/diagramscene.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/digitalclock.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/dirview.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/dockwidgets.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/draganddroppuzzle.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/dragdroprobot.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/draggableicons.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/draggabletext.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/dynamiclayouts.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/easing.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/echoplugin.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/editabletreemodel.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/elasticnodes.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/elidedlabel.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/embeddeddialogs.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/eventtransitions.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/extension.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/factorial.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/fademessage.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/fetchmore.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/findfiles.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/flowlayout.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/fontsampler.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/fridgemagnets.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/frozencolumn.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/gallery.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/gradients.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-anchorlayout.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-flowlayout.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-simpleanchorlayout.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/graphicsview-weatheranchorlayout.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/groupbox.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/i18n.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/icons.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/imagecomposition.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/imageviewer.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/interview.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/itemviewspuzzle.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/licensewizard.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/lineedits.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/mainwindow.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/mdi.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/menus.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/moveblocks.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/movie.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/orderform.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/padnavigator.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/painterpaths.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/pathstroke.qdoc %%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/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 %%QT_EXAMPLEDIR%%/widgets/doc/src/sdi.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/settingseditor.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/shapedclock.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/simpledommodel.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/simpletreemodel.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/simplewidgetmapper.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/sliders.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/spinboxdelegate.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/spinboxes.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/spreadsheet.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/standarddialogs.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/stardelegate.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/states.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/stickman.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/styleplugin.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/styles.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/stylesheet.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/sub-attaq.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/syntaxhighlighter.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/tabdialog.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/tablet.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/tetrix.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/textedit.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/tooltips.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/trafficlight.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/transformations.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/treemodelcompleter.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/trivialwizard.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/twowaybutton.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/undo.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/undoframework.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/validators.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/wiggly.qdoc %%QT_EXAMPLEDIR%%/widgets/doc/src/windowflags.qdoc %%QT_EXAMPLEDIR%%/widgets/draganddrop/README %%QT_EXAMPLEDIR%%/widgets/draganddrop/draganddrop.pro %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/draggableicons.pro %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/draggableicons.qrc %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/dragwidget.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/dragwidget.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/images/boat.png %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/images/car.png %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggableicons/images/house.png %%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/dragwidget.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/dragwidget.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/main.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/draggabletext/words.txt %%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/droparea.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/droparea.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/dropsite.pro %%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/dropsitewindow.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/dropsitewindow.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/dropsite/main.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/draglabel.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/draglabel.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/dragwidget.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/dragwidget.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/fridgemagnets.pro %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/fridgemagnets.qrc %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/main.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/fridgemagnets/words.txt %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/example.jpg %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/main.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/pieceslist.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/pieceslist.h %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzle.pro %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzle.qrc %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzlewidget.cpp %%QT_EXAMPLEDIR%%/widgets/draganddrop/puzzle/puzzlewidget.h %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blureffect.cpp %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blureffect.h %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.cpp %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.h %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.pro %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/blurpicker.qrc %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/README.txt %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/accessories-calculator.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/accessories-text-editor.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/background.jpg %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/help-browser.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/internet-group-chat.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/internet-mail.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/internet-web-browser.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/office-calendar.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/images/system-users.png %%QT_EXAMPLEDIR%%/widgets/effects/blurpicker/main.cpp %%QT_EXAMPLEDIR%%/widgets/effects/effects.pro %%QT_EXAMPLEDIR%%/widgets/effects/fademessage/README %%QT_EXAMPLEDIR%%/widgets/effects/fademessage/background.jpg %%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.cpp %%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.h %%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.pro %%QT_EXAMPLEDIR%%/widgets/effects/fademessage/fademessage.qrc %%QT_EXAMPLEDIR%%/widgets/effects/fademessage/main.cpp %%QT_EXAMPLEDIR%%/widgets/gallery/gallery.pro %%QT_EXAMPLEDIR%%/widgets/gallery/main.cpp %%QT_EXAMPLEDIR%%/widgets/gallery/widgetgallery.cpp %%QT_EXAMPLEDIR%%/widgets/gallery/widgetgallery.h %%QT_EXAMPLEDIR%%/widgets/gestures/gestures.pro %%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/doc/src/imagegestures.qdoc %%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/imagegestures.pro %%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/imagewidget.cpp %%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/imagewidget.h %%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/main.cpp %%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/mainwidget.cpp %%QT_EXAMPLEDIR%%/widgets/gestures/imagegestures/mainwidget.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/README %%QT_EXAMPLEDIR%%/widgets/graphicsview/anchorlayout/anchorlayout.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/anchorlayout/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/basicgraphicslayouts.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/basicgraphicslayouts.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/images/block.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/layoutitem.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/layoutitem.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/window.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/basicgraphicslayouts/window.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/3rdparty/fbm.c %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/3rdparty/fbm.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/basic.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/basic.vsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/boxes.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/boxes.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_negx.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_negy.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_negz.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_posx.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_posy.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/cubemap_posz.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/dotted.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/fresnel.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glass.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glbuffers.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glbuffers.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glextensions.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/glextensions.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/gltrianglemesh.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/granite.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/marble.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/parameters.par %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qt-logo.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qt-logo.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qtbox.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/qtbox.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/reflection.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/refraction.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/roundedbox.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/roundedbox.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/scene.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/scene.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/smiley.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/square.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/trackball.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/trackball.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/boxes/wood.fsh %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/chip.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/chip.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/chip.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/fileprint.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/images.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/qt4logo.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/rotateleft.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/rotateright.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/view.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/view.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/zoomin.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/chip/zoomout.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/collidingmice.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/images/cheese.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/mice.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/mouse.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/collidingmice/mouse.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/arrow.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/arrow.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramitem.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramitem.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramscene.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramtextitem.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/diagramtextitem.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background1.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background2.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background3.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/background4.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/bold.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/bringtofront.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/delete.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/floodfill.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/italic.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/linecolor.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/linepointer.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/pointer.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/sendtoback.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/textpointer.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/images/underline.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/diagramscene/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/coloritem.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/coloritem.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/dragdroprobot.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/images/head.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/robot.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/robot.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/dragdroprobot/robot.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/edge.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/edge.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/elasticnodes.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/graphwidget.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/graphwidget.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/node.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/elasticnodes/node.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/No-Ones-Laughing-3.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/customproxy.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/customproxy.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialog.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialog.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialog.ui %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialogs.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/embeddeddialogs.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/embeddeddialogs/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/flowlayout.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/flowlayout.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/flowlayout.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/window.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/flowlayout/window.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/graphicsview.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/flippablepad.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/flippablepad.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/form.ui %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/artsfftscope.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/blue_angle_swirl.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_contacts.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_journal.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_mail.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kontact_notes.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/kopeteavailable.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/metacontact_online.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/images/minitools.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/padnavigator.qrc %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/roundrectitem.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/roundrectitem.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/splashitem.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/padnavigator/splashitem.h %%QT_EXAMPLEDIR%%/widgets/graphicsview/simpleanchorlayout/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/simpleanchorlayout/simpleanchorlayout.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/5days.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/details.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/place.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/tabbar.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/title.jpg %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/images/weather-few-clouds.png %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/main.cpp %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/weatheranchorlayout.pro %%QT_EXAMPLEDIR%%/widgets/graphicsview/weatheranchorlayout/weatheranchorlayout.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/README %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/adddialog.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/adddialog.h %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/addressbook.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/addresswidget.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/addresswidget.h %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/newaddresstab.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/newaddresstab.h %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/tablemodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/addressbook/tablemodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/basicsortfiltermodel.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/window.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/basicsortfiltermodel/window.h %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/chart.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/chart.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/pieview.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/pieview.h %%QT_EXAMPLEDIR%%/widgets/itemviews/chart/qtdata.cht %%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/coloreditorfactory.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/colorlisteditor.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/colorlisteditor.h %%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/window.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/coloreditorfactory/window.h %%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/combowidgetmapper.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/window.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/combowidgetmapper/window.h %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/customsortfiltermodel.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/customsortfiltermodel.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/filterwidget.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/filterwidget.h %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/images/find.png %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/mysortfilterproxymodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/window.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/customsortfiltermodel/window.h %%QT_EXAMPLEDIR%%/widgets/itemviews/dirview/dirview.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/dirview/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/default.txt %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/editabletreemodel.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/editabletreemodel.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/mainwindow.ui %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treeitem.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treeitem.h %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treemodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/editabletreemodel/treemodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/fetchmore.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/filelistmodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/filelistmodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/window.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/fetchmore/window.h %%QT_EXAMPLEDIR%%/widgets/itemviews/flattreeview/flattreeview.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/flattreeview/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/freezetablewidget.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/freezetablewidget.h %%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/frozencolumn.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/grades.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/grades.txt %%QT_EXAMPLEDIR%%/widgets/itemviews/frozencolumn/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/README %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/images/folder.png %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/images/interview.png %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/images/services.png %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/interview.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/interview.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/model.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/interview/model.h %%QT_EXAMPLEDIR%%/widgets/itemviews/itemviews.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/imagemodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/imagemodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/images.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/images/qt.png %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/pixelator.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/pixeldelegate.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/pixelator/pixeldelegate.h %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/example.jpg %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/piecesmodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/piecesmodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzle.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzle.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzlewidget.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/puzzle/puzzlewidget.h %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/domitem.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/domitem.h %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/dommodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/dommodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/itemviews/simpledommodel/simpledommodel.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/default.txt %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/simpletreemodel.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/simpletreemodel.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treeitem.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treeitem.h %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treemodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simpletreemodel/treemodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/simplewidgetmapper.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/window.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/simplewidgetmapper/window.h %%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/delegate.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/delegate.h %%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/spinboxdelegate/spinboxdelegate.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/images/interview.png %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/printview.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/printview.h %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.h %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheet.qrc %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetdelegate.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetdelegate.h %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetitem.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/spreadsheet/spreadsheetitem.h %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stardelegate.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stardelegate.h %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stardelegate.pro %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stareditor.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/stareditor.h %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/starrating.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/stardelegate/starrating.h %%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/main.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/storagemodel.cpp %%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/storagemodel.h %%QT_EXAMPLEDIR%%/widgets/itemviews/storageview/storageview.pro %%QT_EXAMPLEDIR%%/widgets/layouts/README %%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/basiclayouts.pro %%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/dialog.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/dialog.h %%QT_EXAMPLEDIR%%/widgets/layouts/basiclayouts/main.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/borderlayout.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/borderlayout.h %%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/borderlayout.pro %%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/main.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/window.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/borderlayout/window.h %%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/dialog.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/dialog.h %%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/dynamiclayouts.pro %%QT_EXAMPLEDIR%%/widgets/layouts/dynamiclayouts/main.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/flowlayout.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/flowlayout.h %%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/flowlayout.pro %%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/main.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/window.cpp %%QT_EXAMPLEDIR%%/widgets/layouts/flowlayout/window.h %%QT_EXAMPLEDIR%%/widgets/layouts/layouts.pro %%QT_EXAMPLEDIR%%/widgets/mac/mac.pro %%QT_EXAMPLEDIR%%/widgets/mac/qmaccocoaviewcontainer/main.mm %%QT_EXAMPLEDIR%%/widgets/mac/qmaccocoaviewcontainer/qmaccocoaviewcontainer.pro %%QT_EXAMPLEDIR%%/widgets/mac/qmacnativewidget/main.mm %%QT_EXAMPLEDIR%%/widgets/mac/qmacnativewidget/qmacnativewidget.pro %%QT_EXAMPLEDIR%%/widgets/mainwindows/README %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/application.pro %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/application.qrc %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/copy.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/cut.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/new.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/open.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/paste.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/images/save.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/main.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/application/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/dockwidgets.pro %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/dockwidgets.qrc %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/new.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/print.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/save.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/images/undo.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/main.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/dockwidgets/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/colorswatch.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/colorswatch.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/main.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.pro %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/mainwindow.qrc %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/qt.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/titlebarCenter.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/titlebarLeft.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/titlebarRight.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/toolbar.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindow/toolbar.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/mainwindows.pro %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/copy.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/cut.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/new.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/open.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/paste.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/images/save.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/main.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdi.pro %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdi.qrc %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdichild.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/mdi/mdichild.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/menus/main.cpp %%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/sdi/images/copy.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/cut.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/new.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/open.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/paste.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/images/save.png %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/main.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/sdi.pro %%QT_EXAMPLEDIR%%/widgets/mainwindows/sdi/sdi.qrc %%QT_EXAMPLEDIR%%/widgets/painting/README %%QT_EXAMPLEDIR%%/widgets/painting/affine/affine.pro %%QT_EXAMPLEDIR%%/widgets/painting/affine/affine.qrc %%QT_EXAMPLEDIR%%/widgets/painting/affine/bg1.jpg %%QT_EXAMPLEDIR%%/widgets/painting/affine/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/affine/xform.cpp %%QT_EXAMPLEDIR%%/widgets/painting/affine/xform.h %%QT_EXAMPLEDIR%%/widgets/painting/affine/xform.html %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/basicdrawing.pro %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/basicdrawing.qrc %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/images/brick.png %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/images/qt-logo.png %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/renderarea.cpp %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/renderarea.h %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/window.cpp %%QT_EXAMPLEDIR%%/widgets/painting/basicdrawing/window.h %%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.cpp %%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.h %%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.html %%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.pro %%QT_EXAMPLEDIR%%/widgets/painting/composition/composition.qrc %%QT_EXAMPLEDIR%%/widgets/painting/composition/flower.jpg %%QT_EXAMPLEDIR%%/widgets/painting/composition/flower_alpha.jpg %%QT_EXAMPLEDIR%%/widgets/painting/composition/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/circlewidget.cpp %%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/circlewidget.h %%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/concentriccircles.pro %%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/window.cpp %%QT_EXAMPLEDIR%%/widgets/painting/concentriccircles/window.h %%QT_EXAMPLEDIR%%/widgets/painting/deform/deform.pro %%QT_EXAMPLEDIR%%/widgets/painting/deform/deform.qrc %%QT_EXAMPLEDIR%%/widgets/painting/deform/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/deform/pathdeform.cpp %%QT_EXAMPLEDIR%%/widgets/painting/deform/pathdeform.h %%QT_EXAMPLEDIR%%/widgets/painting/deform/pathdeform.html %%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/fontsampler.pro %%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/painting/fontsampler/mainwindowbase.ui %%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.cpp %%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.h %%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.html %%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.pro %%QT_EXAMPLEDIR%%/widgets/painting/gradients/gradients.qrc %%QT_EXAMPLEDIR%%/widgets/painting/gradients/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposer.cpp %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposer.h %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposition.pro %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/imagecomposition.qrc %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/background.png %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/blackrectangle.png %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/butterfly.png %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/images/checker.png %%QT_EXAMPLEDIR%%/widgets/painting/imagecomposition/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/painterpaths.pro %%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/renderarea.cpp %%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/renderarea.h %%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/window.cpp %%QT_EXAMPLEDIR%%/widgets/painting/painterpaths/window.h %%QT_EXAMPLEDIR%%/widgets/painting/painting.pro %%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.cpp %%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.h %%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.html %%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.pro %%QT_EXAMPLEDIR%%/widgets/painting/pathstroke/pathstroke.qrc %%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurstyle.cpp %%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurstyle.h %%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurwidgets.cpp %%QT_EXAMPLEDIR%%/widgets/painting/shared/arthurwidgets.h %%QT_EXAMPLEDIR%%/widgets/painting/shared/fbopaintdevice.cpp %%QT_EXAMPLEDIR%%/widgets/painting/shared/fbopaintdevice.h %%QT_EXAMPLEDIR%%/widgets/painting/shared/hoverpoints.cpp %%QT_EXAMPLEDIR%%/widgets/painting/shared/hoverpoints.h %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/bg_pattern.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_normal_cap_left.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_normal_cap_right.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_normal_stretch.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_pressed_cap_left.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_pressed_cap_right.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/button_pressed_stretch.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/curve_thing_edit-6.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_bottom.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_bottomleft.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_bottomright.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_left.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_right.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_top.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_topleft.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/frame_topright.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_bottom_left.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_bottom_right.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_bottom_stretch.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_left_stretch.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_right_stretch.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_top_stretch.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_topleft.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/groupframe_topright.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dash_dot.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dash_dot_dot.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dashed.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_dotted.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/line_solid.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton-off.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton-on.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton_off.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/radiobutton_on.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/slider_bar.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/slider_thumb_off.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/slider_thumb_on.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/title_cap_left.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/title_cap_right.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/images/title_stretch.png %%QT_EXAMPLEDIR%%/widgets/painting/shared/shared.pri %%QT_EXAMPLEDIR%%/widgets/painting/shared/shared.qrc %%QT_EXAMPLEDIR%%/widgets/painting/transformations/main.cpp %%QT_EXAMPLEDIR%%/widgets/painting/transformations/renderarea.cpp %%QT_EXAMPLEDIR%%/widgets/painting/transformations/renderarea.h %%QT_EXAMPLEDIR%%/widgets/painting/transformations/transformations.pro %%QT_EXAMPLEDIR%%/widgets/painting/transformations/window.cpp %%QT_EXAMPLEDIR%%/widgets/painting/transformations/window.h %%QT_EXAMPLEDIR%%/widgets/qnx/foreignwindows/collector.cpp %%QT_EXAMPLEDIR%%/widgets/qnx/foreignwindows/collector.h %%QT_EXAMPLEDIR%%/widgets/qnx/foreignwindows/foreignwindows.pro %%QT_EXAMPLEDIR%%/widgets/qnx/foreignwindows/main.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/README %%QT_EXAMPLEDIR%%/widgets/richtext/calendar/calendar.pro %%QT_EXAMPLEDIR%%/widgets/richtext/calendar/main.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/calendar/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/calendar/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/richtext/orderform/detailsdialog.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/orderform/detailsdialog.h %%QT_EXAMPLEDIR%%/widgets/richtext/orderform/main.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/orderform/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/orderform/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/richtext/orderform/orderform.pro %%QT_EXAMPLEDIR%%/widgets/richtext/richtext.pro %%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/highlighter.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/highlighter.h %%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/main.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/richtext/syntaxhighlighter/syntaxhighlighter.pro %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/example.html %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/example.md %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/logo32.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/checkbox-checked.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/checkbox.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editcopy.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editcut.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editpaste.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editredo.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/editundo.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/exportpdf.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/filenew.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/fileopen.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/fileprint.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/filesave.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/format-indent-less.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/format-indent-more.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textbold.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textcenter.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textitalic.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textjustify.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textleft.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textright.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/textunder.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/zoomin.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/mac/zoomout.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/checkbox-checked.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/checkbox.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editcopy.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editcut.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editpaste.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editredo.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/editundo.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/exportpdf.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/filenew.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/fileopen.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/fileprint.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/filesave.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/format-indent-less.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/format-indent-more.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textbold.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textcenter.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textitalic.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textjustify.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textleft.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textright.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/textunder.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/zoomin.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/images/win/zoomout.png %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/main.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.cpp %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.h %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.pro %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.qdoc %%QT_EXAMPLEDIR%%/widgets/richtext/textedit/textedit.qrc %%QT_EXAMPLEDIR%%/widgets/scroller/graphicsview/graphicsview.pro %%QT_EXAMPLEDIR%%/widgets/scroller/graphicsview/main.cpp %%QT_EXAMPLEDIR%%/widgets/scroller/scroller.pro %%QT_EXAMPLEDIR%%/widgets/statemachine/README %%QT_EXAMPLEDIR%%/widgets/statemachine/eventtransitions/eventtransitions.pro %%QT_EXAMPLEDIR%%/widgets/statemachine/eventtransitions/main.cpp %%QT_EXAMPLEDIR%%/widgets/statemachine/factorial/factorial.pro %%QT_EXAMPLEDIR%%/widgets/statemachine/factorial/main.cpp %%QT_EXAMPLEDIR%%/widgets/statemachine/pingpong/main.cpp %%QT_EXAMPLEDIR%%/widgets/statemachine/pingpong/pingpong.pro %%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/main.cpp %%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/movementtransition.h %%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/rogue.pro %%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/window.cpp %%QT_EXAMPLEDIR%%/widgets/statemachine/rogue/window.h %%QT_EXAMPLEDIR%%/widgets/statemachine/statemachine.pro %%QT_EXAMPLEDIR%%/widgets/statemachine/trafficlight/main.cpp %%QT_EXAMPLEDIR%%/widgets/statemachine/trafficlight/trafficlight.pro %%QT_EXAMPLEDIR%%/widgets/statemachine/twowaybutton/main.cpp %%QT_EXAMPLEDIR%%/widgets/statemachine/twowaybutton/twowaybutton.pro %%QT_EXAMPLEDIR%%/widgets/tools/codecs/codecs.pro %%QT_EXAMPLEDIR%%/widgets/tools/codecs/codecs.qrc %%QT_EXAMPLEDIR%%/widgets/tools/codecs/doc/images/codecs-example.png %%QT_EXAMPLEDIR%%/widgets/tools/codecs/doc/src/codecs.qdoc %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/iso-8859-1.txt %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/iso-8859-15.txt %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-16.txt %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-16be.txt %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-16le.txt %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodedfiles/utf-8.txt %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodingdialog.cpp %%QT_EXAMPLEDIR%%/widgets/tools/codecs/encodingdialog.h %%QT_EXAMPLEDIR%%/widgets/tools/codecs/images/editcopy.png %%QT_EXAMPLEDIR%%/widgets/tools/codecs/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/codecs/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/codecs/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/codecs/previewform.cpp %%QT_EXAMPLEDIR%%/widgets/tools/codecs/previewform.h %%QT_EXAMPLEDIR%%/widgets/tools/completer/completer.pro %%QT_EXAMPLEDIR%%/widgets/tools/completer/completer.qrc %%QT_EXAMPLEDIR%%/widgets/tools/completer/fsmodel.cpp %%QT_EXAMPLEDIR%%/widgets/tools/completer/fsmodel.h %%QT_EXAMPLEDIR%%/widgets/tools/completer/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/completer/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/completer/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/completer/resources/countries.txt %%QT_EXAMPLEDIR%%/widgets/tools/completer/resources/wordlist.txt %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/customcompleter.pro %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/customcompleter.qrc %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/doc/src/customcompleter.qdoc %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/resources/wordlist.txt %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/textedit.cpp %%QT_EXAMPLEDIR%%/widgets/tools/customcompleter/textedit.h %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echoplugin.pro %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echointerface.h %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echowindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echowindow.h %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/echowindow.pro %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/echowindow/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/echoplugin.cpp %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/echoplugin.h %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/echoplugin.json %%QT_EXAMPLEDIR%%/widgets/tools/echoplugin/plugin/plugin.pro %%QT_EXAMPLEDIR%%/widgets/tools/i18n/i18n.pro %%QT_EXAMPLEDIR%%/widgets/tools/i18n/i18n.qrc %%QT_EXAMPLEDIR%%/widgets/tools/i18n/languagechooser.cpp %%QT_EXAMPLEDIR%%/widgets/tools/i18n/languagechooser.h %%QT_EXAMPLEDIR%%/widgets/tools/i18n/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/i18n/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/i18n/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ar.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ar.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_cs.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_cs.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_de.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_de.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_el.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_el.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_en.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_en.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_eo.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_eo.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_fr.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_fr.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_it.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_it.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_jp.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_jp.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ko.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ko.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_no.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_no.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ru.qm %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_ru.ts %%QT_EXAMPLEDIR%%/widgets/tools/i18n/translations/i18n_sv.qm %%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/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/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 %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/locationdialog.h %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/settingseditor.pro %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/settingstree.cpp %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/settingstree.h %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/variantdelegate.cpp %%QT_EXAMPLEDIR%%/widgets/tools/settingseditor/variantdelegate.h %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/plugin.pro %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyle.cpp %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyle.h %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyle.json %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyleplugin.cpp %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/plugin/simplestyleplugin.h %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/styleplugin.pro %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/stylewindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/stylewindow.h %%QT_EXAMPLEDIR%%/widgets/tools/styleplugin/stylewindow/stylewindow.pro %%QT_EXAMPLEDIR%%/widgets/tools/tools.pro %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/resources/treemodel.txt %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.cpp %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.h %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.pro %%QT_EXAMPLEDIR%%/widgets/tools/treemodelcompleter/treemodelcompleter.qrc %%QT_EXAMPLEDIR%%/widgets/tools/undo/commands.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undo/commands.h %%QT_EXAMPLEDIR%%/widgets/tools/undo/document.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undo/document.h %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/background.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/blue.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/circle.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/exit.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/fileclose.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/filenew.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/fileopen.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/filesave.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/green.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/ok.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/rectangle.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/red.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/redo.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/remove.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/triangle.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/icons/undo.png %%QT_EXAMPLEDIR%%/widgets/tools/undo/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undo/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undo/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/undo/mainwindow.ui %%QT_EXAMPLEDIR%%/widgets/tools/undo/undo.pro %%QT_EXAMPLEDIR%%/widgets/tools/undo/undo.qrc %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/commands.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/commands.h %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramitem.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramitem.h %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramscene.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/diagramscene.h %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/images/cross.png %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/main.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/undoframework.pro %%QT_EXAMPLEDIR%%/widgets/tools/undoframework/undoframework.qrc %%QT_EXAMPLEDIR%%/widgets/touch/dials/dials.pro %%QT_EXAMPLEDIR%%/widgets/touch/dials/dials.ui %%QT_EXAMPLEDIR%%/widgets/touch/dials/doc/images/touch-dials-example.png %%QT_EXAMPLEDIR%%/widgets/touch/dials/doc/src/touch-dials.qdoc %%QT_EXAMPLEDIR%%/widgets/touch/dials/main.cpp %%QT_EXAMPLEDIR%%/widgets/touch/fingerpaint/doc/src/fingerpaint.qdoc %%QT_EXAMPLEDIR%%/widgets/touch/fingerpaint/fingerpaint.pro %%QT_EXAMPLEDIR%%/widgets/touch/fingerpaint/main.cpp %%QT_EXAMPLEDIR%%/widgets/touch/fingerpaint/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/touch/fingerpaint/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/touch/fingerpaint/scribblearea.cpp %%QT_EXAMPLEDIR%%/widgets/touch/fingerpaint/scribblearea.h %%QT_EXAMPLEDIR%%/widgets/touch/knobs/doc/images/touch-knobs-example.png %%QT_EXAMPLEDIR%%/widgets/touch/knobs/doc/src/touch-knobs.qdoc %%QT_EXAMPLEDIR%%/widgets/touch/knobs/knob.cpp %%QT_EXAMPLEDIR%%/widgets/touch/knobs/knob.h %%QT_EXAMPLEDIR%%/widgets/touch/knobs/knobs.pro %%QT_EXAMPLEDIR%%/widgets/touch/knobs/main.cpp %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/doc/images/pinch-zoom-example.png %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/doc/src/pinchzoom.qdoc %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/graphicsview.cpp %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/graphicsview.h %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/images/cheese.jpg %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/main.cpp %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/mice.qrc %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/mouse.cpp %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/mouse.h %%QT_EXAMPLEDIR%%/widgets/touch/pinchzoom/pinchzoom.pro %%QT_EXAMPLEDIR%%/widgets/touch/touch.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/README %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/README %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/addressbook.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/addressbook.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/addressbook.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part1/part1.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/addressbook.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/addressbook.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part2/part2.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/addressbook.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/addressbook.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part3/part3.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/addressbook.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/addressbook.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part4/part4.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/addressbook.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/addressbook.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/finddialog.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/finddialog.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part5/part5.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/addressbook.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/addressbook.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/finddialog.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/finddialog.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part6/part6.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/addressbook.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/addressbook.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/finddialog.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/finddialog.h %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/addressbook/part7/part7.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gettingStarted.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/gsqt.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part1/part1.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part2/part2.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part3/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part3/part3.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part4/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part4/part4.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part5/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingStarted/gsQt/part5/part5.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/gettingstartedqt.qdoc %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/1_readonly.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/mymodel.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/1_readonly/mymodel.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/2_formatting.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/mymodel.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/2_formatting/mymodel.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/3_changingmodel.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/mymodel.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/3_changingmodel/mymodel.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/4_headers.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/mymodel.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/4_headers/mymodel.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/5_edit.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mymodel.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/5_edit/mymodel.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/6_treeview.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/6_treeview/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/7_selections.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/7_selections/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/tutorials/modelview/modelview.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/bold.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/copy.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/create.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/cut.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/edit_redo.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/edit_undo.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/exit.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/font.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/info.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/italic.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/new.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/open.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/paste.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/pencil.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/print.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/save.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/save_as.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/images/underline.png %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/notepad.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/notepad.h %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/notepad.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/notepad.qrc %%QT_EXAMPLEDIR%%/widgets/tutorials/notepad/notepad.ui %%QT_EXAMPLEDIR%%/widgets/tutorials/tutorials.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/childwidget/childwidget.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/childwidget/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/nestedlayouts/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/nestedlayouts/nestedlayouts.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/toplevel/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/toplevel/toplevel.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/widgets.pro %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/windowlayout/main.cpp %%QT_EXAMPLEDIR%%/widgets/tutorials/widgets/windowlayout/windowlayout.pro %%QT_EXAMPLEDIR%%/widgets/widgets.pro %%QT_EXAMPLEDIR%%/widgets/widgets/README %%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/analogclock.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/analogclock.h %%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/analogclock.pro %%QT_EXAMPLEDIR%%/widgets/widgets/analogclock/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/calculator/button.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/calculator/button.h %%QT_EXAMPLEDIR%%/widgets/widgets/calculator/calculator.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/calculator/calculator.h %%QT_EXAMPLEDIR%%/widgets/widgets/calculator/calculator.pro %%QT_EXAMPLEDIR%%/widgets/widgets/calculator/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/calendarwidget.pro %%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/window.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/calendarwidget/window.h %%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/charactermap.pro %%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/characterwidget.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/characterwidget.h %%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/charactermap/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/codeeditor.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/codeeditor.h %%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/codeeditor.pro %%QT_EXAMPLEDIR%%/widgets/widgets/codeeditor/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/digitalclock.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/digitalclock.h %%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/digitalclock.pro %%QT_EXAMPLEDIR%%/widgets/widgets/digitalclock/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/elidedlabel.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/elidedlabel.h %%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/elidedlabel.pro %%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/testwidget.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/elidedlabel/testwidget.h %%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/groupbox.pro %%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/window.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/groupbox/window.h %%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconpreviewarea.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconpreviewarea.h %%QT_EXAMPLEDIR%%/widgets/widgets/icons/icons.pro %%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconsizespinbox.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/icons/iconsizespinbox.h %%QT_EXAMPLEDIR%%/widgets/widgets/icons/imagedelegate.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/icons/imagedelegate.h %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/designer.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/find_disabled.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/find_normal.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_128x128.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_16x16.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_32x32.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_off_64x64.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_128x128.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_16x16.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_32x32.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/monkey_on_64x64.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/qt_extended_16x16.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/qt_extended_32x32.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/images/qt_extended_48x48.png %%QT_EXAMPLEDIR%%/widgets/widgets/icons/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/icons/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/icons/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/imageviewer.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/imageviewer.h %%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/imageviewer.pro %%QT_EXAMPLEDIR%%/widgets/widgets/imageviewer/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/lineedits.pro %%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/window.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/lineedits/window.h %%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/buttontester.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/buttontester.h %%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/mousebuttons/mousebuttons.pro %%QT_EXAMPLEDIR%%/widgets/widgets/movie/animation.gif %%QT_EXAMPLEDIR%%/widgets/widgets/movie/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/movie/movie.pro %%QT_EXAMPLEDIR%%/widgets/widgets/movie/movieplayer.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/movie/movieplayer.h %%QT_EXAMPLEDIR%%/widgets/widgets/scribble/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/scribble/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/scribble/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/widgets/scribble/scribble.pro %%QT_EXAMPLEDIR%%/widgets/widgets/scribble/scribblearea.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/scribble/scribblearea.h %%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/shapedclock.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/shapedclock.h %%QT_EXAMPLEDIR%%/widgets/widgets/shapedclock/shapedclock.pro %%QT_EXAMPLEDIR%%/widgets/widgets/sliders/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/sliders/sliders.pro %%QT_EXAMPLEDIR%%/widgets/widgets/sliders/slidersgroup.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/sliders/slidersgroup.h %%QT_EXAMPLEDIR%%/widgets/widgets/sliders/window.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/sliders/window.h %%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/spinboxes.pro %%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/window.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/spinboxes/window.h %%QT_EXAMPLEDIR%%/widgets/widgets/styles/images/woodbackground.png %%QT_EXAMPLEDIR%%/widgets/widgets/styles/images/woodbutton.png %%QT_EXAMPLEDIR%%/widgets/widgets/styles/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/styles/norwegianwoodstyle.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/styles/norwegianwoodstyle.h %%QT_EXAMPLEDIR%%/widgets/widgets/styles/styles.pro %%QT_EXAMPLEDIR%%/widgets/widgets/styles/styles.qrc %%QT_EXAMPLEDIR%%/widgets/widgets/styles/widgetgallery.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/styles/widgetgallery.h %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_checked.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_checked_hover.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_checked_pressed.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_unchecked.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_unchecked_hover.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/checkbox_unchecked_pressed.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/down_arrow.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/down_arrow_disabled.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/frame.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pagefold.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pushbutton.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pushbutton_hover.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/pushbutton_pressed.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_checked.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_checked_hover.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_checked_pressed.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_unchecked.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_unchecked_hover.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/radiobutton_unchecked_pressed.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/sizegrip.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown_hover.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown_off.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spindown_pressed.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup_hover.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup_off.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/spinup_pressed.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/up_arrow.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/images/up_arrow_disabled.png %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/layouts/default.ui %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/layouts/pagefold.ui %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/mainwindow.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/mainwindow.h %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/mainwindow.ui %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/qss/coffee.qss %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/qss/default.qss %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/qss/pagefold.qss %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheet.pro %%QT_EXAMPLEDIR%%/widgets/widgets/stylesheet/stylesheet.qrc %%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 %%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tablet.pro %%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletapplication.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletapplication.h %%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletcanvas.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tablet/tabletcanvas.h %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrix.pro %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixboard.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixboard.h %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixpiece.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixpiece.h %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixwindow.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tetrix/tetrixwindow.h %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/images/circle.png %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/images/square.png %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/images/triangle.png %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/shapeitem.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/shapeitem.h %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/sortingbox.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/sortingbox.h %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/tooltips.pro %%QT_EXAMPLEDIR%%/widgets/widgets/tooltips/tooltips.qrc %%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledoff.png %%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledon.png %%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledwidget.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/validators/ledwidget.h %%QT_EXAMPLEDIR%%/widgets/widgets/validators/localeselector.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/validators/localeselector.h %%QT_EXAMPLEDIR%%/widgets/widgets/validators/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/validators/validators.pro %%QT_EXAMPLEDIR%%/widgets/widgets/validators/validators.qrc %%QT_EXAMPLEDIR%%/widgets/widgets/validators/validators.ui %%QT_EXAMPLEDIR%%/widgets/widgets/validators/validatorwidget.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/validators/validatorwidget.h %%QT_EXAMPLEDIR%%/widgets/widgets/widgets.pro %%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/dialog.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/dialog.h %%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/wiggly.pro %%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/wigglywidget.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/wiggly/wigglywidget.h %%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/controllerwindow.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/controllerwindow.h %%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/main.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/previewwindow.cpp %%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/previewwindow.h %%QT_EXAMPLEDIR%%/widgets/widgets/windowflags/windowflags.pro %%QT_EXAMPLEDIR%%/widgets/windowcontainer/windowcontainer.cpp %%QT_EXAMPLEDIR%%/widgets/windowcontainer/windowcontainer.pro %%QT_EXAMPLEDIR%%/winextras/iconextractor/doc/src/qtwinextras-example-iconextractor.qdoc %%QT_EXAMPLEDIR%%/winextras/iconextractor/iconextractor.pro %%QT_EXAMPLEDIR%%/winextras/iconextractor/main.cpp %%QT_EXAMPLEDIR%%/winextras/musicplayer/doc/images/qtwinextras-musicplayer-composited.png %%QT_EXAMPLEDIR%%/winextras/musicplayer/doc/images/qtwinextras-musicplayer-non-composited.png %%QT_EXAMPLEDIR%%/winextras/musicplayer/doc/images/qtwinextras-musicplayer-taskbar.png %%QT_EXAMPLEDIR%%/winextras/musicplayer/doc/images/qtwinextras-musicplayer-thumbnail.png %%QT_EXAMPLEDIR%%/winextras/musicplayer/doc/src/qtwinextras-musicplayer.qdoc %%QT_EXAMPLEDIR%%/winextras/musicplayer/images/qt-logo.ico %%QT_EXAMPLEDIR%%/winextras/musicplayer/main.cpp %%QT_EXAMPLEDIR%%/winextras/musicplayer/musicplayer.cpp %%QT_EXAMPLEDIR%%/winextras/musicplayer/musicplayer.h %%QT_EXAMPLEDIR%%/winextras/musicplayer/musicplayer.pro %%QT_EXAMPLEDIR%%/winextras/musicplayer/volumebutton.cpp %%QT_EXAMPLEDIR%%/winextras/musicplayer/volumebutton.h %%QT_EXAMPLEDIR%%/winextras/quickplayer/doc/images/qtwinextras-quickplayer-composited.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/doc/images/qtwinextras-quickplayer-non-composited.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/doc/images/qtwinextras-quickplayer-taskbar.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/doc/images/qtwinextras-quickplayer-thumbnail.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/doc/src/qtwinextras-quickplayer.qdoc %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/media-pause-16.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/media-pause-32.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/media-play-16.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/media-play-32.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/media-seek-backward-32.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/media-seek-forward-32.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/media-stop-32.png %%QT_EXAMPLEDIR%%/winextras/quickplayer/images/qt-logo.ico %%QT_EXAMPLEDIR%%/winextras/quickplayer/main.cpp %%QT_EXAMPLEDIR%%/winextras/quickplayer/qml/main.qml %%QT_EXAMPLEDIR%%/winextras/quickplayer/quickplayer.pro %%QT_EXAMPLEDIR%%/winextras/quickplayer/quickplayer.qrc %%QT_EXAMPLEDIR%%/winextras/quickplayer/quickplayer.rc %%QT_EXAMPLEDIR%%/winextras/winextras.pro %%QT_EXAMPLEDIR%%/xml/README %%QT_EXAMPLEDIR%%/xml/dombookmarks/doc/images/dombookmarks-example.png %%QT_EXAMPLEDIR%%/xml/dombookmarks/doc/src/dombookmarks.qdoc %%QT_EXAMPLEDIR%%/xml/dombookmarks/dombookmarks.pro %%QT_EXAMPLEDIR%%/xml/dombookmarks/jennifer.xbel %%QT_EXAMPLEDIR%%/xml/dombookmarks/main.cpp %%QT_EXAMPLEDIR%%/xml/dombookmarks/mainwindow.cpp %%QT_EXAMPLEDIR%%/xml/dombookmarks/mainwindow.h %%QT_EXAMPLEDIR%%/xml/dombookmarks/xbeltree.cpp %%QT_EXAMPLEDIR%%/xml/dombookmarks/xbeltree.h %%QT_EXAMPLEDIR%%/xml/htmlinfo/apache_org.html %%QT_EXAMPLEDIR%%/xml/htmlinfo/htmlinfo.pro %%QT_EXAMPLEDIR%%/xml/htmlinfo/main.cpp %%QT_EXAMPLEDIR%%/xml/htmlinfo/resources.qrc %%QT_EXAMPLEDIR%%/xml/htmlinfo/simpleexample.html %%QT_EXAMPLEDIR%%/xml/htmlinfo/trolltech_com.html %%QT_EXAMPLEDIR%%/xml/htmlinfo/w3c_org.html %%QT_EXAMPLEDIR%%/xml/htmlinfo/youtube_com.html %%QT_EXAMPLEDIR%%/xml/rsslisting/main.cpp %%QT_EXAMPLEDIR%%/xml/rsslisting/rsslisting.cpp %%QT_EXAMPLEDIR%%/xml/rsslisting/rsslisting.h %%QT_EXAMPLEDIR%%/xml/rsslisting/rsslisting.pro %%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/images/xmlstreamexample-filemenu.png %%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/images/xmlstreamexample-helpmenu.png %%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/images/xmlstreamexample-screenshot.png %%QT_EXAMPLEDIR%%/xml/streambookmarks/doc/src/qxmlstreambookmarks.qdoc %%QT_EXAMPLEDIR%%/xml/streambookmarks/jennifer.xbel %%QT_EXAMPLEDIR%%/xml/streambookmarks/main.cpp %%QT_EXAMPLEDIR%%/xml/streambookmarks/mainwindow.cpp %%QT_EXAMPLEDIR%%/xml/streambookmarks/mainwindow.h %%QT_EXAMPLEDIR%%/xml/streambookmarks/streambookmarks.pro %%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelreader.cpp %%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelreader.h %%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelwriter.cpp %%QT_EXAMPLEDIR%%/xml/streambookmarks/xbelwriter.h %%QT_EXAMPLEDIR%%/xml/xml.pro %%QT_EXAMPLEDIR%%/xml/xmlstreamlint/doc/src/xmlstreamlint.qdoc %%QT_EXAMPLEDIR%%/xml/xmlstreamlint/main.cpp %%QT_EXAMPLEDIR%%/xml/xmlstreamlint/xmlstreamlint.pro %%QT_EXAMPLEDIR%%/xmlpatterns/README %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/doc/src/filetree.qdoc %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.h %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/filetree.pro %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/forms/mainwindow.ui %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/main.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/mainwindow.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/mainwindow.h %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/queries.qrc %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/queries/listCPPFiles.xq %%QT_EXAMPLEDIR%%/xmlpatterns/filetree/queries/wholeTree.xq %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/doc/src/recipes.qdoc %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/allRecipes.xq %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/cookbook.xml %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/liquidIngredientsInSoup.xq %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/mushroomSoup.xq %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/preparationLessThan30.xq %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/files/preparationTimes.xq %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/forms/querywidget.ui %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/main.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/querymainwindow.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/querymainwindow.h %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/recipes.pro %%QT_EXAMPLEDIR%%/xmlpatterns/recipes/recipes.qrc %%QT_EXAMPLEDIR%%/xmlpatterns/schema/doc/src/schema.qdoc %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/contact.xsd %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/invalid_contact.xml %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/invalid_order.xml %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/invalid_recipe.xml %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/order.xsd %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/recipe.xsd %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/valid_contact.xml %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/valid_order.xml %%QT_EXAMPLEDIR%%/xmlpatterns/schema/files/valid_recipe.xml %%QT_EXAMPLEDIR%%/xmlpatterns/schema/main.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/schema/mainwindow.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/schema/mainwindow.h %%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.pro %%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.qrc %%QT_EXAMPLEDIR%%/xmlpatterns/schema/schema.ui %%QT_EXAMPLEDIR%%/xmlpatterns/shared/xmlsyntaxhighlighter.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/shared/xmlsyntaxhighlighter.h %%QT_EXAMPLEDIR%%/xmlpatterns/xmlpatterns.pro %%QT_EXAMPLEDIR%%/xmlpatterns/xquery/doc/src/globalVariables.qdoc %%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.cpp %%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.gccxml %%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/globals.html %%QT_EXAMPLEDIR%%/xmlpatterns/xquery/globalVariables/reportGlobals.xq %%QT_EXAMPLEDIR%%/xmlpatterns/xquery/xquery.pro diff --git a/misc/qt5-l10n/distinfo b/misc/qt5-l10n/distinfo index cac011b27486..209b7c3457c3 100644 --- a/misc/qt5-l10n/distinfo +++ b/misc/qt5-l10n/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423897 -SHA256 (KDE/Qt/5.15.2/kde-qttranslations-5.15.2p22.tar.xz) = 4293399b69dfc98026925d9acecbeafe1e2df180857f67d180534fde91b2105d -SIZE (KDE/Qt/5.15.2/kde-qttranslations-5.15.2p22.tar.xz) = 1594464 +TIMESTAMP = 1656427514 +SHA256 (KDE/Qt/5.15.5/kde-qttranslations-5.15.5p2.tar.xz) = ec445ead922ceb1c3ac3875c44559d93d64c47ead61e95bd2f9b543ec8f4565c +SIZE (KDE/Qt/5.15.5/kde-qttranslations-5.15.5p2.tar.xz) = 1594492 diff --git a/multimedia/qt5-multimedia/distinfo b/multimedia/qt5-multimedia/distinfo index 8c0134e6959c..0f5bd7288b68 100644 --- a/multimedia/qt5-multimedia/distinfo +++ b/multimedia/qt5-multimedia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423899 -SHA256 (KDE/Qt/5.15.2/kde-qtmultimedia-5.15.2p3.tar.xz) = 4eee6b7d15d88a0bff9285687196a2e7703f18927995443c1de7fb82c47f03ec -SIZE (KDE/Qt/5.15.2/kde-qtmultimedia-5.15.2p3.tar.xz) = 3788908 +TIMESTAMP = 1656427515 +SHA256 (KDE/Qt/5.15.5/kde-qtmultimedia-5.15.5p1.tar.xz) = 5154ddbc15b1e7ad5034012bbdfaf80209a91a571ed4cf63f3802f5fc2c5d4a4 +SIZE (KDE/Qt/5.15.5/kde-qtmultimedia-5.15.5p1.tar.xz) = 3790144 diff --git a/net/qt5-network/distinfo b/net/qt5-network/distinfo index bb17af30e4b6..38647d7ef3dc 100644 --- a/net/qt5-network/distinfo +++ b/net/qt5-network/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423900 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427516 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/net/qt5-network/files/patch-src_network_ssl_qsslcertificate__openssl.cpp b/net/qt5-network/files/patch-src_network_ssl_qsslcertificate__openssl.cpp deleted file mode 100644 index 41377f6f1735..000000000000 --- a/net/qt5-network/files/patch-src_network_ssl_qsslcertificate__openssl.cpp +++ /dev/null @@ -1,12 +0,0 @@ -Patch based on Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/dev-qt/qtnetwork/files/qtnetwork-5.15.1-libressl.patch?id=c60b2b11bd17afca9bbe546db12918f789b57e25 ---- src/network/ssl/qsslcertificate_openssl.cpp.orig 2021-12-07 13:51:35 UTC -+++ src/network/ssl/qsslcertificate_openssl.cpp -@@ -691,7 +691,7 @@ static QMultiMap _q_mapFromX509Na - unsigned char *data = nullptr; - int size = q_ASN1_STRING_to_UTF8(&data, q_X509_NAME_ENTRY_get_data(e)); - info.insert(name, QString::fromUtf8((char*)data, size)); --#if QT_CONFIG(opensslv11) -+#if QT_CONFIG(opensslv11) && !defined(LIBRESSL_VERSION_NUMBER) - q_CRYPTO_free(data, nullptr, 0); - #else - q_CRYPTO_free(data); diff --git a/net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl.cpp b/net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl.cpp index 58d36083bccb..15d7d598ad11 100644 --- a/net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl.cpp +++ b/net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl.cpp @@ -1,51 +1,37 @@ -Patch based on Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/dev-qt/qtnetwork/files/qtnetwork-5.15.1-libressl.patch?id=c60b2b11bd17afca9bbe546db12918f789b57e25 ---- src/network/ssl/qsslcontext_openssl.cpp.orig 2021-12-07 13:51:35 UTC +--- src/network/ssl/qsslcontext_openssl.cpp.orig 2022-06-28 10:17:59 UTC +++ src/network/ssl/qsslcontext_openssl.cpp -@@ -408,16 +408,28 @@ init_context: - maxVersion = DTLS1_VERSION; - break; - case QSsl::DtlsV1_0OrLater: -+#ifdef DTLS_MAX_VERSION - minVersion = DTLS1_VERSION; - maxVersion = DTLS_MAX_VERSION; -+#else -+ Q_UNREACHABLE(); -+#endif // DTLS_MAX_VERSION - break; - case QSsl::DtlsV1_2: -+#ifdef DTLS1_2_VERSION - minVersion = DTLS1_2_VERSION; - maxVersion = DTLS1_2_VERSION; -+#else -+ Q_UNREACHABLE(); -+#endif // DTLS1_2_VERSION - break; - case QSsl::DtlsV1_2OrLater: -+#if defined(DTLS1_2_VERSION) && defined(DTLS_MAX_VERSION) - minVersion = DTLS1_2_VERSION; - maxVersion = DTLS_MAX_VERSION; +@@ -356,11 +356,15 @@ init_context: + q_SSL_CTX_set_security_level(sslContext->ctx, 1); + + const long anyVersion = ++#ifndef TLS_ANY_VERSION ++ 0x1000; +#else -+ Q_UNREACHABLE(); -+#endif // DTLS1_2_VERSION && DTLS_MAX_VERSION - break; - case QSsl::TlsV1_3OrLater: - #ifdef TLS1_3_VERSION -@@ -722,6 +734,7 @@ void QSslContext::applyBackendConfig(QSslContext *sslC + #if QT_CONFIG(dtls) + isDtls ? DTLS_ANY_VERSION : TLS_ANY_VERSION; + #else + TLS_ANY_VERSION; + #endif // dtls ++#endif + long minVersion = anyVersion; + long maxVersion = anyVersion; + +@@ -722,6 +726,7 @@ void QSslContext::applyBackendConfig(QSslContext *sslC } #endif // ocsp +#ifndef LIBRESSL_VERSION_NUMBER QSharedPointer cctx(q_SSL_CONF_CTX_new(), &q_SSL_CONF_CTX_free); if (cctx) { q_SSL_CONF_CTX_set_ssl_ctx(cctx.data(), sslContext->ctx); -@@ -768,7 +781,9 @@ void QSslContext::applyBackendConfig(QSslContext *sslC +@@ -768,7 +773,9 @@ void QSslContext::applyBackendConfig(QSslContext *sslC sslContext->errorStr = msgErrorSettingBackendConfig(QSslSocket::tr("SSL_CONF_finish() failed")); sslContext->errorCode = QSslError::UnspecifiedError; } - } else { + } else +#endif // LIBRESSL_VERSION_NUMBER + { sslContext->errorStr = msgErrorSettingBackendConfig(QSslSocket::tr("SSL_CONF_CTX_new() failed")); sslContext->errorCode = QSslError::UnspecifiedError; } diff --git a/net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl__p.h b/net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl__p.h deleted file mode 100644 index 284b01bdd24b..000000000000 --- a/net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl__p.h +++ /dev/null @@ -1,17 +0,0 @@ -Patch based on Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/dev-qt/qtnetwork/files/qtnetwork-5.15.1-libressl.patch?id=c60b2b11bd17afca9bbe546db12918f789b57e25 ---- src/network/ssl/qsslcontext_openssl_p.h.orig 2020-09-02 10:15:07 UTC -+++ src/network/ssl/qsslcontext_openssl_p.h -@@ -61,6 +61,13 @@ - - QT_BEGIN_NAMESPACE - -+#ifndef DTLS_ANY_VERSION -+#define DTLS_ANY_VERSION 0x1FFFF -+#endif -+#ifndef TLS_ANY_VERSION -+#define TLS_ANY_VERSION 0x10000 -+#endif -+ - #ifndef QT_NO_SSL - - class QSslContextPrivate; diff --git a/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl.cpp b/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl.cpp index d44e286fc3fa..22689b3fc546 100644 --- a/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl.cpp +++ b/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl.cpp @@ -1,33 +1,26 @@ -Patch based on Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/dev-qt/qtnetwork/files/qtnetwork-5.15.1-libressl.patch?id=c60b2b11bd17afca9bbe546db12918f789b57e25 ---- src/network/ssl/qsslsocket_openssl.cpp.orig 2020-10-27 08:02:11 UTC +--- src/network/ssl/qsslsocket_openssl.cpp.orig 2022-06-28 13:46:41 UTC +++ src/network/ssl/qsslsocket_openssl.cpp -@@ -238,7 +238,11 @@ static int q_ssl_psk_use_session_callback(SSL *ssl, co - +@@ -239,6 +239,12 @@ static int q_ssl_psk_use_session_callback(SSL *ssl, co return 1; // need to return 1 or else "the connection setup fails." } -+#endif // TLS1_3_VERSION ++#endif // TLS1_3_VERSION ++ +#endif // !OPENSSL_NO_PSK + -+#ifdef TLS1_3_VERSION ++#if (!defined(OPENSSL_NO_PSK) || defined(LIBRESSL_VERSION_NUMBER)) \ ++ && defined(TLS1_3_VERSION) int q_ssl_sess_set_new_cb(SSL *ssl, SSL_SESSION *session) { if (!ssl) { -@@ -256,8 +260,6 @@ int q_ssl_sess_set_new_cb(SSL *ssl, SSL_SESSION *sessi +@@ -254,9 +260,7 @@ int q_ssl_sess_set_new_cb(SSL *ssl, SSL_SESSION *sessi + QSslSocketBackendPrivate::s_indexForSSLExtraData)); + return socketPrivate->handleNewSessionTicket(ssl); } - #endif // TLS1_3_VERSION - --#endif // !OPENSSL_NO_PSK +-#endif // TLS1_3_VERSION - - #if QT_CONFIG(ocsp) +-#endif // !OPENSSL_NO_PSK ++#endif - int qt_OCSP_status_server_callback(SSL *ssl, void *ocspRequest) -@@ -653,7 +655,7 @@ bool QSslSocketBackendPrivate::initSslContext() - else if (mode == QSslSocket::SslServerMode) - q_SSL_set_psk_server_callback(ssl, &q_ssl_psk_server_callback); + #if QT_CONFIG(ocsp) --#if OPENSSL_VERSION_NUMBER >= 0x10101006L -+#if OPENSSL_VERSION_NUMBER >= 0x10101006L && !defined(LIBRESSL_VERSION_NUMBER) - // Set the client callback for TLSv1.3 PSK - if (mode == QSslSocket::SslClientMode - && QSslSocket::sslLibraryBuildVersionNumber() >= 0x10101006L) { diff --git a/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols.cpp b/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols.cpp index beb605952d7a..66eca715c9b9 100644 --- a/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols.cpp +++ b/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols.cpp @@ -1,129 +1,32 @@ -Patch based on Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/dev-qt/qtnetwork/files/qtnetwork-5.15.1-libressl.patch?id=c60b2b11bd17afca9bbe546db12918f789b57e25 ---- src/network/ssl/qsslsocket_openssl_symbols.cpp.orig 2021-12-07 13:51:35 UTC +--- src/network/ssl/qsslsocket_openssl_symbols.cpp.orig 2022-06-28 10:13:07 UTC +++ src/network/ssl/qsslsocket_openssl_symbols.cpp -@@ -145,18 +145,31 @@ DEFINEFUNC(const BIO_METHOD *, BIO_s_mem, void, DUMMYA - DEFINEFUNC2(int, BN_is_word, BIGNUM *a, a, BN_ULONG w, w, return 0, return) - DEFINEFUNC(int, EVP_CIPHER_CTX_reset, EVP_CIPHER_CTX *c, c, return 0, return) - DEFINEFUNC(int, EVP_PKEY_up_ref, EVP_PKEY *a, a, return 0, return) -+#ifdef OPENSSL_NO_DEPRECATED_3_0 - DEFINEFUNC2(EVP_PKEY_CTX *, EVP_PKEY_CTX_new, EVP_PKEY *pkey, pkey, ENGINE *e, e, return nullptr, return) - DEFINEFUNC(int, EVP_PKEY_param_check, EVP_PKEY_CTX *ctx, ctx, return 0, return) - DEFINEFUNC(void, EVP_PKEY_CTX_free, EVP_PKEY_CTX *ctx, ctx, return, return) -+#endif // OPENSSL_NO_DEPRECATED_3_0 - DEFINEFUNC(int, EVP_PKEY_base_id, EVP_PKEY *a, a, return NID_undef, return) - DEFINEFUNC(int, RSA_bits, RSA *a, a, return 0, return) -+#if !defined(LIBRESSL_VERSION_NUMBER) || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x03050000fL) - DEFINEFUNC(int, DSA_bits, DSA *a, a, return 0, return) -+#endif -+#ifndef LIBRESSL_VERSION_NUMBER - DEFINEFUNC(int, OPENSSL_sk_num, OPENSSL_STACK *a, a, return -1, return) - DEFINEFUNC2(void, OPENSSL_sk_pop_free, OPENSSL_STACK *a, a, void (*b)(void*), b, return, DUMMYARG) - DEFINEFUNC(OPENSSL_STACK *, OPENSSL_sk_new_null, DUMMYARG, DUMMYARG, return nullptr, return) - DEFINEFUNC2(void, OPENSSL_sk_push, OPENSSL_STACK *a, a, void *b, b, return, DUMMYARG) - DEFINEFUNC(void, OPENSSL_sk_free, OPENSSL_STACK *a, a, return, DUMMYARG) - DEFINEFUNC2(void *, OPENSSL_sk_value, OPENSSL_STACK *a, a, int b, b, return nullptr, return) -+#else -+DEFINEFUNC(int, sk_num, STACK *a, a, return -1, return) -+DEFINEFUNC2(void, sk_pop_free, STACK *a, a, void (*b)(void*), b, return, DUMMYARG) -+DEFINEFUNC(_STACK *, sk_new_null, DUMMYARG, DUMMYARG, return nullptr, return) -+DEFINEFUNC2(void, sk_push, _STACK *a, a, void *b, b, return, DUMMYARG) -+DEFINEFUNC(void, sk_free, _STACK *a, a, return, DUMMYARG) -+DEFINEFUNC2(void *, sk_value, STACK *a, a, int b, b, return nullptr, return) -+#endif // LIBRESSL_VERSION_NUMBER - DEFINEFUNC(int, SSL_session_reused, SSL *a, a, return 0, return) - DEFINEFUNC2(unsigned long, SSL_CTX_set_options, SSL_CTX *ctx, ctx, unsigned long op, op, return 0, return) - DEFINEFUNC(int, SSL_CTX_get_security_level, const SSL_CTX *ctx, ctx, return -1, return) -@@ -184,7 +197,11 @@ DEFINEFUNC2(void, X509_STORE_set_verify_cb, X509_STORE - DEFINEFUNC3(int, X509_STORE_set_ex_data, X509_STORE *a, a, int idx, idx, void *data, data, return 0, return) - DEFINEFUNC2(void *, X509_STORE_get_ex_data, X509_STORE *r, r, int idx, idx, return nullptr, return) - DEFINEFUNC(STACK_OF(X509) *, X509_STORE_CTX_get0_chain, X509_STORE_CTX *a, a, return nullptr, return) -+#ifndef LIBRESSL_VERSION_NUMBER - DEFINEFUNC3(void, CRYPTO_free, void *str, str, const char *file, file, int line, line, return, DUMMYARG) -+#else -+DEFINEFUNC(void, CRYPTO_free, void *a, a, return, DUMMYARG) -+#endif - DEFINEFUNC(long, OpenSSL_version_num, void, DUMMYARG, return 0, return) - DEFINEFUNC(const char *, OpenSSL_version, int a, a, return nullptr, return) - DEFINEFUNC(unsigned long, SSL_SESSION_get_ticket_lifetime_hint, const SSL_SESSION *session, session, return 0, return) -@@ -224,7 +241,9 @@ DEFINEFUNC5(int, OCSP_id_get0_info, ASN1_OCTET_STRING - ASN1_OCTET_STRING **piKeyHash, piKeyHash, ASN1_INTEGER **pserial, pserial, OCSP_CERTID *cid, cid, - return 0, return) - DEFINEFUNC2(OCSP_RESPONSE *, OCSP_response_create, int status, status, OCSP_BASICRESP *bs, bs, return nullptr, return) -+#if !defined(LIBRESSL_VERSION_NUMBER) || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x03050000fL) - DEFINEFUNC(const STACK_OF(X509) *, OCSP_resp_get0_certs, const OCSP_BASICRESP *bs, bs, return nullptr, return) -+#endif - DEFINEFUNC2(int, OCSP_id_cmp, OCSP_CERTID *a, a, OCSP_CERTID *b, b, return -1, return) - DEFINEFUNC7(OCSP_SINGLERESP *, OCSP_basic_add1_status, OCSP_BASICRESP *r, r, OCSP_CERTID *c, c, int s, s, - int re, re, ASN1_TIME *rt, rt, ASN1_TIME *t, t, ASN1_TIME *n, n, return nullptr, return) -@@ -356,12 +375,14 @@ DEFINEFUNC2(int, SSL_CTX_use_PrivateKey, SSL_CTX *a, a +@@ -355,12 +355,14 @@ DEFINEFUNC2(int, SSL_CTX_use_PrivateKey, SSL_CTX *a, a DEFINEFUNC2(int, SSL_CTX_use_RSAPrivateKey, SSL_CTX *a, a, RSA *b, b, return -1, return) DEFINEFUNC3(int, SSL_CTX_use_PrivateKey_file, SSL_CTX *a, a, const char *b, b, int c, c, return -1, return) DEFINEFUNC(X509_STORE *, SSL_CTX_get_cert_store, const SSL_CTX *a, a, return nullptr, return) +#ifndef LIBRESSL_VERSION_NUMBER DEFINEFUNC(SSL_CONF_CTX *, SSL_CONF_CTX_new, DUMMYARG, DUMMYARG, return nullptr, return); DEFINEFUNC(void, SSL_CONF_CTX_free, SSL_CONF_CTX *a, a, return ,return); DEFINEFUNC2(void, SSL_CONF_CTX_set_ssl_ctx, SSL_CONF_CTX *a, a, SSL_CTX *b, b, return, return); DEFINEFUNC2(unsigned int, SSL_CONF_CTX_set_flags, SSL_CONF_CTX *a, a, unsigned int b, b, return 0, return); DEFINEFUNC(int, SSL_CONF_CTX_finish, SSL_CONF_CTX *a, a, return 0, return); DEFINEFUNC3(int, SSL_CONF_cmd, SSL_CONF_CTX *a, a, const char *b, b, const char *c, c, return 0, return); +#endif DEFINEFUNC(void, SSL_free, SSL *a, a, return, DUMMYARG) DEFINEFUNC(STACK_OF(SSL_CIPHER) *, SSL_get_ciphers, const SSL *a, a, return nullptr, return) DEFINEFUNC(const SSL_CIPHER *, SSL_get_current_cipher, SSL *a, a, return nullptr, return) -@@ -845,17 +866,21 @@ bool q_resolveOpenSslSymbols() - RESOLVEFUNC(ASN1_STRING_get0_data) - RESOLVEFUNC(EVP_CIPHER_CTX_reset) - RESOLVEFUNC(EVP_PKEY_up_ref) -+#ifdef OPENSSL_NO_DEPRECATED_3_0 - RESOLVEFUNC(EVP_PKEY_CTX_new) - RESOLVEFUNC(EVP_PKEY_param_check) - RESOLVEFUNC(EVP_PKEY_CTX_free) -+#endif // OPENSSL_NO_DEPRECATED_3_0 - RESOLVEFUNC(EVP_PKEY_base_id) - RESOLVEFUNC(RSA_bits) -+#ifndef LIBRESSL_VERSION_NUMBER - RESOLVEFUNC(OPENSSL_sk_new_null) - RESOLVEFUNC(OPENSSL_sk_push) - RESOLVEFUNC(OPENSSL_sk_free) - RESOLVEFUNC(OPENSSL_sk_num) - RESOLVEFUNC(OPENSSL_sk_pop_free) - RESOLVEFUNC(OPENSSL_sk_value) -+#endif - RESOLVEFUNC(DH_get0_pqg) - RESOLVEFUNC(SSL_CTX_set_options) - RESOLVEFUNC(SSL_CTX_get_security_level) -@@ -898,7 +923,9 @@ bool q_resolveOpenSslSymbols() - - RESOLVEFUNC(SSL_SESSION_get_ticket_lifetime_hint) - RESOLVEFUNC(DH_bits) -+#if !defined(LIBRESSL_VERSION_NUMBER) || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x03050000fL) - RESOLVEFUNC(DSA_bits) -+#endif - - #if QT_CONFIG(dtls) - RESOLVEFUNC(DTLSv1_listen) -@@ -928,7 +955,9 @@ bool q_resolveOpenSslSymbols() - RESOLVEFUNC(OCSP_check_validity) - RESOLVEFUNC(OCSP_cert_to_id) - RESOLVEFUNC(OCSP_id_get0_info) -+#ifndef LIBRESSL_VERSION_NUMBER - RESOLVEFUNC(OCSP_resp_get0_certs) -+#endif - RESOLVEFUNC(OCSP_basic_sign) - RESOLVEFUNC(OCSP_response_create) - RESOLVEFUNC(i2d_OCSP_RESPONSE) -@@ -1058,12 +1087,14 @@ bool q_resolveOpenSslSymbols() +@@ -1066,12 +1068,14 @@ bool q_resolveOpenSslSymbols() RESOLVEFUNC(SSL_CTX_use_RSAPrivateKey) RESOLVEFUNC(SSL_CTX_use_PrivateKey_file) RESOLVEFUNC(SSL_CTX_get_cert_store); +#ifndef LIBRESSL_VERSION_NUMBER RESOLVEFUNC(SSL_CONF_CTX_new); RESOLVEFUNC(SSL_CONF_CTX_free); RESOLVEFUNC(SSL_CONF_CTX_set_ssl_ctx); RESOLVEFUNC(SSL_CONF_CTX_set_flags); RESOLVEFUNC(SSL_CONF_CTX_finish); RESOLVEFUNC(SSL_CONF_cmd); +#endif RESOLVEFUNC(SSL_accept) RESOLVEFUNC(SSL_clear) RESOLVEFUNC(SSL_connect) diff --git a/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols__p.h b/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols__p.h index d7af4da7063d..bea26f610007 100644 --- a/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols__p.h +++ b/net/qt5-network/files/patch-src_network_ssl_qsslsocket__openssl__symbols__p.h @@ -1,114 +1,31 @@ -Patch based on Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/dev-qt/qtnetwork/files/qtnetwork-5.15.1-libressl.patch?id=c60b2b11bd17afca9bbe546db12918f789b57e25 ---- src/network/ssl/qsslsocket_openssl_symbols_p.h.orig 2021-12-07 13:51:35 UTC +--- src/network/ssl/qsslsocket_openssl_symbols_p.h.orig 2022-06-28 10:06:55 UTC +++ src/network/ssl/qsslsocket_openssl_symbols_p.h @@ -80,6 +80,13 @@ QT_BEGIN_NAMESPACE #define DUMMYARG +#ifdef LIBRESSL_VERSION_NUMBER +typedef _STACK STACK; +typedef STACK OPENSSL_STACK; +typedef void OPENSSL_INIT_SETTINGS; +typedef int (*X509_STORE_CTX_verify_cb)(int ok,X509_STORE_CTX *ctx); +#endif + #if !defined QT_LINKED_OPENSSL // **************** Shared declarations ****************** // ret func(arg) -@@ -230,20 +237,43 @@ const unsigned char * q_ASN1_STRING_get0_data(const AS - Q_AUTOTEST_EXPORT BIO *q_BIO_new(const BIO_METHOD *a); - Q_AUTOTEST_EXPORT const BIO_METHOD *q_BIO_s_mem(); - -+#if !defined(LIBRESSL_VERSION_NUMBER) || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x03050000fL) - int q_DSA_bits(DSA *a); -+#else -+#define q_DSA_bits(dsa) q_BN_num_bits((dsa)->p) -+#endif - int q_EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *c); - Q_AUTOTEST_EXPORT int q_EVP_PKEY_up_ref(EVP_PKEY *a); -+#ifdef OPENSSL_NO_DEPRECATED_3_0 - EVP_PKEY_CTX *q_EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e); - void q_EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx); - int q_EVP_PKEY_param_check(EVP_PKEY_CTX *ctx); -+#endif // OPENSSL_NO_DEPRECATED_3_0 - int q_EVP_PKEY_base_id(EVP_PKEY *a); - int q_RSA_bits(RSA *a); -+ -+#ifndef LIBRESSL_VERSION_NUMBER - Q_AUTOTEST_EXPORT int q_OPENSSL_sk_num(OPENSSL_STACK *a); - Q_AUTOTEST_EXPORT void q_OPENSSL_sk_pop_free(OPENSSL_STACK *a, void (*b)(void *)); - Q_AUTOTEST_EXPORT OPENSSL_STACK *q_OPENSSL_sk_new_null(); - Q_AUTOTEST_EXPORT void q_OPENSSL_sk_push(OPENSSL_STACK *st, void *data); - Q_AUTOTEST_EXPORT void q_OPENSSL_sk_free(OPENSSL_STACK *a); - Q_AUTOTEST_EXPORT void * q_OPENSSL_sk_value(OPENSSL_STACK *a, int b); -+#else // LIBRESSL_VERSION_NUMBER -+int q_sk_num(STACK *a); -+#define q_OPENSSL_sk_num(a) q_sk_num(a) -+void q_sk_pop_free(STACK *a, void (*b)(void *)); -+#define q_OPENSSL_sk_pop_free(a, b) q_sk_pop_free(a, b) -+STACK *q_sk_new_null(); -+#define q_OPENSSL_sk_new_null() q_sk_new_null() -+void q_sk_push(STACK *st, void *data); -+#define q_OPENSSL_sk_push(st, data) q_sk_push(st, data) -+void q_sk_free(STACK *a); -+#define q_OPENSSL_sk_free q_sk_free -+void *q_sk_value(STACK *a, int b); -+#define q_OPENSSL_sk_value(a, b) q_sk_value(a, b) -+#endif // LIBRESSL_VERSION_NUMBER -+ - int q_SSL_session_reused(SSL *a); - unsigned long q_SSL_CTX_set_options(SSL_CTX *ctx, unsigned long op); - int q_OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings); -@@ -269,8 +299,13 @@ int q_DH_bits(DH *dh); - # define q_SSL_load_error_strings() q_OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS \ - | OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL) - -+#ifndef LIBRESSL_VERSION_NUMBER - #define q_SKM_sk_num(type, st) ((int (*)(const STACK_OF(type) *))q_OPENSSL_sk_num)(st) - #define q_SKM_sk_value(type, st,i) ((type * (*)(const STACK_OF(type) *, int))q_OPENSSL_sk_value)(st, i) -+#else -+#define q_SKM_sk_num(type, st) ((int (*)(const STACK_OF(type) *))q_sk_num)(st) -+#define q_SKM_sk_value(type, st,i) ((type * (*)(const STACK_OF(type) *, int))q_sk_value)(st, i) -+#endif // LIBRESSL_VERSION_NUMBER - - #define q_OPENSSL_add_all_algorithms_conf() q_OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS \ - | OPENSSL_INIT_ADD_ALL_DIGESTS \ -@@ -279,7 +314,11 @@ int q_DH_bits(DH *dh); - | OPENSSL_INIT_ADD_ALL_DIGESTS, NULL) - - int q_OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings); -+#ifndef LIBRESSL_VERSION_NUMBER - void q_CRYPTO_free(void *str, const char *file, int line); -+#else -+void q_CRYPTO_free(void *a); -+#endif - - long q_OpenSSL_version_num(); - const char *q_OpenSSL_version(int type); -@@ -497,12 +536,14 @@ int q_SSL_CTX_use_PrivateKey(SSL_CTX *a, EVP_PKEY *b); +@@ -496,12 +503,14 @@ int q_SSL_CTX_use_PrivateKey(SSL_CTX *a, EVP_PKEY *b); int q_SSL_CTX_use_RSAPrivateKey(SSL_CTX *a, RSA *b); int q_SSL_CTX_use_PrivateKey_file(SSL_CTX *a, const char *b, int c); X509_STORE *q_SSL_CTX_get_cert_store(const SSL_CTX *a); +#ifndef LIBRESSL_VERSION_NUMBER SSL_CONF_CTX *q_SSL_CONF_CTX_new(); void q_SSL_CONF_CTX_free(SSL_CONF_CTX *a); void q_SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *a, SSL_CTX *b); unsigned int q_SSL_CONF_CTX_set_flags(SSL_CONF_CTX *a, unsigned int b); int q_SSL_CONF_CTX_finish(SSL_CONF_CTX *a); int q_SSL_CONF_cmd(SSL_CONF_CTX *a, const char *b, const char *c); +#endif void q_SSL_free(SSL *a); STACK_OF(SSL_CIPHER) *q_SSL_get_ciphers(const SSL *a); const SSL_CIPHER *q_SSL_get_current_cipher(SSL *a); -@@ -728,7 +769,11 @@ int q_OCSP_check_validity(ASN1_GENERALIZEDTIME *thisup - int q_OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd, ASN1_OCTET_STRING **pikeyHash, - ASN1_INTEGER **pserial, OCSP_CERTID *cid); - -+#if !defined(LIBRESSL_VERSION_NUMBER) || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x03050000fL) - const STACK_OF(X509) *q_OCSP_resp_get0_certs(const OCSP_BASICRESP *bs); -+#else -+#define q_OCSP_resp_get0_certs(bs) ((bs)->certs) -+#endif - Q_AUTOTEST_EXPORT OCSP_CERTID *q_OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer); - Q_AUTOTEST_EXPORT void q_OCSP_CERTID_free(OCSP_CERTID *cid); - int q_OCSP_id_cmp(OCSP_CERTID *a, OCSP_CERTID *b); diff --git a/net/qt5-networkauth/distinfo b/net/qt5-networkauth/distinfo index 240951061f10..c450be31a5af 100644 --- a/net/qt5-networkauth/distinfo +++ b/net/qt5-networkauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423902 -SHA256 (KDE/Qt/5.15.2/kde-qtnetworkauth-5.15.2p2.tar.xz) = 73a747463be53741087836abbe07f7ba7cb787721d3a9dad713fd6552ac1068d -SIZE (KDE/Qt/5.15.2/kde-qtnetworkauth-5.15.2p2.tar.xz) = 119968 +TIMESTAMP = 1656427517 +SHA256 (KDE/Qt/5.15.5/kde-qtnetworkauth-5.15.5p0.tar.xz) = 45b516666fb05419b24d007e617c953080510d5a590eda9bbaba016e59f9a1b6 +SIZE (KDE/Qt/5.15.5/kde-qtnetworkauth-5.15.5p0.tar.xz) = 119968 diff --git a/print/qt5-printsupport/distinfo b/print/qt5-printsupport/distinfo index 83c44140cebd..e14a2773210f 100644 --- a/print/qt5-printsupport/distinfo +++ b/print/qt5-printsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423903 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427518 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/sysutils/qt5-qtdiag/distinfo b/sysutils/qt5-qtdiag/distinfo index f34bce8fad74..90b995885c5f 100644 --- a/sysutils/qt5-qtdiag/distinfo +++ b/sysutils/qt5-qtdiag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423904 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427519 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/sysutils/qt5-qtpaths/distinfo b/sysutils/qt5-qtpaths/distinfo index 4b127a8d177c..fe9efad3e792 100644 --- a/sysutils/qt5-qtpaths/distinfo +++ b/sysutils/qt5-qtpaths/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423905 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427520 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/sysutils/qt5-qtplugininfo/distinfo b/sysutils/qt5-qtplugininfo/distinfo index 8db00dbe0f5b..477f3b864426 100644 --- a/sysutils/qt5-qtplugininfo/distinfo +++ b/sysutils/qt5-qtplugininfo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423906 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427521 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/textproc/qt5-xml/distinfo b/textproc/qt5-xml/distinfo index 709058187011..bf9820a73587 100644 --- a/textproc/qt5-xml/distinfo +++ b/textproc/qt5-xml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423907 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427522 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/textproc/qt5-xmlpatterns/distinfo b/textproc/qt5-xmlpatterns/distinfo index 09aa3f237f6f..a0ee3560d266 100644 --- a/textproc/qt5-xmlpatterns/distinfo +++ b/textproc/qt5-xmlpatterns/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423908 -SHA256 (KDE/Qt/5.15.2/kde-qtxmlpatterns-5.15.2p2.tar.xz) = 519880b344bd108df382437cc987eaafb3fbfb055ea25edeff82d6fb38abd381 -SIZE (KDE/Qt/5.15.2/kde-qtxmlpatterns-5.15.2p2.tar.xz) = 1376128 +TIMESTAMP = 1656427523 +SHA256 (KDE/Qt/5.15.5/kde-qtxmlpatterns-5.15.5p0.tar.xz) = 0f97dd9b0b8f00053bf191c619300b729bd96e7090012f12d89590b8453a1532 +SIZE (KDE/Qt/5.15.5/kde-qtxmlpatterns-5.15.5p0.tar.xz) = 1376604 diff --git a/www/qt5-webchannel/distinfo b/www/qt5-webchannel/distinfo index 38d2732b3e91..d898efb131b4 100644 --- a/www/qt5-webchannel/distinfo +++ b/www/qt5-webchannel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639423909 -SHA256 (KDE/Qt/5.15.2/kde-qtwebchannel-5.15.2p2.tar.xz) = ec97632456edacb2449ca178750a3fdc03a2561a6ca536c15593d729e33ec9cf -SIZE (KDE/Qt/5.15.2/kde-qtwebchannel-5.15.2p2.tar.xz) = 187764 +TIMESTAMP = 1656427524 +SHA256 (KDE/Qt/5.15.5/kde-qtwebchannel-5.15.5p3.tar.xz) = 1867e466b5805f12e819b358e7f99a04a990b051e0e679286324acd3974f2778 +SIZE (KDE/Qt/5.15.5/kde-qtwebchannel-5.15.5p3.tar.xz) = 188624 diff --git a/www/qt5-webglplugin/distinfo b/www/qt5-webglplugin/distinfo index 140dca493577..8410da7ef87e 100644 --- a/www/qt5-webglplugin/distinfo +++ b/www/qt5-webglplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424003 -SHA256 (KDE/Qt/5.15.2/kde-qtwebglplugin-5.15.2p2.tar.xz) = 54d0692ca4fdd487b53959a2895b098c03519965095b510d0750ea0358d71892 -SIZE (KDE/Qt/5.15.2/kde-qtwebglplugin-5.15.2p2.tar.xz) = 53640 +TIMESTAMP = 1656427529 +SHA256 (KDE/Qt/5.15.5/kde-qtwebglplugin-5.15.5p0.tar.xz) = 2fc45c00f8a8c26ad78c30e3c68a1f97e73575a3ba1be8e9fe8b4fb6f762b8c9 +SIZE (KDE/Qt/5.15.5/kde-qtwebglplugin-5.15.5p0.tar.xz) = 53652 diff --git a/www/qt5-websockets-qml/distinfo b/www/qt5-websockets-qml/distinfo index 495f78323362..5bfc94395d8e 100644 --- a/www/qt5-websockets-qml/distinfo +++ b/www/qt5-websockets-qml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424005 -SHA256 (KDE/Qt/5.15.2/kde-qtwebsockets-5.15.2p4.tar.xz) = f2c686efc7ecd2943af70d80303e20aecf7b7116cb11cf84fc83ce791552f48e -SIZE (KDE/Qt/5.15.2/kde-qtwebsockets-5.15.2p4.tar.xz) = 237052 +TIMESTAMP = 1656427532 +SHA256 (KDE/Qt/5.15.5/kde-qtwebsockets-5.15.5p3.tar.xz) = daa41b7c2acb1521d772169fc368f99d32abc99ba3dc968c0b28cb8890ea5bdc +SIZE (KDE/Qt/5.15.5/kde-qtwebsockets-5.15.5p3.tar.xz) = 237028 diff --git a/www/qt5-websockets/distinfo b/www/qt5-websockets/distinfo index 60c6219d79a8..c1f2b04d4225 100644 --- a/www/qt5-websockets/distinfo +++ b/www/qt5-websockets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424004 -SHA256 (KDE/Qt/5.15.2/kde-qtwebsockets-5.15.2p4.tar.xz) = f2c686efc7ecd2943af70d80303e20aecf7b7116cb11cf84fc83ce791552f48e -SIZE (KDE/Qt/5.15.2/kde-qtwebsockets-5.15.2p4.tar.xz) = 237052 +TIMESTAMP = 1656427531 +SHA256 (KDE/Qt/5.15.5/kde-qtwebsockets-5.15.5p3.tar.xz) = daa41b7c2acb1521d772169fc368f99d32abc99ba3dc968c0b28cb8890ea5bdc +SIZE (KDE/Qt/5.15.5/kde-qtwebsockets-5.15.5p3.tar.xz) = 237028 diff --git a/www/qt5-webview/distinfo b/www/qt5-webview/distinfo index 16129cf2677a..396cbd658546 100644 --- a/www/qt5-webview/distinfo +++ b/www/qt5-webview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424006 -SHA256 (KDE/Qt/5.15.2/kde-qtwebview-5.15.2p2.tar.xz) = 6750b8d0ce61d900a56b2ca9fa4cb1bca25a728ddffce22c3037f38a3cf47e9c -SIZE (KDE/Qt/5.15.2/kde-qtwebview-5.15.2p2.tar.xz) = 112016 +TIMESTAMP = 1656427532 +SHA256 (KDE/Qt/5.15.5/kde-qtwebview-5.15.5p0.tar.xz) = 0423fc1a84e30347a42d59ee45956b004e02ad16051c2ab3b486bec34c3009e5 +SIZE (KDE/Qt/5.15.5/kde-qtwebview-5.15.5p0.tar.xz) = 112224 diff --git a/x11-toolkits/qt5-charts/distinfo b/x11-toolkits/qt5-charts/distinfo index ae06d5898498..d1ff5347e527 100644 --- a/x11-toolkits/qt5-charts/distinfo +++ b/x11-toolkits/qt5-charts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424007 -SHA256 (KDE/Qt/5.15.2/kde-qtcharts-5.15.2p2.tar.xz) = bcc66d1f67d4be893aa1e952657735c63780ac2bcc49d6ec981c38612466b934 -SIZE (KDE/Qt/5.15.2/kde-qtcharts-5.15.2p2.tar.xz) = 4218592 +TIMESTAMP = 1656427534 +SHA256 (KDE/Qt/5.15.5/kde-qtcharts-5.15.5p1.tar.xz) = 58e5a2ceeca1a34b56e7458c497330d3cbfb42a4e708e846a46e8859ba2611a3 +SIZE (KDE/Qt/5.15.5/kde-qtcharts-5.15.5p1.tar.xz) = 4219036 diff --git a/x11-toolkits/qt5-datavis3d/distinfo b/x11-toolkits/qt5-datavis3d/distinfo index 2cef9773166f..7abd472a3092 100644 --- a/x11-toolkits/qt5-datavis3d/distinfo +++ b/x11-toolkits/qt5-datavis3d/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424008 -SHA256 (KDE/Qt/5.15.2/kde-qtdatavis3d-5.15.2p2.tar.xz) = 48c33c37c3a8053403169a00c93bb9ddebfdcfda65ee736c25d6ef355c2b24ce -SIZE (KDE/Qt/5.15.2/kde-qtdatavis3d-5.15.2p2.tar.xz) = 5159608 +TIMESTAMP = 1656427535 +SHA256 (KDE/Qt/5.15.5/kde-qtdatavis3d-5.15.5p0.tar.xz) = 312ef813d9068b46237b3feeba35a396332fcfa4cc73ef775e83725bea9bdcdd +SIZE (KDE/Qt/5.15.5/kde-qtdatavis3d-5.15.5p0.tar.xz) = 5159760 diff --git a/x11-toolkits/qt5-declarative-test/distinfo b/x11-toolkits/qt5-declarative-test/distinfo index 17f2d376c03b..c01c489a7270 100644 --- a/x11-toolkits/qt5-declarative-test/distinfo +++ b/x11-toolkits/qt5-declarative-test/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424011 -SHA256 (KDE/Qt/5.15.2/kde-qtdeclarative-5.15.2p41.tar.xz) = 67821e7f3ae5aac78bc82001394b2bef6f952c9607d281dd4a33e3c040d652ec -SIZE (KDE/Qt/5.15.2/kde-qtdeclarative-5.15.2p41.tar.xz) = 18992128 +TIMESTAMP = 1656427538 +SHA256 (KDE/Qt/5.15.5/kde-qtdeclarative-5.15.5p19.tar.xz) = 0c206dcd2aade48d9679b70bb03aa3a192d62dc6507434302dd0bc21a0956afc +SIZE (KDE/Qt/5.15.5/kde-qtdeclarative-5.15.5p19.tar.xz) = 19008008 diff --git a/x11-toolkits/qt5-declarative/distinfo b/x11-toolkits/qt5-declarative/distinfo index 356f1b291022..51abbd555da9 100644 --- a/x11-toolkits/qt5-declarative/distinfo +++ b/x11-toolkits/qt5-declarative/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424010 -SHA256 (KDE/Qt/5.15.2/kde-qtdeclarative-5.15.2p41.tar.xz) = 67821e7f3ae5aac78bc82001394b2bef6f952c9607d281dd4a33e3c040d652ec -SIZE (KDE/Qt/5.15.2/kde-qtdeclarative-5.15.2p41.tar.xz) = 18992128 +TIMESTAMP = 1656427537 +SHA256 (KDE/Qt/5.15.5/kde-qtdeclarative-5.15.5p19.tar.xz) = 0c206dcd2aade48d9679b70bb03aa3a192d62dc6507434302dd0bc21a0956afc +SIZE (KDE/Qt/5.15.5/kde-qtdeclarative-5.15.5p19.tar.xz) = 19008008 diff --git a/x11-toolkits/qt5-gamepad/distinfo b/x11-toolkits/qt5-gamepad/distinfo index 267b81d560b1..6e640ad89891 100644 --- a/x11-toolkits/qt5-gamepad/distinfo +++ b/x11-toolkits/qt5-gamepad/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424012 -SHA256 (KDE/Qt/5.15.2/kde-qtgamepad-5.15.2p2.tar.xz) = 96b18f044fbd38fd81422f2386c084ccf180f999d46f24b361bec1d8a7b0dfa7 -SIZE (KDE/Qt/5.15.2/kde-qtgamepad-5.15.2p2.tar.xz) = 365384 +TIMESTAMP = 1656427539 +SHA256 (KDE/Qt/5.15.5/kde-qtgamepad-5.15.5p0.tar.xz) = 2d7bdeaea79d7789c609715fb96a6f4ac6ee3c862de79358a229488748881e19 +SIZE (KDE/Qt/5.15.5/kde-qtgamepad-5.15.5p0.tar.xz) = 365416 diff --git a/x11-toolkits/qt5-gui/distinfo b/x11-toolkits/qt5-gui/distinfo index 27cf2cdba087..06115ed15148 100644 --- a/x11-toolkits/qt5-gui/distinfo +++ b/x11-toolkits/qt5-gui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424013 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427540 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/x11-toolkits/qt5-quick3d/distinfo b/x11-toolkits/qt5-quick3d/distinfo index cb4b6cad90b7..811482730bc7 100644 --- a/x11-toolkits/qt5-quick3d/distinfo +++ b/x11-toolkits/qt5-quick3d/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424014 -SHA256 (KDE/Qt/5.15.2/kde-qtquick3d-5.15.2p19.tar.xz) = 40c9ec702df6f1ce429144c78b53210e876590318b6a463855269c8d98071b6a -SIZE (KDE/Qt/5.15.2/kde-qtquick3d-5.15.2p19.tar.xz) = 18253072 +TIMESTAMP = 1656427541 +SHA256 (KDE/Qt/5.15.5/kde-qtquick3d-5.15.5p1.tar.xz) = 091ce29286e0645fb2a822d41ffc3b265d3049e1c8c0ad75a6ec7a473458e507 +SIZE (KDE/Qt/5.15.5/kde-qtquick3d-5.15.5p1.tar.xz) = 18255516 diff --git a/x11-toolkits/qt5-quick3d/pkg-plist b/x11-toolkits/qt5-quick3d/pkg-plist index a0396a8d374c..10b47243ecb6 100644 --- a/x11-toolkits/qt5-quick3d/pkg-plist +++ b/x11-toolkits/qt5-quick3d/pkg-plist @@ -1,520 +1,529 @@ %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dabstractlight_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3darealight_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dcamera_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dcustomcamera_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dcustommaterial_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3ddefaultmaterial_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3ddirectionallight_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3deffect_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dfrustumcamera_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dgeometry_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3ditem2d_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dloader_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dmaterial_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dmodel_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dnode_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dnode_p_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dobject_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dobjectchangelistener_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dorthographiccamera_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dperspectivecamera_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dpickresult_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dpointlight_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dprincipledmaterial_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dquaternionanimation_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dquaternionutils_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3drenderstats_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3drepeater_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dsceneenvironment_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dscenemanager_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dscenerenderer_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dscenerootnode_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dshaderutils_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dspotlight_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dtexture_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dutils_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dviewport_p.h %%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qtquick3dglobal_p.h %%QT_INCDIR%%/QtQuick3D/QQuick3D %%QT_INCDIR%%/QtQuick3D/QQuick3DGeometry %%QT_INCDIR%%/QtQuick3D/QQuick3DObject %%QT_INCDIR%%/QtQuick3D/QtQuick3D %%QT_INCDIR%%/QtQuick3D/QtQuick3DDepends %%QT_INCDIR%%/QtQuick3D/QtQuick3DVersion %%QT_INCDIR%%/QtQuick3D/qquick3d.h %%QT_INCDIR%%/QtQuick3D/qquick3dgeometry.h %%QT_INCDIR%%/QtQuick3D/qquick3dobject.h %%QT_INCDIR%%/QtQuick3D/qtquick3dglobal.h %%QT_INCDIR%%/QtQuick3D/qtquick3dversion.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimporter_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimporterfactory_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimporterplugin_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimportmanager_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgmeshbvhbuilder_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgmeshutilities_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgqmlutilities_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qtquick3dassetimportglobal_p.h %%QT_INCDIR%%/QtQuick3DAssetImport/QtQuick3DAssetImport %%QT_INCDIR%%/QtQuick3DAssetImport/QtQuick3DAssetImportDepends %%QT_INCDIR%%/QtQuick3DAssetImport/QtQuick3DAssetImportVersion %%QT_INCDIR%%/QtQuick3DAssetImport/qtquick3dassetimportversion.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgglimplobjects_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgopenglextensions_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgopengltokens_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgopenglutil_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderattriblayout_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackend_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendgl3_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendgl4_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendglbase_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendgles2_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendinputassemblergl_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendnull_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendrenderstatesgl_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbackendshaderprogramgl_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderbasetypes_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderconstantbuffer_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendercontext_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderdatabuffer_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderdepthstencilstate_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderframebuffer_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderimagetexture_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderindexbuffer_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderinputassembler_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderlogging_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderprogrampipeline_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderquerybase_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderrasterizerstate_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderrenderbuffer_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendershaderconstant_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendershaderprogram_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrenderstoragebuffer_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendersync_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendertexture2d_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendertexturebase_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendertexturecube_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendertimerquery_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qssgrendervertexbuffer_p.h %%QT_INCDIR%%/QtQuick3DRender/%%FULLVER%%/QtQuick3DRender/private/qtquick3drenderglobal_p.h %%QT_INCDIR%%/QtQuick3DRender/QtQuick3DRender %%QT_INCDIR%%/QtQuick3DRender/QtQuick3DRenderDepends %%QT_INCDIR%%/QtQuick3DRender/QtQuick3DRenderVersion %%QT_INCDIR%%/QtQuick3DRender/qtquick3drenderversion.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgperframeallocator_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderableimage_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderableobjects_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderbuffermanager_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercamera_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderclippingfrustum_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercontextcore_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercustommaterial_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercustommaterialrendercontext_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercustommaterialsystem_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderdefaultmaterial_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderdefaultmaterialshadergenerator_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderdynamicobjectsystem_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderdynamicobjectsystemcommands_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderdynamicobjectsystemutil_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendereffect_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendereffectsystem_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderer_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimpl_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimpllayerrenderdata_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimpllayerrenderhelper_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimpllayerrenderpreparationdata_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimplshaders_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererutil_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendergeometry_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendergpuprofiler_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendergraphobject_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendergraphobjectpickquery_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderimage_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderimagebatchloader_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderimagetexturedata_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderinputstreamfactory_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderitem2d_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderlayer_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderlight_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderlightconstantproperties_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderlightmaps_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderloadedtexture_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermaterialdirty_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermaterialshadergenerator_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermesh_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermodel_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendernode_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderprefiltertexture_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderray_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderresourcebufferobjects_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderresourcemanager_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderresourcetexture2d_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadercache_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadercodegenerator_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadercodegeneratorv2_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershaderkeys_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadowmap_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendertessmodevalues_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderthreadpool_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgruntimerenderlogging_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgvertexpipelineimpl_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qtquick3druntimerenderglobal_p.h %%QT_INCDIR%%/QtQuick3DRuntimeRender/QtQuick3DRuntimeRender %%QT_INCDIR%%/QtQuick3DRuntimeRender/QtQuick3DRuntimeRenderDepends %%QT_INCDIR%%/QtQuick3DRuntimeRender/QtQuick3DRuntimeRenderVersion %%QT_INCDIR%%/QtQuick3DRuntimeRender/qtquick3druntimerenderversion.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgbounds3_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgdataref_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssginvasivelinkedlist_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgmeshbvh_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgoption_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgperftimer_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgplane_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgutils_p.h %%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qtquick3dutilsglobal_p.h %%QT_INCDIR%%/QtQuick3DUtils/QtQuick3DUtils %%QT_INCDIR%%/QtQuick3DUtils/QtQuick3DUtilsDepends %%QT_INCDIR%%/QtQuick3DUtils/QtQuick3DUtilsVersion %%QT_INCDIR%%/QtQuick3DUtils/qtquick3dutilsversion.h %%QT_CMAKEDIR%%/Qt5Quick3D/Qt5Quick3DConfig.cmake %%QT_CMAKEDIR%%/Qt5Quick3D/Qt5Quick3DConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Quick3DAssetImport/Qt5Quick3DAssetImportConfig.cmake %%QT_CMAKEDIR%%/Qt5Quick3DAssetImport/Qt5Quick3DAssetImportConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Quick3DAssetImport/Qt5Quick3DAssetImport_AssimpImporterPlugin.cmake %%QT_CMAKEDIR%%/Qt5Quick3DAssetImport/Qt5Quick3DAssetImport_UipAssetImporterPlugin.cmake %%QT_CMAKEDIR%%/Qt5Quick3DRender/Qt5Quick3DRenderConfig.cmake %%QT_CMAKEDIR%%/Qt5Quick3DRender/Qt5Quick3DRenderConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Quick3DRuntimeRender/Qt5Quick3DRuntimeRenderConfig.cmake %%QT_CMAKEDIR%%/Qt5Quick3DRuntimeRender/Qt5Quick3DRuntimeRenderConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Quick3DUtils/Qt5Quick3DUtilsConfig.cmake %%QT_CMAKEDIR%%/Qt5Quick3DUtils/Qt5Quick3DUtilsConfigVersion.cmake %%QT_BINDIR%%/balsam %%DEBUG%%%%QT_BINDIR%%/balsam.debug %%QT_BINDIR%%/meshdebug %%DEBUG%%%%QT_BINDIR%%/meshdebug.debug %%QT_LIBDIR%%/libQt5Quick3D.prl %%QT_LIBDIR%%/libQt5Quick3D.so %%QT_LIBDIR%%/libQt5Quick3D.so.5 %%QT_LIBDIR%%/libQt5Quick3D.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Quick3D.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Quick3D.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5Quick3DAssetImport.prl %%QT_LIBDIR%%/libQt5Quick3DAssetImport.so %%QT_LIBDIR%%/libQt5Quick3DAssetImport.so.5 %%QT_LIBDIR%%/libQt5Quick3DAssetImport.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Quick3DAssetImport.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Quick3DAssetImport.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5Quick3DRender.prl %%QT_LIBDIR%%/libQt5Quick3DRender.so %%QT_LIBDIR%%/libQt5Quick3DRender.so.5 %%QT_LIBDIR%%/libQt5Quick3DRender.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Quick3DRender.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Quick3DRender.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5Quick3DRuntimeRender.prl %%QT_LIBDIR%%/libQt5Quick3DRuntimeRender.so %%QT_LIBDIR%%/libQt5Quick3DRuntimeRender.so.5 %%QT_LIBDIR%%/libQt5Quick3DRuntimeRender.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Quick3DRuntimeRender.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Quick3DRuntimeRender.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5Quick3DUtils.prl %%QT_LIBDIR%%/libQt5Quick3DUtils.so %%QT_LIBDIR%%/libQt5Quick3DUtils.so.5 %%QT_LIBDIR%%/libQt5Quick3DUtils.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Quick3DUtils.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Quick3DUtils.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_quick3d.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3d_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3dassetimport.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3dassetimport_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3drender.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3drender_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3druntimerender.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3druntimerender_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3dutils.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick3dutils_private.pri %%QT_PLUGINDIR%%/assetimporters/libassimp.so %%DEBUG%%%%QT_PLUGINDIR%%/assetimporters/libassimp.so.debug %%QT_PLUGINDIR%%/assetimporters/libuip.so %%DEBUG%%%%QT_PLUGINDIR%%/assetimporters/libuip.so.debug %%QT_QMLDIR%%/QtQuick3D/Effects/AdditiveColorGradient.qml %%QT_QMLDIR%%/QtQuick3D/Effects/Blur.qml %%QT_QMLDIR%%/QtQuick3D/Effects/BrushStrokes.qml %%QT_QMLDIR%%/QtQuick3D/Effects/ChromaticAberration.qml %%QT_QMLDIR%%/QtQuick3D/Effects/ColorMaster.qml %%QT_QMLDIR%%/QtQuick3D/Effects/DepthOfFieldHQBlur.qml %%QT_QMLDIR%%/QtQuick3D/Effects/Desaturate.qml %%QT_QMLDIR%%/QtQuick3D/Effects/DistortionRipple.qml %%QT_QMLDIR%%/QtQuick3D/Effects/DistortionSphere.qml %%QT_QMLDIR%%/QtQuick3D/Effects/DistortionSpiral.qml %%QT_QMLDIR%%/QtQuick3D/Effects/EdgeDetect.qml %%QT_QMLDIR%%/QtQuick3D/Effects/Emboss.qml %%QT_QMLDIR%%/QtQuick3D/Effects/Flip.qml %%QT_QMLDIR%%/QtQuick3D/Effects/Fxaa.qml %%QT_QMLDIR%%/QtQuick3D/Effects/GaussianBlur.qml %%QT_QMLDIR%%/QtQuick3D/Effects/HDRBloomTonemap.qml %%QT_QMLDIR%%/QtQuick3D/Effects/MotionBlur.qml %%QT_QMLDIR%%/QtQuick3D/Effects/SCurveTonemap.qml %%QT_QMLDIR%%/QtQuick3D/Effects/Scatter.qml %%QT_QMLDIR%%/QtQuick3D/Effects/TiltShift.qml %%QT_QMLDIR%%/QtQuick3D/Effects/Vignette.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/AdditiveColorGradientSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/AdditiveColorGradientSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/BlurSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/BlurSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/BrushStrokesSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/BrushStrokesSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/ChromaticAberrationSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/ChromaticAberrationSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/ColorMasterSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/ColorMasterSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DepthOfFieldHQBlurSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DepthOfFieldHQBlurSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DesaturateSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DesaturateSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionRippleSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionRippleSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSphereSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSphereSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSpiralSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSpiralSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/EdgeDetectSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/EdgeDetectSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/EffectSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/EffectSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/EmbossSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/EmbossSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/FlipSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/FlipSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/FxaaSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/FxaaSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/GaussianBlurSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/GaussianBlurSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/HDRBloomTonemapSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/HDRBloomTonemapSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/IdComboBox.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/MotionBlurSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/MotionBlurSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/SCurveTonemapSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/SCurveTonemapSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/ScatterSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/ScatterSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/TiltShiftSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/TiltShiftSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/VignetteSection.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/VignetteSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Effects/designer/effectlib.metainfo %%QT_QMLDIR%%/QtQuick3D/Effects/designer/images/effect.png %%QT_QMLDIR%%/QtQuick3D/Effects/designer/images/effect16.png %%QT_QMLDIR%%/QtQuick3D/Effects/designer/images/effect@2x.png %%QT_QMLDIR%%/QtQuick3D/Effects/designer/source/effect_default_shader.frag %%QT_QMLDIR%%/QtQuick3D/Effects/designer/source/effect_template.qml %%QT_QMLDIR%%/QtQuick3D/Effects/libqtquick3deffectplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick3D/Effects/libqtquick3deffectplugin.so.debug %%QT_QMLDIR%%/QtQuick3D/Effects/maps/brushnoise.png %%QT_QMLDIR%%/QtQuick3D/Effects/maps/white.png %%QT_QMLDIR%%/QtQuick3D/Effects/plugins.qmltypes %%QT_QMLDIR%%/QtQuick3D/Effects/qmldir %%QT_QMLDIR%%/QtQuick3D/Helpers/AxisHelper.qml %%QT_QMLDIR%%/QtQuick3D/Helpers/DebugView.qml %%QT_QMLDIR%%/QtQuick3D/Helpers/WasdController.qml %%QT_QMLDIR%%/QtQuick3D/Helpers/libqtquick3dhelpersplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick3D/Helpers/libqtquick3dhelpersplugin.so.debug %%QT_QMLDIR%%/QtQuick3D/Helpers/meshes/axisGrid.mesh %%QT_QMLDIR%%/QtQuick3D/Helpers/plugins.qmltypes %%QT_QMLDIR%%/QtQuick3D/Helpers/qmldir %%QT_QMLDIR%%/QtQuick3D/Materials/AluminumAnodizedEmissiveMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/AluminumAnodizedMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/AluminumBrushedMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/AluminumEmissiveMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/AluminumMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/CopperMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/FrostedGlassMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/FrostedGlassSinglePassMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/GlassMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/GlassRefractiveMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/PaperArtisticMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/PaperOfficeMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/PlasticStructuredRedEmissiveMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/PlasticStructuredRedMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/SteelMilledConcentricMaterial.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumAnodizedEmissiveMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumAnodizedEmissiveMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumAnodizedMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumAnodizedMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumBrushedMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumBrushedMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumEmissiveMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumEmissiveMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/AluminumMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/CopperMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/CopperMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/CustomMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/CustomMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/FrostedGlassMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/FrostedGlassMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/FrostedGlassSinglePassMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/FrostedGlassSinglePassMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/GlassMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/GlassMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/GlassRefractiveMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/GlassRefractiveMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/IdComboBox.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PaperArtisticMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PaperArtisticMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PaperOfficeMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PaperOfficeMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PlasticStructuredRedEmissiveMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PlasticStructuredRedEmissiveMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PlasticStructuredRedMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/PlasticStructuredRedMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/SteelMilledConcentricMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/SteelMilledConcentricMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/Materials/designer/images/custommaterial.png %%QT_QMLDIR%%/QtQuick3D/Materials/designer/images/custommaterial16.png %%QT_QMLDIR%%/QtQuick3D/Materials/designer/images/custommaterial@2x.png %%QT_QMLDIR%%/QtQuick3D/Materials/designer/materiallib.metainfo %%QT_QMLDIR%%/QtQuick3D/Materials/designer/source/custom_material_default_shader.frag %%QT_QMLDIR%%/QtQuick3D/Materials/designer/source/custom_material_default_shader.vert %%QT_QMLDIR%%/QtQuick3D/Materials/designer/source/custommaterial_template.qml %%QT_QMLDIR%%/QtQuick3D/Materials/libqtquick3dmaterialplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick3D/Materials/libqtquick3dmaterialplugin.so.debug %%QT_QMLDIR%%/QtQuick3D/Materials/maps/art_paper_normal.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/art_paper_trans.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/brushed_a.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/brushed_full_contrast.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/concentric_milled_steel.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/concentric_milled_steel_aniso.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/emissive.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/emissive_mask.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/grunge_b.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/grunge_d.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/paper_diffuse.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/paper_trans.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/randomGradient1D.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/randomGradient2D.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/randomGradient3D.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/randomGradient4D.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/shadow.png %%QT_QMLDIR%%/QtQuick3D/Materials/maps/spherical_checker.png %%QT_QMLDIR%%/QtQuick3D/Materials/plugins.qmltypes %%QT_QMLDIR%%/QtQuick3D/Materials/qmldir %%QT_QMLDIR%%/QtQuick3D/designer/AreaLightSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/AreaLightSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/BlendingSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/BlendingSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/BufferBlitSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/BufferBlitSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/BufferInputSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/BufferInputSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/BufferSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/BufferSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/CullModeSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/CullModeSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/CustomCameraSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/CustomCameraSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/DefaultMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/DefaultMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/DepthInputSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/DepthInputSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/DirectionalLightSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/DirectionalLightSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/FrustumCameraSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/FrustumCameraSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/IdComboBox.qml %%QT_QMLDIR%%/QtQuick3D/designer/MaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/ModelSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/ModelSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/NodeSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/NodeSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/Object3DSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/OrthographicCameraSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/OrthographicCameraSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/PassSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/PassSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/PerspectiveCameraSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/PerspectiveCameraSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/PointLightSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/PointLightSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/PrincipledMaterialSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/PrincipledMaterialSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/RenderStateSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/RenderStateSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/SceneEnvironmentSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/SceneEnvironmentSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/SetUniformValueSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/SetUniformValueSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/ShaderInfoSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/ShaderInfoSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/ShaderSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/ShaderSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/ShadowSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/SpotLightSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/SpotLightSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/TextureInputSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/TextureInputSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/TextureSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/TextureSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/View3DSection.qml %%QT_QMLDIR%%/QtQuick3D/designer/View3DSpecifics.qml %%QT_QMLDIR%%/QtQuick3D/designer/images/camera.png %%QT_QMLDIR%%/QtQuick3D/designer/images/camera16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/camera@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cone.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cone16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cone@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cube.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cube16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cube@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cylinder.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cylinder16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/cylinder@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/dummy.png %%QT_QMLDIR%%/QtQuick3D/designer/images/dummy16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/dummy@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/group.png %%QT_QMLDIR%%/QtQuick3D/designer/images/group16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/group@2x.png -%%QT_QMLDIR%%/QtQuick3D/designer/images/light.png -%%QT_QMLDIR%%/QtQuick3D/designer/images/light16.png -%%QT_QMLDIR%%/QtQuick3D/designer/images/light@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightarea.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightarea16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightarea@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightdirectional.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightdirectional16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightdirectional@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightpoint.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightpoint16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightpoint@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightspot.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightspot16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightspot@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/material.png %%QT_QMLDIR%%/QtQuick3D/designer/images/material16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/material@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/model16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/plane.png %%QT_QMLDIR%%/QtQuick3D/designer/images/plane16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/plane@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/scene.png %%QT_QMLDIR%%/QtQuick3D/designer/images/scene16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/scene@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/shadercommand.png %%QT_QMLDIR%%/QtQuick3D/designer/images/shadercommand16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/shadercommand@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/shaderutil.png %%QT_QMLDIR%%/QtQuick3D/designer/images/shaderutil16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/shaderutil@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/sphere.png %%QT_QMLDIR%%/QtQuick3D/designer/images/sphere16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/sphere@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/texture.png %%QT_QMLDIR%%/QtQuick3D/designer/images/texture16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/texture@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/images/view3D.png %%QT_QMLDIR%%/QtQuick3D/designer/images/view3D16.png %%QT_QMLDIR%%/QtQuick3D/designer/images/view3D@2x.png %%QT_QMLDIR%%/QtQuick3D/designer/quick3d.metainfo %%QT_QMLDIR%%/QtQuick3D/designer/source/cone_model_template.qml %%QT_QMLDIR%%/QtQuick3D/designer/source/cube_model_template.qml %%QT_QMLDIR%%/QtQuick3D/designer/source/cylinder_model_template.qml %%QT_QMLDIR%%/QtQuick3D/designer/source/plane_model_template.qml %%QT_QMLDIR%%/QtQuick3D/designer/source/sphere_model_template.qml %%QT_QMLDIR%%/QtQuick3D/designer/source/view3D_template.qml %%QT_QMLDIR%%/QtQuick3D/libqquick3dplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick3D/libqquick3dplugin.so.debug %%QT_QMLDIR%%/QtQuick3D/plugins.qmltypes %%QT_QMLDIR%%/QtQuick3D/qmldir libdata/pkgconfig/Qt5Quick3D.pc libdata/pkgconfig/Qt5Quick3DAssetImport.pc libdata/pkgconfig/Qt5Quick3DRender.pc libdata/pkgconfig/Qt5Quick3DRuntimeRender.pc libdata/pkgconfig/Qt5Quick3DUtils.pc diff --git a/x11-toolkits/qt5-quickcontrols/distinfo b/x11-toolkits/qt5-quickcontrols/distinfo index 5dc3bf1ee3ed..5fa7564d20e7 100644 --- a/x11-toolkits/qt5-quickcontrols/distinfo +++ b/x11-toolkits/qt5-quickcontrols/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424015 -SHA256 (KDE/Qt/5.15.2/kde-qtquickcontrols-5.15.2p3.tar.xz) = c70376eded8bf247d3bc6575a8b1eecf509a40f9e0a2e425c999c26ae83cbf40 -SIZE (KDE/Qt/5.15.2/kde-qtquickcontrols-5.15.2p3.tar.xz) = 5956452 +TIMESTAMP = 1656427542 +SHA256 (KDE/Qt/5.15.5/kde-qtquickcontrols-5.15.5p0.tar.xz) = 038fd300e58a922e1e202b634039ab78088e4d06ffd623690dae6c4bc88eca29 +SIZE (KDE/Qt/5.15.5/kde-qtquickcontrols-5.15.5p0.tar.xz) = 5956356 diff --git a/x11-toolkits/qt5-quickcontrols2/distinfo b/x11-toolkits/qt5-quickcontrols2/distinfo index 3a32889d03b9..a4e81aeb2d5b 100644 --- a/x11-toolkits/qt5-quickcontrols2/distinfo +++ b/x11-toolkits/qt5-quickcontrols2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424016 -SHA256 (KDE/Qt/5.15.2/kde-qtquickcontrols2-5.15.2p8.tar.xz) = b250a5c0755fd5f0a6692e3272e6e82525991a5fdfea0a73a9457d88da1117e5 -SIZE (KDE/Qt/5.15.2/kde-qtquickcontrols2-5.15.2p8.tar.xz) = 8242136 +TIMESTAMP = 1656427543 +SHA256 (KDE/Qt/5.15.5/kde-qtquickcontrols2-5.15.5p5.tar.xz) = b418760858b1fedc14516f651c07ea6bdb806ec5c443ab10d2de54aafe504624 +SIZE (KDE/Qt/5.15.5/kde-qtquickcontrols2-5.15.5p5.tar.xz) = 8246240 diff --git a/x11-toolkits/qt5-quickcontrols2/pkg-plist b/x11-toolkits/qt5-quickcontrols2/pkg-plist index 01b78684ec02..735550dfd422 100644 --- a/x11-toolkits/qt5-quickcontrols2/pkg-plist +++ b/x11-toolkits/qt5-quickcontrols2/pkg-plist @@ -1,600 +1,601 @@ %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickanimatednode_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickattachedobject_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickchecklabel_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickclippedtext_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickcolor_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickcolorimage_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickiconimage_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickiconimage_p_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickiconlabel_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickiconlabel_p_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickitemgroup_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickmnemoniclabel_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickpaddedrectangle_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickplaceholdertext_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyle_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleplugin_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleselector_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleselector_p_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquicktumblerview_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qtquickcontrols2-config_p.h %%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qtquickcontrols2global_p.h %%QT_INCDIR%%/QtQuickControls2/QQuickStyle %%QT_INCDIR%%/QtQuickControls2/QtQuickControls2 %%QT_INCDIR%%/QtQuickControls2/QtQuickControls2Depends %%QT_INCDIR%%/QtQuickControls2/QtQuickControls2Version %%QT_INCDIR%%/QtQuickControls2/qquickstyle.h %%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2-config.h %%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2global.h %%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2version.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qaccessiblequickpage_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickabstractbutton_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickabstractbutton_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickaction_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickaction_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickactiongroup_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickapplicationwindow_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbusyindicator_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbutton_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbutton_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbuttongroup_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcheckbox_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcheckdelegate_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcombobox_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontainer_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontainer_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontentitem_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontrol_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontrol_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdeferredexecute_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdeferredpointer_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdelaybutton_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdial_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialog_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialog_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialogbuttonbox_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialogbuttonbox_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdrawer_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdrawer_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickframe_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickframe_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickgroupbox_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickicon_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickitemdelegate_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickitemdelegate_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicklabel_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicklabel_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenu_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenu_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubar_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubar_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubaritem_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubaritem_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenuitem_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenuitem_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenuseparator_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickoverlay_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickoverlay_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpage_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpage_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpageindicator_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpalette_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpaletteprovider_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpane_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpane_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopup_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopup_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopupanchors_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopupanchors_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopupitem_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopuppositioner_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpresshandler_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickprogressbar_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickradiobutton_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickradiodelegate_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickrangeslider_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickroundbutton_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollbar_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollbar_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollindicator_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollview_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickshortcutcontext_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickslider_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickspinbox_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicksplitview_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicksplitview_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackelement_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstacktransition_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackview_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackview_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipe_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipedelegate_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipedelegate_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipeview_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswitch_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswitchdelegate_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktabbar_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktabbutton_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextarea_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextarea_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextfield_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextfield_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktheme_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktheme_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolbar_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolbutton_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolseparator_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktooltip_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktumbler_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktumbler_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickvelocitycalculator_p_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qtquicktemplates2-config_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qtquicktemplates2global_p.h %%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2 %%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2Depends %%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2Version %%QT_INCDIR%%/QtQuickTemplates2/qtquicktemplates2-config.h %%QT_INCDIR%%/QtQuickTemplates2/qtquicktemplates2version.h %%QT_CMAKEDIR%%/Qt5QuickControls2/Qt5QuickControls2Config.cmake %%QT_CMAKEDIR%%/Qt5QuickControls2/Qt5QuickControls2ConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5QuickTemplates2/Qt5QuickTemplates2Config.cmake %%QT_CMAKEDIR%%/Qt5QuickTemplates2/Qt5QuickTemplates2ConfigVersion.cmake %%QT_LIBDIR%%/libQt5QuickControls2.prl %%QT_LIBDIR%%/libQt5QuickControls2.so %%QT_LIBDIR%%/libQt5QuickControls2.so.5 %%QT_LIBDIR%%/libQt5QuickControls2.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5QuickControls2.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5QuickControls2.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5QuickTemplates2.prl %%QT_LIBDIR%%/libQt5QuickTemplates2.so %%QT_LIBDIR%%/libQt5QuickTemplates2.so.5 %%QT_LIBDIR%%/libQt5QuickTemplates2.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5QuickTemplates2.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5QuickTemplates2.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2.pri %%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quicktemplates2.pri %%QT_MKSPECDIR%%/modules/qt_lib_quicktemplates2_private.pri %%QT_QMLDIR%%/Qt/labs/calendar/DayOfWeekRow.qml %%QT_QMLDIR%%/Qt/labs/calendar/DayOfWeekRow.qmlc %%QT_QMLDIR%%/Qt/labs/calendar/MonthGrid.qml %%QT_QMLDIR%%/Qt/labs/calendar/MonthGrid.qmlc %%QT_QMLDIR%%/Qt/labs/calendar/WeekNumberColumn.qml %%QT_QMLDIR%%/Qt/labs/calendar/WeekNumberColumn.qmlc %%QT_QMLDIR%%/Qt/labs/calendar/libqtlabscalendarplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/calendar/libqtlabscalendarplugin.so.debug %%QT_QMLDIR%%/Qt/labs/calendar/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/calendar/qmldir %%QT_QMLDIR%%/Qt/labs/platform/libqtlabsplatformplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/platform/libqtlabsplatformplugin.so.debug %%QT_QMLDIR%%/Qt/labs/platform/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/platform/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/AbstractButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Action.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ActionGroup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ApplicationWindow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ButtonGroup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Container.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Control.qml %%QT_QMLDIR%%/QtQuick/Controls.2/DelayButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ApplicationWindow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ButtonPanel.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/CheckIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/DelayButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/MenuBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/MenuBarItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/RadioIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ScrollIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/SliderGroove.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/SliderHandle.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/SplitView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/SwipeDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/SwitchIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ToolSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/Tumbler.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/libqtquickcontrols2fusionstyleplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/libqtquickcontrols2fusionstyleplugin.so.debug %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ApplicationWindow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/DelayButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ScrollIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/SplitView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/StackView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/SwipeDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/SwipeView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ToolSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/Tumbler.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/libqtquickcontrols2imaginestyleplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/libqtquickcontrols2imaginestyleplugin.so.debug %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ApplicationWindow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/BoxShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/CheckIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/CursorDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/DelayButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ElevationEffect.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/MenuBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/MenuBarItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/RadioIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/RectangularGlow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ScrollIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/SliderHandle.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/SplitView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/StackView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwipeDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwipeView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/SwitchIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ToolSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/Tumbler.qml -%%QT_QMLDIR%%/QtQuick/Controls.2/Material/libqtquickcontrols2materialstyleplugin.so -%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/Material/libqtquickcontrols2materialstyleplugin.so.debug +%%QT_QMLDIR%%/QtQuick/Controls.2/Material/libqqc2materialstyleplugin.so +%%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/Material/libqqc2materialstyleplugin.so.debug %%QT_QMLDIR%%/QtQuick/Controls.2/Material/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Controls.2/Material/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/MenuBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/MenuBarItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ScrollIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ScrollView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/SplitView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/StackView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/SwipeDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/SwipeView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ToolSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Tumbler.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ApplicationWindow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/CheckIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/DelayButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/MenuBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/MenuBarItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RadioIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ScrollIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SplitView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/StackView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SwipeDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/SwitchIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ToolSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/Tumbler.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/libqtquickcontrols2universalstyleplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/Universal/libqtquickcontrols2universalstyleplugin.so.debug %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/designer/AbstractButtonSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/BusyIndicatorSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ButtonSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ButtonSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/CheckBoxSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/CheckDelegateSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/CheckSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ComboBoxSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ContainerSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ControlSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ControlSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/DelayButtonSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/DialSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/FrameSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/GroupBoxSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/InsetSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ItemDelegateSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ItemDelegateSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/LabelSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/PaddingSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/PageIndicatorSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/PageSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/PaneSection.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/PaneSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ProgressBarSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/RadioButtonSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/RadioDelegateSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/RangeSliderSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/RoundButtonSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ScrollViewSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/SliderSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/SpinBoxSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/StackViewSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/SwipeDelegateSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/SwipeViewSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/SwitchDelegateSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/SwitchSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/TabBarSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/TabButtonSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/TextAreaSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/TextFieldSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ToolBarSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ToolButtonSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/ToolSeparatorSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/TumblerSpecifics.qml %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/busyindicator-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/busyindicator-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/busyindicator-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/button-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/button-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/button-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/checkbox-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/checkbox-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/checkbox-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/combobox-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/combobox-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/combobox-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/delaybutton-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/delaybutton-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/delaybutton-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/dial-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/dial-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/dial-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/frame-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/frame-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/frame-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/groupbox-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/groupbox-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/groupbox-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/itemdelegate-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/itemdelegate-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/itemdelegate-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/label-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/label-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/label-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/page-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/page-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/page-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pageindicator-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pageindicator-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pageindicator-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pane-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pane-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/pane-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/progressbar-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/progressbar-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/progressbar-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/radiobutton-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/radiobutton-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/radiobutton-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/rangeslider-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/rangeslider-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/rangeslider-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/roundbutton-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/roundbutton-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/roundbutton-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/scrollview-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/scrollview-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/scrollview-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/slider-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/slider-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/slider-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/spinbox-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/spinbox-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/spinbox-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/stackview-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/stackview-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/stackview-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/swipeview-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/swipeview-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/swipeview-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/switch-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/switch-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/switch-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textarea-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textarea-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textarea-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textfield-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textfield-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/textfield-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbar-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbar-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbar-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbutton-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbutton-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolbutton-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolseparator-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolseparator-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/toolseparator-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/tumbler-icon.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/tumbler-icon16.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/images/tumbler-icon@2x.png %%QT_QMLDIR%%/QtQuick/Controls.2/designer/qtquickcontrols2.metainfo %%QT_QMLDIR%%/QtQuick/Controls.2/libqtquickcontrols2plugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Controls.2/libqtquickcontrols2plugin.so.debug %%QT_QMLDIR%%/QtQuick/Controls.2/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Controls.2/qmldir %%QT_QMLDIR%%/QtQuick/Templates.2/libqtquicktemplates2plugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Templates.2/libqtquicktemplates2plugin.so.debug %%QT_QMLDIR%%/QtQuick/Templates.2/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Templates.2/qmldir %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickheaderview_p.h %%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickheaderview_p_p.h %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/HorizontalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Fusion/VerticalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/HorizontalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/HorizontalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Imagine/VerticalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/HorizontalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Material/VerticalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/HorizontalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Universal/VerticalHeaderView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/VerticalHeaderView.qml libdata/pkgconfig/Qt5QuickControls2.pc libdata/pkgconfig/Qt5QuickTemplates2.pc diff --git a/x11-toolkits/qt5-quicktimeline/distinfo b/x11-toolkits/qt5-quicktimeline/distinfo index 8da0352703aa..3df65905f6a4 100644 --- a/x11-toolkits/qt5-quicktimeline/distinfo +++ b/x11-toolkits/qt5-quicktimeline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424017 -SHA256 (KDE/Qt/5.15.2/kde-qtquicktimeline-5.15.2p3.tar.xz) = 5170b45bf2ef94d27eb5363376817baabffb720c3f864ce2f61fd27452d812b0 -SIZE (KDE/Qt/5.15.2/kde-qtquicktimeline-5.15.2p3.tar.xz) = 82136 +TIMESTAMP = 1656427544 +SHA256 (KDE/Qt/5.15.5/kde-qtquicktimeline-5.15.5p0.tar.xz) = a7f5b364dc54f938aa0d0706d2337ffba400a85b7652993cab9fcea61a8934b1 +SIZE (KDE/Qt/5.15.5/kde-qtquicktimeline-5.15.5p0.tar.xz) = 82116 diff --git a/x11-toolkits/qt5-uiplugin/distinfo b/x11-toolkits/qt5-uiplugin/distinfo index df5549373835..689c8c974a82 100644 --- a/x11-toolkits/qt5-uiplugin/distinfo +++ b/x11-toolkits/qt5-uiplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424018 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427545 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/x11-toolkits/qt5-virtualkeyboard/distinfo b/x11-toolkits/qt5-virtualkeyboard/distinfo index a2f774825236..999e3e58d2d8 100644 --- a/x11-toolkits/qt5-virtualkeyboard/distinfo +++ b/x11-toolkits/qt5-virtualkeyboard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424019 -SHA256 (KDE/Qt/5.15.2/kde-qtvirtualkeyboard-5.15.2p4.tar.xz) = c310615cd5be3f4e89716ab4f92225f73a1ed21e0c3238b3db37f752ef031028 -SIZE (KDE/Qt/5.15.2/kde-qtvirtualkeyboard-5.15.2p4.tar.xz) = 10929208 +TIMESTAMP = 1656427546 +SHA256 (KDE/Qt/5.15.5/kde-qtvirtualkeyboard-5.15.5p3.tar.xz) = 20d507f40ab83b66e4dc72ccf63434da02b5e5f13d5b6b2ffb9ed54b70f0ef09 +SIZE (KDE/Qt/5.15.5/kde-qtvirtualkeyboard-5.15.5p3.tar.xz) = 10921480 diff --git a/x11-toolkits/qt5-widgets/distinfo b/x11-toolkits/qt5-widgets/distinfo index 0b641234e3cf..407b06184bd2 100644 --- a/x11-toolkits/qt5-widgets/distinfo +++ b/x11-toolkits/qt5-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424021 -SHA256 (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = a516b110cc8c3ae1627711cf3f7fdfffcd300e75cca6c97aa037ea940780ad1e -SIZE (KDE/Qt/5.15.2/kde-qtbase-5.15.2p263.tar.xz) = 49709048 +TIMESTAMP = 1656427547 +SHA256 (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 255ec301cb24ab2f76d7606ce3e96c418fa0f83cc12b1120d377c08480b4ef0c +SIZE (KDE/Qt/5.15.5/kde-qtbase-5.15.5p165.tar.xz) = 49898880 diff --git a/x11/qt5-qev/distinfo b/x11/qt5-qev/distinfo index 71a4c8d5c715..2d920b2bce4f 100644 --- a/x11/qt5-qev/distinfo +++ b/x11/qt5-qev/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424022 -SHA256 (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 51281e37f5b140eeff242dfefe525bd7fca0223f8da5f33a2cf79e32745eb11a -SIZE (KDE/Qt/5.15.2/kde-qttools-5.15.2p17.tar.xz) = 8842464 +TIMESTAMP = 1656427548 +SHA256 (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 7380a63bd1e0d4aa7bd29c8eebf1d0de7c4ce53667f30fe548f34a8931b02a02 +SIZE (KDE/Qt/5.15.5/kde-qttools-5.15.5p1.tar.xz) = 8843608 diff --git a/x11/qt5-x11extras/distinfo b/x11/qt5-x11extras/distinfo index 0182c88dbcf9..0260262abbd2 100644 --- a/x11/qt5-x11extras/distinfo +++ b/x11/qt5-x11extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639424023 -SHA256 (KDE/Qt/5.15.2/kde-qtx11extras-5.15.2p1.tar.xz) = 6e22063b26a86c59dd577bfd34d9f9b49e11ba3c7fb50e2a5509b8e2bac2b8f5 -SIZE (KDE/Qt/5.15.2/kde-qtx11extras-5.15.2p1.tar.xz) = 123360 +TIMESTAMP = 1656427549 +SHA256 (KDE/Qt/5.15.5/kde-qtx11extras-5.15.5p0.tar.xz) = cabd2b354b892ac91e4a1eb24c7218785b38ffb9d2233d8e89005892d8957980 +SIZE (KDE/Qt/5.15.5/kde-qtx11extras-5.15.5p0.tar.xz) = 123280