Index: head/Mk/Uses/qt-dist.mk =================================================================== --- head/Mk/Uses/qt-dist.mk (revision 517079) +++ head/Mk/Uses/qt-dist.mk (revision 517080) @@ -1,385 +1,384 @@ # $FreeBSD$ # # 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] .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 quickcontrols \ quickcontrols2 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 MASTER_SITES= ${MASTER_SITE_QT} DISTINFO_FILE?= ${PORTSDIR}/devel/${_QT_RELNAME}/distinfo LICENSE?= LGPL21 . if !exists(${PKGDIR}/pkg-descr) DESCR?= ${PORTSDIR}/devel/${_QT_RELNAME}/pkg-descr . endif # Stage support. DESTDIRNAME= INSTALL_ROOT . if ${_QT_VER:M5} MASTER_SITE_SUBDIR?= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ # www/qt5-webengine hackery: The tarballs of 5.9.5 had a different naming scheme. . if ${QT5_VERSION} == "5.9.5" DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-opensource-src-${DISTVERSION},} . else 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. . if ${DISTINFO_FILE:H} == ${PORTSDIR}/devel/${_QT_RELNAME} _QT_DIST= ${_QT5_DISTS} . endif . 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 ,} . 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 \ - ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_data_cmake_Qt5BasicConfig.cmake.in + ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-clang_qmake.conf . if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} || ${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 . endif EXTRA_PATCHES?= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-configure \ ${_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}" . if ${QT_DEFINES:N-*} # Use a script to cleanup qconfig-modules.h (see qt-post-install). PKGDEINSTALL= ${WRKDIR}/pkg-deinstall . endif . endif # ${QT_DEFINES} . 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 # Add a RUN_DEPENDS on misc/qtchooser to select the binaries. # The binaries of both supported Qt versions are installed to # ${LOCALBASE}/lib/qt${_QT_VER}/bin. The port misc/qtchooser installs # wrapper binaries into ${LOCALBASE}/bin, and chooses the correct # one depending on the value of QT_SELECT (which we pass to both # CONFIGURE_ENV and MAKE_ENV). Therefore make all QT_DIST ports # RUN_DEPEND on it. RUN_DEPENDS+= qtchooser:misc/qtchooser PLIST_SUB+= SHORTVER=${DISTVERSION:R} \ FULLVER=${DISTVERSION: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 # # **** 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 post-install: qt-post-install qt-post-install: . if ${QT_DEFINES:N-*} # We can't use SUB_FILES with a shared pkg-deinstall.in. # We need it to be a script instead of a group of @unexecs, otherwise # qconfig-modules.h cleanup will be run in pre-deinstall stage, which is # useless. This will probably be replaced by a Keywords/ script in the future. @${SED} -e 's,%%QT_MODNAME%%,${QT_MODNAME},g' \ -e 's,%%QT_INCDIR%%,${QT_INCDIR},g' \ ${PORTSDIR}/devel/${_QT_RELNAME}/${FILESDIR:T}/${PKGDEINSTALL:T}.in > \ ${PKGDEINSTALL} @${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} @${ECHO_CMD} "@exec echo '#include ' >> ${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig-modules.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 .endif # defined(_QT_DIST_MK_INCLUDED) Index: head/Mk/Uses/qt.mk =================================================================== --- head/Mk/Uses/qt.mk (revision 517079) +++ head/Mk/Uses/qt.mk (revision 517080) @@ -1,395 +1,395 @@ # $FreeBSD$ # # 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. .if !defined(_QT_MK_INCLUDED) _QT_MK_INCLUDED= qt.mk # Qt versions currently supported by the framework. _QT_SUPPORTED?= 5 -QT5_VERSION?= 5.13.0 +QT5_VERSION?= 5.13.2 # 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 QT_QTCHOOSERDIR_REL?= ${QT_ETCDIR_REL}/qtchooser # Not customizable. QT_MKSPECDIR_REL= ${QT_ARCHDIR_REL}/mkspecs _QT_LIBVER= ${_QT_VERSION:R:R} LRELEASE?= ${QT_BINDIR}/lrelease LUPDATE?= ${QT_BINDIR}/lupdate MOC?= ${QT_BINDIR}/moc RCC?= ${QT_BINDIR}/rcc UIC?= ${QT_BINDIR}/uic QMAKE?= ${QT_BINDIR}/qmake # 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 QTCHOOSER 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 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 quickcontrols \ quickcontrols2 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 qt-buildtools_PORT= devel/${_QT_RELNAME}-buildtools qt-buildtools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/moc 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-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 qt-qmake_PORT= devel/${_QT_RELNAME}-qmake qt-qmake_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qmake 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-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) Index: head/cad/qcad/Makefile =================================================================== --- head/cad/qcad/Makefile (revision 517079) +++ head/cad/qcad/Makefile (revision 517080) @@ -1,82 +1,85 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= qcad PORTVERSION= 3.22.0.12 PORTREVISION= 1 DISTVERSIONPREFIX= v #PORTREVISION= CATEGORIES= cad DIST_SUBDIR= ${PORTNAME} MAINTAINER= mr@FreeBSD.org COMMENT= Professional CAD system LICENSE= GPLv3 .if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld BROKEN_i386= ld: error: relocation R_386_PC32 cannot be used against symbol ON_GetPointListBoundingBox .endif BUILD_DEPENDS= bash:shells/bash \ ${LOCALBASE}/lib/libopenNURBS.a:graphics/opennurbs MAKE_JOBS_UNSAFE=yes USES= compiler:c++11-lang gl gmake qmake qt:5 USE_GITHUB= yes USE_LDCONFIG= yes USE_QT= buildtools qmake_build \ designer gui help imageformats network opengl script \ scripttools sql svg uitools xml xmlpatterns webkit USE_GL= glu DESKTOP_ENTRIES="QCad" \ "" \ "${DATADIR}/scripts/qcad_icon.png" \ "${PREFIX}/bin/qcad-bin" \ "" \ true .if defined(WITH_DEBUG) RESDIR= ${WRKSRC}/debug .else RESDIR= ${WRKSRC}/release .endif SHRLIBS= qcadcore qcadecmaapi qcadentity qcadgrid qcadgui qcadoperations \ qcadsnap qcadspatialindex qcadstemmer spatialindexnavel STALIBS= dxflib stemmer SHRDIR= fonts libraries linetypes patterns plugins scripts themes ts #QSCRIPTS should not be installed to avoid conflicts with texlive-base QSCRIPTS= bbox dwg2bmp dwg2pdf dwg2svg OPTIONS_DEFINE= EXAMPLES CFLAGS_i386= -fPIC CXXFLAGS_i386= -fPIC pre-configure: + ${MKDIR} ${WRKSRC}/src/3rdparty/qt-labs-qtscriptgenerator-5.13.2 + ${CP} ${WRKSRC}/src/3rdparty/qt-labs-qtscriptgenerator-5.13.0/qt-labs-qtscriptgenerator-5.13.0.pro \ + ${WRKSRC}/src/3rdparty/qt-labs-qtscriptgenerator-5.13.2/qt-labs-qtscriptgenerator-5.13.2.pro ${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|" \ ${WRKSRC}/src/core/RS.cpp ${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|" \ ${WRKSRC}/src/core/RSettings.cpp do-install: ${INSTALL_PROGRAM} ${RESDIR}/qcad-bin ${STAGEDIR}${PREFIX}/bin/ ${LN} -sf qcad-bin ${STAGEDIR}${PREFIX}/bin/qcad .for lib in ${SHRLIBS:C|^|lib|:C|$|.so|} ${INSTALL_LIB} ${RESDIR}/${lib} ${STAGEDIR}${PREFIX}/lib/${lib}.0 ${LN} -sf ${lib}.0 ${STAGEDIR}${PREFIX}/lib/${lib} .endfor .for lib in ${STALIBS:C|^|lib|:C|$|.a|} ${INSTALL_DATA} ${RESDIR}/${lib} ${STAGEDIR}${PREFIX}/lib/ .endfor ${MKDIR} ${STAGEDIR}${DATADIR} .for dir in ${SHRDIR} cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${DATADIR} .endfor ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include Index: head/comms/qt5-connectivity/Makefile =================================================================== --- head/comms/qt5-connectivity/Makefile (revision 517079) +++ head/comms/qt5-connectivity/Makefile (revision 517080) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= connectivity DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt connectivity (Bluetooth/NFC) module USES= compiler:c++11-lang qmake qt-dist:5,connectivity USE_QT= concurrent core declarative buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/comms/qt5-sensors/Makefile =================================================================== --- head/comms/qt5-sensors/Makefile (revision 517079) +++ head/comms/qt5-sensors/Makefile (revision 517080) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= sensors DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt sensors module USES= compiler:c++11-lang qmake:norecursive qt-dist:5,sensors USE_QT= core declarative buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/comms/qt5-serialbus/Makefile =================================================================== --- head/comms/qt5-serialbus/Makefile (revision 517079) +++ head/comms/qt5-serialbus/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= serialbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt functions to access industrial bus systems USES= compiler:c++11-lib qmake qt-dist:5,serialbus USE_QT= core network serialport buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/comms/qt5-serialport/Makefile =================================================================== --- head/comms/qt5-serialport/Makefile (revision 517079) +++ head/comms/qt5-serialport/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= serialport DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt functions to access serial ports USES= compiler:c++11-lang libtool qmake qt-dist:5,serialport USE_QT= core buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/databases/qt5-sql/Makefile =================================================================== --- head/databases/qt5-sql/Makefile (revision 517079) +++ head/databases/qt5-sql/Makefile (revision 517080) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= sql DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt SQL database integration module USES= compiler:c++11-lang qmake:no_env qt-dist:5,base USE_QT= core qmake_build buildtools_build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} post-configure: .for d in src/sql ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor .include Index: head/devel/qt5/distinfo =================================================================== --- head/devel/qt5/distinfo (revision 517079) +++ head/devel/qt5/distinfo (revision 517080) @@ -1,81 +1,81 @@ -TIMESTAMP = 1561315565 -SHA256 (KDE/Qt/5.13.0/qt3d-everywhere-src-5.13.0.tar.xz) = 9f6b317acbcf483bf78465956669957eb19fdd8df610e9a580d42017e629ec4f -SIZE (KDE/Qt/5.13.0/qt3d-everywhere-src-5.13.0.tar.xz) = 84982424 -SHA256 (KDE/Qt/5.13.0/qtactiveqt-everywhere-src-5.13.0.tar.xz) = 7abccc4dfc8891dc96594ace38cfe006ff7fd0eaffcb49c856f4e60119357323 -SIZE (KDE/Qt/5.13.0/qtactiveqt-everywhere-src-5.13.0.tar.xz) = 263492 -SHA256 (KDE/Qt/5.13.0/qtandroidextras-everywhere-src-5.13.0.tar.xz) = d49a2e60348affb4cf367d29ed307d162ace27e41c5a947dd7c712d816dccea2 -SIZE (KDE/Qt/5.13.0/qtandroidextras-everywhere-src-5.13.0.tar.xz) = 105200 -SHA256 (KDE/Qt/5.13.0/qtbase-everywhere-src-5.13.0.tar.xz) = ff6964b3b528cd3b1d21bcf3470006e8e5cbe69591923f982871d886ea0488fe -SIZE (KDE/Qt/5.13.0/qtbase-everywhere-src-5.13.0.tar.xz) = 48640652 -SHA256 (KDE/Qt/5.13.0/qtcharts-everywhere-src-5.13.0.tar.xz) = 04e381ec287edf230583eb32fbcde40bce62119d3eabbe2978f4ce8366e36b27 -SIZE (KDE/Qt/5.13.0/qtcharts-everywhere-src-5.13.0.tar.xz) = 4245840 -SHA256 (KDE/Qt/5.13.0/qtconnectivity-everywhere-src-5.13.0.tar.xz) = 64fad0692c639d25295cc85f12526f3fe2eaeb51bcf47d8561ad00dd57ad5053 -SIZE (KDE/Qt/5.13.0/qtconnectivity-everywhere-src-5.13.0.tar.xz) = 2758792 -SHA256 (KDE/Qt/5.13.0/qtdatavis3d-everywhere-src-5.13.0.tar.xz) = 6f4e5dd8e7a94d117f374a9b66013e373f5c1ccf963ad6556bf1fc8baf783821 -SIZE (KDE/Qt/5.13.0/qtdatavis3d-everywhere-src-5.13.0.tar.xz) = 5200160 -SHA256 (KDE/Qt/5.13.0/qtdeclarative-everywhere-src-5.13.0.tar.xz) = b9e8780aef0af4a60e64dcc405bdf5c03a04b28e3b94d5c2e69d0006db566ba9 -SIZE (KDE/Qt/5.13.0/qtdeclarative-everywhere-src-5.13.0.tar.xz) = 20514784 -SHA256 (KDE/Qt/5.13.0/qtdoc-everywhere-src-5.13.0.tar.xz) = 7e5202b83e91555c7f0842918332b4d623828002b46fde93014a32c6beea8106 -SIZE (KDE/Qt/5.13.0/qtdoc-everywhere-src-5.13.0.tar.xz) = 5726900 -SHA256 (KDE/Qt/5.13.0/qtgamepad-everywhere-src-5.13.0.tar.xz) = 6bc1086d8c6a36a80dfa939b5ecb372be8c913a81e2986d84302012eafdc4b63 -SIZE (KDE/Qt/5.13.0/qtgamepad-everywhere-src-5.13.0.tar.xz) = 385944 -SHA256 (KDE/Qt/5.13.0/qtgraphicaleffects-everywhere-src-5.13.0.tar.xz) = 33bf92d6560d4d7b87f3e99dfacbc9cafc7ea5ef3d40f00cc3777a005251d0ff -SIZE (KDE/Qt/5.13.0/qtgraphicaleffects-everywhere-src-5.13.0.tar.xz) = 14270956 -SHA256 (KDE/Qt/5.13.0/qtimageformats-everywhere-src-5.13.0.tar.xz) = 91cb638e5f856acc17ab5a2e1a052dc91bb1af2bdbd7d99ba6a8a48f4a15f499 -SIZE (KDE/Qt/5.13.0/qtimageformats-everywhere-src-5.13.0.tar.xz) = 1800908 -SHA256 (KDE/Qt/5.13.0/qtlocation-everywhere-src-5.13.0.tar.xz) = 205a47d259841b3879c59d3054d8b1098d3b0e7b45c64ad327daedefb4421414 -SIZE (KDE/Qt/5.13.0/qtlocation-everywhere-src-5.13.0.tar.xz) = 6112360 -SHA256 (KDE/Qt/5.13.0/qtlottie-everywhere-src-5.13.0.tar.xz) = 5315e8a5d1ab76b61e1cf5f88f5ed43fe06b91ec732139902c9a242ac5ea714c -SIZE (KDE/Qt/5.13.0/qtlottie-everywhere-src-5.13.0.tar.xz) = 81940 -SHA256 (KDE/Qt/5.13.0/qtmacextras-everywhere-src-5.13.0.tar.xz) = 6a4effe1378e9ce27d3731ff5306929d252587e2c3a81c04979b9609702527e1 -SIZE (KDE/Qt/5.13.0/qtmacextras-everywhere-src-5.13.0.tar.xz) = 68800 -SHA256 (KDE/Qt/5.13.0/qtmultimedia-everywhere-src-5.13.0.tar.xz) = 5076219d277083d2535e5f739d06783abe2e059e9d3fd9f924a1fa7970946d72 -SIZE (KDE/Qt/5.13.0/qtmultimedia-everywhere-src-5.13.0.tar.xz) = 3743064 -SHA256 (KDE/Qt/5.13.0/qtnetworkauth-everywhere-src-5.13.0.tar.xz) = 91ff879d0a9f7e8ff658fb569136f102ee9f25bd47852e97a1f39826c1932c0d -SIZE (KDE/Qt/5.13.0/qtnetworkauth-everywhere-src-5.13.0.tar.xz) = 140932 -SHA256 (KDE/Qt/5.13.0/qtpurchasing-everywhere-src-5.13.0.tar.xz) = 8aba72cf543f3ef26d128824f844487beea319fbd155931a8771afcf48cdeb7e -SIZE (KDE/Qt/5.13.0/qtpurchasing-everywhere-src-5.13.0.tar.xz) = 207784 -SHA256 (KDE/Qt/5.13.0/qtquickcontrols-everywhere-src-5.13.0.tar.xz) = a5c6d40e0432246129d3f350a9aa419901dd73f2e4f8af6efb7a3e86e57ae167 -SIZE (KDE/Qt/5.13.0/qtquickcontrols-everywhere-src-5.13.0.tar.xz) = 6056676 -SHA256 (KDE/Qt/5.13.0/qtquickcontrols2-everywhere-src-5.13.0.tar.xz) = a5cb7e6d68285203bfb1aee87551228879fa9d93d87be5c8bab38e5a79dc916d -SIZE (KDE/Qt/5.13.0/qtquickcontrols2-everywhere-src-5.13.0.tar.xz) = 9227220 -SHA256 (KDE/Qt/5.13.0/qtremoteobjects-everywhere-src-5.13.0.tar.xz) = 24b2fc953ab4db7f46d8b7da38fef2483b2e9a51ea6836007077947e246fdadc -SIZE (KDE/Qt/5.13.0/qtremoteobjects-everywhere-src-5.13.0.tar.xz) = 346092 -SHA256 (KDE/Qt/5.13.0/qtscript-everywhere-src-5.13.0.tar.xz) = 2323eb93a215b837d8d276f7f35e7dfb6a28b952d8b51fb92c60619813a37a80 -SIZE (KDE/Qt/5.13.0/qtscript-everywhere-src-5.13.0.tar.xz) = 2674484 -SHA256 (KDE/Qt/5.13.0/qtscxml-everywhere-src-5.13.0.tar.xz) = fcd5b347a51d47b70b8192a20934951bb80cafa18fa55413ffc9e1fcb1bb2766 -SIZE (KDE/Qt/5.13.0/qtscxml-everywhere-src-5.13.0.tar.xz) = 434276 -SHA256 (KDE/Qt/5.13.0/qtsensors-everywhere-src-5.13.0.tar.xz) = 1fae52836c786a9fd50e9e1d590384b9aea479f4569e33fc2d69536bbe2cde48 -SIZE (KDE/Qt/5.13.0/qtsensors-everywhere-src-5.13.0.tar.xz) = 2036004 -SHA256 (KDE/Qt/5.13.0/qtserialbus-everywhere-src-5.13.0.tar.xz) = 5ef8ce8d7dbdd4065e1a1e842d7effb7134ce262790fcd59076937f3b40b78f3 -SIZE (KDE/Qt/5.13.0/qtserialbus-everywhere-src-5.13.0.tar.xz) = 330256 -SHA256 (KDE/Qt/5.13.0/qtserialport-everywhere-src-5.13.0.tar.xz) = 2f58309789e1d6b3a2653922f932703cfffddaea06bff63a552900bd63beb985 -SIZE (KDE/Qt/5.13.0/qtserialport-everywhere-src-5.13.0.tar.xz) = 302836 -SHA256 (KDE/Qt/5.13.0/qtspeech-everywhere-src-5.13.0.tar.xz) = 1bfeea13cc23a9d9a02081f4e3378bc8ef51af5dfd684b261cf0a0e93be5b644 -SIZE (KDE/Qt/5.13.0/qtspeech-everywhere-src-5.13.0.tar.xz) = 99952 -SHA256 (KDE/Qt/5.13.0/qtsvg-everywhere-src-5.13.0.tar.xz) = 0f568e20d13418c6d8e395db2ce4d2d706d3fb470cd665853e3637a29fde0eaf -SIZE (KDE/Qt/5.13.0/qtsvg-everywhere-src-5.13.0.tar.xz) = 1859144 -SHA256 (KDE/Qt/5.13.0/qttools-everywhere-src-5.13.0.tar.xz) = a7887a618dc6434c2567521990c2a7ca72ca6a8379c1d93c5aa6c1798d7a0819 -SIZE (KDE/Qt/5.13.0/qttools-everywhere-src-5.13.0.tar.xz) = 9083492 -SHA256 (KDE/Qt/5.13.0/qttranslations-everywhere-src-5.13.0.tar.xz) = 2f8fb3b2c62fcf1aacd0b32432b960a83546384688c0ea78514e4cf4f2f94c28 -SIZE (KDE/Qt/5.13.0/qttranslations-everywhere-src-5.13.0.tar.xz) = 1379324 -SHA256 (KDE/Qt/5.13.0/qtvirtualkeyboard-everywhere-src-5.13.0.tar.xz) = 91483feb79c648ec8820a238ee2a12cf1aa117e8f3a5b06d069450e0c9ad42e9 -SIZE (KDE/Qt/5.13.0/qtvirtualkeyboard-everywhere-src-5.13.0.tar.xz) = 10918808 -SHA256 (KDE/Qt/5.13.0/qtwayland-everywhere-src-5.13.0.tar.xz) = b67a6d8119628bca3301bd03992880db07d61d405534067c9cd2a598695a7cf3 -SIZE (KDE/Qt/5.13.0/qtwayland-everywhere-src-5.13.0.tar.xz) = 478076 -SHA256 (KDE/Qt/5.13.0/qtwebchannel-everywhere-src-5.13.0.tar.xz) = 7f6260c73bca968511ab2facfbb14b4d8cc7a9c5b2d0f9211e7390ed8fb52b9a -SIZE (KDE/Qt/5.13.0/qtwebchannel-everywhere-src-5.13.0.tar.xz) = 183296 -SHA256 (KDE/Qt/5.13.0/qtwebengine-everywhere-src-5.13.0.tar.xz) = e0af82ecee1ab41b6732697f667b98b7b0c53164bebcfaad8070e88b2e064efe -SIZE (KDE/Qt/5.13.0/qtwebengine-everywhere-src-5.13.0.tar.xz) = 256899724 -SHA256 (KDE/Qt/5.13.0/qtwebglplugin-everywhere-src-5.13.0.tar.xz) = b8f05ee429f3fb7d6cef789333ddb56aafdc30a83e05b04f5f9e05650146c06e -SIZE (KDE/Qt/5.13.0/qtwebglplugin-everywhere-src-5.13.0.tar.xz) = 73464 -SHA256 (KDE/Qt/5.13.0/qtwebsockets-everywhere-src-5.13.0.tar.xz) = f941dd44f6e16041a25723c1b70ce9e28910c630509da0044ecb9fdda28a6e34 -SIZE (KDE/Qt/5.13.0/qtwebsockets-everywhere-src-5.13.0.tar.xz) = 235516 -SHA256 (KDE/Qt/5.13.0/qtwebview-everywhere-src-5.13.0.tar.xz) = 090da2f41b3ea40e73d3a7d7d873492bb911a3492376bb44daee917b459535a9 -SIZE (KDE/Qt/5.13.0/qtwebview-everywhere-src-5.13.0.tar.xz) = 131236 -SHA256 (KDE/Qt/5.13.0/qtwinextras-everywhere-src-5.13.0.tar.xz) = 096387a674f7fa1faeda856b87e965bd2937e3dcce334f10df694468003887d4 -SIZE (KDE/Qt/5.13.0/qtwinextras-everywhere-src-5.13.0.tar.xz) = 759460 -SHA256 (KDE/Qt/5.13.0/qtx11extras-everywhere-src-5.13.0.tar.xz) = f33fe1cf2258bc972171f723c6f37208da47f578b09876fea47c7ba558a8f1d6 -SIZE (KDE/Qt/5.13.0/qtx11extras-everywhere-src-5.13.0.tar.xz) = 115876 -SHA256 (KDE/Qt/5.13.0/qtxmlpatterns-everywhere-src-5.13.0.tar.xz) = 75186ff075d9a3bd30cee145bad6bc69d491b5e555b048d11136727f050d7319 -SIZE (KDE/Qt/5.13.0/qtxmlpatterns-everywhere-src-5.13.0.tar.xz) = 1389724 +TIMESTAMP = 1572554821 +SHA256 (KDE/Qt/5.13.2/qt3d-everywhere-src-5.13.2.tar.xz) = d1b9fc0be82264b5f76c3a5330901dff95c1f2bcb67916c3fac6bad4ff69adc9 +SIZE (KDE/Qt/5.13.2/qt3d-everywhere-src-5.13.2.tar.xz) = 81537856 +SHA256 (KDE/Qt/5.13.2/qtactiveqt-everywhere-src-5.13.2.tar.xz) = 0f34a2f59a4438b4d060066eaed35e0f738d620b42782d598bad2f1a56cc094a +SIZE (KDE/Qt/5.13.2/qtactiveqt-everywhere-src-5.13.2.tar.xz) = 264608 +SHA256 (KDE/Qt/5.13.2/qtandroidextras-everywhere-src-5.13.2.tar.xz) = 403e8f463552564333b1a4d2e0a52c28b27296d096737e55a2327642a7277af8 +SIZE (KDE/Qt/5.13.2/qtandroidextras-everywhere-src-5.13.2.tar.xz) = 105628 +SHA256 (KDE/Qt/5.13.2/qtbase-everywhere-src-5.13.2.tar.xz) = 26b6b686d66a7ad28eaca349e55e2894e5a735f3831e45f2049e93b1daa92121 +SIZE (KDE/Qt/5.13.2/qtbase-everywhere-src-5.13.2.tar.xz) = 48735704 +SHA256 (KDE/Qt/5.13.2/qtcharts-everywhere-src-5.13.2.tar.xz) = 3bad81c3cfb32cf72fb0ce2ac2794d031cf78a3902b4715f89c09b2d0e041e87 +SIZE (KDE/Qt/5.13.2/qtcharts-everywhere-src-5.13.2.tar.xz) = 4244092 +SHA256 (KDE/Qt/5.13.2/qtconnectivity-everywhere-src-5.13.2.tar.xz) = 644e234eb64f602ef5cdeb8802ef9b58e75478f1124f001937275d62ed692e17 +SIZE (KDE/Qt/5.13.2/qtconnectivity-everywhere-src-5.13.2.tar.xz) = 2777504 +SHA256 (KDE/Qt/5.13.2/qtdatavis3d-everywhere-src-5.13.2.tar.xz) = ecf934c3eb07173505781734f95cfc2cf9d89e6b1b98516ac98a137797f4ef28 +SIZE (KDE/Qt/5.13.2/qtdatavis3d-everywhere-src-5.13.2.tar.xz) = 5182216 +SHA256 (KDE/Qt/5.13.2/qtdeclarative-everywhere-src-5.13.2.tar.xz) = d9a524f45fe9e136cda2252f9d7013ec17046d907e3f39606db920987c22d1fd +SIZE (KDE/Qt/5.13.2/qtdeclarative-everywhere-src-5.13.2.tar.xz) = 20940748 +SHA256 (KDE/Qt/5.13.2/qtdoc-everywhere-src-5.13.2.tar.xz) = be09543143d5dca984d2c2d9085751317e7a95b78fdbe9b6a30f2faa03543e46 +SIZE (KDE/Qt/5.13.2/qtdoc-everywhere-src-5.13.2.tar.xz) = 5747084 +SHA256 (KDE/Qt/5.13.2/qtgamepad-everywhere-src-5.13.2.tar.xz) = 75164885433e36a90b557aa7f319ff3d6278c3616469f67b42dda6eb8b92e76e +SIZE (KDE/Qt/5.13.2/qtgamepad-everywhere-src-5.13.2.tar.xz) = 386668 +SHA256 (KDE/Qt/5.13.2/qtgraphicaleffects-everywhere-src-5.13.2.tar.xz) = 297a89bb6c771f849c4ce866e5c98dadf665163b3dab03bc48a58f51424e7e66 +SIZE (KDE/Qt/5.13.2/qtgraphicaleffects-everywhere-src-5.13.2.tar.xz) = 14845928 +SHA256 (KDE/Qt/5.13.2/qtimageformats-everywhere-src-5.13.2.tar.xz) = 6968649fdccc7d633cf9ada25f1bdaf0a2fb45a214d58c2c47896166d4553ac0 +SIZE (KDE/Qt/5.13.2/qtimageformats-everywhere-src-5.13.2.tar.xz) = 1803796 +SHA256 (KDE/Qt/5.13.2/qtlocation-everywhere-src-5.13.2.tar.xz) = 5fe4b824d3dc6c800682ff986333ec09edb9c27582066e928b1862b4d58212e3 +SIZE (KDE/Qt/5.13.2/qtlocation-everywhere-src-5.13.2.tar.xz) = 6050044 +SHA256 (KDE/Qt/5.13.2/qtlottie-everywhere-src-5.13.2.tar.xz) = af9a10aaa110767ffd88e02cb8ad0a3930ccfeb61f0c125afbf3791136d36253 +SIZE (KDE/Qt/5.13.2/qtlottie-everywhere-src-5.13.2.tar.xz) = 82052 +SHA256 (KDE/Qt/5.13.2/qtmacextras-everywhere-src-5.13.2.tar.xz) = 545ede0783ebc2405c6efa6ed0b2b7147a1d7e60eb7fcb853abfca0a9cb65ed5 +SIZE (KDE/Qt/5.13.2/qtmacextras-everywhere-src-5.13.2.tar.xz) = 69164 +SHA256 (KDE/Qt/5.13.2/qtmultimedia-everywhere-src-5.13.2.tar.xz) = 5f885459d46ea2f2bb24597678befd4913d8f88029730d01984f51f9c367b9f4 +SIZE (KDE/Qt/5.13.2/qtmultimedia-everywhere-src-5.13.2.tar.xz) = 3820660 +SHA256 (KDE/Qt/5.13.2/qtnetworkauth-everywhere-src-5.13.2.tar.xz) = 6326943e5c1a3e6eac8dcc44d088f1a3d1c45d14100ff1e95f833b0463243af3 +SIZE (KDE/Qt/5.13.2/qtnetworkauth-everywhere-src-5.13.2.tar.xz) = 141172 +SHA256 (KDE/Qt/5.13.2/qtpurchasing-everywhere-src-5.13.2.tar.xz) = e9ef800b7d79f660c72f7024f82a2915b1111b47417f93c3dc2354b9bf307ff4 +SIZE (KDE/Qt/5.13.2/qtpurchasing-everywhere-src-5.13.2.tar.xz) = 208096 +SHA256 (KDE/Qt/5.13.2/qtquickcontrols-everywhere-src-5.13.2.tar.xz) = d6e64d8db13ada55fcb0d5e8ca26097085680087d931435c6c6db859d87493ea +SIZE (KDE/Qt/5.13.2/qtquickcontrols-everywhere-src-5.13.2.tar.xz) = 5955448 +SHA256 (KDE/Qt/5.13.2/qtquickcontrols2-everywhere-src-5.13.2.tar.xz) = 90ee8be7b66cc65f3f22e71a0b35adab5c169ac4f8ebc6f9e7685228bf8a7d70 +SIZE (KDE/Qt/5.13.2/qtquickcontrols2-everywhere-src-5.13.2.tar.xz) = 9252912 +SHA256 (KDE/Qt/5.13.2/qtremoteobjects-everywhere-src-5.13.2.tar.xz) = bd24db9d2bb08ae7955291af52ee7510aa193d0f72ed0e3ff74f7cf7e81f4d65 +SIZE (KDE/Qt/5.13.2/qtremoteobjects-everywhere-src-5.13.2.tar.xz) = 367032 +SHA256 (KDE/Qt/5.13.2/qtscript-everywhere-src-5.13.2.tar.xz) = 3d92691c25577fbf7511d40253de0cd9d31444ea5a0aa860f65efb9fa0f3ce70 +SIZE (KDE/Qt/5.13.2/qtscript-everywhere-src-5.13.2.tar.xz) = 2696452 +SHA256 (KDE/Qt/5.13.2/qtscxml-everywhere-src-5.13.2.tar.xz) = e489dff21e18c1e7f72ffd31af82404f845bd90824c6b978140591366398a9d9 +SIZE (KDE/Qt/5.13.2/qtscxml-everywhere-src-5.13.2.tar.xz) = 435428 +SHA256 (KDE/Qt/5.13.2/qtsensors-everywhere-src-5.13.2.tar.xz) = 46f73bbfddfd78a419c6424d6839318774b84c955a7f7a96c12c590f6d8fb177 +SIZE (KDE/Qt/5.13.2/qtsensors-everywhere-src-5.13.2.tar.xz) = 2046708 +SHA256 (KDE/Qt/5.13.2/qtserialbus-everywhere-src-5.13.2.tar.xz) = 48159393b1368976b5324eac48424e2a6e5d63c783194d0576a978151f882da3 +SIZE (KDE/Qt/5.13.2/qtserialbus-everywhere-src-5.13.2.tar.xz) = 338428 +SHA256 (KDE/Qt/5.13.2/qtserialport-everywhere-src-5.13.2.tar.xz) = 7677ffc1dce3b75c0a98d07d215588a8dccb5c276c55b4ecd60c35ed1c89cb34 +SIZE (KDE/Qt/5.13.2/qtserialport-everywhere-src-5.13.2.tar.xz) = 310736 +SHA256 (KDE/Qt/5.13.2/qtspeech-everywhere-src-5.13.2.tar.xz) = a0aca08feeac6925ead7f841319bdcfd60bfc126de07807edaf267c2ca8d13d5 +SIZE (KDE/Qt/5.13.2/qtspeech-everywhere-src-5.13.2.tar.xz) = 100312 +SHA256 (KDE/Qt/5.13.2/qtsvg-everywhere-src-5.13.2.tar.xz) = 849e2e357e1333b64ecb728352f652cd8d916f029ed848f775b15d0b500cb7d7 +SIZE (KDE/Qt/5.13.2/qtsvg-everywhere-src-5.13.2.tar.xz) = 1890380 +SHA256 (KDE/Qt/5.13.2/qttools-everywhere-src-5.13.2.tar.xz) = 919a2713b6d2d7873a09ad85bd93cf4282606e5bf84d5884250f665a253ec06e +SIZE (KDE/Qt/5.13.2/qttools-everywhere-src-5.13.2.tar.xz) = 9110256 +SHA256 (KDE/Qt/5.13.2/qttranslations-everywhere-src-5.13.2.tar.xz) = 25755941a2525de2d7ae48e0011d04db7cc09e4e73fe83293206ceafa0aa82d9 +SIZE (KDE/Qt/5.13.2/qttranslations-everywhere-src-5.13.2.tar.xz) = 1365880 +SHA256 (KDE/Qt/5.13.2/qtvirtualkeyboard-everywhere-src-5.13.2.tar.xz) = 8e368dde237d21666f6cc8512a060e205388e519a4d7559c0505cc75224ed62b +SIZE (KDE/Qt/5.13.2/qtvirtualkeyboard-everywhere-src-5.13.2.tar.xz) = 10923292 +SHA256 (KDE/Qt/5.13.2/qtwayland-everywhere-src-5.13.2.tar.xz) = 3c9b2358d9cee02552b875db93b56f3b9bc3b0f4df7a2ff7e8b72f2a8f2ca952 +SIZE (KDE/Qt/5.13.2/qtwayland-everywhere-src-5.13.2.tar.xz) = 495536 +SHA256 (KDE/Qt/5.13.2/qtwebchannel-everywhere-src-5.13.2.tar.xz) = f452d419d8b19b566835f316bbf282dabc8b1c2a74c9c98c1aec4184465e9c13 +SIZE (KDE/Qt/5.13.2/qtwebchannel-everywhere-src-5.13.2.tar.xz) = 192652 +SHA256 (KDE/Qt/5.13.2/qtwebengine-everywhere-src-5.13.2.tar.xz) = adcf56b5de6f34744bba2307b696fc75611884f4270e87dfa760d6e99dd711bb +SIZE (KDE/Qt/5.13.2/qtwebengine-everywhere-src-5.13.2.tar.xz) = 255593964 +SHA256 (KDE/Qt/5.13.2/qtwebglplugin-everywhere-src-5.13.2.tar.xz) = ae369929d5a3356391bccd25cac22846dc44cbb726ce7b60924f53944addabb7 +SIZE (KDE/Qt/5.13.2/qtwebglplugin-everywhere-src-5.13.2.tar.xz) = 73608 +SHA256 (KDE/Qt/5.13.2/qtwebsockets-everywhere-src-5.13.2.tar.xz) = fc11236c8bf69b27a4e237a27b9ea27fc90d8c25d81d1d451ce3a0b63cbc02d3 +SIZE (KDE/Qt/5.13.2/qtwebsockets-everywhere-src-5.13.2.tar.xz) = 244668 +SHA256 (KDE/Qt/5.13.2/qtwebview-everywhere-src-5.13.2.tar.xz) = 394cc7a9cb29b7883816ff3137b022f30568151aada0739fc99a23789c21c015 +SIZE (KDE/Qt/5.13.2/qtwebview-everywhere-src-5.13.2.tar.xz) = 131168 +SHA256 (KDE/Qt/5.13.2/qtwinextras-everywhere-src-5.13.2.tar.xz) = e94d70f68dacbcfa2bb0cbe53c7024083b16d5d44806c107fe268d34028cb779 +SIZE (KDE/Qt/5.13.2/qtwinextras-everywhere-src-5.13.2.tar.xz) = 760204 +SHA256 (KDE/Qt/5.13.2/qtx11extras-everywhere-src-5.13.2.tar.xz) = 95a7c5c30f42e9575c3a17a2c0eb0cdbdd2d89dbcb3ee1426cd41bb07e28c51c +SIZE (KDE/Qt/5.13.2/qtx11extras-everywhere-src-5.13.2.tar.xz) = 127228 +SHA256 (KDE/Qt/5.13.2/qtxmlpatterns-everywhere-src-5.13.2.tar.xz) = 1e87d8c004ec0beea3b29d13f0964c563aa9fae51c392c998750ca4e386374e2 +SIZE (KDE/Qt/5.13.2/qtxmlpatterns-everywhere-src-5.13.2.tar.xz) = 1392192 Index: head/devel/qt5/files/extrapatch-mkspecs_features_data_cmake_Qt5BasicConfig.cmake.in =================================================================== --- head/devel/qt5/files/extrapatch-mkspecs_features_data_cmake_Qt5BasicConfig.cmake.in (revision 517079) +++ head/devel/qt5/files/extrapatch-mkspecs_features_data_cmake_Qt5BasicConfig.cmake.in (nonexistent) @@ -1,18 +0,0 @@ -Fix the location of the Qt5 libraries in the generated cmake files. Without this patch -we will get stuff like: -LINK_FLAGS = [...] /usr/local/lib/libQt5Widgets.so [...] -LINK_LIBRARIES= [...] /usr/local/lib/qt5/libQt5Widgets.so.5.13.0 [...] -in the generated build.ninja files, making the builds fail due to the wrong path in -LINK_FLAGS - ---- mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in.orig 2019-06-13 04:18:18 UTC -+++ mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in -@@ -53,7 +53,7 @@ function(_qt5_$${CMAKE_MODULE_NAME}_process_prl_file p - set(_lib_deps) - set(_link_flags) - -- get_filename_component(_qt5_install_libs \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/lib\" ABSOLUTE) -+ get_filename_component(_qt5_install_libs \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/lib/qt5\" ABSOLUTE) - - if(EXISTS \"${prl_file_location}\") - file(STRINGS \"${prl_file_location}\" _prl_strings REGEX \"QMAKE_PRL_LIBS[ \\t]*=\") Property changes on: head/devel/qt5/files/extrapatch-mkspecs_features_data_cmake_Qt5BasicConfig.cmake.in ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/qt5-assistant/Makefile =================================================================== --- head/devel/qt5-assistant/Makefile (revision 517079) +++ head/devel/qt5-assistant/Makefile (revision 517080) @@ -1,31 +1,30 @@ # $FreeBSD$ PORTNAME= assistant DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 documentation browser USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui help network printsupport sql widgets \ buildtools_build sql-sqlite3_run DESKTOP_ENTRIES="Qt 5 Assistant" "" \ "${PREFIX}/share/pixmaps/assistant-qt5.png" \ "${PREFIX}/${QT_BINDIR_REL}/assistant" \ "Development;Qt;" true BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME} # Link in QtHelp port _QT5_ADDITIONAL_LINK= help post-install: ${INSTALL_DATA} ${INSTALL_WRKSRC}/images/assistant-128.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/assistant-qt5.png .include Index: head/devel/qt5-buildtools/Makefile =================================================================== --- head/devel/qt5-buildtools/Makefile (revision 517079) +++ head/devel/qt5-buildtools/Makefile (revision 517080) @@ -1,45 +1,44 @@ # $FreeBSD$ PORTNAME= buildtools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt build tools USES= compiler:c++11-lang libtool perl5 qmake:no_env qt-dist:5,base HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/tools/bootstrap INSTALL_WRKSRC= ${BUILD_WRKSRC} MORE_WRKSRCS= src/tools/moc \ src/tools/rcc post-configure: .for d in src/tools/bootstrap ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor post-build: .for d in ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-install: .for d in ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} .endfor ${INSTALL_SCRIPT} ${WRKSRC}/bin/syncqt.pl \ ${STAGEDIR}${PREFIX}/${QT_BINDIR_REL}/syncqt.pl .include Index: head/devel/qt5-buildtools/pkg-plist =================================================================== --- head/devel/qt5-buildtools/pkg-plist (revision 517079) +++ head/devel/qt5-buildtools/pkg-plist (revision 517080) @@ -1,6 +1,8 @@ %%QT_BINDIR%%/moc %%QT_BINDIR%%/rcc %%QT_BINDIR%%/syncqt.pl %%QT_LIBDIR%%/libQt5Bootstrap.a %%QT_LIBDIR%%/libQt5Bootstrap.prl %%QT_MKSPECDIR%%/modules/qt_lib_bootstrap_private.pri +%%QT_CMAKEDIR%%/Qt5Bootstrap/Qt5BootstrapConfig.cmake +%%QT_CMAKEDIR%%/Qt5Bootstrap/Qt5BootstrapConfigVersion.cmake Index: head/devel/qt5-concurrent/Makefile =================================================================== --- head/devel/qt5-concurrent/Makefile (revision 517079) +++ head/devel/qt5-concurrent/Makefile (revision 517080) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= concurrent DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt multi-threading module USES= compiler:c++11-lang qmake:no_env qt-dist:5,base USE_QT= core qmake_build buildtools_build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} QT_DEFINES= CONCURRENT QT_CONFIG= concurrent post-configure: .for d in src/concurrent ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor .include Index: head/devel/qt5-core/Makefile =================================================================== --- head/devel/qt5-core/Makefile (revision 517079) +++ head/devel/qt5-core/Makefile (revision 517080) @@ -1,72 +1,71 @@ # $FreeBSD$ PORTNAME= core DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt core non-graphical module LIB_DEPENDS= libicui18n.so:devel/icu \ libpcre2-posix.so:devel/pcre2 RUN_DEPENDS= etc_os-release>0:sysutils/etc_os-release USES= compiler:c++11-lang gnome qmake:no_env qt-dist:5,base USE_GNOME= glib20 USE_QT= qmake_build buildtools_build HAS_CONFIGURE= yes # Disable (almost) everything to install minimal qconfig.h. # -no-feature-* adds QT_NO_* (for features which have no switch or # that need to be detected). CONFIGURE_ARGS= -no-accessibility -no-gif -no-libpng -no-libjpeg \ -no-openssl -no-gui -no-widgets -no-cups \ -no-iconv -no-dbus -no-opengl \ -no-egl -no-evdev \ -no-fontconfig -no-freetype -no-gtk -no-harfbuzz \ -no-libudev -no-xcb -no-xkb -no-xcb-xlib \ -no-xkbcommon -no-libinput USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/corelib INSTALL_WRKSRC= ${BUILD_WRKSRC} QT_DEFINES= GLIB QT_CONFIG= glib icu MORE_WRKSRCS= src/tools/bootstrap src/tools/qfloat16-tables src/corelib src/tools/qlalr .include post-patch: ${REINPLACE_CMD} -e '/readEtcFile/s|/etc/os-release|${LOCALBASE}/etc/os-release|g' \ ${WRKSRC}/src/corelib/global/qglobal.cpp post-configure: .for d in ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor pre-build: .for d in ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-install: # Allow qconfig.h to be customized by single ports. ${AWK} 'BEGIN{print "#include "}{print}' \ ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h > ${WRKDIR}/qconfig.h # Manually install qlalr cd ${WRKSRC}/src/tools/qlalr && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} # Cleanup qconfig.h and remove stray '#define QT_NO_FOO' ${REINPLACE_CMD} "/#define QT_NO_/d" ${WRKDIR}/qconfig.h ${MV} ${WRKDIR}/qconfig.h ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h .include Index: head/devel/qt5-dbus/Makefile =================================================================== --- head/devel/qt5-dbus/Makefile (revision 517079) +++ head/devel/qt5-dbus/Makefile (revision 517080) @@ -1,48 +1,47 @@ # $FreeBSD$ PORTNAME= dbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt D-Bus inter-process communication module LIB_DEPENDS= libdbus-1.so:devel/dbus USES= compiler:c++11-lang qmake:no_env qt-dist:5,base USE_QT= core qmake_build buildtools_build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} TOOLS= qdbuscpp2xml qdbusxml2cpp QT_DEFINES= DBUS QT_CONFIG= dbus post-configure: .for d in src/dbus src/tools/qdbuscpp2xml src/tools/qdbusxml2cpp ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor post-build: .for t in ${TOOLS} @cd ${WRKSRC}/src/tools/${t} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-install: .for t in ${TOOLS} @cd ${WRKSRC}/src/tools/${t} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} .endfor .include Index: head/devel/qt5-designer/Makefile =================================================================== --- head/devel/qt5-designer/Makefile (revision 517079) +++ head/devel/qt5-designer/Makefile (revision 517080) @@ -1,45 +1,44 @@ # $FreeBSD$ PORTNAME= designer DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 graphical user interface designer USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= assistant_run core declarative gui network printsupport uiplugin \ widgets xml buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} DESKTOP_ENTRIES="Qt 5 Designer" "" \ "${PREFIX}/share/pixmaps/designer-qt5.png" \ "${PREFIX}/${QT_BINDIR_REL}/designer" \ "Development;Qt;" true BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME} OPTIONS_DEFINE= WEBKIT OPTIONS_SUB= yes WEBKIT_DESC= Build WebKit-based WebView widget WEBKIT_QMAKE_ON= CONFIG+=use_webkit WEBKIT_USES= qt-dist:5,tools WEBKIT_USE= QT=webkit post-patch: # uiplugin is built in x11-toolkits/qt5-uiplugin. # uitools is built in devel/qt5-uitools. ${REINPLACE_CMD} -e '/uiplugin/ d' -e '/uitools/ d' \ ${WRKSRC}/src/${PORTNAME}/src/src.pro post-install: ${INSTALL_DATA} ${WRKSRC}/src/${PORTNAME}/src/designer/images/designer.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/designer-qt5.png # The generated .pc file refers to a nonexistent other .pc file ${REINPLACE_CMD} -e '/^Requires/s/Qt5UiPlugin//' \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/Qt5Designer.pc .include Index: head/devel/qt5-designer/pkg-plist =================================================================== --- head/devel/qt5-designer/pkg-plist (revision 517079) +++ head/devel/qt5-designer/pkg-plist (revision 517080) @@ -1,203 +1,205 @@ %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/abstractdialoggui_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/abstractintrospection_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actioneditor_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actionprovider_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actionrepository_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/codedialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/connectionedit_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/csshighlighter_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/deviceprofile_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/dialoggui_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/extensionfactory_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formbuilderextra_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formlayoutmenu_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formwindowbase_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/grid_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/gridpanel_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/htmlhighlighter_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/iconloader_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/iconselector_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/invisible_widget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/layout_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/layoutinfo_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/lib_pch.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/metadatabase_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/morphmenu_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/newactiondialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/newformwidget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/orderdialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/plaintexteditor_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/plugindialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/pluginmanager_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/previewconfigurationwidget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/previewmanager_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/promotionmodel_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/promotiontaskmenu_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/properties_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/propertylineedit_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_command2_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_command_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_dnditem_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_dockwidget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formbuilder_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formeditorcommand_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formwindowcommand_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formwindowmanager_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_introspection_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_membersheet_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_menu_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_menubar_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_objectinspector_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_promotion_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_promotiondialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertycommand_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertyeditor_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertysheet_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_qsettings_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_stackedbox_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_tabwidget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_taskmenu_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_toolbar_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_toolbox_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_utils_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widgetbox_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widgetitem_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qlayout_widget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qsimpleresource_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourceeditordialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourcemodel_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourceview_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/rcc_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/resourcebuilder_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/richtexteditor_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/selectsignaldialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_enums_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_global_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_settings_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/sheet_delegate_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/signalslotdialog_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/spacer_widget_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/stylesheeteditor_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/textbuilder_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/textpropertyeditor_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/ui4_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/widgetdatabase_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/widgetfactory_p.h %%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/zoomwidget_p.h %%QT_INCDIR%%/QtDesigner/QAbstractExtensionFactory %%QT_INCDIR%%/QtDesigner/QAbstractExtensionManager %%QT_INCDIR%%/QtDesigner/QAbstractFormBuilder %%QT_INCDIR%%/QtDesigner/QDesignerActionEditorInterface %%QT_INCDIR%%/QtDesigner/QDesignerComponents %%QT_INCDIR%%/QtDesigner/QDesignerContainerExtension %%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetCollectionInterface %%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetInterface %%QT_INCDIR%%/QtDesigner/QDesignerDnDItemInterface %%QT_INCDIR%%/QtDesigner/QDesignerDynamicPropertySheetExtension %%QT_INCDIR%%/QtDesigner/QDesignerExportWidget %%QT_INCDIR%%/QtDesigner/QDesignerExtraInfoExtension %%QT_INCDIR%%/QtDesigner/QDesignerFormEditorInterface %%QT_INCDIR%%/QtDesigner/QDesignerFormEditorPluginInterface %%QT_INCDIR%%/QtDesigner/QDesignerFormWindowCursorInterface %%QT_INCDIR%%/QtDesigner/QDesignerFormWindowInterface %%QT_INCDIR%%/QtDesigner/QDesignerFormWindowManagerInterface %%QT_INCDIR%%/QtDesigner/QDesignerFormWindowToolInterface %%QT_INCDIR%%/QtDesigner/QDesignerIntegration %%QT_INCDIR%%/QtDesigner/QDesignerIntegrationInterface %%QT_INCDIR%%/QtDesigner/QDesignerLanguageExtension %%QT_INCDIR%%/QtDesigner/QDesignerLayoutDecorationExtension %%QT_INCDIR%%/QtDesigner/QDesignerMemberSheetExtension %%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseInterface %%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseItemInterface %%QT_INCDIR%%/QtDesigner/QDesignerNewFormWidgetInterface %%QT_INCDIR%%/QtDesigner/QDesignerObjectInspectorInterface %%QT_INCDIR%%/QtDesigner/QDesignerOptionsPageInterface %%QT_INCDIR%%/QtDesigner/QDesignerPromotionInterface %%QT_INCDIR%%/QtDesigner/QDesignerPropertyEditorInterface %%QT_INCDIR%%/QtDesigner/QDesignerPropertySheetExtension %%QT_INCDIR%%/QtDesigner/QDesignerResourceBrowserInterface %%QT_INCDIR%%/QtDesigner/QDesignerSettingsInterface %%QT_INCDIR%%/QtDesigner/QDesignerTaskMenuExtension %%QT_INCDIR%%/QtDesigner/QDesignerWidgetBoxInterface %%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseInterface %%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseItemInterface %%QT_INCDIR%%/QtDesigner/QDesignerWidgetFactoryInterface %%QT_INCDIR%%/QtDesigner/QExtensionFactory %%QT_INCDIR%%/QtDesigner/QExtensionManager %%QT_INCDIR%%/QtDesigner/QFormBuilder %%QT_INCDIR%%/QtDesigner/QtDesigner %%QT_INCDIR%%/QtDesigner/QtDesignerDepends %%QT_INCDIR%%/QtDesigner/QtDesignerVersion %%QT_INCDIR%%/QtDesigner/abstractactioneditor.h %%QT_INCDIR%%/QtDesigner/abstractdnditem.h %%QT_INCDIR%%/QtDesigner/abstractformbuilder.h %%QT_INCDIR%%/QtDesigner/abstractformeditor.h %%QT_INCDIR%%/QtDesigner/abstractformeditorplugin.h %%QT_INCDIR%%/QtDesigner/abstractformwindow.h %%QT_INCDIR%%/QtDesigner/abstractformwindowcursor.h %%QT_INCDIR%%/QtDesigner/abstractformwindowmanager.h %%QT_INCDIR%%/QtDesigner/abstractformwindowtool.h %%QT_INCDIR%%/QtDesigner/abstractintegration.h %%QT_INCDIR%%/QtDesigner/abstractlanguage.h %%QT_INCDIR%%/QtDesigner/abstractmetadatabase.h %%QT_INCDIR%%/QtDesigner/abstractnewformwidget.h %%QT_INCDIR%%/QtDesigner/abstractobjectinspector.h %%QT_INCDIR%%/QtDesigner/abstractoptionspage.h %%QT_INCDIR%%/QtDesigner/abstractpromotioninterface.h %%QT_INCDIR%%/QtDesigner/abstractpropertyeditor.h %%QT_INCDIR%%/QtDesigner/abstractresourcebrowser.h %%QT_INCDIR%%/QtDesigner/abstractsettings.h %%QT_INCDIR%%/QtDesigner/abstractwidgetbox.h %%QT_INCDIR%%/QtDesigner/abstractwidgetdatabase.h %%QT_INCDIR%%/QtDesigner/abstractwidgetfactory.h %%QT_INCDIR%%/QtDesigner/container.h %%QT_INCDIR%%/QtDesigner/customwidget.h %%QT_INCDIR%%/QtDesigner/default_extensionfactory.h %%QT_INCDIR%%/QtDesigner/dynamicpropertysheet.h %%QT_INCDIR%%/QtDesigner/extension.h %%QT_INCDIR%%/QtDesigner/extension_global.h %%QT_INCDIR%%/QtDesigner/extrainfo.h %%QT_INCDIR%%/QtDesigner/formbuilder.h %%QT_INCDIR%%/QtDesigner/layoutdecoration.h %%QT_INCDIR%%/QtDesigner/membersheet.h %%QT_INCDIR%%/QtDesigner/propertysheet.h %%QT_INCDIR%%/QtDesigner/qdesigner_components.h %%QT_INCDIR%%/QtDesigner/qdesigner_components_global.h %%QT_INCDIR%%/QtDesigner/qdesignerexportwidget.h %%QT_INCDIR%%/QtDesigner/qextensionmanager.h %%QT_INCDIR%%/QtDesigner/qtdesignerversion.h %%QT_INCDIR%%/QtDesigner/sdk_global.h %%QT_INCDIR%%/QtDesigner/taskmenu.h %%QT_INCDIR%%/QtDesigner/uilib_global.h %%QT_INCDIR%%/QtDesignerComponents/%%FULLVER%%/QtDesignerComponents/private/lib_pch.h %%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponents %%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponentsDepends %%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponentsVersion %%QT_INCDIR%%/QtDesignerComponents/qtdesignercomponentsversion.h %%QT_CMAKEDIR%%/Qt5Designer/Qt5DesignerConfig.cmake %%QT_CMAKEDIR%%/Qt5Designer/Qt5DesignerConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Designer/Qt5Designer_QQuickWidgetPlugin.cmake +%%QT_CMAKEDIR%%/Qt5DesignerComponents/Qt5DesignerComponentsConfig.cmake +%%QT_CMAKEDIR%%/Qt5DesignerComponents/Qt5DesignerComponentsConfigVersion.cmake %%WEBKIT%%%%QT_CMAKEDIR%%/Qt5Designer/Qt5Designer_QWebViewPlugin.cmake %%QT_BINDIR%%/designer %%QT_LIBDIR%%/libQt5Designer.prl %%QT_LIBDIR%%/libQt5Designer.so %%QT_LIBDIR%%/libQt5Designer.so.5 %%QT_LIBDIR%%/libQt5Designer.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Designer.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Designer.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5DesignerComponents.prl %%QT_LIBDIR%%/libQt5DesignerComponents.so %%QT_LIBDIR%%/libQt5DesignerComponents.so.5 %%QT_LIBDIR%%/libQt5DesignerComponents.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5DesignerComponents.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5DesignerComponents.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_designer.pri %%QT_MKSPECDIR%%/modules/qt_lib_designer_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_designercomponents_private.pri %%QT_PLUGINDIR%%/designer/libqquickwidget.so %%DEBUG%%%%QT_PLUGINDIR%%/designer/libqquickwidget.so.debug %%WEBKIT%%%%QT_PLUGINDIR%%/designer/libqwebview.so %%WEBKIT%%%%DEBUG%%%%QT_PLUGINDIR%%/designer/libqwebview.so.debug libdata/pkgconfig/Qt5Designer.pc share/pixmaps/designer-qt5.png Index: head/devel/qt5-help/Makefile =================================================================== --- head/devel/qt5-help/Makefile (revision 517079) +++ head/devel/qt5-help/Makefile (revision 517080) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= help DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt online help integration module USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui network sql widgets \ buildtools_build sql-sqlite3_run USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/assistant INSTALL_WRKSRC= ${WRKSRC}/src/assistant .include Index: head/devel/qt5-linguist/Makefile =================================================================== --- head/devel/qt5-linguist/Makefile (revision 517079) +++ head/devel/qt5-linguist/Makefile (revision 517080) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= linguist DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 translation tool USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui printsupport widgets xml \ assistant_run linguisttools_run \ buildtools_build designer_build uitools_build DESKTOP_ENTRIES="Qt 5 Linguist" "" \ "${PREFIX}/share/pixmaps/linguist-qt5.png" \ "${PREFIX}/${QT_BINDIR_REL}/linguist" \ "Development;Qt;" true BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME} post-install: ${INSTALL_DATA} ${BUILD_WRKSRC}/images/icons/linguist-128-32.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/linguist-qt5.png .include Index: head/devel/qt5-linguisttools/Makefile =================================================================== --- head/devel/qt5-linguisttools/Makefile (revision 517079) +++ head/devel/qt5-linguisttools/Makefile (revision 517080) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= linguisttools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt localization tools USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core xml buildtools_build declarative_build BUILD_WRKSRC= ${WRKSRC}/src/linguist INSTALL_WRKSRC= ${WRKSRC}/src/linguist post-patch: @${REINPLACE_CMD} -e '/SUBDIRS.*linguist/ d' \ ${WRKSRC}/src/linguist/linguist.pro post-install: .for f in lrelease lupdate ${INSTALL_MAN} ${WRKSRC}/src/linguist/${f}/${f}.1 \ ${STAGEDIR}${MANPREFIX}/man/man1 .endfor .include Index: head/devel/qt5-linguisttools/files/patch-src_linguist_lrelease_main.cpp =================================================================== --- head/devel/qt5-linguisttools/files/patch-src_linguist_lrelease_main.cpp (revision 517079) +++ head/devel/qt5-linguisttools/files/patch-src_linguist_lrelease_main.cpp (nonexistent) @@ -1,19 +0,0 @@ -This is upstream as - -https://code.qt.io/cgit/qt/qttools.git/commit/src/linguist/lrelease?h=5.13.1&id=6a832f5474d3b4f789e4bcdebcd425e5ec98423f - -in 5.13.1 - ---- src/linguist/lrelease/main.cpp.orig 2019-09-01 11:53:23 UTC -+++ src/linguist/lrelease/main.cpp -@@ -180,7 +180,9 @@ static QStringList translationsFromProjects(const Proj - - static QStringList translationsFromProject(const Project &project, bool topLevel) - { -- QStringList result = *project.translations; -+ QStringList result; -+ if (project.translations) -+ result << *project.translations; - result << translationsFromProjects(project.subProjects, false); - if (topLevel && result.isEmpty()) { - printErr(LR::tr("lrelease warning: Met no 'TRANSLATIONS' entry in project file '%1'\n") Property changes on: head/devel/qt5-linguisttools/files/patch-src_linguist_lrelease_main.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/qt5-location/Makefile =================================================================== --- head/devel/qt5-location/Makefile (revision 517079) +++ head/devel/qt5-location/Makefile (revision 517080) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= location DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt location module USES= compiler:c++11-lang qmake:norecursive qt-dist:5,location USE_QT= concurrent core dbus declarative gui network serialport \ buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/devel/qt5-qdbus/Makefile =================================================================== --- head/devel/qt5-qdbus/Makefile (revision 517079) +++ head/devel/qt5-qdbus/Makefile (revision 517080) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= qdbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt command-line interface to D-Bus USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core dbus xml buildtools_build BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} .include Index: head/devel/qt5-qdbusviewer/Makefile =================================================================== --- head/devel/qt5-qdbusviewer/Makefile (revision 517079) +++ head/devel/qt5-qdbusviewer/Makefile (revision 517080) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= qdbusviewer DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 graphical interface to D-Bus USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core dbus gui widgets xml buildtools_build DESKTOP_ENTRIES="Qt 5 D-Bus Viewer" "" \ "${PREFIX}/share/pixmaps/qdbusviewer-qt5.png" \ "${PREFIX}/${QT_BINDIR_REL}/qdbusviewer" \ "Development;Qt;" true BUILD_WRKSRC= ${WRKSRC}/src/qdbus/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} post-install: ${INSTALL_DATA} ${BUILD_WRKSRC}/images/qdbusviewer-128.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/qdbusviewer-qt5.png .include Index: head/devel/qt5-qdoc/Makefile =================================================================== --- head/devel/qt5-qdoc/Makefile (revision 517079) +++ head/devel/qt5-qdoc/Makefile (revision 517080) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= qdoc DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 CATEGORIES= devel textproc PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt documentation generator BUILD_DEPENDS= llvm${LLVM_DEFAULT}>=0:devel/llvm${LLVM_DEFAULT} RUN_DEPENDS= llvm${LLVM_DEFAULT}>=0:devel/llvm${LLVM_DEFAULT} USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core declarative buildtools_build qdoc-data_run BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} PLIST_FILES= ${QT_BINDIR}/qdoc CONFIGURE_ENV= LLVM_INSTALL_DIR=${LOCALBASE}/llvm${LLVM_DEFAULT} .include Index: head/devel/qt5-qdoc-data/pkg-plist =================================================================== --- head/devel/qt5-qdoc-data/pkg-plist (revision 517079) +++ head/devel/qt5-qdoc-data/pkg-plist (revision 517080) @@ -1,77 +1,78 @@ %%QT_DOCDIR%%/global/compat.qdocconf %%QT_DOCDIR%%/global/config.qdocconf %%QT_DOCDIR%%/global/externalsites.qdocconf %%QT_DOCDIR%%/global/externalsites/external-resources.qdoc %%QT_DOCDIR%%/global/externalsites/qt-webpages.qdoc %%QT_DOCDIR%%/global/externalsites/qtcreator.qdoc %%QT_DOCDIR%%/global/externalsites/rfc.qdoc %%QT_DOCDIR%%/global/fileextensions.qdocconf %%QT_DOCDIR%%/global/html-config.qdocconf %%QT_DOCDIR%%/global/html-footer-online.qdocconf %%QT_DOCDIR%%/global/html-footer.qdocconf %%QT_DOCDIR%%/global/html-header-offline.qdocconf %%QT_DOCDIR%%/global/html-header-online.qdocconf %%QT_DOCDIR%%/global/includes-online/search.qdoc %%QT_DOCDIR%%/global/includes/examples-run.qdocinc +%%QT_DOCDIR%%/global/includes/module-use.qdocinc %%QT_DOCDIR%%/global/macros.qdocconf %%QT_DOCDIR%%/global/manifest-meta.qdocconf %%QT_DOCDIR%%/global/qt-cpp-defines.qdocconf %%QT_DOCDIR%%/global/qt-html-templates-offline-simple.qdocconf %%QT_DOCDIR%%/global/qt-html-templates-offline.qdocconf %%QT_DOCDIR%%/global/qt-html-templates-online.qdocconf %%QT_DOCDIR%%/global/qt-module-defaults-offline.qdocconf %%QT_DOCDIR%%/global/qt-module-defaults-online-commercial.qdocconf %%QT_DOCDIR%%/global/qt-module-defaults-online.qdocconf %%QT_DOCDIR%%/global/qt-module-defaults.qdocconf %%QT_DOCDIR%%/global/template/images/Qt-dark_gradient.png %%QT_DOCDIR%%/global/template/images/Qt-footer-bg.jpg %%QT_DOCDIR%%/global/template/images/Qt-footer_shadow.png %%QT_DOCDIR%%/global/template/images/Qt-gradient.png %%QT_DOCDIR%%/global/template/images/Qt-header-bg.jpg %%QT_DOCDIR%%/global/template/images/Qt-logo.png %%QT_DOCDIR%%/global/template/images/arrow.png %%QT_DOCDIR%%/global/template/images/arrow_bc.png %%QT_DOCDIR%%/global/template/images/arrow_down.png %%QT_DOCDIR%%/global/template/images/bg_l.png %%QT_DOCDIR%%/global/template/images/bg_l_blank.png %%QT_DOCDIR%%/global/template/images/bg_ll_blank.png %%QT_DOCDIR%%/global/template/images/bg_r.png %%QT_DOCDIR%%/global/template/images/bg_ul_blank.png %%QT_DOCDIR%%/global/template/images/bgrContent.png %%QT_DOCDIR%%/global/template/images/blu_dot.png %%QT_DOCDIR%%/global/template/images/box_bg.png %%QT_DOCDIR%%/global/template/images/breadcrumb.png %%QT_DOCDIR%%/global/template/images/btn_next.png %%QT_DOCDIR%%/global/template/images/btn_prev.png %%QT_DOCDIR%%/global/template/images/bullet_dn.png %%QT_DOCDIR%%/global/template/images/bullet_gt.png %%QT_DOCDIR%%/global/template/images/bullet_sq.png %%QT_DOCDIR%%/global/template/images/bullet_up.png %%QT_DOCDIR%%/global/template/images/feedbackground.png %%QT_DOCDIR%%/global/template/images/header_bg.png %%QT_DOCDIR%%/global/template/images/home.png %%QT_DOCDIR%%/global/template/images/horBar.png %%QT_DOCDIR%%/global/template/images/ico_note.png %%QT_DOCDIR%%/global/template/images/ico_note_attention.png %%QT_DOCDIR%%/global/template/images/ico_out.png %%QT_DOCDIR%%/global/template/images/logo.png %%QT_DOCDIR%%/global/template/images/page.png %%QT_DOCDIR%%/global/template/images/page_bg.png %%QT_DOCDIR%%/global/template/images/spinner.gif %%QT_DOCDIR%%/global/template/images/sprites-combined.png %%QT_DOCDIR%%/global/template/scripts/extras.js %%QT_DOCDIR%%/global/template/scripts/main.js %%QT_DOCDIR%%/global/template/style/cookie-confirm.css %%QT_DOCDIR%%/global/template/style/cookiebar-x.png %%QT_DOCDIR%%/global/template/style/doc_search.png %%QT_DOCDIR%%/global/template/style/gsc.css %%QT_DOCDIR%%/global/template/style/icomoon.eot %%QT_DOCDIR%%/global/template/style/icomoon.svg %%QT_DOCDIR%%/global/template/style/icomoon.ttf %%QT_DOCDIR%%/global/template/style/icomoon.woff %%QT_DOCDIR%%/global/template/style/list_arrow.png %%QT_DOCDIR%%/global/template/style/list_expand.png %%QT_DOCDIR%%/global/template/style/offline-simple.css %%QT_DOCDIR%%/global/template/style/offline.css %%QT_DOCDIR%%/global/template/style/online.css %%QT_DOCDIR%%/global/template/style/theqtcompany.png Index: head/devel/qt5-qmake/pkg-plist =================================================================== --- head/devel/qt5-qmake/pkg-plist (revision 517079) +++ head/devel/qt5-qmake/pkg-plist (revision 517080) @@ -1,496 +1,498 @@ %%QT_BINDIR%%/qmake %%QT_MKSPECDIR%%/aix-g++-64/qmake.conf %%QT_MKSPECDIR%%/aix-g++-64/qplatformdefs.h %%QT_MKSPECDIR%%/aix-g++/qmake.conf %%QT_MKSPECDIR%%/aix-g++/qplatformdefs.h %%QT_MKSPECDIR%%/android-clang/qmake.conf %%QT_MKSPECDIR%%/android-clang/qplatformdefs.h %%QT_MKSPECDIR%%/android-g++/qmake.conf %%QT_MKSPECDIR%%/android-g++/qplatformdefs.h %%QT_MKSPECDIR%%/common/aix/qplatformdefs.h %%QT_MKSPECDIR%%/common/android-base-head.conf %%QT_MKSPECDIR%%/common/android-base-tail.conf %%QT_MKSPECDIR%%/common/android/qplatformdefs.h %%QT_MKSPECDIR%%/common/angle.conf %%QT_MKSPECDIR%%/common/bsd/bsd.conf %%QT_MKSPECDIR%%/common/bsd/bsd.conf.orig %%QT_MKSPECDIR%%/common/bsd/qplatformdefs.h %%QT_MKSPECDIR%%/common/c89/qplatformdefs.h %%QT_MKSPECDIR%%/common/clang-mac.conf %%QT_MKSPECDIR%%/common/clang.conf %%QT_MKSPECDIR%%/common/g++-base.conf %%QT_MKSPECDIR%%/common/g++-macx.conf %%QT_MKSPECDIR%%/common/g++-unix.conf %%QT_MKSPECDIR%%/common/g++-win32.conf %%QT_MKSPECDIR%%/common/g++.conf %%QT_MKSPECDIR%%/common/gcc-base-mac.conf %%QT_MKSPECDIR%%/common/gcc-base-unix.conf %%QT_MKSPECDIR%%/common/gcc-base.conf %%QT_MKSPECDIR%%/common/ghs-base.conf %%QT_MKSPECDIR%%/common/ghs-integrity-armv7.conf %%QT_MKSPECDIR%%/common/ghs-integrity-armv8.conf %%QT_MKSPECDIR%%/common/ghs-integrity-x86.conf %%QT_MKSPECDIR%%/common/icc-base-unix.conf %%QT_MKSPECDIR%%/common/integrity/qplatformdefs.h %%QT_MKSPECDIR%%/common/ios.conf %%QT_MKSPECDIR%%/common/linux.conf %%QT_MKSPECDIR%%/common/llvm.conf %%QT_MKSPECDIR%%/common/mac.conf %%QT_MKSPECDIR%%/common/mac/qplatformdefs.h %%QT_MKSPECDIR%%/common/macx.conf %%QT_MKSPECDIR%%/common/msvc-based-version.conf %%QT_MKSPECDIR%%/common/msvc-desktop.conf %%QT_MKSPECDIR%%/common/msvc-version.conf %%QT_MKSPECDIR%%/common/nacl/g++-nacl32.conf %%QT_MKSPECDIR%%/common/nacl/g++-nacl64.conf %%QT_MKSPECDIR%%/common/nacl/nacl-base.conf %%QT_MKSPECDIR%%/common/nacl/qplatformdefs.h %%QT_MKSPECDIR%%/common/posix/qplatformdefs.h %%QT_MKSPECDIR%%/common/qcc-base-qnx-aarch64le.conf %%QT_MKSPECDIR%%/common/qcc-base-qnx-armle-v7.conf %%QT_MKSPECDIR%%/common/qcc-base-qnx-x86-64.conf %%QT_MKSPECDIR%%/common/qcc-base-qnx-x86.conf %%QT_MKSPECDIR%%/common/qcc-base-qnx.conf %%QT_MKSPECDIR%%/common/qcc-base.conf %%QT_MKSPECDIR%%/common/qnx/qplatformdefs.h %%QT_MKSPECDIR%%/common/sanitize.conf %%QT_MKSPECDIR%%/common/shell-unix.conf %%QT_MKSPECDIR%%/common/shell-win32.conf %%QT_MKSPECDIR%%/common/solaris.conf %%QT_MKSPECDIR%%/common/tvos.conf %%QT_MKSPECDIR%%/common/uikit.conf %%QT_MKSPECDIR%%/common/uikit/GLES2/gl2.h %%QT_MKSPECDIR%%/common/uikit/clang.conf %%QT_MKSPECDIR%%/common/uikit/qmake.conf %%QT_MKSPECDIR%%/common/unix.conf %%QT_MKSPECDIR%%/common/watchos.conf %%QT_MKSPECDIR%%/common/windows-desktop.conf %%QT_MKSPECDIR%%/common/windows-vulkan.conf %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_150x150.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_30x30.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_310x150.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_310x310.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_44x44.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_480x800.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_620x300.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_70x70.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_71x71.png %%QT_MKSPECDIR%%/common/winrt_winphone/assets/logo_store.png %%QT_MKSPECDIR%%/common/winrt_winphone/manifests/10.0/AppxManifest.xml.in %%QT_MKSPECDIR%%/common/winrt_winphone/qmake.conf %%QT_MKSPECDIR%%/common/winrt_winphone/qplatformdefs.h %%QT_MKSPECDIR%%/cygwin-g++/qmake.conf %%QT_MKSPECDIR%%/cygwin-g++/qplatformdefs.h %%QT_MKSPECDIR%%/darwin-g++/qmake.conf %%QT_MKSPECDIR%%/darwin-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/common/freebsd_device_post.conf %%QT_MKSPECDIR%%/devices/common/freebsd_device_pre.conf %%QT_MKSPECDIR%%/devices/common/linux_arm_device_post.conf %%QT_MKSPECDIR%%/devices/common/linux_device_post.conf %%QT_MKSPECDIR%%/devices/common/linux_device_pre.conf %%QT_MKSPECDIR%%/devices/freebsd-generic-clang/qmake.conf %%QT_MKSPECDIR%%/devices/freebsd-generic-clang/qplatformdefs.h %%QT_MKSPECDIR%%/devices/freebsd-rasp-pi-clang/qmake.conf %%QT_MKSPECDIR%%/devices/freebsd-rasp-pi-clang/qplatformdefs.h %%QT_MKSPECDIR%%/devices/integrity-armv8-drive-cx/qmake.conf %%QT_MKSPECDIR%%/devices/integrity-armv8-drive-cx/qplatformdefs.h %%QT_MKSPECDIR%%/devices/integrity-armv8-msm8996au/qmake.conf %%QT_MKSPECDIR%%/devices/integrity-armv8-msm8996au/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qeglfshooks_8726m.cpp %%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-colibri-vf-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-colibri-vf-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-drive-cx-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-drive-cx-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-emu-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-emu-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-generic-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-generic-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-imx6-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-imx6-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-imx7-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-imx7-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-jetson-tk1-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-jetson-tk1-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-jetson-tx1-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-jetson-tx1-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qdirectfbeglhooks_bcm97425.cpp %%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-mipsel-ci20-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-mipsel-ci20-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-nuc-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-nuc-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rasp-pi3-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rasp-pi3-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rasp-pi3-vc4-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rasp-pi3-vc4-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rcar-h2-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rcar-h2-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rcar-m3-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rcar-m3-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-snowball-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-snowball-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-tinkerboard-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-tinkerboard-g++/qplatformdefs.h %%QT_MKSPECDIR%%/dummy/qmake.conf %%QT_MKSPECDIR%%/features/android/android.prf %%QT_MKSPECDIR%%/features/android/android_deployment_settings.prf %%QT_MKSPECDIR%%/features/android/resolve_target.prf %%QT_MKSPECDIR%%/features/android/sdk.prf +%%QT_MKSPECDIR%%/features/android/spec_post.prf %%QT_MKSPECDIR%%/features/benchmark.prf %%QT_MKSPECDIR%%/features/build_pass.prf %%QT_MKSPECDIR%%/features/cmake_functions.prf %%QT_MKSPECDIR%%/features/cmdline.prf %%QT_MKSPECDIR%%/features/configure.prf %%QT_MKSPECDIR%%/features/configure_base.prf %%QT_MKSPECDIR%%/features/coverage.prf %%QT_MKSPECDIR%%/features/create_cmake.prf %%QT_MKSPECDIR%%/features/ctest_testcase.prf %%QT_MKSPECDIR%%/features/ctest_testcase_common.prf %%QT_MKSPECDIR%%/features/ctest_testcase_installed.prf %%QT_MKSPECDIR%%/features/data/cmake/ExtraSourceIncludes.cmake.in %%QT_MKSPECDIR%%/features/data/cmake/Qt5BasicConfig.cmake.in %%QT_MKSPECDIR%%/features/data/cmake/Qt5ConfigVersion.cmake.in %%QT_MKSPECDIR%%/features/data/cmake/Qt5PluginTarget.cmake.in %%QT_MKSPECDIR%%/features/data/configure.json %%QT_MKSPECDIR%%/features/data/dummy.cpp %%QT_MKSPECDIR%%/features/data/dumpvcvars.bat %%QT_MKSPECDIR%%/features/data/mac/objc_namespace.sh %%QT_MKSPECDIR%%/features/data/macros.cpp %%QT_MKSPECDIR%%/features/data/unix/findclasslist.pl %%QT_MKSPECDIR%%/features/dbusadaptors.prf %%QT_MKSPECDIR%%/features/dbuscommon.pri %%QT_MKSPECDIR%%/features/dbusinterfaces.prf %%QT_MKSPECDIR%%/features/declarative_debug.prf %%QT_MKSPECDIR%%/features/default_post.prf %%QT_MKSPECDIR%%/features/default_pre.prf %%QT_MKSPECDIR%%/features/designer_defines.prf %%QT_MKSPECDIR%%/features/device_config.prf %%QT_MKSPECDIR%%/features/egl.prf %%QT_MKSPECDIR%%/features/exceptions.prf %%QT_MKSPECDIR%%/features/exceptions_off.prf %%QT_MKSPECDIR%%/features/exclusive_builds.prf %%QT_MKSPECDIR%%/features/exclusive_builds_post.prf %%QT_MKSPECDIR%%/features/file_copies.prf %%QT_MKSPECDIR%%/features/gc_binaries.prf %%QT_MKSPECDIR%%/features/gcov.prf %%QT_MKSPECDIR%%/features/include_source_dir.prf %%QT_MKSPECDIR%%/features/incredibuild_xge.prf %%QT_MKSPECDIR%%/features/java.prf %%QT_MKSPECDIR%%/features/lex.prf %%QT_MKSPECDIR%%/features/link_ltcg.prf %%QT_MKSPECDIR%%/features/link_pkgconfig.prf %%QT_MKSPECDIR%%/features/lrelease.prf %%QT_MKSPECDIR%%/features/ltcg.prf %%QT_MKSPECDIR%%/features/mac/asset_catalogs.prf %%QT_MKSPECDIR%%/features/mac/default_post.prf %%QT_MKSPECDIR%%/features/mac/default_pre.prf %%QT_MKSPECDIR%%/features/mac/mac.prf %%QT_MKSPECDIR%%/features/mac/objective_c.prf %%QT_MKSPECDIR%%/features/mac/rez.prf %%QT_MKSPECDIR%%/features/mac/sdk.mk %%QT_MKSPECDIR%%/features/mac/sdk.prf %%QT_MKSPECDIR%%/features/mac/toolchain.prf %%QT_MKSPECDIR%%/features/mac/unsupported/objc_namespace.prf %%QT_MKSPECDIR%%/features/moc.prf %%QT_MKSPECDIR%%/features/no_debug_info.prf %%QT_MKSPECDIR%%/features/plugin_bundle.prf %%QT_MKSPECDIR%%/features/precompile_header.prf %%QT_MKSPECDIR%%/features/qgltf.prf %%QT_MKSPECDIR%%/features/qlalr.prf %%QT_MKSPECDIR%%/features/qmake_use.prf %%QT_MKSPECDIR%%/features/qml_debug.prf %%QT_MKSPECDIR%%/features/qml_module.prf %%QT_MKSPECDIR%%/features/qml_plugin.prf %%QT_MKSPECDIR%%/features/qmltestcase.prf %%QT_MKSPECDIR%%/features/qt.prf %%QT_MKSPECDIR%%/features/qt_android_deps.prf %%QT_MKSPECDIR%%/features/qt_app.prf %%QT_MKSPECDIR%%/features/qt_build_config.prf %%QT_MKSPECDIR%%/features/qt_build_extra.prf %%QT_MKSPECDIR%%/features/qt_build_paths.prf %%QT_MKSPECDIR%%/features/qt_clear_installs.prf %%QT_MKSPECDIR%%/features/qt_common.prf %%QT_MKSPECDIR%%/features/qt_config.prf %%QT_MKSPECDIR%%/features/qt_configure.prf %%QT_MKSPECDIR%%/features/qt_docs.prf %%QT_MKSPECDIR%%/features/qt_docs_targets.prf %%QT_MKSPECDIR%%/features/qt_example_installs.prf %%QT_MKSPECDIR%%/features/qt_functions.prf %%QT_MKSPECDIR%%/features/qt_helper_lib.prf %%QT_MKSPECDIR%%/features/qt_installs.prf %%QT_MKSPECDIR%%/features/qt_module.prf %%QT_MKSPECDIR%%/features/qt_module_headers.prf %%QT_MKSPECDIR%%/features/qt_module_pris.prf %%QT_MKSPECDIR%%/features/qt_parts.prf %%QT_MKSPECDIR%%/features/qt_plugin.prf +%%QT_MKSPECDIR%%/features/qt_prefix_build_check.prf %%QT_MKSPECDIR%%/features/qt_targets.prf %%QT_MKSPECDIR%%/features/qt_test_helper.prf %%QT_MKSPECDIR%%/features/qt_tool.prf %%QT_MKSPECDIR%%/features/qt_tracepoints.prf %%QT_MKSPECDIR%%/features/resolve_config.prf %%QT_MKSPECDIR%%/features/resolve_target.prf %%QT_MKSPECDIR%%/features/resources.prf %%QT_MKSPECDIR%%/features/rtti.prf %%QT_MKSPECDIR%%/features/rtti_off.prf %%QT_MKSPECDIR%%/features/sanitizer.prf %%QT_MKSPECDIR%%/features/silent.prf %%QT_MKSPECDIR%%/features/simd.prf %%QT_MKSPECDIR%%/features/spec_post.prf %%QT_MKSPECDIR%%/features/spec_pre.prf %%QT_MKSPECDIR%%/features/static_runtime.prf %%QT_MKSPECDIR%%/features/testcase.prf %%QT_MKSPECDIR%%/features/testcase_targets.prf %%QT_MKSPECDIR%%/features/testcocoon.prf %%QT_MKSPECDIR%%/features/testlib_defines.prf %%QT_MKSPECDIR%%/features/toolchain.prf %%QT_MKSPECDIR%%/features/uic.prf %%QT_MKSPECDIR%%/features/uikit/bitcode.prf %%QT_MKSPECDIR%%/features/uikit/default_post.prf %%QT_MKSPECDIR%%/features/uikit/default_pre.prf %%QT_MKSPECDIR%%/features/uikit/device_destinations.sh %%QT_MKSPECDIR%%/features/uikit/devices.py %%QT_MKSPECDIR%%/features/uikit/exclusive_builds_post.prf %%QT_MKSPECDIR%%/features/uikit/gc_binaries.prf %%QT_MKSPECDIR%%/features/uikit/qt.prf %%QT_MKSPECDIR%%/features/uikit/qt_parts.prf %%QT_MKSPECDIR%%/features/uikit/resolve_config.prf %%QT_MKSPECDIR%%/features/uikit/sdk.prf %%QT_MKSPECDIR%%/features/uikit/testcase.prf %%QT_MKSPECDIR%%/features/uikit/testcase_targets.prf %%QT_MKSPECDIR%%/features/uikit/watchos_coretext.prf %%QT_MKSPECDIR%%/features/uikit/xcodebuild.mk %%QT_MKSPECDIR%%/features/uikit/xcodebuild.prf %%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf %%QT_MKSPECDIR%%/features/unix/ccache.prf %%QT_MKSPECDIR%%/features/unix/hide_symbols.prf %%QT_MKSPECDIR%%/features/unix/largefile.prf %%QT_MKSPECDIR%%/features/unix/opengl.prf %%QT_MKSPECDIR%%/features/unix/separate_debug_info.prf %%QT_MKSPECDIR%%/features/unix/thread.prf %%QT_MKSPECDIR%%/features/unix/x11.prf %%QT_MKSPECDIR%%/features/unix/x11inc.prf %%QT_MKSPECDIR%%/features/unix/x11lib.prf %%QT_MKSPECDIR%%/features/unix/x11sm.prf %%QT_MKSPECDIR%%/features/use_c_linker.prf %%QT_MKSPECDIR%%/features/vxworks.prf %%QT_MKSPECDIR%%/features/warn_off.prf %%QT_MKSPECDIR%%/features/warn_on.prf %%QT_MKSPECDIR%%/features/wasm/wasm.prf %%QT_MKSPECDIR%%/features/wayland-scanner.prf %%QT_MKSPECDIR%%/features/win32/console.prf %%QT_MKSPECDIR%%/features/win32/default_pre.prf %%QT_MKSPECDIR%%/features/win32/dumpcpp.prf %%QT_MKSPECDIR%%/features/win32/idcidl.prf %%QT_MKSPECDIR%%/features/win32/msvc_mp.prf %%QT_MKSPECDIR%%/features/win32/opengl.prf %%QT_MKSPECDIR%%/features/win32/qt_dll.prf %%QT_MKSPECDIR%%/features/win32/separate_debug_info.prf %%QT_MKSPECDIR%%/features/win32/stl.prf %%QT_MKSPECDIR%%/features/win32/stl_off.prf %%QT_MKSPECDIR%%/features/win32/windeployqt.prf %%QT_MKSPECDIR%%/features/win32/windows.prf %%QT_MKSPECDIR%%/features/win32/windows_vulkan_sdk.prf %%QT_MKSPECDIR%%/features/winrt/console.prf %%QT_MKSPECDIR%%/features/winrt/default_pre.prf %%QT_MKSPECDIR%%/features/winrt/package_manifest.prf %%QT_MKSPECDIR%%/features/xctest.prf %%QT_MKSPECDIR%%/features/yacc.prf %%QT_MKSPECDIR%%/freebsd-clang/qmake.conf %%QT_MKSPECDIR%%/freebsd-clang/qplatformdefs.h %%QT_MKSPECDIR%%/freebsd-g++/qmake.conf %%QT_MKSPECDIR%%/freebsd-g++/qplatformdefs.h %%QT_MKSPECDIR%%/haiku-g++/qmake.conf %%QT_MKSPECDIR%%/haiku-g++/qplatformdefs.h %%QT_MKSPECDIR%%/hpuxi-g++-64/qmake.conf %%QT_MKSPECDIR%%/hpuxi-g++-64/qplatformdefs.h %%QT_MKSPECDIR%%/hurd-g++/qmake.conf %%QT_MKSPECDIR%%/hurd-g++/qplatformdefs.h %%QT_MKSPECDIR%%/integrity-armv7-imx6/qmake.conf %%QT_MKSPECDIR%%/integrity-armv7-imx6/qplatformdefs.h %%QT_MKSPECDIR%%/integrity-armv7/qmake.conf %%QT_MKSPECDIR%%/integrity-armv7/qplatformdefs.h %%QT_MKSPECDIR%%/integrity-armv8-rcar/qmake.conf %%QT_MKSPECDIR%%/integrity-armv8-rcar/qplatformdefs.h %%QT_MKSPECDIR%%/integrity-x86/qmake.conf %%QT_MKSPECDIR%%/integrity-x86/qplatformdefs.h %%QT_MKSPECDIR%%/linux-aarch64-gnu-g++/qmake.conf %%QT_MKSPECDIR%%/linux-aarch64-gnu-g++/qplatformdefs.h %%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qmake.conf %%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qplatformdefs.h %%QT_MKSPECDIR%%/linux-clang-32/qmake.conf %%QT_MKSPECDIR%%/linux-clang-32/qplatformdefs.h %%QT_MKSPECDIR%%/linux-clang-libc++-32/qmake.conf %%QT_MKSPECDIR%%/linux-clang-libc++-32/qplatformdefs.h %%QT_MKSPECDIR%%/linux-clang-libc++/qmake.conf %%QT_MKSPECDIR%%/linux-clang-libc++/qplatformdefs.h %%QT_MKSPECDIR%%/linux-clang/qmake.conf %%QT_MKSPECDIR%%/linux-clang/qplatformdefs.h %%QT_MKSPECDIR%%/linux-g++-32/qmake.conf %%QT_MKSPECDIR%%/linux-g++-32/qplatformdefs.h %%QT_MKSPECDIR%%/linux-g++-64/qmake.conf %%QT_MKSPECDIR%%/linux-g++-64/qplatformdefs.h %%QT_MKSPECDIR%%/linux-g++/qmake.conf %%QT_MKSPECDIR%%/linux-g++/qplatformdefs.h %%QT_MKSPECDIR%%/linux-icc-32/qmake.conf %%QT_MKSPECDIR%%/linux-icc-32/qplatformdefs.h %%QT_MKSPECDIR%%/linux-icc-64/qmake.conf %%QT_MKSPECDIR%%/linux-icc-64/qplatformdefs.h %%QT_MKSPECDIR%%/linux-icc-k1om/qmake.conf %%QT_MKSPECDIR%%/linux-icc-k1om/qplatformdefs.h %%QT_MKSPECDIR%%/linux-icc/qmake.conf %%QT_MKSPECDIR%%/linux-icc/qplatformdefs.h %%QT_MKSPECDIR%%/linux-llvm/qmake.conf %%QT_MKSPECDIR%%/linux-llvm/qplatformdefs.h %%QT_MKSPECDIR%%/linux-lsb-g++/qmake.conf %%QT_MKSPECDIR%%/linux-lsb-g++/qplatformdefs.h %%QT_MKSPECDIR%%/lynxos-g++/qmake.conf %%QT_MKSPECDIR%%/lynxos-g++/qplatformdefs.h %%QT_MKSPECDIR%%/macx-clang/Info.plist.app %%QT_MKSPECDIR%%/macx-clang/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-clang/Info.plist.disable_highdpi %%QT_MKSPECDIR%%/macx-clang/Info.plist.lib %%QT_MKSPECDIR%%/macx-clang/qmake.conf %%QT_MKSPECDIR%%/macx-clang/qplatformdefs.h %%QT_MKSPECDIR%%/macx-g++/Info.plist.app %%QT_MKSPECDIR%%/macx-g++/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-g++/Info.plist.lib %%QT_MKSPECDIR%%/macx-g++/qmake.conf %%QT_MKSPECDIR%%/macx-g++/qplatformdefs.h %%QT_MKSPECDIR%%/macx-icc/Info.plist.app %%QT_MKSPECDIR%%/macx-icc/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-icc/Info.plist.lib %%QT_MKSPECDIR%%/macx-icc/qmake.conf %%QT_MKSPECDIR%%/macx-icc/qplatformdefs.h %%QT_MKSPECDIR%%/macx-ios-clang/Default-568h@2x.png %%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.app %%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.lib %%QT_MKSPECDIR%%/macx-ios-clang/LaunchScreen.xib %%QT_MKSPECDIR%%/macx-ios-clang/features/default_post.prf %%QT_MKSPECDIR%%/macx-ios-clang/qmake.conf %%QT_MKSPECDIR%%/macx-ios-clang/qplatformdefs.h %%QT_MKSPECDIR%%/macx-tvos-clang/Info.plist.app %%QT_MKSPECDIR%%/macx-tvos-clang/Info.plist.lib %%QT_MKSPECDIR%%/macx-tvos-clang/qmake.conf %%QT_MKSPECDIR%%/macx-tvos-clang/qplatformdefs.h %%QT_MKSPECDIR%%/macx-watchos-clang/Info.plist.app %%QT_MKSPECDIR%%/macx-watchos-clang/Info.plist.lib %%QT_MKSPECDIR%%/macx-watchos-clang/qmake.conf %%QT_MKSPECDIR%%/macx-watchos-clang/qplatformdefs.h %%QT_MKSPECDIR%%/macx-xcode/QtTest.plist %%QT_MKSPECDIR%%/macx-xcode/WorkspaceSettings.xcsettings %%QT_MKSPECDIR%%/macx-xcode/default.xcscheme %%QT_MKSPECDIR%%/macx-xcode/qmake.conf %%QT_MKSPECDIR%%/macx-xcode/qplatformdefs.h %%QT_MKSPECDIR%%/netbsd-g++/qmake.conf %%QT_MKSPECDIR%%/netbsd-g++/qplatformdefs.h %%QT_MKSPECDIR%%/openbsd-g++/qmake.conf %%QT_MKSPECDIR%%/openbsd-g++/qplatformdefs.h %%QT_MKSPECDIR%%/qconfig.pri %%QT_MKSPECDIR%%/qdevice.pri %%QT_MKSPECDIR%%/qmodule.pri %%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qmake.conf %%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qplatformdefs.h %%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qmake.conf %%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qplatformdefs.h %%QT_MKSPECDIR%%/qnx-x86-64-qcc/qmake.conf %%QT_MKSPECDIR%%/qnx-x86-64-qcc/qplatformdefs.h %%QT_MKSPECDIR%%/qnx-x86-qcc/qmake.conf %%QT_MKSPECDIR%%/qnx-x86-qcc/qplatformdefs.h %%QT_MKSPECDIR%%/solaris-cc-64-stlport/qmake.conf %%QT_MKSPECDIR%%/solaris-cc-64-stlport/qplatformdefs.h %%QT_MKSPECDIR%%/solaris-cc-64/qmake.conf %%QT_MKSPECDIR%%/solaris-cc-64/qplatformdefs.h %%QT_MKSPECDIR%%/solaris-cc-stlport/qmake.conf %%QT_MKSPECDIR%%/solaris-cc-stlport/qplatformdefs.h %%QT_MKSPECDIR%%/solaris-cc/qmake.conf %%QT_MKSPECDIR%%/solaris-cc/qplatformdefs.h %%QT_MKSPECDIR%%/solaris-g++-64/qmake.conf %%QT_MKSPECDIR%%/solaris-g++-64/qplatformdefs.h %%QT_MKSPECDIR%%/solaris-g++/qmake.conf %%QT_MKSPECDIR%%/solaris-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/linux-host-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/linux-host-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/nacl-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/nacl-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/nacl64-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/nacl64-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qmake.conf %%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qmake.conf %%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qplatformdefs.h %%QT_MKSPECDIR%%/wasm-emscripten/qmake.conf %%QT_MKSPECDIR%%/wasm-emscripten/qplatformdefs.h %%QT_MKSPECDIR%%/win32-arm64-msvc2017/qmake.conf %%QT_MKSPECDIR%%/win32-arm64-msvc2017/qplatformdefs.h %%QT_MKSPECDIR%%/win32-clang-g++/qmake.conf %%QT_MKSPECDIR%%/win32-clang-g++/qplatformdefs.h %%QT_MKSPECDIR%%/win32-clang-msvc/qmake.conf %%QT_MKSPECDIR%%/win32-clang-msvc/qplatformdefs.h %%QT_MKSPECDIR%%/win32-g++/qmake.conf %%QT_MKSPECDIR%%/win32-g++/qplatformdefs.h %%QT_MKSPECDIR%%/win32-icc-k1om/qmake.conf %%QT_MKSPECDIR%%/win32-icc-k1om/qplatformdefs.h %%QT_MKSPECDIR%%/win32-icc/qmake.conf %%QT_MKSPECDIR%%/win32-icc/qplatformdefs.h %%QT_MKSPECDIR%%/win32-msvc/qmake.conf %%QT_MKSPECDIR%%/win32-msvc/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-arm-msvc2015/qmake.conf %%QT_MKSPECDIR%%/winrt-arm-msvc2015/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-arm-msvc2017/qmake.conf %%QT_MKSPECDIR%%/winrt-arm-msvc2017/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-arm-msvc2019/qmake.conf %%QT_MKSPECDIR%%/winrt-arm-msvc2019/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-arm64-msvc2017/qmake.conf %%QT_MKSPECDIR%%/winrt-arm64-msvc2017/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-arm64-msvc2019/qmake.conf %%QT_MKSPECDIR%%/winrt-arm64-msvc2019/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-x64-msvc2015/qmake.conf %%QT_MKSPECDIR%%/winrt-x64-msvc2015/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-x64-msvc2017/qmake.conf %%QT_MKSPECDIR%%/winrt-x64-msvc2017/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-x64-msvc2019/qmake.conf %%QT_MKSPECDIR%%/winrt-x64-msvc2019/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-x86-msvc2015/qmake.conf %%QT_MKSPECDIR%%/winrt-x86-msvc2015/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-x86-msvc2017/qmake.conf %%QT_MKSPECDIR%%/winrt-x86-msvc2017/qplatformdefs.h %%QT_MKSPECDIR%%/winrt-x86-msvc2019/qmake.conf %%QT_MKSPECDIR%%/winrt-x86-msvc2019/qplatformdefs.h Index: head/devel/qt5-remoteobjects/Makefile =================================================================== --- head/devel/qt5-remoteobjects/Makefile (revision 517079) +++ head/devel/qt5-remoteobjects/Makefile (revision 517080) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= remoteobjects DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt5 SXCML module USES= compiler:c++11-lang gl qmake qt-dist:5 USE_GL= gl USE_QT= core declarative network \ buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/devel/qt5-remoteobjects/pkg-plist =================================================================== --- head/devel/qt5-remoteobjects/pkg-plist (revision 517079) +++ head/devel/qt5-remoteobjects/pkg-plist (revision 517080) @@ -1,91 +1,93 @@ %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qconnection_local_backend_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qconnection_qnx_backend_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qconnection_qnx_global_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qconnection_qnx_qiodevices_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qconnection_qnx_server_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qconnection_tcpip_backend_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qconnectionfactories_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectabstractitemmodeladapter_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectabstractitemmodelreplica_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectnode_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectpacket_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectpendingcall_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectregistrysource_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectreplica_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectsource_p.h %%QT_INCDIR%%/QtRemoteObjects/%%FULLVER%%/QtRemoteObjects/private/qremoteobjectsourceio_p.h %%QT_INCDIR%%/QtRemoteObjects/QAbstractItemModelReplica %%QT_INCDIR%%/QtRemoteObjects/QIOQnxSource %%QT_INCDIR%%/QtRemoteObjects/QIntHash %%QT_INCDIR%%/QtRemoteObjects/QQnxNativeIo %%QT_INCDIR%%/QtRemoteObjects/QQnxNativeServer %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectAbstractPersistedStore %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectDynamicReplica %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectHost %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectHostBase %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectNode %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectPendingCall %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectPendingCallWatcher %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectPendingReply %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectRegistry %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectRegistryHost %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectReplica %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectSettingsStore %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectSourceLocation %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectSourceLocationInfo %%QT_INCDIR%%/QtRemoteObjects/QRemoteObjectSourceLocations %%QT_INCDIR%%/QtRemoteObjects/QtRemoteObjects %%QT_INCDIR%%/QtRemoteObjects/QtRemoteObjectsDepends %%QT_INCDIR%%/QtRemoteObjects/QtRemoteObjectsVersion %%QT_INCDIR%%/QtRemoteObjects/qconnection_qnx_qiodevices.h %%QT_INCDIR%%/QtRemoteObjects/qconnection_qnx_server.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectabstractitemmodelreplica.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectabstractitemmodeltypes.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectdynamicreplica.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectnode.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectpendingcall.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectregistry.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectreplica.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectsettingsstore.h %%QT_INCDIR%%/QtRemoteObjects/qremoteobjectsource.h %%QT_INCDIR%%/QtRemoteObjects/qtremoteobjectglobal.h %%QT_INCDIR%%/QtRemoteObjects/qtremoteobjectsversion.h %%QT_INCDIR%%/QtRepParser/QRegexParser %%QT_INCDIR%%/QtRepParser/QtRepParser %%QT_INCDIR%%/QtRepParser/QtRepParserDepends %%QT_INCDIR%%/QtRepParser/QtRepParserVersion %%QT_INCDIR%%/QtRepParser/parser.g %%QT_INCDIR%%/QtRepParser/qregexparser.h %%QT_INCDIR%%/QtRepParser/qtrepparserversion.h %%QT_CMAKEDIR%%/Qt5RemoteObjects/Qt5RemoteObjectsConfig.cmake %%QT_CMAKEDIR%%/Qt5RemoteObjects/Qt5RemoteObjectsConfigExtras.cmake %%QT_CMAKEDIR%%/Qt5RemoteObjects/Qt5RemoteObjectsConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5RemoteObjects/Qt5RemoteObjectsMacros.cmake %%QT_CMAKEDIR%%/Qt5RepParser/Qt5RepParserConfig.cmake %%QT_CMAKEDIR%%/Qt5RepParser/Qt5RepParserConfigVersion.cmake %%QT_BINDIR%%/repc %%QT_LIBDIR%%/libQt5RemoteObjects.prl %%QT_LIBDIR%%/libQt5RemoteObjects.so %%QT_LIBDIR%%/libQt5RemoteObjects.so.5 %%QT_LIBDIR%%/libQt5RemoteObjects.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5RemoteObjects.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5RemoteObjects.so.%%FULLVER%%.debug +%%QT_LIBDIR%%/libQt5RepParser.prl %%QT_MKSPECDIR%%/features/remoteobjects_repc.prf %%QT_MKSPECDIR%%/features/repcclient.pri %%QT_MKSPECDIR%%/features/repccommon.pri %%QT_MKSPECDIR%%/features/repcmerged.pri %%QT_MKSPECDIR%%/features/repcserver.pri %%QT_MKSPECDIR%%/features/repparser.prf %%QT_MKSPECDIR%%/modules/qt_lib_remoteobjects.pri %%QT_MKSPECDIR%%/modules/qt_lib_remoteobjects_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_repparser.pri %%QT_MKSPECDIR%%/modules/qt_lib_repparser_private.pri %%QT_QMLDIR%%/QtQml/RemoteObjects/libqtqmlremoteobjects.so %%DEBUG%%%%QT_QMLDIR%%/QtQml/RemoteObjects/libqtqmlremoteobjects.so.debug %%QT_QMLDIR%%/QtQml/RemoteObjects/plugins.qmltypes %%QT_QMLDIR%%/QtQml/RemoteObjects/qmldir %%QT_QMLDIR%%/QtRemoteObjects/libqtremoteobjects.so %%DEBUG%%%%QT_QMLDIR%%/QtRemoteObjects/libqtremoteobjects.so.debug %%QT_QMLDIR%%/QtRemoteObjects/plugins.qmltypes %%QT_QMLDIR%%/QtRemoteObjects/qmldir libdata/pkgconfig/Qt5RemoteObjects.pc +libdata/pkgconfig/Qt5RepParser.pc Index: head/devel/qt5-script/Makefile =================================================================== --- head/devel/qt5-script/Makefile (revision 517079) +++ head/devel/qt5-script/Makefile (revision 517080) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= script DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 4-compatible scripting module USES= compiler:c++11-lang qmake qt-dist:5,script USE_QT= core buildtools_build # Keep make(1) from descending into src/script/obj/ (qmake:outsource # doesn't work). MAKE_ENV= MAKEOBJDIR=. USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} post-patch: @${REINPLACE_CMD} -e '/scripttools/ d' \ ${WRKSRC}/src/src.pro .include Index: head/devel/qt5-scripttools/Makefile =================================================================== --- head/devel/qt5-scripttools/Makefile (revision 517079) +++ head/devel/qt5-scripttools/Makefile (revision 517080) @@ -1,22 +1,21 @@ # $FreeBSD$ PORTNAME= scripttools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 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 USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME} # Link in QtScript port _QT5_ADDITIONAL_LINK= script .include Index: head/devel/qt5-scxml/Makefile =================================================================== --- head/devel/qt5-scxml/Makefile (revision 517079) +++ head/devel/qt5-scxml/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= scxml DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt5 SXCML module USES= compiler:c++11-lang qmake qt-dist:5,scxml USE_QT= core declarative network buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/devel/qt5-testlib/Makefile =================================================================== --- head/devel/qt5-testlib/Makefile (revision 517079) +++ head/devel/qt5-testlib/Makefile (revision 517080) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= testlib DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt unit testing module USES= compiler:c++11-lang qmake:no_env qt-dist:5,base USE_QT= core qmake_build buildtools_build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} post-configure: .for d in src/testlib ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor .include Index: head/devel/qt5-uitools/Makefile =================================================================== --- head/devel/qt5-uitools/Makefile (revision 517079) +++ head/devel/qt5-uitools/Makefile (revision 517080) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= uitools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt Designer UI forms support module USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui uiplugin widgets buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} .include Index: head/graphics/qt5-3d/Makefile =================================================================== --- head/graphics/qt5-3d/Makefile (revision 517079) +++ head/graphics/qt5-3d/Makefile (revision 517080) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= 3d DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt3D module LIB_DEPENDS= libassimp.so:multimedia/assimp USES= compiler:c++11-lang pkgconfig qmake:norecursive qt-dist:5,3d USE_QT= concurrent core declarative gui network buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/graphics/qt5-3d/pkg-plist =================================================================== --- head/graphics/qt5-3d/pkg-plist (revision 517079) +++ head/graphics/qt5-3d/pkg-plist (revision 517080) @@ -1,1350 +1,1355 @@ %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/additiveclipblend_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/animationclip_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/animationlogging_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/animationutils_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/backendnode_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/bezierevaluator_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/blendedclipanimator_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/buildblendtreesjob_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/channelmapper_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/channelmapping_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipanimator_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipblendnode_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipblendnodevisitor_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipblendvalue_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clock_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/evaluateblendclipanimatorjob_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/evaluateclipanimatorjob_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/fcurve_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/findrunningclipanimatorsjob_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/functionrangefinder_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/gltfimporter_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/handle_types_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/handler_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/job_common_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/keyframe_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/lerpclipblend_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/loadanimationclipjob_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/managers_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/nodefunctor_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractanimation_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractanimationclip_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractchannelmapping_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractclipanimator_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractclipblendnode_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qadditiveclipblend_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationaspect_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationcallbacktrigger_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationclip_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationcliploader_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationcontroller_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationgroup_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qblendedclipanimator_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qcallbackmapping_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qchannelmapper_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qchannelmapping_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qchannelmappingcreatedchange_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qchannelmappingcreatedchange_p_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qclipanimator_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qclipblendnodecreatedchange_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qclipblendvalue_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qclock_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qkeyframeanimation_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qlerpclipblend_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qmorphinganimation_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qmorphtarget_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qskeletonmapping_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qt3danimation_global_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qvertexblendanimation_p.h %%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/skeleton_p.h %%QT_INCDIR%%/Qt3DAnimation/QAbstractAnimation %%QT_INCDIR%%/Qt3DAnimation/QAbstractAnimationClip %%QT_INCDIR%%/Qt3DAnimation/QAbstractChannelMapping %%QT_INCDIR%%/Qt3DAnimation/QAbstractClipAnimator %%QT_INCDIR%%/Qt3DAnimation/QAbstractClipBlendNode %%QT_INCDIR%%/Qt3DAnimation/QAdditiveClipBlend %%QT_INCDIR%%/Qt3DAnimation/QAnimationAspect %%QT_INCDIR%%/Qt3DAnimation/QAnimationCallback %%QT_INCDIR%%/Qt3DAnimation/QAnimationClip %%QT_INCDIR%%/Qt3DAnimation/QAnimationClipData %%QT_INCDIR%%/Qt3DAnimation/QAnimationClipLoader %%QT_INCDIR%%/Qt3DAnimation/QAnimationController %%QT_INCDIR%%/Qt3DAnimation/QAnimationGroup %%QT_INCDIR%%/Qt3DAnimation/QBlendedClipAnimator %%QT_INCDIR%%/Qt3DAnimation/QCallbackMapping %%QT_INCDIR%%/Qt3DAnimation/QChannel %%QT_INCDIR%%/Qt3DAnimation/QChannelComponent %%QT_INCDIR%%/Qt3DAnimation/QChannelMapper %%QT_INCDIR%%/Qt3DAnimation/QChannelMapping %%QT_INCDIR%%/Qt3DAnimation/QClipAnimator %%QT_INCDIR%%/Qt3DAnimation/QClipBlendNodeCreatedChange %%QT_INCDIR%%/Qt3DAnimation/QClipBlendNodeCreatedChangeBase %%QT_INCDIR%%/Qt3DAnimation/QClipBlendNodeCreatedChangeBasePtr %%QT_INCDIR%%/Qt3DAnimation/QClipBlendValue %%QT_INCDIR%%/Qt3DAnimation/QClock %%QT_INCDIR%%/Qt3DAnimation/QKeyFrame %%QT_INCDIR%%/Qt3DAnimation/QKeyframeAnimation %%QT_INCDIR%%/Qt3DAnimation/QLerpClipBlend %%QT_INCDIR%%/Qt3DAnimation/QMorphTarget %%QT_INCDIR%%/Qt3DAnimation/QMorphingAnimation %%QT_INCDIR%%/Qt3DAnimation/QSkeletonMapping %%QT_INCDIR%%/Qt3DAnimation/QVertexBlendAnimation %%QT_INCDIR%%/Qt3DAnimation/Qt3DAnimation %%QT_INCDIR%%/Qt3DAnimation/Qt3DAnimationDepends %%QT_INCDIR%%/Qt3DAnimation/Qt3DAnimationVersion %%QT_INCDIR%%/Qt3DAnimation/qabstractanimation.h %%QT_INCDIR%%/Qt3DAnimation/qabstractanimationclip.h %%QT_INCDIR%%/Qt3DAnimation/qabstractchannelmapping.h %%QT_INCDIR%%/Qt3DAnimation/qabstractclipanimator.h %%QT_INCDIR%%/Qt3DAnimation/qabstractclipblendnode.h %%QT_INCDIR%%/Qt3DAnimation/qadditiveclipblend.h %%QT_INCDIR%%/Qt3DAnimation/qanimationaspect.h %%QT_INCDIR%%/Qt3DAnimation/qanimationcallback.h %%QT_INCDIR%%/Qt3DAnimation/qanimationclip.h %%QT_INCDIR%%/Qt3DAnimation/qanimationclipdata.h %%QT_INCDIR%%/Qt3DAnimation/qanimationcliploader.h %%QT_INCDIR%%/Qt3DAnimation/qanimationcontroller.h %%QT_INCDIR%%/Qt3DAnimation/qanimationgroup.h %%QT_INCDIR%%/Qt3DAnimation/qblendedclipanimator.h %%QT_INCDIR%%/Qt3DAnimation/qcallbackmapping.h %%QT_INCDIR%%/Qt3DAnimation/qchannel.h %%QT_INCDIR%%/Qt3DAnimation/qchannelcomponent.h %%QT_INCDIR%%/Qt3DAnimation/qchannelmapper.h %%QT_INCDIR%%/Qt3DAnimation/qchannelmapping.h %%QT_INCDIR%%/Qt3DAnimation/qclipanimator.h %%QT_INCDIR%%/Qt3DAnimation/qclipblendnodecreatedchange.h %%QT_INCDIR%%/Qt3DAnimation/qclipblendvalue.h %%QT_INCDIR%%/Qt3DAnimation/qclock.h %%QT_INCDIR%%/Qt3DAnimation/qkeyframe.h %%QT_INCDIR%%/Qt3DAnimation/qkeyframeanimation.h %%QT_INCDIR%%/Qt3DAnimation/qlerpclipblend.h %%QT_INCDIR%%/Qt3DAnimation/qmorphinganimation.h %%QT_INCDIR%%/Qt3DAnimation/qmorphtarget.h %%QT_INCDIR%%/Qt3DAnimation/qskeletonmapping.h %%QT_INCDIR%%/Qt3DAnimation/qt3danimation_global.h %%QT_INCDIR%%/Qt3DAnimation/qt3danimationversion.h %%QT_INCDIR%%/Qt3DAnimation/qvertexblendanimation.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/aspectcommanddebugger_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/corelogging_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/matrix4x4_avx2_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/matrix4x4_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/matrix4x4_sse_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/nullservices_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/propertychangehandler_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractaspect_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractaspectjobmanager_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractframeadvanceservice_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractframeadvanceservice_p_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractnodefactory_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractserviceprovider_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractskeleton_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qarmature_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectengine_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectfactory_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjob_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjobmanager_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjobproviderinterface_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectmanager_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectthread_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qbackendnode_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qbackendnodefactory_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qboundedcircularbuffer_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qchangearbiter_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcircularbuffer_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcomponent_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcomponentaddedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcomponentremovedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdestructionidandtypecollector_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdownloadhelperservice_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdownloadhelperservice_p_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdownloadnetworkworker_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdynamicpropertyupdatedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qentity_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qeventfilterservice_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qframeallocator_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qframeallocator_p_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qhandle_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qjoint_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qlockableobserverinterface_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qmath3d_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnode_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodecommand_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodecreatedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodecreatedchangegenerator_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodedestroyedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodevisitor_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qobservableinterface_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qobserverinterface_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qopenglinformationservice_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qopenglinformationservice_p_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpostman_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpostman_p_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertynodeaddedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertynoderemovedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyupdatedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyupdatedchangebase_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueaddedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueaddedchangebase_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueremovedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qpropertyvalueremovedchangebase_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qresourcemanager_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscene_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscenechange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsceneobserverinterface_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscheduler_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qservicelocator_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qskeleton_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qskeletoncreatedchange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qskeletoncreatedchange_p_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qskeletonloader_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qstaticpropertyupdatedchangebase_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qstaticpropertyvalueaddedchangebase_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qstaticpropertyvalueremovedchangebase_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsysteminformationservice_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsysteminformationservice_p_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qt3dcore-config_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qt3dcore_global_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qthreadpooler_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtickclock_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtickclockservice_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtransform_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtypedpropertyupdatechange_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/sqt_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/task_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector3d_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector3d_sse_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector4d_p.h %%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector4d_sse_p.h %%QT_INCDIR%%/Qt3DCore/QAbstractAspect %%QT_INCDIR%%/Qt3DCore/QAbstractSkeleton %%QT_INCDIR%%/Qt3DCore/QArmature %%QT_INCDIR%%/Qt3DCore/QAspectEngine %%QT_INCDIR%%/Qt3DCore/QAspectJob %%QT_INCDIR%%/Qt3DCore/QAspectJobPtr %%QT_INCDIR%%/Qt3DCore/QBackendNode %%QT_INCDIR%%/Qt3DCore/QBackendNodeMapper %%QT_INCDIR%%/Qt3DCore/QBackendNodeMapperPtr %%QT_INCDIR%%/Qt3DCore/QComponent %%QT_INCDIR%%/Qt3DCore/QComponentAddedChange %%QT_INCDIR%%/Qt3DCore/QComponentAddedChangePtr %%QT_INCDIR%%/Qt3DCore/QComponentRemovedChange %%QT_INCDIR%%/Qt3DCore/QComponentRemovedChangePtr %%QT_INCDIR%%/Qt3DCore/QComponentVector %%QT_INCDIR%%/Qt3DCore/QDynamicPropertyUpdatedChange %%QT_INCDIR%%/Qt3DCore/QDynamicPropertyUpdatedChangePtr %%QT_INCDIR%%/Qt3DCore/QEntity %%QT_INCDIR%%/Qt3DCore/QEntityPtr %%QT_INCDIR%%/Qt3DCore/QJoint %%QT_INCDIR%%/Qt3DCore/QNode %%QT_INCDIR%%/Qt3DCore/QNodeCommand %%QT_INCDIR%%/Qt3DCore/QNodeCommandPtr %%QT_INCDIR%%/Qt3DCore/QNodeCreatedChange %%QT_INCDIR%%/Qt3DCore/QNodeCreatedChangeBase %%QT_INCDIR%%/Qt3DCore/QNodeCreatedChangeBasePtr %%QT_INCDIR%%/Qt3DCore/QNodeDestroyedChange %%QT_INCDIR%%/Qt3DCore/QNodeDestroyedChangePtr %%QT_INCDIR%%/Qt3DCore/QNodeId %%QT_INCDIR%%/Qt3DCore/QNodeIdTypePair %%QT_INCDIR%%/Qt3DCore/QNodePtr %%QT_INCDIR%%/Qt3DCore/QNodeVector %%QT_INCDIR%%/Qt3DCore/QPropertyNodeAddedChange %%QT_INCDIR%%/Qt3DCore/QPropertyNodeAddedChangePtr %%QT_INCDIR%%/Qt3DCore/QPropertyNodeRemovedChange %%QT_INCDIR%%/Qt3DCore/QPropertyNodeRemovedChangePtr %%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChange %%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChangeBase %%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChangeBasePtr %%QT_INCDIR%%/Qt3DCore/QPropertyUpdatedChangePtr %%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChange %%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChangeBase %%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChangeBasePtr %%QT_INCDIR%%/Qt3DCore/QPropertyValueAddedChangePtr %%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChange %%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChangeBase %%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChangeBasePtr %%QT_INCDIR%%/Qt3DCore/QPropertyValueRemovedChangePtr %%QT_INCDIR%%/Qt3DCore/QSceneChange %%QT_INCDIR%%/Qt3DCore/QSceneChangePtr %%QT_INCDIR%%/Qt3DCore/QSkeleton %%QT_INCDIR%%/Qt3DCore/QSkeletonLoader %%QT_INCDIR%%/Qt3DCore/QStaticPropertyUpdatedChangeBase %%QT_INCDIR%%/Qt3DCore/QStaticPropertyUpdatedChangeBasePtr %%QT_INCDIR%%/Qt3DCore/QStaticPropertyValueAddedChangeBase %%QT_INCDIR%%/Qt3DCore/QStaticPropertyValueRemovedChangeBase %%QT_INCDIR%%/Qt3DCore/QTransform %%QT_INCDIR%%/Qt3DCore/Qt3DCore %%QT_INCDIR%%/Qt3DCore/Qt3DCoreDepends %%QT_INCDIR%%/Qt3DCore/Qt3DCoreVersion %%QT_INCDIR%%/Qt3DCore/qabstractaspect.h %%QT_INCDIR%%/Qt3DCore/qabstractskeleton.h %%QT_INCDIR%%/Qt3DCore/qarmature.h %%QT_INCDIR%%/Qt3DCore/qaspectengine.h %%QT_INCDIR%%/Qt3DCore/qaspectjob.h %%QT_INCDIR%%/Qt3DCore/qbackendnode.h %%QT_INCDIR%%/Qt3DCore/qcomponent.h %%QT_INCDIR%%/Qt3DCore/qcomponentaddedchange.h %%QT_INCDIR%%/Qt3DCore/qcomponentremovedchange.h %%QT_INCDIR%%/Qt3DCore/qdynamicpropertyupdatedchange.h %%QT_INCDIR%%/Qt3DCore/qentity.h %%QT_INCDIR%%/Qt3DCore/qjoint.h %%QT_INCDIR%%/Qt3DCore/qnode.h %%QT_INCDIR%%/Qt3DCore/qnodecommand.h %%QT_INCDIR%%/Qt3DCore/qnodecreatedchange.h %%QT_INCDIR%%/Qt3DCore/qnodedestroyedchange.h %%QT_INCDIR%%/Qt3DCore/qnodeid.h %%QT_INCDIR%%/Qt3DCore/qpropertynodeaddedchange.h %%QT_INCDIR%%/Qt3DCore/qpropertynoderemovedchange.h %%QT_INCDIR%%/Qt3DCore/qpropertyupdatedchange.h %%QT_INCDIR%%/Qt3DCore/qpropertyupdatedchangebase.h %%QT_INCDIR%%/Qt3DCore/qpropertyvalueaddedchange.h %%QT_INCDIR%%/Qt3DCore/qpropertyvalueaddedchangebase.h %%QT_INCDIR%%/Qt3DCore/qpropertyvalueremovedchange.h %%QT_INCDIR%%/Qt3DCore/qpropertyvalueremovedchangebase.h %%QT_INCDIR%%/Qt3DCore/qscenechange.h %%QT_INCDIR%%/Qt3DCore/qskeleton.h %%QT_INCDIR%%/Qt3DCore/qskeletonloader.h %%QT_INCDIR%%/Qt3DCore/qstaticpropertyupdatedchangebase.h %%QT_INCDIR%%/Qt3DCore/qstaticpropertyvalueaddedchangebase.h %%QT_INCDIR%%/Qt3DCore/qstaticpropertyvalueremovedchangebase.h %%QT_INCDIR%%/Qt3DCore/qt3dcore-config.h %%QT_INCDIR%%/Qt3DCore/qt3dcore_global.h %%QT_INCDIR%%/Qt3DCore/qt3dcoreversion.h %%QT_INCDIR%%/Qt3DCore/qtransform.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/areaallocator_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/distancefieldtextrenderer_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/distancefieldtextrenderer_p_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qabstractcameracontroller_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qabstractspritesheet_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qconegeometry_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qcuboidgeometry_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qcylindergeometry_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusemapmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusespecularmapmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusespecularmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdistancefieldglyphcache_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qextrudedtextgeometry_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qforwardrenderer_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qgoochmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qmetalroughmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qmorphphongmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusemapalphamaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusemapmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusespecularmapmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qorbitcameracontroller_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qpervertexcolormaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qphongalphamaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qphongmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qplanegeometry_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qskyboxentity_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspheregeometry_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspritegrid_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspritesheet_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspritesheetitem_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qt3dwindow_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtext2dentity_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtext2dmaterial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtext2dmaterial_p_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtextureatlas_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtextureatlas_p_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtexturematerial_p.h %%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtorusgeometry_p.h %%QT_INCDIR%%/Qt3DExtras/QAbstractCameraController %%QT_INCDIR%%/Qt3DExtras/QAbstractSpriteSheet %%QT_INCDIR%%/Qt3DExtras/QConeGeometry %%QT_INCDIR%%/Qt3DExtras/QConeMesh %%QT_INCDIR%%/Qt3DExtras/QCuboidGeometry %%QT_INCDIR%%/Qt3DExtras/QCuboidMesh %%QT_INCDIR%%/Qt3DExtras/QCylinderGeometry %%QT_INCDIR%%/Qt3DExtras/QCylinderMesh %%QT_INCDIR%%/Qt3DExtras/QDiffuseMapMaterial %%QT_INCDIR%%/Qt3DExtras/QDiffuseSpecularMapMaterial %%QT_INCDIR%%/Qt3DExtras/QDiffuseSpecularMaterial %%QT_INCDIR%%/Qt3DExtras/QExtrudedTextGeometry %%QT_INCDIR%%/Qt3DExtras/QExtrudedTextMesh %%QT_INCDIR%%/Qt3DExtras/QFirstPersonCameraController %%QT_INCDIR%%/Qt3DExtras/QForwardRenderer %%QT_INCDIR%%/Qt3DExtras/QGoochMaterial %%QT_INCDIR%%/Qt3DExtras/QMetalRoughMaterial %%QT_INCDIR%%/Qt3DExtras/QMorphPhongMaterial %%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseMapAlphaMaterial %%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseMapMaterial %%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseSpecularMapMaterial %%QT_INCDIR%%/Qt3DExtras/QOrbitCameraController %%QT_INCDIR%%/Qt3DExtras/QPerVertexColorMaterial %%QT_INCDIR%%/Qt3DExtras/QPhongAlphaMaterial %%QT_INCDIR%%/Qt3DExtras/QPhongMaterial %%QT_INCDIR%%/Qt3DExtras/QPlaneGeometry %%QT_INCDIR%%/Qt3DExtras/QPlaneMesh %%QT_INCDIR%%/Qt3DExtras/QSkyboxEntity %%QT_INCDIR%%/Qt3DExtras/QSphereGeometry %%QT_INCDIR%%/Qt3DExtras/QSphereMesh %%QT_INCDIR%%/Qt3DExtras/QSpriteGrid %%QT_INCDIR%%/Qt3DExtras/QSpriteSheet %%QT_INCDIR%%/Qt3DExtras/QSpriteSheetItem %%QT_INCDIR%%/Qt3DExtras/QText2DEntity %%QT_INCDIR%%/Qt3DExtras/QTextureMaterial %%QT_INCDIR%%/Qt3DExtras/QTorusGeometry %%QT_INCDIR%%/Qt3DExtras/QTorusMesh %%QT_INCDIR%%/Qt3DExtras/Qt3DExtras %%QT_INCDIR%%/Qt3DExtras/Qt3DExtrasDepends %%QT_INCDIR%%/Qt3DExtras/Qt3DExtrasVersion %%QT_INCDIR%%/Qt3DExtras/Qt3DWindow %%QT_INCDIR%%/Qt3DExtras/qabstractcameracontroller.h %%QT_INCDIR%%/Qt3DExtras/qabstractspritesheet.h %%QT_INCDIR%%/Qt3DExtras/qconegeometry.h %%QT_INCDIR%%/Qt3DExtras/qconemesh.h %%QT_INCDIR%%/Qt3DExtras/qcuboidgeometry.h %%QT_INCDIR%%/Qt3DExtras/qcuboidmesh.h %%QT_INCDIR%%/Qt3DExtras/qcylindergeometry.h %%QT_INCDIR%%/Qt3DExtras/qcylindermesh.h %%QT_INCDIR%%/Qt3DExtras/qdiffusemapmaterial.h %%QT_INCDIR%%/Qt3DExtras/qdiffusespecularmapmaterial.h %%QT_INCDIR%%/Qt3DExtras/qdiffusespecularmaterial.h %%QT_INCDIR%%/Qt3DExtras/qextrudedtextgeometry.h %%QT_INCDIR%%/Qt3DExtras/qextrudedtextmesh.h %%QT_INCDIR%%/Qt3DExtras/qfirstpersoncameracontroller.h %%QT_INCDIR%%/Qt3DExtras/qforwardrenderer.h %%QT_INCDIR%%/Qt3DExtras/qgoochmaterial.h %%QT_INCDIR%%/Qt3DExtras/qmetalroughmaterial.h %%QT_INCDIR%%/Qt3DExtras/qmorphphongmaterial.h %%QT_INCDIR%%/Qt3DExtras/qnormaldiffusemapalphamaterial.h %%QT_INCDIR%%/Qt3DExtras/qnormaldiffusemapmaterial.h %%QT_INCDIR%%/Qt3DExtras/qnormaldiffusespecularmapmaterial.h %%QT_INCDIR%%/Qt3DExtras/qorbitcameracontroller.h %%QT_INCDIR%%/Qt3DExtras/qpervertexcolormaterial.h %%QT_INCDIR%%/Qt3DExtras/qphongalphamaterial.h %%QT_INCDIR%%/Qt3DExtras/qphongmaterial.h %%QT_INCDIR%%/Qt3DExtras/qplanegeometry.h %%QT_INCDIR%%/Qt3DExtras/qplanemesh.h %%QT_INCDIR%%/Qt3DExtras/qskyboxentity.h %%QT_INCDIR%%/Qt3DExtras/qspheregeometry.h %%QT_INCDIR%%/Qt3DExtras/qspheremesh.h %%QT_INCDIR%%/Qt3DExtras/qspritegrid.h %%QT_INCDIR%%/Qt3DExtras/qspritesheet.h %%QT_INCDIR%%/Qt3DExtras/qspritesheetitem.h %%QT_INCDIR%%/Qt3DExtras/qt3dextras_global.h %%QT_INCDIR%%/Qt3DExtras/qt3dextrasversion.h %%QT_INCDIR%%/Qt3DExtras/qt3dwindow.h %%QT_INCDIR%%/Qt3DExtras/qtext2dentity.h %%QT_INCDIR%%/Qt3DExtras/qtexturedmetalroughmaterial.h %%QT_INCDIR%%/Qt3DExtras/qtexturematerial.h %%QT_INCDIR%%/Qt3DExtras/qtorusgeometry.h %%QT_INCDIR%%/Qt3DExtras/qtorusmesh.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/abstractactioninput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/abstractaxisinput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/action_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/actioninput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/analogaxisinput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/assignkeyboardfocusjob_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axis_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axisaccumulator_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axisaccumulatorjob_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axissetting_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/buttonaxisinput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/eventsourcesetterhelper_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/genericdevicebackendnode_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/handle_types_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputbackendnodefunctor_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputchord_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputhandler_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputmanagers_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputsequence_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputsettings_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/job_common_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboarddevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardeventfilter_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardhandler_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardmousegenericdeviceintegration_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyeventdispatcherjob_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/loadproxydevicejob_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/logicaldevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mousedevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mouseeventdispatcherjob_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mouseeventfilter_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mousehandler_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/movingaverage_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/physicaldeviceproxy_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractactioninput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractaxisinput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevicebackendnode_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevicebackendnode_p_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldeviceproxy_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldeviceproxy_p_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaction_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qactioninput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qanalogaxisinput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxis_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxisaccumulator_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxissetting_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qbuttonaxisinput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qgamepadinput_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qgenericinputdevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputaspect_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputchord_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegration_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegration_p_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegrationfactory_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceplugin_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputsequence_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputsettings_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboarddevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboardhandler_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qlogicaldevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmousedevice_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmousehandler_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qphysicaldevicecreatedchange_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qt3dinput_global_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/updateaxisactionjob_p.h %%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/utils_p.h %%QT_INCDIR%%/Qt3DInput/QAbstractActionInput %%QT_INCDIR%%/Qt3DInput/QAbstractAxisInput %%QT_INCDIR%%/Qt3DInput/QAbstractPhysicalDevice %%QT_INCDIR%%/Qt3DInput/QAction %%QT_INCDIR%%/Qt3DInput/QActionInput %%QT_INCDIR%%/Qt3DInput/QAnalogAxisInput %%QT_INCDIR%%/Qt3DInput/QAxis %%QT_INCDIR%%/Qt3DInput/QAxisAccumulator %%QT_INCDIR%%/Qt3DInput/QAxisSetting %%QT_INCDIR%%/Qt3DInput/QButtonAxisInput %%QT_INCDIR%%/Qt3DInput/QInputAspect %%QT_INCDIR%%/Qt3DInput/QInputChord %%QT_INCDIR%%/Qt3DInput/QInputSequence %%QT_INCDIR%%/Qt3DInput/QInputSettings %%QT_INCDIR%%/Qt3DInput/QKeyEvent %%QT_INCDIR%%/Qt3DInput/QKeyEventPtr %%QT_INCDIR%%/Qt3DInput/QKeyboardDevice %%QT_INCDIR%%/Qt3DInput/QKeyboardHandler %%QT_INCDIR%%/Qt3DInput/QLogicalDevice %%QT_INCDIR%%/Qt3DInput/QMouseDevice %%QT_INCDIR%%/Qt3DInput/QMouseEvent %%QT_INCDIR%%/Qt3DInput/QMouseEventPtr %%QT_INCDIR%%/Qt3DInput/QMouseHandler %%QT_INCDIR%%/Qt3DInput/QPhysicalDeviceCreatedChange %%QT_INCDIR%%/Qt3DInput/QPhysicalDeviceCreatedChangeBase %%QT_INCDIR%%/Qt3DInput/QPhysicalDeviceCreatedChangeBasePtr %%QT_INCDIR%%/Qt3DInput/QWheelEvent %%QT_INCDIR%%/Qt3DInput/QWheelEventPtr %%QT_INCDIR%%/Qt3DInput/Qt3DInput %%QT_INCDIR%%/Qt3DInput/Qt3DInputDepends %%QT_INCDIR%%/Qt3DInput/Qt3DInputVersion %%QT_INCDIR%%/Qt3DInput/qabstractactioninput.h %%QT_INCDIR%%/Qt3DInput/qabstractaxisinput.h %%QT_INCDIR%%/Qt3DInput/qabstractphysicaldevice.h %%QT_INCDIR%%/Qt3DInput/qaction.h %%QT_INCDIR%%/Qt3DInput/qactioninput.h %%QT_INCDIR%%/Qt3DInput/qanalogaxisinput.h %%QT_INCDIR%%/Qt3DInput/qaxis.h %%QT_INCDIR%%/Qt3DInput/qaxisaccumulator.h %%QT_INCDIR%%/Qt3DInput/qaxissetting.h %%QT_INCDIR%%/Qt3DInput/qbuttonaxisinput.h %%QT_INCDIR%%/Qt3DInput/qinputaspect.h %%QT_INCDIR%%/Qt3DInput/qinputchord.h %%QT_INCDIR%%/Qt3DInput/qinputsequence.h %%QT_INCDIR%%/Qt3DInput/qinputsettings.h %%QT_INCDIR%%/Qt3DInput/qkeyboarddevice.h %%QT_INCDIR%%/Qt3DInput/qkeyboardhandler.h %%QT_INCDIR%%/Qt3DInput/qkeyevent.h %%QT_INCDIR%%/Qt3DInput/qlogicaldevice.h %%QT_INCDIR%%/Qt3DInput/qmousedevice.h %%QT_INCDIR%%/Qt3DInput/qmouseevent.h %%QT_INCDIR%%/Qt3DInput/qmousehandler.h %%QT_INCDIR%%/Qt3DInput/qphysicaldevicecreatedchange.h %%QT_INCDIR%%/Qt3DInput/qt3dinput_global.h %%QT_INCDIR%%/Qt3DInput/qt3dinputversion.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/callbackjob_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/executor_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/handle_types_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/handler_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/job_common_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/manager_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/managers_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/qframeaction_p.h %%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/qlogicaspect_p.h %%QT_INCDIR%%/Qt3DLogic/QFrameAction %%QT_INCDIR%%/Qt3DLogic/QLogicAspect %%QT_INCDIR%%/Qt3DLogic/Qt3DLogic %%QT_INCDIR%%/Qt3DLogic/Qt3DLogicDepends %%QT_INCDIR%%/Qt3DLogic/Qt3DLogicVersion %%QT_INCDIR%%/Qt3DLogic/qframeaction.h %%QT_INCDIR%%/Qt3DLogic/qlogicaspect.h %%QT_INCDIR%%/Qt3DLogic/qt3dlogic_global.h %%QT_INCDIR%%/Qt3DLogic/qt3dlogicversion.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qqmlaspectengine_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qquaternionanimation_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquick_global_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquicknodefactory_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquickvaluetypes_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentity_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentityloader_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentityloader_p_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3djoint_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dnode_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dnodeinstantiator_p.h %%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dnodev9_p.h %%QT_INCDIR%%/Qt3DQuick/QQmlAspectEngine %%QT_INCDIR%%/Qt3DQuick/Qt3DQuick %%QT_INCDIR%%/Qt3DQuick/Qt3DQuickDepends %%QT_INCDIR%%/Qt3DQuick/Qt3DQuickVersion %%QT_INCDIR%%/Qt3DQuick/qqmlaspectengine.h %%QT_INCDIR%%/Qt3DQuick/qt3dquick_global.h %%QT_INCDIR%%/Qt3DQuick/qt3dquickversion.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/qt3dquickanimation_global_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/qt3dquickanimationnodefactory_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3danimationcontroller_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3danimationgroup_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dchannelmapper_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dkeyframeanimation_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dmorphinganimation_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dmorphtarget_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dvertexblendanimation_p.h %%QT_INCDIR%%/Qt3DQuickAnimation/Qt3DQuickAnimation %%QT_INCDIR%%/Qt3DQuickAnimation/Qt3DQuickAnimationDepends %%QT_INCDIR%%/Qt3DQuickAnimation/Qt3DQuickAnimationVersion %%QT_INCDIR%%/Qt3DQuickAnimation/qt3dquickanimation_global.h %%QT_INCDIR%%/Qt3DQuickAnimation/qt3dquickanimationversion.h %%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickextras_global_p.h %%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickextrasnodefactory_p.h %%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickwindow_p.h %%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickwindowlogging_p.h %%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/quick3dlevelofdetailloader_p.h %%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/quick3dlevelofdetailloader_p_p.h %%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/quick3dspritesheet_p.h %%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtras %%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtrasDepends %%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtrasVersion %%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickWindow %%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickextras_global.h %%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickextrasversion.h %%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickwindow.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/qt3dquickinput_global_p.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/qt3dquickinputnodefactory_p.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3daction_p.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3daxis_p.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dinputchord_p.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dinputsequence_p.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dlogicaldevice_p.h %%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dphysicaldevice_p.h %%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInput %%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInputDepends %%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInputVersion %%QT_INCDIR%%/Qt3DQuickInput/qt3dquickinput_global.h %%QT_INCDIR%%/Qt3DQuickInput/qt3dquickinputversion.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/qt3dquickrender_global_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/qt3dquickrendernodefactory_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dbuffer_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3deffect_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dgeometry_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dlayerfilter_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dmaterial_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dmemorybarrier_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dparameter_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dparameter_p_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3draycaster_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3draycaster_p_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dscreenraycaster_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dscreenraycaster_p_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drenderpass_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drenderpassfilter_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drendertargetoutput_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drendertargetselector_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dscene_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dshaderdata_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dshaderdataarray_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dstateset_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtechnique_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtechniquefilter_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtexture_p.h %%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dviewport_p.h %%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRender %%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRenderDepends %%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRenderVersion %%QT_INCDIR%%/Qt3DQuickRender/qt3dquickrender_global.h %%QT_INCDIR%%/Qt3DQuickRender/qt3dquickrenderversion.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qscene2d_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquick3dscene2d_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquickscene2d_global_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquickscene2d_logging_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquickscene2dnodefactory_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2d_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2devent_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2dmanager_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2dsharedobject_p.h %%QT_INCDIR%%/Qt3DQuickScene2D/QScene2D %%QT_INCDIR%%/Qt3DQuickScene2D/Qt3DQuickScene2D %%QT_INCDIR%%/Qt3DQuickScene2D/Qt3DQuickScene2DDepends %%QT_INCDIR%%/Qt3DQuickScene2D/Qt3DQuickScene2DVersion %%QT_INCDIR%%/Qt3DQuickScene2D/qscene2d.h %%QT_INCDIR%%/Qt3DQuickScene2D/qt3dquickscene2d_global.h %%QT_INCDIR%%/Qt3DQuickScene2D/qt3dquickscene2dversion.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/abstractpickingjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/abstractrenderer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/aligned_malloc_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/apitexturemanager_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/armature_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/attachmentpack_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/attribute_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/backendnode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/blitframebuffer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/boundingsphere_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/boundingvolumedebug_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffercapture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffermanager_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/bufferutils_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffervisitor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/calcboundingvolumejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/calcgeometrytrianglevolumes_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/cameralens_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/cameraselectornode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/clearbuffers_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/commandexecuter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/commandthread_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/computecommand_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/computefilteredboundingvolumejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/dispatchcompute_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/effect_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entity_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entityaccumulator_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entityvisitor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/environmentlight_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/expandboundingvolumejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filtercompatibletechniquejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterentitybycomponentjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterkey_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterlayerentityjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterproximitydistancejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framecleanupjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framegraphnode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framegraphvisitor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/frameprofiler_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/frustumculling_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/frustumcullingjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/genericlambdajob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/genericstate_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometry_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometryrenderer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometryrenderermanager_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/glbuffer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/glcommands_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/glfence_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/gltexture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/gltexturemanager_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/gltfskeletonloader_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicscontext_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperes2_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperes3_1_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperes3_2_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperes3_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl2_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl3_2_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl3_3_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelpergl4_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/graphicshelperinterface_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/handle_types_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/job_common_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/joint_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/layer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/layerfilternode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/levelofdetail_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/light_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/lightgatherer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/lightsource_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadbufferjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadgeometryjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadscenejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadskeletonjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadtexturedatajob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/managers_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/material_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/materialparametergathererjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/memorybarrier_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodefunctor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodemanagers_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodraw_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/objectpicker_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/offscreensurfacehelper_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/openglvertexarrayobject_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/parameter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/parameterpack_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickboundingvolumejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickboundingvolumeutils_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickeventfilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/platformsurfacefilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pointsvisitor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/proximityfilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractcollisionqueryservice_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractlight_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractraycaster_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstracttexture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstracttextureimage_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qalphatest_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qattribute_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qaxisalignedboundingbox_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblendequation_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblendequationarguments_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblitframebuffer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qboundingvolume_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qboundingvolumeprovider_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qbuffer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qbuffercapture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcamera_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcameralens_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcameraselector_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qclearbuffers_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qclipplane_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcollisionqueryresult_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcolormask_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcomputecommand_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcullface_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdepthtest_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdirectionallight_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdispatchcompute_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qeffect_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qenvironmentlight_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qfilterkey_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qframegraphnode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qframegraphnodecreatedchange_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qfrontface_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometry_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometryloaderfactory_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometryloaderinterface_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometryrenderer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgraphicsapifilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgraphicsutils_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlayer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlayerfilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlevelofdetail_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlinewidth_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmaterial_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmemorybarrier_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmesh_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qobjectpicker_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpaintedtextureimage_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qparameter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpickevent_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpickingsettings_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpointlight_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpointsize_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpolygonoffset_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qproximityfilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qray3d_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qraycastingservice_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderaspect_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendercapture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpass_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpassfilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderplugin_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpluginfactory_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpluginfactoryif_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendersettings_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstate_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstatecreatedchange_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstateset_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendersurfaceselector_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertarget_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertargetoutput_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertargetselector_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneexporter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneexportfactory_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneexportplugin_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneimporter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneimportfactory_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneimportplugin_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneloader_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qscissortest_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsetfence_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderdata_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderprogram_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderprogrambuilder_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsortpolicy_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qspotlight_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstencilmask_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciloperation_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciloperationarguments_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciltest_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciltestarguments_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qt3drender-config_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qt3drender_global_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtechnique_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtechniquefilter_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtexture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtextureimage_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtextureimagedata_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qurlhelper_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qviewport_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qwaitfence_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/raycaster_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/raycastingjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderbuffer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendercapture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendercommand_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderer_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderercache_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderlogging_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderpass_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderpassfilternode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderqueue_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendersettings_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstatenode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstates_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstateset_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendersurfaceselector_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertarget_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertargetoutput_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertargetselectornode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderthread_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderview_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewbuilder_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewbuilderjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewinitializerjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewjobutils_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/resourceaccessor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/scene_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/scenemanager_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/segmentsvisitor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sendbuffercapturejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sendrendercapturejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/setfence_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shader_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shaderbuilder_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shadercache_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shaderdata_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shaderparameterpack_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shadervariables_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/skeleton_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/skeletondata_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sortpolicy_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sphere_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statemask_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statesetnode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statevariant_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/stringtoint_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/submissioncontext_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/technique_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/techniquefilternode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/techniquemanager_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/texture_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/texturedatamanager_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/textureimage_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/texturesubmissioncontext_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/transform_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/triangleboundingvolume_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/trianglesextractor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/trianglesvisitor_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/uniform_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateentityhierarchyjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateentitylayersjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updatelevelofdetailjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updatemeshtrianglelistjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateshaderdatatransformjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateskinningpalettejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updatetreeenabledjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateworldboundingvolumejob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateworldtransformjob_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/viewportnode_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/visitorutils_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/vsyncframeadvanceservice_p.h %%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/waitfence_p.h %%QT_INCDIR%%/Qt3DRender/FunctorType %%QT_INCDIR%%/Qt3DRender/ParameterList %%QT_INCDIR%%/Qt3DRender/PropertyReaderInterface %%QT_INCDIR%%/Qt3DRender/PropertyReaderInterfacePtr %%QT_INCDIR%%/Qt3DRender/QAbstractFunctor %%QT_INCDIR%%/Qt3DRender/QAbstractLight %%QT_INCDIR%%/Qt3DRender/QAbstractRayCaster %%QT_INCDIR%%/Qt3DRender/QAbstractTexture %%QT_INCDIR%%/Qt3DRender/QAbstractTextureImage %%QT_INCDIR%%/Qt3DRender/QAlphaCoverage %%QT_INCDIR%%/Qt3DRender/QAlphaTest %%QT_INCDIR%%/Qt3DRender/QAttribute %%QT_INCDIR%%/Qt3DRender/QBlendEquation %%QT_INCDIR%%/Qt3DRender/QBlendEquationArguments %%QT_INCDIR%%/Qt3DRender/QBlitFramebuffer %%QT_INCDIR%%/Qt3DRender/QBuffer %%QT_INCDIR%%/Qt3DRender/QBufferCapture %%QT_INCDIR%%/Qt3DRender/QBufferDataGenerator %%QT_INCDIR%%/Qt3DRender/QBufferDataGeneratorPtr %%QT_INCDIR%%/Qt3DRender/QBufferPtr %%QT_INCDIR%%/Qt3DRender/QCamera %%QT_INCDIR%%/Qt3DRender/QCameraLens %%QT_INCDIR%%/Qt3DRender/QCameraSelector %%QT_INCDIR%%/Qt3DRender/QClearBuffers %%QT_INCDIR%%/Qt3DRender/QClipPlane %%QT_INCDIR%%/Qt3DRender/QColorMask %%QT_INCDIR%%/Qt3DRender/QComputeCommand %%QT_INCDIR%%/Qt3DRender/QCullFace %%QT_INCDIR%%/Qt3DRender/QDepthTest %%QT_INCDIR%%/Qt3DRender/QDirectionalLight %%QT_INCDIR%%/Qt3DRender/QDispatchCompute %%QT_INCDIR%%/Qt3DRender/QDithering %%QT_INCDIR%%/Qt3DRender/QEffect %%QT_INCDIR%%/Qt3DRender/QEnvironmentLight %%QT_INCDIR%%/Qt3DRender/QFilterKey %%QT_INCDIR%%/Qt3DRender/QFrameGraphNode %%QT_INCDIR%%/Qt3DRender/QFrameGraphNodeCreatedChange %%QT_INCDIR%%/Qt3DRender/QFrameGraphNodeCreatedChangeBase %%QT_INCDIR%%/Qt3DRender/QFrameGraphNodeCreatedChangeBasePtr %%QT_INCDIR%%/Qt3DRender/QFrontFace %%QT_INCDIR%%/Qt3DRender/QFrustumCulling %%QT_INCDIR%%/Qt3DRender/QGeometry %%QT_INCDIR%%/Qt3DRender/QGeometryFactory %%QT_INCDIR%%/Qt3DRender/QGeometryFactoryPtr %%QT_INCDIR%%/Qt3DRender/QGeometryRenderer %%QT_INCDIR%%/Qt3DRender/QGraphicsApiFilter %%QT_INCDIR%%/Qt3DRender/QLayer %%QT_INCDIR%%/Qt3DRender/QLayerFilter %%QT_INCDIR%%/Qt3DRender/QLevelOfDetail %%QT_INCDIR%%/Qt3DRender/QLevelOfDetailBoundingSphere %%QT_INCDIR%%/Qt3DRender/QLevelOfDetailSwitch %%QT_INCDIR%%/Qt3DRender/QLineWidth %%QT_INCDIR%%/Qt3DRender/QMaterial %%QT_INCDIR%%/Qt3DRender/QMemoryBarrier %%QT_INCDIR%%/Qt3DRender/QMesh %%QT_INCDIR%%/Qt3DRender/QMultiSampleAntiAliasing %%QT_INCDIR%%/Qt3DRender/QNoDepthMask %%QT_INCDIR%%/Qt3DRender/QNoDraw %%QT_INCDIR%%/Qt3DRender/QObjectPicker %%QT_INCDIR%%/Qt3DRender/QPaintedTextureImage %%QT_INCDIR%%/Qt3DRender/QParameter %%QT_INCDIR%%/Qt3DRender/QPickEvent %%QT_INCDIR%%/Qt3DRender/QPickEventPtr %%QT_INCDIR%%/Qt3DRender/QPickLineEvent %%QT_INCDIR%%/Qt3DRender/QPickLineEventPtr %%QT_INCDIR%%/Qt3DRender/QPickPointEvent %%QT_INCDIR%%/Qt3DRender/QPickPointEventPtr %%QT_INCDIR%%/Qt3DRender/QPickTriangleEvent %%QT_INCDIR%%/Qt3DRender/QPickTriangleEventPtr %%QT_INCDIR%%/Qt3DRender/QPickingSettings %%QT_INCDIR%%/Qt3DRender/QPointLight %%QT_INCDIR%%/Qt3DRender/QPointSize %%QT_INCDIR%%/Qt3DRender/QPolygonOffset %%QT_INCDIR%%/Qt3DRender/QProximityFilter %%QT_INCDIR%%/Qt3DRender/QRayCaster %%QT_INCDIR%%/Qt3DRender/QRayCasterHit %%QT_INCDIR%%/Qt3DRender/QRenderAspect %%QT_INCDIR%%/Qt3DRender/QRenderCapture %%QT_INCDIR%%/Qt3DRender/QRenderCaptureReply %%QT_INCDIR%%/Qt3DRender/QRenderPass %%QT_INCDIR%%/Qt3DRender/QRenderPassFilter %%QT_INCDIR%%/Qt3DRender/QRenderSettings %%QT_INCDIR%%/Qt3DRender/QRenderState %%QT_INCDIR%%/Qt3DRender/QRenderStateSet %%QT_INCDIR%%/Qt3DRender/QRenderSurfaceSelector %%QT_INCDIR%%/Qt3DRender/QRenderTarget %%QT_INCDIR%%/Qt3DRender/QRenderTargetOutput %%QT_INCDIR%%/Qt3DRender/QRenderTargetSelector %%QT_INCDIR%%/Qt3DRender/QSceneLoader %%QT_INCDIR%%/Qt3DRender/QScissorTest %%QT_INCDIR%%/Qt3DRender/QScreenRayCaster %%QT_INCDIR%%/Qt3DRender/QSeamlessCubemap %%QT_INCDIR%%/Qt3DRender/QSetFence %%QT_INCDIR%%/Qt3DRender/QShaderData %%QT_INCDIR%%/Qt3DRender/QShaderProgram %%QT_INCDIR%%/Qt3DRender/QShaderProgramBuilder %%QT_INCDIR%%/Qt3DRender/QSortPolicy %%QT_INCDIR%%/Qt3DRender/QSpotLight %%QT_INCDIR%%/Qt3DRender/QStencilMask %%QT_INCDIR%%/Qt3DRender/QStencilOperation %%QT_INCDIR%%/Qt3DRender/QStencilOperationArguments %%QT_INCDIR%%/Qt3DRender/QStencilTest %%QT_INCDIR%%/Qt3DRender/QStencilTestArguments %%QT_INCDIR%%/Qt3DRender/QTechnique %%QT_INCDIR%%/Qt3DRender/QTechniqueFilter %%QT_INCDIR%%/Qt3DRender/QTexture %%QT_INCDIR%%/Qt3DRender/QTextureData %%QT_INCDIR%%/Qt3DRender/QTextureDataPtr %%QT_INCDIR%%/Qt3DRender/QTextureGenerator %%QT_INCDIR%%/Qt3DRender/QTextureGeneratorPtr %%QT_INCDIR%%/Qt3DRender/QTextureImage %%QT_INCDIR%%/Qt3DRender/QTextureImageData %%QT_INCDIR%%/Qt3DRender/QTextureImageDataGenerator %%QT_INCDIR%%/Qt3DRender/QTextureImageDataGeneratorPtr %%QT_INCDIR%%/Qt3DRender/QTextureImageDataPtr %%QT_INCDIR%%/Qt3DRender/QTextureWrapMode %%QT_INCDIR%%/Qt3DRender/QViewport %%QT_INCDIR%%/Qt3DRender/QWaitFence %%QT_INCDIR%%/Qt3DRender/Qt3DRender %%QT_INCDIR%%/Qt3DRender/Qt3DRenderDepends %%QT_INCDIR%%/Qt3DRender/Qt3DRenderVersion %%QT_INCDIR%%/Qt3DRender/qabstractfunctor.h %%QT_INCDIR%%/Qt3DRender/qabstractlight.h %%QT_INCDIR%%/Qt3DRender/qabstractraycaster.h %%QT_INCDIR%%/Qt3DRender/qabstracttexture.h %%QT_INCDIR%%/Qt3DRender/qabstracttextureimage.h %%QT_INCDIR%%/Qt3DRender/qalphacoverage.h %%QT_INCDIR%%/Qt3DRender/qalphatest.h %%QT_INCDIR%%/Qt3DRender/qattribute.h %%QT_INCDIR%%/Qt3DRender/qblendequation.h %%QT_INCDIR%%/Qt3DRender/qblendequationarguments.h %%QT_INCDIR%%/Qt3DRender/qblitframebuffer.h %%QT_INCDIR%%/Qt3DRender/qbuffer.h %%QT_INCDIR%%/Qt3DRender/qbuffercapture.h %%QT_INCDIR%%/Qt3DRender/qbufferdatagenerator.h %%QT_INCDIR%%/Qt3DRender/qcamera.h %%QT_INCDIR%%/Qt3DRender/qcameralens.h %%QT_INCDIR%%/Qt3DRender/qcameraselector.h %%QT_INCDIR%%/Qt3DRender/qclearbuffers.h %%QT_INCDIR%%/Qt3DRender/qclipplane.h %%QT_INCDIR%%/Qt3DRender/qcolormask.h %%QT_INCDIR%%/Qt3DRender/qcomputecommand.h %%QT_INCDIR%%/Qt3DRender/qcullface.h %%QT_INCDIR%%/Qt3DRender/qdepthtest.h %%QT_INCDIR%%/Qt3DRender/qdirectionallight.h %%QT_INCDIR%%/Qt3DRender/qdispatchcompute.h %%QT_INCDIR%%/Qt3DRender/qdithering.h %%QT_INCDIR%%/Qt3DRender/qeffect.h %%QT_INCDIR%%/Qt3DRender/qenvironmentlight.h %%QT_INCDIR%%/Qt3DRender/qfilterkey.h %%QT_INCDIR%%/Qt3DRender/qframegraphnode.h %%QT_INCDIR%%/Qt3DRender/qframegraphnodecreatedchange.h %%QT_INCDIR%%/Qt3DRender/qfrontface.h %%QT_INCDIR%%/Qt3DRender/qfrustumculling.h %%QT_INCDIR%%/Qt3DRender/qgeometry.h %%QT_INCDIR%%/Qt3DRender/qgeometryfactory.h %%QT_INCDIR%%/Qt3DRender/qgeometryrenderer.h %%QT_INCDIR%%/Qt3DRender/qgraphicsapifilter.h %%QT_INCDIR%%/Qt3DRender/qlayer.h %%QT_INCDIR%%/Qt3DRender/qlayerfilter.h %%QT_INCDIR%%/Qt3DRender/qlevelofdetail.h %%QT_INCDIR%%/Qt3DRender/qlevelofdetailboundingsphere.h %%QT_INCDIR%%/Qt3DRender/qlevelofdetailswitch.h %%QT_INCDIR%%/Qt3DRender/qlinewidth.h %%QT_INCDIR%%/Qt3DRender/qmaterial.h %%QT_INCDIR%%/Qt3DRender/qmemorybarrier.h %%QT_INCDIR%%/Qt3DRender/qmesh.h %%QT_INCDIR%%/Qt3DRender/qmultisampleantialiasing.h %%QT_INCDIR%%/Qt3DRender/qnodepthmask.h %%QT_INCDIR%%/Qt3DRender/qnodraw.h %%QT_INCDIR%%/Qt3DRender/qobjectpicker.h %%QT_INCDIR%%/Qt3DRender/qpaintedtextureimage.h %%QT_INCDIR%%/Qt3DRender/qparameter.h %%QT_INCDIR%%/Qt3DRender/qpickevent.h %%QT_INCDIR%%/Qt3DRender/qpickingsettings.h %%QT_INCDIR%%/Qt3DRender/qpicklineevent.h %%QT_INCDIR%%/Qt3DRender/qpickpointevent.h %%QT_INCDIR%%/Qt3DRender/qpicktriangleevent.h %%QT_INCDIR%%/Qt3DRender/qpointlight.h %%QT_INCDIR%%/Qt3DRender/qpointsize.h %%QT_INCDIR%%/Qt3DRender/qpolygonoffset.h %%QT_INCDIR%%/Qt3DRender/qproximityfilter.h %%QT_INCDIR%%/Qt3DRender/qraycaster.h %%QT_INCDIR%%/Qt3DRender/qraycasterhit.h %%QT_INCDIR%%/Qt3DRender/qrenderaspect.h %%QT_INCDIR%%/Qt3DRender/qrendercapture.h %%QT_INCDIR%%/Qt3DRender/qrenderpass.h %%QT_INCDIR%%/Qt3DRender/qrenderpassfilter.h %%QT_INCDIR%%/Qt3DRender/qrendersettings.h %%QT_INCDIR%%/Qt3DRender/qrenderstate.h %%QT_INCDIR%%/Qt3DRender/qrenderstateset.h %%QT_INCDIR%%/Qt3DRender/qrendersurfaceselector.h %%QT_INCDIR%%/Qt3DRender/qrendertarget.h %%QT_INCDIR%%/Qt3DRender/qrendertargetoutput.h %%QT_INCDIR%%/Qt3DRender/qrendertargetselector.h %%QT_INCDIR%%/Qt3DRender/qsceneloader.h %%QT_INCDIR%%/Qt3DRender/qscissortest.h %%QT_INCDIR%%/Qt3DRender/qscreenraycaster.h %%QT_INCDIR%%/Qt3DRender/qseamlesscubemap.h %%QT_INCDIR%%/Qt3DRender/qsetfence.h %%QT_INCDIR%%/Qt3DRender/qshaderdata.h %%QT_INCDIR%%/Qt3DRender/qshaderprogram.h %%QT_INCDIR%%/Qt3DRender/qshaderprogrambuilder.h %%QT_INCDIR%%/Qt3DRender/qsortpolicy.h %%QT_INCDIR%%/Qt3DRender/qspotlight.h %%QT_INCDIR%%/Qt3DRender/qstencilmask.h %%QT_INCDIR%%/Qt3DRender/qstenciloperation.h %%QT_INCDIR%%/Qt3DRender/qstenciloperationarguments.h %%QT_INCDIR%%/Qt3DRender/qstenciltest.h %%QT_INCDIR%%/Qt3DRender/qstenciltestarguments.h %%QT_INCDIR%%/Qt3DRender/qt3drender-config.h %%QT_INCDIR%%/Qt3DRender/qt3drender_global.h %%QT_INCDIR%%/Qt3DRender/qt3drenderversion.h %%QT_INCDIR%%/Qt3DRender/qtechnique.h %%QT_INCDIR%%/Qt3DRender/qtechniquefilter.h %%QT_INCDIR%%/Qt3DRender/qtexture.h %%QT_INCDIR%%/Qt3DRender/qtexturedata.h %%QT_INCDIR%%/Qt3DRender/qtexturegenerator.h %%QT_INCDIR%%/Qt3DRender/qtextureimage.h %%QT_INCDIR%%/Qt3DRender/qtextureimagedata.h %%QT_INCDIR%%/Qt3DRender/qtextureimagedatagenerator.h %%QT_INCDIR%%/Qt3DRender/qtexturewrapmode.h %%QT_INCDIR%%/Qt3DRender/qviewport.h %%QT_INCDIR%%/Qt3DRender/qwaitfence.h %%QT_CMAKEDIR%%/Qt53DAnimation/Qt53DAnimationConfig.cmake %%QT_CMAKEDIR%%/Qt53DAnimation/Qt53DAnimationConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DCore/Qt53DCoreConfig.cmake %%QT_CMAKEDIR%%/Qt53DCore/Qt53DCoreConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DExtras/Qt53DExtrasConfig.cmake %%QT_CMAKEDIR%%/Qt53DExtras/Qt53DExtrasConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DInput/Qt53DInputConfig.cmake %%QT_CMAKEDIR%%/Qt53DInput/Qt53DInputConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DLogic/Qt53DLogicConfig.cmake %%QT_CMAKEDIR%%/Qt53DLogic/Qt53DLogicConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DQuick/Qt53DQuickConfig.cmake %%QT_CMAKEDIR%%/Qt53DQuick/Qt53DQuickConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DQuickAnimation/Qt53DQuickAnimationConfig.cmake %%QT_CMAKEDIR%%/Qt53DQuickAnimation/Qt53DQuickAnimationConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DQuickExtras/Qt53DQuickExtrasConfig.cmake %%QT_CMAKEDIR%%/Qt53DQuickExtras/Qt53DQuickExtrasConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DQuickInput/Qt53DQuickInputConfig.cmake %%QT_CMAKEDIR%%/Qt53DQuickInput/Qt53DQuickInputConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DQuickRender/Qt53DQuickRenderConfig.cmake %%QT_CMAKEDIR%%/Qt53DQuickRender/Qt53DQuickRenderConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DQuickScene2D/Qt53DQuickScene2DConfig.cmake %%QT_CMAKEDIR%%/Qt53DQuickScene2D/Qt53DQuickScene2DConfigVersion.cmake %%QT_CMAKEDIR%%/Qt53DRender/Qt53DRenderConfig.cmake %%QT_CMAKEDIR%%/Qt53DRender/Qt53DRenderConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_AssimpSceneImportPlugin.cmake %%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_DefaultGeometryLoaderPlugin.cmake %%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_GLTFGeometryLoaderPlugin.cmake %%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_GLTFSceneExportPlugin.cmake %%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_GLTFSceneImportPlugin.cmake %%QT_CMAKEDIR%%/Qt53DRender/Qt53DRender_Scene2DPlugin.cmake %%QT_BINDIR%%/qgltf %%QT_LIBDIR%%/libQt53DAnimation.prl %%QT_LIBDIR%%/libQt53DAnimation.so %%QT_LIBDIR%%/libQt53DAnimation.so.5 %%QT_LIBDIR%%/libQt53DAnimation.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DAnimation.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DAnimation.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DCore.prl %%QT_LIBDIR%%/libQt53DCore.so %%QT_LIBDIR%%/libQt53DCore.so.5 %%QT_LIBDIR%%/libQt53DCore.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DCore.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DCore.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DExtras.prl %%QT_LIBDIR%%/libQt53DExtras.so %%QT_LIBDIR%%/libQt53DExtras.so.5 %%QT_LIBDIR%%/libQt53DExtras.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DExtras.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DExtras.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DInput.prl %%QT_LIBDIR%%/libQt53DInput.so %%QT_LIBDIR%%/libQt53DInput.so.5 %%QT_LIBDIR%%/libQt53DInput.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DInput.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DInput.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DLogic.prl %%QT_LIBDIR%%/libQt53DLogic.so %%QT_LIBDIR%%/libQt53DLogic.so.5 %%QT_LIBDIR%%/libQt53DLogic.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DLogic.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DLogic.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DQuick.prl %%QT_LIBDIR%%/libQt53DQuick.so %%QT_LIBDIR%%/libQt53DQuick.so.5 %%QT_LIBDIR%%/libQt53DQuick.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DQuick.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DQuick.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DQuickAnimation.prl %%QT_LIBDIR%%/libQt53DQuickAnimation.so %%QT_LIBDIR%%/libQt53DQuickAnimation.so.5 %%QT_LIBDIR%%/libQt53DQuickAnimation.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DQuickAnimation.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickAnimation.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DQuickExtras.prl %%QT_LIBDIR%%/libQt53DQuickExtras.so %%QT_LIBDIR%%/libQt53DQuickExtras.so.5 %%QT_LIBDIR%%/libQt53DQuickExtras.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DQuickExtras.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickExtras.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DQuickInput.prl %%QT_LIBDIR%%/libQt53DQuickInput.so %%QT_LIBDIR%%/libQt53DQuickInput.so.5 %%QT_LIBDIR%%/libQt53DQuickInput.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DQuickInput.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickInput.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DQuickRender.prl %%QT_LIBDIR%%/libQt53DQuickRender.so %%QT_LIBDIR%%/libQt53DQuickRender.so.5 %%QT_LIBDIR%%/libQt53DQuickRender.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DQuickRender.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickRender.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DQuickScene2D.prl %%QT_LIBDIR%%/libQt53DQuickScene2D.so %%QT_LIBDIR%%/libQt53DQuickScene2D.so.5 %%QT_LIBDIR%%/libQt53DQuickScene2D.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DQuickScene2D.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DQuickScene2D.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt53DRender.prl %%QT_LIBDIR%%/libQt53DRender.so %%QT_LIBDIR%%/libQt53DRender.so.5 %%QT_LIBDIR%%/libQt53DRender.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt53DRender.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt53DRender.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_3danimation.pri %%QT_MKSPECDIR%%/modules/qt_lib_3danimation_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dcore.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dcore_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dextras.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dextras_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dinput.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dinput_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dlogic.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dlogic_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquick.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquick_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickanimation.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickanimation_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickextras.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickextras_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickinput.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickinput_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickrender.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickrender_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickscene2d.pri %%QT_MKSPECDIR%%/modules/qt_lib_3dquickscene2d_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_3drender.pri %%QT_MKSPECDIR%%/modules/qt_lib_3drender_private.pri %%QT_PLUGINDIR%%/geometryloaders/libdefaultgeometryloader.so %%DEBUG%%%%QT_PLUGINDIR%%/geometryloaders/libdefaultgeometryloader.so.debug %%QT_PLUGINDIR%%/geometryloaders/libgltfgeometryloader.so %%DEBUG%%%%QT_PLUGINDIR%%/geometryloaders/libgltfgeometryloader.so.debug %%QT_PLUGINDIR%%/renderplugins/libscene2d.so %%DEBUG%%%%QT_PLUGINDIR%%/renderplugins/libscene2d.so.debug +%%QT_PLUGINDIR%%/sceneparsers/libassimpsceneimport.so +%%DEBUG%%%%QT_PLUGINDIR%%/sceneparsers/libassimpsceneimport.so.debug %%QT_PLUGINDIR%%/sceneparsers/libgltfsceneexport.so %%DEBUG%%%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneexport.so.debug %%QT_PLUGINDIR%%/sceneparsers/libgltfsceneimport.so %%DEBUG%%%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneimport.so.debug %%QT_QMLDIR%%/Qt3D/Animation/libquick3danimationplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt3D/Animation/libquick3danimationplugin.so.debug %%QT_QMLDIR%%/Qt3D/Animation/plugins.qmltypes %%QT_QMLDIR%%/Qt3D/Animation/qmldir %%QT_QMLDIR%%/Qt3D/Core/libquick3dcoreplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt3D/Core/libquick3dcoreplugin.so.debug %%QT_QMLDIR%%/Qt3D/Core/plugins.qmltypes %%QT_QMLDIR%%/Qt3D/Core/qmldir %%QT_QMLDIR%%/Qt3D/Extras/libquick3dextrasplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt3D/Extras/libquick3dextrasplugin.so.debug %%QT_QMLDIR%%/Qt3D/Extras/plugins.qmltypes %%QT_QMLDIR%%/Qt3D/Extras/qmldir %%QT_QMLDIR%%/Qt3D/Input/libquick3dinputplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt3D/Input/libquick3dinputplugin.so.debug %%QT_QMLDIR%%/Qt3D/Input/plugins.qmltypes %%QT_QMLDIR%%/Qt3D/Input/qmldir %%QT_QMLDIR%%/Qt3D/Logic/libquick3dlogicplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt3D/Logic/libquick3dlogicplugin.so.debug %%QT_QMLDIR%%/Qt3D/Logic/plugins.qmltypes %%QT_QMLDIR%%/Qt3D/Logic/qmldir %%QT_QMLDIR%%/Qt3D/Render/libquick3drenderplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt3D/Render/libquick3drenderplugin.so.debug %%QT_QMLDIR%%/Qt3D/Render/plugins.qmltypes %%QT_QMLDIR%%/Qt3D/Render/qmldir %%QT_QMLDIR%%/QtQuick/Scene2D/libqtquickscene2dplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Scene2D/libqtquickscene2dplugin.so.debug %%QT_QMLDIR%%/QtQuick/Scene2D/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Scene2D/qmldir %%QT_QMLDIR%%/QtQuick/Scene3D/libqtquickscene3dplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Scene3D/libqtquickscene3dplugin.so.debug %%QT_QMLDIR%%/QtQuick/Scene3D/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Scene3D/qmldir libdata/pkgconfig/Qt53DAnimation.pc libdata/pkgconfig/Qt53DCore.pc libdata/pkgconfig/Qt53DExtras.pc libdata/pkgconfig/Qt53DInput.pc libdata/pkgconfig/Qt53DLogic.pc libdata/pkgconfig/Qt53DQuick.pc libdata/pkgconfig/Qt53DQuickAnimation.pc libdata/pkgconfig/Qt53DQuickExtras.pc libdata/pkgconfig/Qt53DQuickInput.pc libdata/pkgconfig/Qt53DQuickRender.pc libdata/pkgconfig/Qt53DQuickScene2D.pc libdata/pkgconfig/Qt53DRender.pc Index: head/graphics/qt5-graphicaleffects/Makefile =================================================================== --- head/graphics/qt5-graphicaleffects/Makefile (revision 517079) +++ head/graphics/qt5-graphicaleffects/Makefile (revision 517080) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= graphicaleffects DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt Quick graphical effects BROKEN_armv6= fails to install: pkg-static: Unable to access file DropShadowBase.qmlc: No such file or directory USES= compiler:c++11-lang qmake qt-dist:5,graphicaleffects USE_QT= buildtools_build core declarative gui .include Index: head/graphics/qt5-imageformats/Makefile =================================================================== --- head/graphics/qt5-imageformats/Makefile (revision 517079) +++ head/graphics/qt5-imageformats/Makefile (revision 517080) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= imageformats DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt plugins for additional image formats LIB_DEPENDS= libjasper.so:graphics/jasper \ libmng.so:graphics/libmng \ libtiff.so:graphics/tiff \ libwebp.so:graphics/webp USES= compiler:c++11-lang localbase qmake qt-dist:5,imageformats USE_QT= core gui buildtools_build .include Index: head/graphics/qt5-opengl/Makefile =================================================================== --- head/graphics/qt5-opengl/Makefile (revision 517079) +++ head/graphics/qt5-opengl/Makefile (revision 517080) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= opengl DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5-compatible OpenGL support module USES= compiler:c++11-lang gl qmake:no_env qt-dist:5,base USE_GL= gl USE_QT= core gui widgets qmake_build buildtools_build HAS_CONFIGURE= yes USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} QT_DEFINES= OPENGL QT_CONFIG= opengl post-configure: .for d in src/opengl ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor .include Index: head/graphics/qt5-pixeltool/Makefile =================================================================== --- head/graphics/qt5-pixeltool/Makefile (revision 517079) +++ head/graphics/qt5-pixeltool/Makefile (revision 517080) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= pixeltool DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 screen magnifier USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui widgets buildtools_build # qt5logo.png is installed by qt5-widgets. DESKTOP_ENTRIES="Qt 5 PixelTool" "" \ "${PREFIX}/share/pixmaps/qt5logo.png" \ "${PREFIX}/${QT_BINDIR_REL}/pixeltool" \ "Graphics;Qt;" true BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} .include Index: head/graphics/qt5-svg/Makefile =================================================================== --- head/graphics/qt5-svg/Makefile (revision 517079) +++ head/graphics/qt5-svg/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= svg DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt SVG support module USES= compiler:c++11-lang qmake qt-dist:5,svg USE_QT= core gui widgets buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/graphics/qt5-wayland/Makefile =================================================================== --- head/graphics/qt5-wayland/Makefile (revision 517079) +++ head/graphics/qt5-wayland/Makefile (revision 517080) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= wayland DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt5 wrapper for Wayland LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libwayland-egl.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon USES= compiler:c++11-lang gl gnome pkgconfig qmake:norecursive \ qt-dist:5,wayland xorg USE_GL= egl gl USE_GNOME= glib20 USE_QT= core dbus gui declarative \ buildtools_build qmake_build USE_XORG= x11 xcomposite USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/graphics/qt5-wayland/pkg-plist =================================================================== --- head/graphics/qt5-wayland/pkg-plist (revision 517079) +++ head/graphics/qt5-wayland/pkg-plist (revision 517080) @@ -1,357 +1,358 @@ %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qtwaylandclient-config_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qtwaylandclientglobal_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-hardware-integration.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-qt-key-unstable-v1.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-qt-windowmanager.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-server-buffer-extension.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-surface-extension.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-text-input-unstable-v2.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-touch-extension.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-wayland.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-xdg-output-unstable-v1.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandabstractdecoration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandbuffer_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegrationfactory_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegrationplugin_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientextension_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclipboard_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandcursor_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatadevice_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatadevicemanager_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddataoffer_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatasource_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddecorationfactory_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddecorationplugin_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddisplay_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddnd_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandextendedsurface_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandhardwareintegration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputcontext_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdevice_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegrationfactory_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegrationplugin_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandintegration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandnativeinterface_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandqtkey_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandscreen_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegrationfactory_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegrationplugin_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegrationfactory_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegrationplugin_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellsurface_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshm_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshmbackingstore_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshmwindow_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandsubsurface_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtouch_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandwindow_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandwindowmanagerintegration_p.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-hardware-integration-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-qt-key-unstable-v1-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-qt-windowmanager-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-server-buffer-extension-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-surface-extension-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-text-input-unstable-v2-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-touch-extension-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-wayland-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-xdg-output-unstable-v1-client-protocol.h %%QT_INCDIR%%/QtWaylandClient/QWaylandClientExtension %%QT_INCDIR%%/QtWaylandClient/QWaylandClientExtensionTemplate %%QT_INCDIR%%/QtWaylandClient/QtWaylandClient %%QT_INCDIR%%/QtWaylandClient/QtWaylandClientDepends %%QT_INCDIR%%/QtWaylandClient/QtWaylandClientVersion %%QT_INCDIR%%/QtWaylandClient/qtwaylandclient-config.h %%QT_INCDIR%%/QtWaylandClient/qtwaylandclientglobal.h %%QT_INCDIR%%/QtWaylandClient/qtwaylandclientversion.h %%QT_INCDIR%%/QtWaylandClient/qwaylandclientexport.h %%QT_INCDIR%%/QtWaylandClient/qwaylandclientextension.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qtwaylandcompositor-config_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qtwaylandcompositorglobal_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-hardware-integration.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-ivi-application.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-qt-key-unstable-v1.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-qt-windowmanager.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-scaler.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-server-buffer-extension.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-text-input-unstable-v2.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-touch-extension.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-viewporter.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-wayland.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-xdg-decoration-unstable-v1.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-xdg-shell-unstable-v5_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-xdg-shell-unstable-v6.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-xdg-shell.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandcompositor_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandcompositorextension_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylanddestroylistener_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandinputmethodcontrol_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandiviapplication_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandivisurface_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandivisurfaceintegration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandkeyboard_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandkeymap_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandoutput_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandoutputmode_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandpointer_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandqtwindowmanager_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandquickhardwarelayer_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandquickitem_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandquickshellsurfaceitem_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandseat_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandshell_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandsurface_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtextinput_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtextinputmanager_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtouch_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandutils_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandview_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandviewporter_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandwlscaler_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandwlshell_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandwlshellintegration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgdecorationv1_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshell_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshellintegration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshellv5_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshellv5integration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshellv6_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshellv6integration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlbuffermanager_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbuffer_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbufferintegration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbufferintegrationfactory_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbufferintegrationplugin_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldatadevice_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldatadevicemanager_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldataoffer_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldatasource_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhardwarelayerintegration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhardwarelayerintegrationfactory_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhardwarelayerintegrationplugin_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhwintegration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlqtkey_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlqttouch_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlregion_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlserverbufferintegration_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlserverbufferintegrationfactory_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlserverbufferintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwltexturesharingextension_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-hardware-integration-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-ivi-application-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-qt-key-unstable-v1-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-qt-windowmanager-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-scaler-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-server-buffer-extension-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-text-input-unstable-v2-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-touch-extension-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-viewporter-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-wayland-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-xdg-decoration-unstable-v1-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-xdg-shell-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-xdg-shell-unstable-v5-server-protocol_p.h %%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-xdg-shell-unstable-v6-server-protocol.h %%QT_INCDIR%%/QtWaylandCompositor/QWaylandBufferRef %%QT_INCDIR%%/QtWaylandCompositor/QWaylandClient %%QT_INCDIR%%/QtWaylandCompositor/QWaylandCompositor %%QT_INCDIR%%/QtWaylandCompositor/QWaylandCompositorExtension %%QT_INCDIR%%/QtWaylandCompositor/QWaylandCompositorExtensionTemplate %%QT_INCDIR%%/QtWaylandCompositor/QWaylandDestroyListener %%QT_INCDIR%%/QtWaylandCompositor/QWaylandDrag %%QT_INCDIR%%/QtWaylandCompositor/QWaylandInputMethodControl %%QT_INCDIR%%/QtWaylandCompositor/QWaylandIviApplication %%QT_INCDIR%%/QtWaylandCompositor/QWaylandIviSurface %%QT_INCDIR%%/QtWaylandCompositor/QWaylandKeyboard %%QT_INCDIR%%/QtWaylandCompositor/QWaylandKeymap %%QT_INCDIR%%/QtWaylandCompositor/QWaylandObject %%QT_INCDIR%%/QtWaylandCompositor/QWaylandOutput %%QT_INCDIR%%/QtWaylandCompositor/QWaylandOutputMode %%QT_INCDIR%%/QtWaylandCompositor/QWaylandPointer %%QT_INCDIR%%/QtWaylandCompositor/QWaylandQtWindowManager %%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickCompositor %%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickExtension %%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickItem %%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickOutput %%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickShellSurfaceItem %%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickSurface %%QT_INCDIR%%/QtWaylandCompositor/QWaylandResource %%QT_INCDIR%%/QtWaylandCompositor/QWaylandSeat %%QT_INCDIR%%/QtWaylandCompositor/QWaylandShell %%QT_INCDIR%%/QtWaylandCompositor/QWaylandShellSurface %%QT_INCDIR%%/QtWaylandCompositor/QWaylandShellSurfaceTemplate %%QT_INCDIR%%/QtWaylandCompositor/QWaylandShellTemplate %%QT_INCDIR%%/QtWaylandCompositor/QWaylandSurface %%QT_INCDIR%%/QtWaylandCompositor/QWaylandSurfaceGrabber %%QT_INCDIR%%/QtWaylandCompositor/QWaylandSurfaceRole %%QT_INCDIR%%/QtWaylandCompositor/QWaylandTextInput %%QT_INCDIR%%/QtWaylandCompositor/QWaylandTextInputManager %%QT_INCDIR%%/QtWaylandCompositor/QWaylandTouch %%QT_INCDIR%%/QtWaylandCompositor/QWaylandView %%QT_INCDIR%%/QtWaylandCompositor/QWaylandViewporter %%QT_INCDIR%%/QtWaylandCompositor/QWaylandWlScaler %%QT_INCDIR%%/QtWaylandCompositor/QWaylandWlShell %%QT_INCDIR%%/QtWaylandCompositor/QWaylandWlShellSurface %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgDecorationManagerV1 %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgPopup %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgPopupV5 %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgPopupV6 %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgShell %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgShellV5 %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgShellV6 %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgSurface %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgSurfaceV5 %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgSurfaceV6 %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgToplevel %%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgToplevelV6 %%QT_INCDIR%%/QtWaylandCompositor/QtWaylandCompositor %%QT_INCDIR%%/QtWaylandCompositor/QtWaylandCompositorDepends %%QT_INCDIR%%/QtWaylandCompositor/QtWaylandCompositorVersion %%QT_INCDIR%%/QtWaylandCompositor/qtwaylandcompositor-config.h %%QT_INCDIR%%/QtWaylandCompositor/qtwaylandcompositorglobal.h %%QT_INCDIR%%/QtWaylandCompositor/qtwaylandcompositorversion.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandbufferref.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandclient.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandcompositor.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandcompositorextension.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylanddestroylistener.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylanddrag.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandexport.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandinputmethodcontrol.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandiviapplication.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandivisurface.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandkeyboard.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandkeymap.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandoutput.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandoutputmode.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandpointer.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandqtwindowmanager.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickchildren.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickcompositor.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickextension.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickitem.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickoutput.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickshellsurfaceitem.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandquicksurface.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandresource.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandseat.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandshell.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandshellsurface.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandsurface.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandsurfacegrabber.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandtextinput.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandtextinputmanager.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandtouch.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandview.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandviewporter.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandwlscaler.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandwlshell.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandxdgdecorationv1.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandxdgshell.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandxdgshellv5.h %%QT_INCDIR%%/QtWaylandCompositor/qwaylandxdgshellv6.h %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QWaylandEglPlatformIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QWaylandIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QWaylandXCompositeEglPlatformIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QWaylandXCompositeGlxPlatformIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClientConfig.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClientConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_DmaBufServerBufferPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_DrmEglServerBufferPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandBradientDecorationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandEglClientBufferPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandFullScreenShellV1IntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandIviShellIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandWlShellIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandXCompositeEglClientBufferPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandXCompositeGlxClientBufferPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandXdgShellIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandXdgShellV5IntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_QWaylandXdgShellV6IntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandClient/Qt5WaylandClient_ShmServerBufferPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositorConfig.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositorConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_DmaBufServerBufferIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_DrmEglServerBufferIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_QWaylandDmabufClientBufferIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_QWaylandEglClientBufferIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_QWaylandEglStreamBufferIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_QWaylandXCompositeEglClientBufferIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_QWaylandXCompositeGlxClientBufferIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5WaylandCompositor/Qt5WaylandCompositor_ShmServerBufferIntegrationPlugin.cmake %%QT_BINDIR%%/qtwaylandscanner %%QT_LIBDIR%%/libQt5WaylandClient.prl %%QT_LIBDIR%%/libQt5WaylandClient.so %%QT_LIBDIR%%/libQt5WaylandClient.so.5 %%QT_LIBDIR%%/libQt5WaylandClient.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5WaylandClient.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5WaylandClient.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5WaylandCompositor.prl %%QT_LIBDIR%%/libQt5WaylandCompositor.so %%QT_LIBDIR%%/libQt5WaylandCompositor.so.5 %%QT_LIBDIR%%/libQt5WaylandCompositor.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5WaylandCompositor.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5WaylandCompositor.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_waylandclient.pri %%QT_MKSPECDIR%%/modules/qt_lib_waylandclient_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_waylandcompositor.pri %%QT_MKSPECDIR%%/modules/qt_lib_waylandcompositor_private.pri %%QT_PLUGINDIR%%/platforms/libqwayland-egl.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqwayland-egl.so.debug %%QT_PLUGINDIR%%/platforms/libqwayland-generic.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqwayland-generic.so.debug %%QT_PLUGINDIR%%/platforms/libqwayland-xcomposite-egl.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqwayland-xcomposite-egl.so.debug %%QT_PLUGINDIR%%/platforms/libqwayland-xcomposite-glx.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqwayland-xcomposite-glx.so.debug %%QT_PLUGINDIR%%/wayland-decoration-client/libbradient.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-decoration-client/libbradient.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-client/libdmabuf-server.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libdmabuf-server.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-client/libdrm-egl-server.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libdrm-egl-server.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-client/libqt-plugin-wayland-egl.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libqt-plugin-wayland-egl.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-client/libshm-emulation-server.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libshm-emulation-server.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-client/libxcomposite-egl.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libxcomposite-egl.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-client/libxcomposite-glx.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libxcomposite-glx.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/libdmabuf-server.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libdmabuf-server.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/libdrm-egl-server.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libdrm-egl-server.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/liblinux-dmabuf-unstable-v1.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/liblinux-dmabuf-unstable-v1.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/libqt-plugin-wayland-egl.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libqt-plugin-wayland-egl.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/libshm-emulation-server.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libshm-emulation-server.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/libwayland-eglstream-controller.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libwayland-eglstream-controller.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/libxcomposite-egl.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libxcomposite-egl.so.debug %%QT_PLUGINDIR%%/wayland-graphics-integration-server/libxcomposite-glx.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libxcomposite-glx.so.debug %%QT_PLUGINDIR%%/wayland-shell-integration/libfullscreen-shell-v1.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-shell-integration/libfullscreen-shell-v1.so.debug %%QT_PLUGINDIR%%/wayland-shell-integration/libivi-shell.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-shell-integration/libivi-shell.so.debug %%QT_PLUGINDIR%%/wayland-shell-integration/libwl-shell.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-shell-integration/libwl-shell.so.debug %%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell-v5.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell-v5.so.debug %%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell-v6.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell-v6.so.debug %%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell.so %%DEBUG%%%%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell.so.debug %%DEBUG%%%%QT_QMLDIR%%/QtWayland/Compositor/WaylandCursorItem.qml %%DEBUG%%%%QT_QMLDIR%%/QtWayland/Compositor/WaylandOutputWindow.qml %%QT_QMLDIR%%/QtWayland/Compositor/libqwaylandcompositorplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtWayland/Compositor/libqwaylandcompositorplugin.so.debug %%DEBUG%%%%QT_QMLDIR%%/QtWayland/Compositor/plugins.qmltypes %%DEBUG%%%%QT_QMLDIR%%/QtWayland/Compositor/qmldir libdata/pkgconfig/Qt5WaylandClient.pc libdata/pkgconfig/Qt5WaylandCompositor.pc Index: head/misc/qt5-examples/distinfo =================================================================== --- head/misc/qt5-examples/distinfo (revision 517079) +++ head/misc/qt5-examples/distinfo (revision 517080) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561317057 -SHA256 (KDE/Qt/5.13.0/qt-everywhere-src-5.13.0.tar.xz) = 2cba31e410e169bd5cdae159f839640e672532a4687ea0f265f686421e0e86d6 -SIZE (KDE/Qt/5.13.0/qt-everywhere-src-5.13.0.tar.xz) = 504491324 +TIMESTAMP = 1572555131 +SHA256 (KDE/Qt/5.13.2/qt-everywhere-src-5.13.2.tar.xz) = 55e8273536be41f4f63064a79e552a22133848bb419400b6fa8e9fc0dc05de08 +SIZE (KDE/Qt/5.13.2/qt-everywhere-src-5.13.2.tar.xz) = 500830260 Index: head/misc/qt5-examples/pkg-plist =================================================================== --- head/misc/qt5-examples/pkg-plist (revision 517079) +++ head/misc/qt5-examples/pkg-plist (revision 517080) @@ -1,8060 +1,8001 @@ -%%QT_EXAMPLEDIR%%/HACKING %%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/notification/android-sources/AndroidManifest.xml %%QT_EXAMPLEDIR%%/androidextras/notification/android-sources/res/drawable/icon.png %%QT_EXAMPLEDIR%%/androidextras/notification/android-sources/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%%/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/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_trasitions.jpg +%%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/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/bearermonitor/bearermonitor.cpp %%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor.h %%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor.pro %%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor_240_320.ui %%QT_EXAMPLEDIR%%/network/bearermonitor/bearermonitor_640_480.ui %%QT_EXAMPLEDIR%%/network/bearermonitor/main.cpp %%QT_EXAMPLEDIR%%/network/bearermonitor/sessionwidget.cpp %%QT_EXAMPLEDIR%%/network/bearermonitor/sessionwidget.h %%QT_EXAMPLEDIR%%/network/bearermonitor/sessionwidget.ui %%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%%/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.qml %%QT_EXAMPLEDIR%%/qml/dynamicscene/dynamicscene.qmlproject %%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/qml-i18n.qml %%QT_EXAMPLEDIR%%/qml/qml-i18n/qml-i18n.qmlproject %%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/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.cpp %%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/exampleresources/assets/LICENSE -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/chest/Chest.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/chest/diffuse.webp %%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/houseplants/bamboo.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/bamboo_normal.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cover.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cover_normal.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-bamboo.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-palm.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-pine.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-pot-cover.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-pot.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-shrub.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cross-spikes.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-bamboo.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-palm.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-pine.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-pot-cover.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-pot.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-shrub.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/cylinder-spikes.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/palm.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/palm_normal.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pine.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pine_normal.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pot.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/pot_normal.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/shrub.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/shrub_normal.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-bamboo.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-palm.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-pine.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-pot-cover.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-pot.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-shrub.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/sphere-spikes.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/spikes.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/spikes_normal.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-bamboo.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-palm.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-pine.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-pot-cover.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-pot.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-shrub.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/square-spikes.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-bamboo.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-palm.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-pine.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-pot-cover.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-pot.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-shrub.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/houseplants/triangle-spikes.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_black.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_blue.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_green.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_red.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_rust.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_stainless_steel.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/diffus_yellow.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/metal_barrel.obj -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_hard_bumps.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_middle_bumps.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_no_bumps.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/normal_soft_bumps.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/specular.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/specular_rust.webp -%%QT_EXAMPLEDIR%%/qt3d/exampleresources/assets/metalbarrel/specular_stainless_steel.webp %%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/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/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.qml %%QT_EXAMPLEDIR%%/quick/customitems/flipable/flipable.qmlproject %%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.qml %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/pics/niagara_falls.jpg %%QT_EXAMPLEDIR%%/quick/customitems/scrollbar/scrollbar.qmlproject %%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.qml %%QT_EXAMPLEDIR%%/quick/customitems/searchbox/searchbox.qmlproject %%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.qml %%QT_EXAMPLEDIR%%/quick/customitems/spinner/spinner.qmlproject %%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.qml %%QT_EXAMPLEDIR%%/quick/customitems/tabwidget/tabwidget.qmlproject %%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/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/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/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/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/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/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/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/rendernode/main.qml %%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/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/textureinsgnode/doc/images/textureinsgnode-example.jpg %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/doc/src/textureinsgnode.qdoc %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/fboinsgrenderer.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/fboinsgrenderer.h %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/main.cpp %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/main.qml %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/textureinsgnode.pro %%QT_EXAMPLEDIR%%/quick/scenegraph/textureinsgnode/textureinsgnode.qrc %%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/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/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/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/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/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.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/PetsModel.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview2/dynamicview2.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/PetsModel.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview.qml %%QT_EXAMPLEDIR%%/quick/tutorials/dynamicview/dynamicview3/dynamicview3.qmlproject %%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.qmlproject %%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/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame1/samegame1.qmlproject %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/Block.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/Button.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame.js %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame2/samegame2.qmlproject %%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/samegame.js %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame3/samegame3.qmlproject %%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/samegame.qml %%QT_EXAMPLEDIR%%/quick/tutorials/samegame/samegame4/samegame4.qmlproject %%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/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/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/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/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/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/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%%/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/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/network/bearercloud/bearercloud.cpp %%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.h %%QT_EXAMPLEDIR%%/svg/network/bearercloud/bearercloud.pro %%QT_EXAMPLEDIR%%/svg/network/bearercloud/bluetooth.svg %%QT_EXAMPLEDIR%%/svg/network/bearercloud/cell.svg %%QT_EXAMPLEDIR%%/svg/network/bearercloud/cloud.cpp %%QT_EXAMPLEDIR%%/svg/network/bearercloud/cloud.h %%QT_EXAMPLEDIR%%/svg/network/bearercloud/gprs.svg %%QT_EXAMPLEDIR%%/svg/network/bearercloud/icons.qrc %%QT_EXAMPLEDIR%%/svg/network/bearercloud/lan.svg %%QT_EXAMPLEDIR%%/svg/network/bearercloud/main.cpp %%QT_EXAMPLEDIR%%/svg/network/bearercloud/umts.svg %%QT_EXAMPLEDIR%%/svg/network/bearercloud/unknown.svg %%QT_EXAMPLEDIR%%/svg/network/bearercloud/wlan.svg %%QT_EXAMPLEDIR%%/svg/network/network.pro %%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/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.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/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/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/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/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/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/images/logo32.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/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/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/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/saxbookmarks/doc/images/saxbookmarks-example.png %%QT_EXAMPLEDIR%%/xml/saxbookmarks/doc/src/saxbookmarks.qdoc %%QT_EXAMPLEDIR%%/xml/saxbookmarks/jennifer.xbel %%QT_EXAMPLEDIR%%/xml/saxbookmarks/main.cpp %%QT_EXAMPLEDIR%%/xml/saxbookmarks/mainwindow.cpp %%QT_EXAMPLEDIR%%/xml/saxbookmarks/mainwindow.h %%QT_EXAMPLEDIR%%/xml/saxbookmarks/saxbookmarks.pro %%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelgenerator.cpp %%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelgenerator.h %%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelhandler.cpp %%QT_EXAMPLEDIR%%/xml/saxbookmarks/xbelhandler.h %%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 Index: head/multimedia/qt5-multimedia/Makefile =================================================================== --- head/multimedia/qt5-multimedia/Makefile (revision 517079) +++ head/multimedia/qt5-multimedia/Makefile (revision 517080) @@ -1,56 +1,55 @@ # $FreeBSD$ PORTNAME= multimedia DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt audio, video, radio and camera support module # LICENSE set via USES_QT5 (bsd.qt.mk) USES= compiler:c++11-lang gl gnome pkgconfig openal qmake:norecursive \ qt-dist:5,multimedia xorg USE_GL= gl USE_GNOME= glib20 USE_QT= core declarative gui network opengl widgets \ buildtools_build USE_XORG= x11 xext xv USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} QT_CONFIG= xlib # TODO: Bug 225100: the machinery in bsd.qt.mk's qt-post-install target does # not seem to account for the case of a module no longer defining QT_DEFINES: # the lines in qconfig-modules.h including said module's qconfig-.h # will remain. We're setting it below to avoid build errors, but this needs to # be fixed properly later. QT_DEFINES= _QTMULTIMEDIA_DUMMY OPTIONS_DEFINE= GSTREAMER OPENAL OPTIONS_DEFAULT= ALSA GSTREAMER OPTIONS_RADIO= AUDIOPLUGIN OPTIONS_RADIO_AUDIOPLUGIN= ALSA PULSEAUDIO OPTIONS_SUB= yes AUDIOPLUGIN_DESC= Audio plugins to build OPENAL_DESC= 3D positional spatialized sound support ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_VARS= QT_CONFIG+=alsa ALSA_VARS_OFF= QT_CONFIG+=-alsa \ QMAKE_CONFIGURE_ARGS+=-no-alsa GSTREAMER_BUILD_DEPENDS=${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat GSTREAMER_USE= GSTREAMER1=bad GSTREAMER_VARS= QT_CONFIG+=gstreamer-1.0 \ QMAKE_CONFIGURE_ARGS+=-gstreamer 1.0 GSTREAMER_VARS_OFF= QT_CONFIG+=-gstreamer-1.0 \ QMAKE_CONFIGURE_ARGS+=-no-gstreamer PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_VARS= QT_CONFIG+=pulseaudio PULSEAUDIO_VARS_OFF= QT_CONFIG+=-pulseaudio \ QMAKE_CONFIGURE_ARGS+=-no-pulseaudio .include Index: head/multimedia/qt5-multimedia/pkg-plist =================================================================== --- head/multimedia/qt5-multimedia/pkg-plist (revision 517079) +++ head/multimedia/qt5-multimedia/pkg-plist (revision 517080) @@ -1,349 +1,353 @@ %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qabstractvideobuffer_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qaudiobuffer_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qaudiodevicefactory_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qaudiohelpers_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qaudiosystempluginext_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qcamera_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qdeclarativevideooutput_backend_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qdeclarativevideooutput_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qimagevideobuffer_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediacontrol_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmedianetworkplaylistprovider_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaobject_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaopenglhelper_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylist_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistcontrol_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistioplugin_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistnavigator_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistprovider_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaplaylistsourcecontrol_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediapluginloader_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediarecorder_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaresourcepolicy_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaresourcepolicyplugin_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaresourceset_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaservice_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediaserviceprovider_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmediastoragelocation_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmemoryvideobuffer_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qmultimediautils_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qplaylistfileparser_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsamplecache_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsgvideonode_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsoundeffect_pulse_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qsoundeffect_qaudio_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qtmultimedia-config_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qtmultimediaglobal_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qtmultimediaquickdefs_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideoframe_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideoframeconversionhelper_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideooutputorientationhandler_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qvideosurfaceoutput_p.h %%QT_INCDIR%%/QtMultimedia/%%FULLVER%%/QtMultimedia/private/qwavedecoder_p.h %%QT_INCDIR%%/QtMultimedia/QAbstractAudioDeviceInfo %%QT_INCDIR%%/QtMultimedia/QAbstractAudioInput %%QT_INCDIR%%/QtMultimedia/QAbstractAudioOutput %%QT_INCDIR%%/QtMultimedia/QAbstractPlanarVideoBuffer %%QT_INCDIR%%/QtMultimedia/QAbstractVideoBuffer %%QT_INCDIR%%/QtMultimedia/QAbstractVideoFilter %%QT_INCDIR%%/QtMultimedia/QAbstractVideoSurface %%QT_INCDIR%%/QtMultimedia/QAudio %%QT_INCDIR%%/QtMultimedia/QAudioBuffer %%QT_INCDIR%%/QtMultimedia/QAudioDecoder %%QT_INCDIR%%/QtMultimedia/QAudioDecoderControl %%QT_INCDIR%%/QtMultimedia/QAudioDeviceInfo %%QT_INCDIR%%/QtMultimedia/QAudioEncoderSettings %%QT_INCDIR%%/QtMultimedia/QAudioEncoderSettingsControl %%QT_INCDIR%%/QtMultimedia/QAudioFormat %%QT_INCDIR%%/QtMultimedia/QAudioInput %%QT_INCDIR%%/QtMultimedia/QAudioInputSelectorControl %%QT_INCDIR%%/QtMultimedia/QAudioOutput %%QT_INCDIR%%/QtMultimedia/QAudioOutputSelectorControl %%QT_INCDIR%%/QtMultimedia/QAudioProbe %%QT_INCDIR%%/QtMultimedia/QAudioRecorder %%QT_INCDIR%%/QtMultimedia/QAudioRoleControl %%QT_INCDIR%%/QtMultimedia/QAudioSystemFactoryInterface %%QT_INCDIR%%/QtMultimedia/QAudioSystemPlugin %%QT_INCDIR%%/QtMultimedia/QCamera %%QT_INCDIR%%/QtMultimedia/QCameraCaptureBufferFormatControl %%QT_INCDIR%%/QtMultimedia/QCameraCaptureDestinationControl %%QT_INCDIR%%/QtMultimedia/QCameraControl %%QT_INCDIR%%/QtMultimedia/QCameraExposure %%QT_INCDIR%%/QtMultimedia/QCameraExposureControl %%QT_INCDIR%%/QtMultimedia/QCameraFeedbackControl %%QT_INCDIR%%/QtMultimedia/QCameraFlashControl %%QT_INCDIR%%/QtMultimedia/QCameraFocus %%QT_INCDIR%%/QtMultimedia/QCameraFocusControl %%QT_INCDIR%%/QtMultimedia/QCameraFocusZone %%QT_INCDIR%%/QtMultimedia/QCameraFocusZoneList %%QT_INCDIR%%/QtMultimedia/QCameraImageCapture %%QT_INCDIR%%/QtMultimedia/QCameraImageCaptureControl %%QT_INCDIR%%/QtMultimedia/QCameraImageProcessing %%QT_INCDIR%%/QtMultimedia/QCameraImageProcessingControl %%QT_INCDIR%%/QtMultimedia/QCameraInfo %%QT_INCDIR%%/QtMultimedia/QCameraInfoControl %%QT_INCDIR%%/QtMultimedia/QCameraLocksControl %%QT_INCDIR%%/QtMultimedia/QCameraViewfinderSettings %%QT_INCDIR%%/QtMultimedia/QCameraViewfinderSettingsControl %%QT_INCDIR%%/QtMultimedia/QCameraViewfinderSettingsControl2 %%QT_INCDIR%%/QtMultimedia/QCameraZoomControl %%QT_INCDIR%%/QtMultimedia/QCustomAudioRoleControl %%QT_INCDIR%%/QtMultimedia/QImageEncoderControl %%QT_INCDIR%%/QtMultimedia/QImageEncoderSettings %%QT_INCDIR%%/QtMultimedia/QMediaAudioProbeControl %%QT_INCDIR%%/QtMultimedia/QMediaAvailabilityControl %%QT_INCDIR%%/QtMultimedia/QMediaBindableInterface %%QT_INCDIR%%/QtMultimedia/QMediaContainerControl %%QT_INCDIR%%/QtMultimedia/QMediaContent %%QT_INCDIR%%/QtMultimedia/QMediaControl %%QT_INCDIR%%/QtMultimedia/QMediaGaplessPlaybackControl %%QT_INCDIR%%/QtMultimedia/QMediaMetaData %%QT_INCDIR%%/QtMultimedia/QMediaNetworkAccessControl %%QT_INCDIR%%/QtMultimedia/QMediaObject %%QT_INCDIR%%/QtMultimedia/QMediaPlayer %%QT_INCDIR%%/QtMultimedia/QMediaPlayerControl %%QT_INCDIR%%/QtMultimedia/QMediaPlaylist %%QT_INCDIR%%/QtMultimedia/QMediaRecorder %%QT_INCDIR%%/QtMultimedia/QMediaRecorderControl %%QT_INCDIR%%/QtMultimedia/QMediaResource %%QT_INCDIR%%/QtMultimedia/QMediaResourceList %%QT_INCDIR%%/QtMultimedia/QMediaService %%QT_INCDIR%%/QtMultimedia/QMediaServiceCameraInfoInterface %%QT_INCDIR%%/QtMultimedia/QMediaServiceDefaultDeviceInterface %%QT_INCDIR%%/QtMultimedia/QMediaServiceFeaturesInterface %%QT_INCDIR%%/QtMultimedia/QMediaServiceProviderFactoryInterface %%QT_INCDIR%%/QtMultimedia/QMediaServiceProviderHint %%QT_INCDIR%%/QtMultimedia/QMediaServiceProviderPlugin %%QT_INCDIR%%/QtMultimedia/QMediaServiceSupportedDevicesInterface %%QT_INCDIR%%/QtMultimedia/QMediaServiceSupportedFormatsInterface %%QT_INCDIR%%/QtMultimedia/QMediaStreamsControl %%QT_INCDIR%%/QtMultimedia/QMediaTimeInterval %%QT_INCDIR%%/QtMultimedia/QMediaTimeRange %%QT_INCDIR%%/QtMultimedia/QMediaVideoProbeControl %%QT_INCDIR%%/QtMultimedia/QMetaDataReaderControl %%QT_INCDIR%%/QtMultimedia/QMetaDataWriterControl %%QT_INCDIR%%/QtMultimedia/QMultimedia %%QT_INCDIR%%/QtMultimedia/QRadioData %%QT_INCDIR%%/QtMultimedia/QRadioDataControl %%QT_INCDIR%%/QtMultimedia/QRadioTuner %%QT_INCDIR%%/QtMultimedia/QRadioTunerControl %%QT_INCDIR%%/QtMultimedia/QSound %%QT_INCDIR%%/QtMultimedia/QSoundEffect %%QT_INCDIR%%/QtMultimedia/QVideoDeviceSelectorControl %%QT_INCDIR%%/QtMultimedia/QVideoEncoderSettings %%QT_INCDIR%%/QtMultimedia/QVideoEncoderSettingsControl %%QT_INCDIR%%/QtMultimedia/QVideoFilterRunnable %%QT_INCDIR%%/QtMultimedia/QVideoFrame %%QT_INCDIR%%/QtMultimedia/QVideoProbe %%QT_INCDIR%%/QtMultimedia/QVideoRendererControl %%QT_INCDIR%%/QtMultimedia/QVideoSurfaceFormat %%QT_INCDIR%%/QtMultimedia/QVideoWindowControl %%QT_INCDIR%%/QtMultimedia/QtMultimedia %%QT_INCDIR%%/QtMultimedia/QtMultimediaDepends %%QT_INCDIR%%/QtMultimedia/QtMultimediaVersion %%QT_INCDIR%%/QtMultimedia/qabstractvideobuffer.h %%QT_INCDIR%%/QtMultimedia/qabstractvideofilter.h %%QT_INCDIR%%/QtMultimedia/qabstractvideosurface.h %%QT_INCDIR%%/QtMultimedia/qaudio.h %%QT_INCDIR%%/QtMultimedia/qaudiobuffer.h %%QT_INCDIR%%/QtMultimedia/qaudiodecoder.h %%QT_INCDIR%%/QtMultimedia/qaudiodecodercontrol.h %%QT_INCDIR%%/QtMultimedia/qaudiodeviceinfo.h %%QT_INCDIR%%/QtMultimedia/qaudioencodersettingscontrol.h %%QT_INCDIR%%/QtMultimedia/qaudioformat.h %%QT_INCDIR%%/QtMultimedia/qaudioinput.h %%QT_INCDIR%%/QtMultimedia/qaudioinputselectorcontrol.h %%QT_INCDIR%%/QtMultimedia/qaudiooutput.h %%QT_INCDIR%%/QtMultimedia/qaudiooutputselectorcontrol.h %%QT_INCDIR%%/QtMultimedia/qaudioprobe.h %%QT_INCDIR%%/QtMultimedia/qaudiorecorder.h %%QT_INCDIR%%/QtMultimedia/qaudiorolecontrol.h %%QT_INCDIR%%/QtMultimedia/qaudiosystem.h %%QT_INCDIR%%/QtMultimedia/qaudiosystemplugin.h %%QT_INCDIR%%/QtMultimedia/qcamera.h %%QT_INCDIR%%/QtMultimedia/qcameracapturebufferformatcontrol.h %%QT_INCDIR%%/QtMultimedia/qcameracapturedestinationcontrol.h %%QT_INCDIR%%/QtMultimedia/qcameracontrol.h %%QT_INCDIR%%/QtMultimedia/qcameraexposure.h %%QT_INCDIR%%/QtMultimedia/qcameraexposurecontrol.h %%QT_INCDIR%%/QtMultimedia/qcamerafeedbackcontrol.h %%QT_INCDIR%%/QtMultimedia/qcameraflashcontrol.h %%QT_INCDIR%%/QtMultimedia/qcamerafocus.h %%QT_INCDIR%%/QtMultimedia/qcamerafocuscontrol.h %%QT_INCDIR%%/QtMultimedia/qcameraimagecapture.h %%QT_INCDIR%%/QtMultimedia/qcameraimagecapturecontrol.h %%QT_INCDIR%%/QtMultimedia/qcameraimageprocessing.h %%QT_INCDIR%%/QtMultimedia/qcameraimageprocessingcontrol.h %%QT_INCDIR%%/QtMultimedia/qcamerainfo.h %%QT_INCDIR%%/QtMultimedia/qcamerainfocontrol.h %%QT_INCDIR%%/QtMultimedia/qcameralockscontrol.h %%QT_INCDIR%%/QtMultimedia/qcameraviewfindersettings.h %%QT_INCDIR%%/QtMultimedia/qcameraviewfindersettingscontrol.h %%QT_INCDIR%%/QtMultimedia/qcamerazoomcontrol.h %%QT_INCDIR%%/QtMultimedia/qcustomaudiorolecontrol.h %%QT_INCDIR%%/QtMultimedia/qimageencodercontrol.h %%QT_INCDIR%%/QtMultimedia/qmediaaudioprobecontrol.h %%QT_INCDIR%%/QtMultimedia/qmediaavailabilitycontrol.h %%QT_INCDIR%%/QtMultimedia/qmediabindableinterface.h %%QT_INCDIR%%/QtMultimedia/qmediacontainercontrol.h %%QT_INCDIR%%/QtMultimedia/qmediacontent.h %%QT_INCDIR%%/QtMultimedia/qmediacontrol.h %%QT_INCDIR%%/QtMultimedia/qmediaencodersettings.h %%QT_INCDIR%%/QtMultimedia/qmediaenumdebug.h %%QT_INCDIR%%/QtMultimedia/qmediagaplessplaybackcontrol.h %%QT_INCDIR%%/QtMultimedia/qmediametadata.h %%QT_INCDIR%%/QtMultimedia/qmedianetworkaccesscontrol.h %%QT_INCDIR%%/QtMultimedia/qmediaobject.h %%QT_INCDIR%%/QtMultimedia/qmediaplayer.h %%QT_INCDIR%%/QtMultimedia/qmediaplayercontrol.h %%QT_INCDIR%%/QtMultimedia/qmediaplaylist.h %%QT_INCDIR%%/QtMultimedia/qmediarecorder.h %%QT_INCDIR%%/QtMultimedia/qmediarecordercontrol.h %%QT_INCDIR%%/QtMultimedia/qmediaresource.h %%QT_INCDIR%%/QtMultimedia/qmediaservice.h %%QT_INCDIR%%/QtMultimedia/qmediaserviceproviderplugin.h %%QT_INCDIR%%/QtMultimedia/qmediastreamscontrol.h %%QT_INCDIR%%/QtMultimedia/qmediatimerange.h %%QT_INCDIR%%/QtMultimedia/qmediavideoprobecontrol.h %%QT_INCDIR%%/QtMultimedia/qmetadatareadercontrol.h %%QT_INCDIR%%/QtMultimedia/qmetadatawritercontrol.h %%QT_INCDIR%%/QtMultimedia/qmultimedia.h %%QT_INCDIR%%/QtMultimedia/qradiodata.h %%QT_INCDIR%%/QtMultimedia/qradiodatacontrol.h %%QT_INCDIR%%/QtMultimedia/qradiotuner.h %%QT_INCDIR%%/QtMultimedia/qradiotunercontrol.h %%QT_INCDIR%%/QtMultimedia/qsound.h %%QT_INCDIR%%/QtMultimedia/qsoundeffect.h %%QT_INCDIR%%/QtMultimedia/qtmultimedia-config.h %%QT_INCDIR%%/QtMultimedia/qtmultimediadefs.h %%QT_INCDIR%%/QtMultimedia/qtmultimediaglobal.h %%QT_INCDIR%%/QtMultimedia/qtmultimediaversion.h %%QT_INCDIR%%/QtMultimedia/qvideodeviceselectorcontrol.h %%QT_INCDIR%%/QtMultimedia/qvideoencodersettingscontrol.h %%QT_INCDIR%%/QtMultimedia/qvideoframe.h %%QT_INCDIR%%/QtMultimedia/qvideoprobe.h %%QT_INCDIR%%/QtMultimedia/qvideorenderercontrol.h %%QT_INCDIR%%/QtMultimedia/qvideosurfaceformat.h %%QT_INCDIR%%/QtMultimedia/qvideowindowcontrol.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/QtMultimediaGstTools %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/QtMultimediaGstToolsDepends %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/QtMultimediaGstToolsVersion %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/qtmultimediagsttoolsversion.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/gstvideoconnector_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstappsrc_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstbufferpoolinterface_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstcodecsinfo_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreameraudioinputselector_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreameraudioprobecontrol_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamerbufferprobe_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamerbushelper_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamermessage_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamermirtexturerenderer_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamerplayercontrol_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamerplayersession_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamervideoinputdevicecontrol_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamervideooverlay_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamervideoprobecontrol_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamervideorenderer_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamervideorendererinterface_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamervideowidget_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstreamervideowindow_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgsttools_global_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstutils_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstvideobuffer_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstvideorendererplugin_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qgstvideorenderersink_p.h %%GSTREAMER%%%%QT_INCDIR%%/QtMultimediaGstTools/%%FULLVER%%/QtMultimediaGstTools/private/qvideosurfacegstsink_p.h %%QT_INCDIR%%/QtMultimediaQuick/%%FULLVER%%/QtMultimediaQuick/private/qdeclarativevideooutput_render_p.h %%QT_INCDIR%%/QtMultimediaQuick/%%FULLVER%%/QtMultimediaQuick/private/qdeclarativevideooutput_window_p.h %%QT_INCDIR%%/QtMultimediaQuick/%%FULLVER%%/QtMultimediaQuick/private/qsgvideonode_rgb_p.h %%QT_INCDIR%%/QtMultimediaQuick/%%FULLVER%%/QtMultimediaQuick/private/qsgvideonode_texture_p.h %%QT_INCDIR%%/QtMultimediaQuick/%%FULLVER%%/QtMultimediaQuick/private/qsgvideonode_yuv_p.h %%QT_INCDIR%%/QtMultimediaQuick/QtMultimediaQuick %%QT_INCDIR%%/QtMultimediaQuick/QtMultimediaQuickDepends %%QT_INCDIR%%/QtMultimediaQuick/QtMultimediaQuickVersion %%QT_INCDIR%%/QtMultimediaQuick/qtmultimediaquickversion.h %%QT_INCDIR%%/QtMultimediaWidgets/%%FULLVER%%/QtMultimediaWidgets/private/qpaintervideosurface_p.h %%QT_INCDIR%%/QtMultimediaWidgets/%%FULLVER%%/QtMultimediaWidgets/private/qvideowidget_p.h %%QT_INCDIR%%/QtMultimediaWidgets/QCameraViewfinder %%QT_INCDIR%%/QtMultimediaWidgets/QGraphicsVideoItem %%QT_INCDIR%%/QtMultimediaWidgets/QVideoWidget %%QT_INCDIR%%/QtMultimediaWidgets/QVideoWidgetControl %%QT_INCDIR%%/QtMultimediaWidgets/QtMultimediaWidgets %%QT_INCDIR%%/QtMultimediaWidgets/QtMultimediaWidgetsDepends %%QT_INCDIR%%/QtMultimediaWidgets/QtMultimediaWidgetsVersion %%QT_INCDIR%%/QtMultimediaWidgets/qcameraviewfinder.h %%QT_INCDIR%%/QtMultimediaWidgets/qgraphicsvideoitem.h %%QT_INCDIR%%/QtMultimediaWidgets/qtmultimediawidgetdefs.h %%QT_INCDIR%%/QtMultimediaWidgets/qtmultimediawidgetsversion.h %%QT_INCDIR%%/QtMultimediaWidgets/qvideowidget.h %%QT_INCDIR%%/QtMultimediaWidgets/qvideowidgetcontrol.h +%%QT_CMAKEDIR%%/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake +%%QT_CMAKEDIR%%/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5MultimediaGstTools/Qt5MultimediaGstToolsConfig.cmake +%%QT_CMAKEDIR%%/Qt5MultimediaGstTools/Qt5MultimediaGstToolsConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5MultimediaQuick/Qt5MultimediaQuickConfig.cmake +%%QT_CMAKEDIR%%/Qt5MultimediaQuick/Qt5MultimediaQuickConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Multimedia/Qt5MultimediaConfig.cmake %%QT_CMAKEDIR%%/Qt5Multimedia/Qt5MultimediaConfigVersion.cmake %%NO_GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_AudioCaptureServicePlugin.cmake %%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_CameraBinServicePlugin.cmake %%ALSA%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QAlsaPlugin.cmake %%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QGstreamerAudioDecoderServicePlugin.cmake %%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QGstreamerCaptureServicePlugin.cmake %%GSTREAMER%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QGstreamerPlayerServicePlugin.cmake %%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QM3uPlaylistPlugin.cmake %%PULSEAUDIO%%%%QT_CMAKEDIR%%/Qt5Multimedia/Qt5Multimedia_QPulseAudioPlugin.cmake -%%QT_CMAKEDIR%%/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake -%%QT_CMAKEDIR%%/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfigVersion.cmake %%QT_LIBDIR%%/libQt5Multimedia.prl %%QT_LIBDIR%%/libQt5Multimedia.so %%QT_LIBDIR%%/libQt5Multimedia.so.5 %%QT_LIBDIR%%/libQt5Multimedia.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Multimedia.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Multimedia.so.%%FULLVER%%.debug %%GSTREAMER%%%%QT_LIBDIR%%/libQt5MultimediaGstTools.prl %%GSTREAMER%%%%QT_LIBDIR%%/libQt5MultimediaGstTools.so %%GSTREAMER%%%%QT_LIBDIR%%/libQt5MultimediaGstTools.so.5 %%GSTREAMER%%%%QT_LIBDIR%%/libQt5MultimediaGstTools.so.%%SHORTVER%% %%GSTREAMER%%%%QT_LIBDIR%%/libQt5MultimediaGstTools.so.%%FULLVER%% %%GSTREAMER%%%%DEBUG%%%%QT_LIBDIR%%/libQt5MultimediaGstTools.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5MultimediaQuick.prl %%QT_LIBDIR%%/libQt5MultimediaQuick.so %%QT_LIBDIR%%/libQt5MultimediaQuick.so.5 %%QT_LIBDIR%%/libQt5MultimediaQuick.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5MultimediaQuick.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5MultimediaQuick.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5MultimediaWidgets.prl %%QT_LIBDIR%%/libQt5MultimediaWidgets.so %%QT_LIBDIR%%/libQt5MultimediaWidgets.so.5 %%QT_LIBDIR%%/libQt5MultimediaWidgets.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5MultimediaWidgets.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5MultimediaWidgets.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_multimedia.pri %%QT_MKSPECDIR%%/modules/qt_lib_multimedia_private.pri %%GSTREAMER%%%%QT_MKSPECDIR%%/modules/qt_lib_multimediagsttools_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_multimediawidgets.pri %%QT_MKSPECDIR%%/modules/qt_lib_multimediawidgets_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_qtmultimediaquicktools_private.pri %%ALSA%%%%QT_PLUGINDIR%%/audio/libqtaudio_alsa.so %%ALSA%%%%DEBUG%%%%QT_PLUGINDIR%%/audio/libqtaudio_alsa.so.debug %%PULSEAUDIO%%%%QT_PLUGINDIR%%/audio/libqtmedia_pulse.so %%PULSEAUDIO%%%%DEBUG%%%%QT_PLUGINDIR%%/audio/libqtmedia_pulse.so.debug %%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstaudiodecoder.so %%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstaudiodecoder.so.debug %%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstcamerabin.so %%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstcamerabin.so.debug %%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstmediacapture.so %%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstmediacapture.so.debug %%GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libgstmediaplayer.so %%GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libgstmediaplayer.so.debug %%NO_GSTREAMER%%%%QT_PLUGINDIR%%/mediaservice/libqtmedia_audioengine.so %%NO_GSTREAMER%%%%DEBUG%%%%QT_PLUGINDIR%%/mediaservice/libqtmedia_audioengine.so.debug %%QT_PLUGINDIR%%/playlistformats/libqtmultimedia_m3u.so %%DEBUG%%%%QT_PLUGINDIR%%/playlistformats/libqtmultimedia_m3u.so.debug %%OPENAL%%%%QT_QMLDIR%%/QtAudioEngine/libdeclarative_audioengine.so %%OPENAL%%%%DEBUG%%%%QT_QMLDIR%%/QtAudioEngine/libdeclarative_audioengine.so.debug %%OPENAL%%%%QT_QMLDIR%%/QtAudioEngine/plugins.qmltypes %%OPENAL%%%%QT_QMLDIR%%/QtAudioEngine/qmldir %%QT_QMLDIR%%/QtMultimedia/Video.qml %%QT_QMLDIR%%/QtMultimedia/libdeclarative_multimedia.so %%DEBUG%%%%QT_QMLDIR%%/QtMultimedia/libdeclarative_multimedia.so.debug %%QT_QMLDIR%%/QtMultimedia/plugins.qmltypes %%QT_QMLDIR%%/QtMultimedia/qmldir libdata/pkgconfig/Qt5Multimedia.pc libdata/pkgconfig/Qt5MultimediaWidgets.pc Index: head/net/qt5-network/Makefile =================================================================== --- head/net/qt5-network/Makefile (revision 517079) +++ head/net/qt5-network/Makefile (revision 517080) @@ -1,48 +1,47 @@ # $FreeBSD$ PORTNAME= network DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= net PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt network module RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss USES= compiler:c++11-lang qmake:no_env qt-dist:5,base ssl USE_QT= core buildtools_build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} QT_DEFINES= OPENSSL SSL QT_CONFIG= openssl post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${BUILD_WRKSRC}/ssl/qsslsocket_openssl.cpp @${REINPLACE_CMD} -e 's|%%OPENSSLLIB%%|${OPENSSLLIB}|g' \ ${BUILD_WRKSRC}/ssl/qsslsocket_openssl_symbols.cpp post-configure: .for d in src/network src/plugins/bearer/generic ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor post-build: @cd ${WRKSRC}/src/plugins/bearer/generic && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} post-install: @cd ${WRKSRC}/src/plugins/bearer/generic && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} .include Index: head/net/qt5-network/files/patch-src_network_kernel_qnetworkinterface__unix.cpp =================================================================== --- head/net/qt5-network/files/patch-src_network_kernel_qnetworkinterface__unix.cpp (revision 517079) +++ head/net/qt5-network/files/patch-src_network_kernel_qnetworkinterface__unix.cpp (revision 517080) @@ -1,100 +1,99 @@ Clean up interface type and MTU detection. - Introduce a class SockPuppet that handles closing the socket automatically, and handles different address families as well. - Finding MTU requires using AF_LOCAL, cribbed that detail from ifconfig.c - Zero out structures more diligently, initialize pointers to nullptr. - In particular, don't use a union of structs passed in to ioctl(). Make them separate structs (with block scope so the compiler might place them on top of each other, that would be ok). - IFM_FDDI (still) exists in 11.2, not in 12.0 ---- src/network/kernel/qnetworkinterface_unix.cpp.orig 2019-02-09 11:35:25.320227000 +0100 -+++ src/network/kernel/qnetworkinterface_unix.cpp 2019-02-09 11:43:51.515736000 +0100 -@@ -420,13 +420,25 @@ +--- src/network/kernel/qnetworkinterface_unix.cpp.orig 2019-10-25 07:16:48 UTC ++++ src/network/kernel/qnetworkinterface_unix.cpp +@@ -420,13 +420,24 @@ QT_BEGIN_INCLUDE_NAMESPACE #endif // QT_PLATFORM_UIKIT QT_END_INCLUDE_NAMESPACE -static int openSocket(int &socket) +template struct SockPuppet { - if (socket == -1) - socket = qt_safe_socket(AF_INET, SOCK_DGRAM, 0); - return socket; -} - + int socket{-1}; -+ -+ int open() + ++ int open() + { + if (socket == -1) + socket = qt_safe_socket(address_family, SOCK_DGRAM, 0); + return socket; + } + + ~SockPuppet() + { + if (socket != -1) + qt_safe_close(socket); + } +}; + static QNetworkInterface::InterfaceType probeIfType(int socket, int iftype, struct ifmediareq *req) { // Determine the interface type. -@@ -480,16 +492,9 @@ +@@ -480,16 +491,9 @@ static QNetworkInterface::InterfaceType probeIfType(in static QList createInterfaces(ifaddrs *rawList) { QList interfaces; - union { - struct ifmediareq mediareq; - struct ifreq req; - }; - int socket = -1; -+ SockPuppet socket; -+ SockPuppet localSocket; +- memset(&mediareq, 0, sizeof(mediareq)); - // ensure both structs start with the name field, of size IFNAMESIZ - Q_STATIC_ASSERT(sizeof(mediareq.ifm_name) == sizeof(req.ifr_name)); - Q_ASSERT(&mediareq.ifm_name == &req.ifr_name); -- ++ SockPuppet socket; ++ SockPuppet localSocket; + // on NetBSD we use AF_LINK and sockaddr_dl // scan the list for that family - for (ifaddrs *ptr = rawList; ptr; ptr = ptr->ifa_next) -@@ -503,13 +508,22 @@ +@@ -503,14 +507,22 @@ static QList createInterfa + iface->name = QString::fromLatin1(ptr->ifa_name); iface->flags = convertFlags(ptr->ifa_flags); iface->hardwareAddress = iface->makeHwAddress(sdl->sdl_alen, (uchar*)LLADDR(sdl)); - -- qstrncpy(mediareq.ifm_name, ptr->ifa_name, sizeof(mediareq.ifm_name)); -- iface->type = probeIfType(openSocket(socket), sdl->sdl_type, &mediareq); -- iface->mtu = getMtu(socket, &req); + { + ifmediareq req; + memset(&req, 0, sizeof(req)); + strncpy(req.ifm_name, ptr->ifa_name, sizeof(req.ifm_name)); + iface->type = probeIfType(socket.open(), sdl->sdl_type, &req); + } + { + ifreq req; + memset(&req, 0, sizeof(req)); + strncpy(req.ifr_name, ptr->ifa_name, sizeof(req.ifr_name)); + req.ifr_addr.sa_family = AF_LOCAL; + iface->mtu = getMtu(localSocket.open(), &req); + } -+ + +- qstrncpy(mediareq.ifm_name, ptr->ifa_name, sizeof(mediareq.ifm_name)); +- iface->type = probeIfType(openSocket(socket), sdl->sdl_type, &mediareq); +- iface->mtu = getMtu(socket, &req); } - if (socket != -1) - qt_safe_close(socket); return interfaces; } -@@ -608,7 +622,7 @@ +@@ -609,7 +621,7 @@ static QList interfaceList { QList interfaces; - ifaddrs *interfaceListing; + ifaddrs *interfaceListing = nullptr; if (getifaddrs(&interfaceListing) == -1) { // error return interfaces; Index: head/net/qt5-network/files/patch-src_network_ssl_qsslsocket_openssl_symbols.cpp =================================================================== --- head/net/qt5-network/files/patch-src_network_ssl_qsslsocket_openssl_symbols.cpp (revision 517079) +++ head/net/qt5-network/files/patch-src_network_ssl_qsslsocket_openssl_symbols.cpp (revision 517080) @@ -1,106 +1,86 @@ -Redefine SSL stack functions to their proper symbols in LibreSSL. -Also reference a redefined DSA_bits() that does not natively exist -in LibreSSL. - -Ensure that we link to the correct ssl library selected in -DEFAULT_VERSIONS. - -Do not define SSL_CONF_CTX symbols absent from LibreSSL. - ---- src/network/ssl/qsslsocket_openssl_symbols.cpp.orig 2018-12-03 11:15:26 UTC -+++ src/network/ssl/qsslsocket_openssl_symbols.cpp -@@ -152,6 +152,14 @@ DEFINEFUNC2(int, BN_is_word, BIGNUM *a, a, BN_ULONG w, +--- src/network/ssl/qsslsocket_openssl_symbols.cpp.orig 2019-10-25 09:16:48.000000000 +0200 ++++ src/network/ssl/qsslsocket_openssl_symbols.cpp 2019-11-01 20:03:08.715014000 +0100 +@@ -152,6 +152,14 @@ DEFINEFUNC(int, EVP_CIPHER_CTX_reset, EVP_CIPHER_CTX *c, c, return 0, return) DEFINEFUNC(int, EVP_PKEY_base_id, EVP_PKEY *a, a, return NID_undef, return) DEFINEFUNC(int, RSA_bits, RSA *a, a, return 0, return) +#ifdef LIBRESSL_VERSION_NUMBER +DEFINEFUNC(int, sk_num, OPENSSL_STACK *a, a, return -1, return) +DEFINEFUNC2(void, sk_pop_free, OPENSSL_STACK *a, a, void (*b)(void*), b, return, DUMMYARG) +DEFINEFUNC(OPENSSL_STACK *, sk_new_null, DUMMYARG, DUMMYARG, return nullptr, return) +DEFINEFUNC2(void, sk_push, OPENSSL_STACK *a, a, void *b, b, return, DUMMYARG) +DEFINEFUNC(void, sk_free, OPENSSL_STACK *a, a, return, DUMMYARG) +DEFINEFUNC2(void *, sk_value, OPENSSL_STACK *a, a, int b, b, return nullptr, return) +#else DEFINEFUNC(int, DSA_bits, DSA *a, a, return 0, return) 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) -@@ -159,6 +167,7 @@ DEFINEFUNC(OPENSSL_STACK *, OPENSSL_sk_new_null, DUMMY +@@ -159,6 +167,7 @@ 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) +#endif 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) #ifdef TLS1_3_VERSION -@@ -443,7 +452,7 @@ DEFINEFUNC2(int, SSL_CTX_use_PrivateKey, SSL_CTX *a, a +@@ -443,7 +452,7 @@ 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) -#if OPENSSL_VERSION_NUMBER >= 0x10002000L +#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(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); -@@ -846,8 +855,8 @@ static QPair loadOpenSsl() +@@ -839,8 +848,8 @@ #endif #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so // first attempt: the canonical name is libssl.so. - libssl->setFileNameAndVersion(QLatin1String("ssl"), QLatin1String(SHLIB_VERSION_NUMBER)); - libcrypto->setFileNameAndVersion(QLatin1String("crypto"), QLatin1String(SHLIB_VERSION_NUMBER)); + libssl->setFileNameAndVersion(QLatin1String("%%OPENSSLLIB%%/libssl"), QLatin1String(SHLIB_VERSION_NUMBER)); + libcrypto->setFileNameAndVersion(QLatin1String("%%OPENSSLLIB%%/libcrypto"), QLatin1String(SHLIB_VERSION_NUMBER)); if (libcrypto->load() && libssl->load()) { // libssl.so. and libcrypto.so. found return pair; -@@ -876,8 +885,8 @@ static QPair loadOpenSsl() - // macOS's /usr/lib/libssl.dylib, /usr/lib/libcrypto.dylib will be picked up in the third - // attempt, _after_ /Contents/Frameworks has been searched. - // iOS does not ship a system libssl.dylib, libcrypto.dylib in the first place. -- libssl->setFileNameAndVersion(QLatin1String("ssl"), -1); -- libcrypto->setFileNameAndVersion(QLatin1String("crypto"), -1); -+ libssl->setFileNameAndVersion(QLatin1String("%%OPENSSLLIB%%/libssl"), -1); -+ libcrypto->setFileNameAndVersion(QLatin1String("%%OPENSSLLIB%%/libcrypto"), -1); - if (libcrypto->load() && libssl->load()) { - // libssl.so.0 and libcrypto.so.0 found - return pair; -@@ -961,12 +970,21 @@ bool q_resolveOpenSslSymbols() +@@ -980,12 +989,21 @@ RESOLVEFUNC(EVP_CIPHER_CTX_reset) RESOLVEFUNC(EVP_PKEY_base_id) RESOLVEFUNC(RSA_bits) +#ifdef LIBRESSL_VERSION_NUMBER + RESOLVEFUNC(sk_new_null) + RESOLVEFUNC(sk_push) + RESOLVEFUNC(sk_free) + RESOLVEFUNC(sk_num) + RESOLVEFUNC(sk_pop_free) + RESOLVEFUNC(sk_value) +#else 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) #ifdef TLS1_3_VERSION -@@ -1001,7 +1019,9 @@ bool q_resolveOpenSslSymbols() +@@ -1024,7 +1042,9 @@ RESOLVEFUNC(SSL_SESSION_get_ticket_lifetime_hint) RESOLVEFUNC(DH_bits) +#ifndef LIBRESSL_VERSION_NUMBER RESOLVEFUNC(DSA_bits) +#endif #if QT_CONFIG(dtls) RESOLVEFUNC(DTLSv1_listen) -@@ -1237,7 +1257,7 @@ bool q_resolveOpenSslSymbols() +@@ -1280,7 +1300,7 @@ RESOLVEFUNC(SSL_CTX_use_RSAPrivateKey) RESOLVEFUNC(SSL_CTX_use_PrivateKey_file) RESOLVEFUNC(SSL_CTX_get_cert_store); -#if OPENSSL_VERSION_NUMBER >= 0x10002000L +#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) RESOLVEFUNC(SSL_CONF_CTX_new); RESOLVEFUNC(SSL_CONF_CTX_free); RESOLVEFUNC(SSL_CONF_CTX_set_ssl_ctx); Index: head/net/qt5-networkauth/Makefile =================================================================== --- head/net/qt5-networkauth/Makefile (revision 517079) +++ head/net/qt5-networkauth/Makefile (revision 517080) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= networkauth DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= net PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt network auth module USES= compiler:c++11-lang qmake:no_env qt-dist:5 USE_QT= core network \ buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/print/qt5-printsupport/Makefile =================================================================== --- head/print/qt5-printsupport/Makefile (revision 517079) +++ head/print/qt5-printsupport/Makefile (revision 517080) @@ -1,59 +1,58 @@ # $FreeBSD$ PORTNAME= printsupport DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= print PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt print support module USES= compiler:c++11-lang qmake:no_env qt-dist:5,base USE_QT= core gui widgets qmake_build buildtools_build HAS_CONFIGURE= yes USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} OPTIONS_DEFINE= CUPS OPTIONS_DEFAULT=CUPS OPTIONS_SUB= yes CUPS_CONFIGURE_ON= -cups CUPS_CONFIGURE_OFF= -no-cups CUPS_LIB_DEPENDS= libcups.so:print/cups .include .if ${PORT_OPTIONS:MCUPS} QT_DEFINES+= CUPS QT_CONFIG+= cups MORE_WRKSRCS+= src/plugins/printsupport .else QT_DEFINES+= -CUPS QT_CONFIG+= -cups .endif post-configure: .for d in src/printsupport ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor post-build: .if ${PORT_OPTIONS:MCUPS} @cd ${WRKSRC}/src/plugins/${PORTNAME}/cups && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endif post-install: .if ${PORT_OPTIONS:MCUPS} @cd ${WRKSRC}/src/plugins/${PORTNAME}/cups && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} .endif .include Index: head/sysutils/qt5-qtdiag/Makefile =================================================================== --- head/sysutils/qt5-qtdiag/Makefile (revision 517079) +++ head/sysutils/qt5-qtdiag/Makefile (revision 517080) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= qtdiag DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Tool for reporting diagnostic information about Qt and its environment USES= compiler:c++11-lang qmake:outsource qt-dist:5,tools USE_QT= core gui PLIST_FILES= ${QT_BINDIR}/qtdiag # Similarly to x11/qt5-qev, it makes more sense to just run the build system # from the qtdiag directory. If we run it from the top of the source tree, it # will look for a lot more dependencies for other tools such as lupdate, which # we do not really have to depend on. WRKSRC_SUBDIR= src/${PORTNAME} post-patch: ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC} .include Index: head/sysutils/qt5-qtpaths/Makefile =================================================================== --- head/sysutils/qt5-qtpaths/Makefile (revision 517079) +++ head/sysutils/qt5-qtpaths/Makefile (revision 517080) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= qtpaths DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Command line client to QStandardPaths USES= compiler:c++11-lang qmake:outsource qt-dist:5,tools USE_QT= core PLIST_FILES= ${QT_BINDIR}/qtpaths # Similarly to x11/qt5-qev, it makes more sense to just run the build system # from the qtpaths directory. If we run it from the top of the source tree, it # will look for a lot more dependencies for other tools such as lupdate, which # we do not really have to depend on. WRKSRC_SUBDIR= src/${PORTNAME} post-patch: ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC} .include Index: head/sysutils/qt5-qtplugininfo/Makefile =================================================================== --- head/sysutils/qt5-qtplugininfo/Makefile (revision 517079) +++ head/sysutils/qt5-qtplugininfo/Makefile (revision 517080) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= qtplugininfo DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt5 plugin metadata dumper USES= compiler:c++11-lang qmake:outsource qt-dist:5,tools USE_QT= core PLIST_FILES= ${QT_BINDIR}/qtplugininfo # Similarly to x11/qt5-qev, it makes more sense to just run the build system # from the qtplugininfo directory. If we run it from the top of the source tree, it # will look for a lot more dependencies for other tools such as lupdate, which # we do not really have to depend on. WRKSRC_SUBDIR= src/${PORTNAME} post-patch: ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC} .include Index: head/textproc/qt5-xml/Makefile =================================================================== --- head/textproc/qt5-xml/Makefile (revision 517079) +++ head/textproc/qt5-xml/Makefile (revision 517080) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= xml DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= textproc PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt SAX and DOM implementations USES= compiler:c++11-lang qmake:no_env qt-dist:5,base USE_QT= core qmake_build buildtools_build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} post-configure: .for d in src/xml ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor .include Index: head/textproc/qt5-xmlpatterns/Makefile =================================================================== --- head/textproc/qt5-xmlpatterns/Makefile (revision 517079) +++ head/textproc/qt5-xmlpatterns/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= xmlpatterns DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= textproc PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt support for XPath, XQuery, XSLT and XML Schema USES= compiler:c++11-lang qmake:norecursive qt-dist:5,xmlpatterns USE_QT= core network buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/www/qt5-webchannel/Makefile =================================================================== --- head/www/qt5-webchannel/Makefile (revision 517079) +++ head/www/qt5-webchannel/Makefile (revision 517080) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= webchannel DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 library for integration of C++/QML with HTML/js clients USES= compiler:c++11-lang qmake:norecursive qt-dist:5,webchannel USE_QT= buildtools_build core declarative USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} # The default EXTRACT_AFTER_ARGS value excludes examples/ from the extracted # tarball, which we need during the build. EXTRACT_AFTER_ARGS= --no-same-owner --no-same-permissions .include Index: head/www/qt5-webengine/Makefile =================================================================== --- head/www/qt5-webengine/Makefile (revision 517079) +++ head/www/qt5-webengine/Makefile (revision 517080) @@ -1,135 +1,135 @@ # $FreeBSD$ # QtWebEngine itself is a very thin layer of Qt code on top of a large part of # Chromium (everything up to the content/ layer). As such, most of the work in # this port revolves around taming Chromium and getting it to build on FreeBSD. # While it does build at the moment, there are several items that should be # investigated or improved: # - We are using several stub files, especially in Chromium's base/ and net/ # layers. We should look at implementing the missing bits instead. # - We are currently not using any sandboxing mechanism. # - We need to see if more "use_system_" flags can be passed. # - The process of porting QtWebEngine needs to be documented so we can move to # newer releases more easily. # # Also note that, due to the insane amount of patches this port needs, it tends # to lag behind the rest of the official Qt5 ones, which is why we set # QT5_VERSION and DISTINFO_FILE here. PORTNAME= webengine DISTVERSION= ${QT5_VERSION} CATEGORIES= www PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 library to render web content BUILD_DEPENDS= bison:devel/bison \ ninja:devel/ninja \ yasm:devel/yasm \ ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ libdbus-1.so:devel/dbus \ libevent.so:devel/libevent \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ libjsoncpp.so:devel/jsoncpp \ liblcms2.so:graphics/lcms2 \ libnspr4.so:devel/nspr \ libnss3.so:security/nss \ libopus.so:audio/opus \ libpci.so:devel/libpci \ libpng.so:graphics/png \ libre2.so:devel/re2 \ libsnappy.so:archivers/snappy \ libvpx.so:multimedia/libvpx \ libwebp.so:graphics/webp DISTINFO_FILE= ${.CURDIR}/distinfo -QT5_VERSION= 5.13.0 +QT5_VERSION= 5.13.2 OPTIONS_SINGLE= AUDIO OPTIONS_SINGLE_AUDIO= ALSA PULSEAUDIO SNDIO OPTIONS_DEFAULT= ALSA AUDIO_DESC= Audio backend # Need the alsa plugins to get sound at runtime, otherwise messages # that the pcm_oss plugin can't be opened. ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_RUN_DEPENDS= alsa-plugins>=0:audio/alsa-plugins ALSA_VARS= QMAKE_CONFIGURE_ARGS+=-alsa ALSA_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-alsa PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_VARS= QMAKE_CONFIGURE_ARGS+=-pulseaudio PULSEAUDIO_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-pulseaudio SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio SNDIO_VARS= QMAKE_CONFIGURE_ARGS+=-sndio SNDIO_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-sndio # We pass `norecursive' to USES=qmake because src/plugins/plugins.pro checks # whether webenginewidgets is available, which fails when qmake processes all # .pro files at once. USES= gl gnome gperf jpeg python:2.7,build pkgconfig \ qmake:norecursive,outsource qt-dist:5,webengine shebangfix xorg USE_GL= gl USE_GNOME= glib20 libxml2 libxslt USE_QT= core declarative designer gui location network webchannel \ widgets buildtools_build qmake_build printsupport USE_XORG= x11 xcb xcomposite xcursor xext xi xorgproto \ xrandr xrender xscrnsaver xtst USE_LDCONFIG= ${QT_LIBDIR} QMAKE_CONFIGURE_ARGS= -proprietary-codecs -system-ffmpeg # We could just set it to an empty string as well. "all" does not account for # dependencies correctly in the generated Makefiles, use the right target here. ALL_TARGET= first # We need ar(1) from ports because the Chromium code uses the @file syntax. # We then need to ensure ld(1) from ports is used because of the archives ar(1) # generated. USE_BINUTILS= yes CC+= "-B${LOCALBASE}/bin" CXX+= "-B${LOCALBASE}/bin" # The build system reads the environment variable $NINJA_PATH to decide whether # to boostrap ninja or not (and also to invoke it afterwards). CC and CXX are # read by some Chromium code to determine which compiler to invoke when running # some configuration tests. # Since we use USES=qmake:norecursive, we also need to pass some variables to # MAKE_ENV because part of the configuration process happens during the build. CONFIGURE_ENV+= NINJAFLAGS="-j${MAKE_JOBS_NUMBER}" \ NINJA_PATH="${LOCALBASE}/bin/ninja" \ PATH=${CONFIGURE_WRKSRC}/bin:${LOCALBASE}/bin:${PATH} MAKE_ENV+= CC="${CC}" CXX="${CXX}" \ C_INCLUDE_PATH=${LOCALBASE}/include \ CPLUS_INCLUDE_PATH=${LOCALBASE}/include \ ${CONFIGURE_ENV} post-extract: # Install FreeBSD's freebsd.pri file. ${CP} ${FILESDIR}/freebsd.pri ${WRKSRC}/src/core/config/freebsd.pri post-extract-SNDIO-on: @cd ${WRKSRC}/src/3rdparty/chromium/media/audio && ${MKDIR} sndio openbsd @${CP} ${FILESDIR}/sndio_*put.* \ ${WRKSRC}/src/3rdparty/chromium/media/audio/sndio @${CP} ${FILESDIR}/audio_manager_openbsd.* \ ${WRKSRC}/src/3rdparty/chromium/media/audio/openbsd pre-configure: # Link in ${PYTHON_CMD} to ${CONFIGURE_WRKSRC}/bin -- the scripts hardcode 'python' # in too many places to reasonably patch. So just link in ${PYTHON_CMD} to work around # $LOCALBASE/bin/python being python3 if the default versions is set to 3.x. ${MKDIR} ${CONFIGURE_WRKSRC}/bin && ${LN} -s ${PYTHON_CMD} ${CONFIGURE_WRKSRC}/bin/python # Unbundle a few dependencies. ${PYTHON_CMD} ${WRKSRC}/src/3rdparty/chromium/build/linux/unbundle/replace_gn_files.py \ --system-libraries libwebp libxml libxslt yasm # Rerun syncqt.pl -- otherwise the resulting package misses some forwarding headers. cd ${WRKSRC} && ${QT_BINDIR}/syncqt.pl -version ${QT5_VERSION} .include Index: head/www/qt5-webengine/distinfo =================================================================== --- head/www/qt5-webengine/distinfo (revision 517079) +++ head/www/qt5-webengine/distinfo (revision 517080) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561322470 -SHA256 (KDE/Qt/5.13.0/qtwebengine-everywhere-src-5.13.0.tar.xz) = e0af82ecee1ab41b6732697f667b98b7b0c53164bebcfaad8070e88b2e064efe -SIZE (KDE/Qt/5.13.0/qtwebengine-everywhere-src-5.13.0.tar.xz) = 256899724 +TIMESTAMP = 1572640408 +SHA256 (KDE/Qt/5.13.2/qtwebengine-everywhere-src-5.13.2.tar.xz) = adcf56b5de6f34744bba2307b696fc75611884f4270e87dfa760d6e99dd711bb +SIZE (KDE/Qt/5.13.2/qtwebengine-everywhere-src-5.13.2.tar.xz) = 255593964 Index: head/www/qt5-webengine/files/patch-src_3rdparty_chromium_media_audio_pulse_pulse.sigs =================================================================== --- head/www/qt5-webengine/files/patch-src_3rdparty_chromium_media_audio_pulse_pulse.sigs (revision 517079) +++ head/www/qt5-webengine/files/patch-src_3rdparty_chromium_media_audio_pulse_pulse.sigs (nonexistent) @@ -1,143 +0,0 @@ -gen/media/audio/pulse/pulse_stubs.cc:155:27: error: conflicting types for 'pa_context_get_state' -extern pa_context_state_t pa_context_get_state(pa_context* c) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/context.h:199:20: note: previous declaration is here -pa_context_state_t pa_context_get_state(const pa_context *c); - ^ -gen/media/audio/pulse/pulse_stubs.cc:156:21: error: conflicting types for 'pa_context_get_state' -pa_context_state_t pa_context_get_state(pa_context* c) { - ^ -../../../../../../../../../../usr/local/include/pulse/context.h:199:20: note: previous declaration is here -pa_context_state_t pa_context_get_state(const pa_context *c); - ^ -gen/media/audio/pulse/pulse_stubs.cc:171:29: error: conflicting types for 'pa_operation_get_state' -extern pa_operation_state_t pa_operation_get_state(pa_operation* o) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/operation.h:52:22: note: previous declaration is here -pa_operation_state_t pa_operation_get_state(const pa_operation *o); - ^ -gen/media/audio/pulse/pulse_stubs.cc:172:23: error: conflicting types for 'pa_operation_get_state' -pa_operation_state_t pa_operation_get_state(pa_operation* o) { - ^ -../../../../../../../../../../usr/local/include/pulse/operation.h:52:22: note: previous declaration is here -pa_operation_state_t pa_operation_get_state(const pa_operation *o); - ^ -gen/media/audio/pulse/pulse_stubs.cc:211:17: error: conflicting types for 'pa_stream_get_device_index' -extern uint32_t pa_stream_get_device_index(pa_stream* s) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/stream.h:366:10: note: previous declaration is here -uint32_t pa_stream_get_device_index(const pa_stream *s); - ^ -gen/media/audio/pulse/pulse_stubs.cc:212:11: error: conflicting types for 'pa_stream_get_device_index' -uint32_t pa_stream_get_device_index(pa_stream* s) { - ^ -../../../../../../../../../../usr/local/include/pulse/stream.h:366:10: note: previous declaration is here -uint32_t pa_stream_get_device_index(const pa_stream *s); - ^ -gen/media/audio/pulse/pulse_stubs.cc:219:26: error: conflicting types for 'pa_stream_get_state' -extern pa_stream_state_t pa_stream_get_state(pa_stream* p) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/stream.h:345:19: note: previous declaration is here -pa_stream_state_t pa_stream_get_state(const pa_stream *p); - ^ -gen/media/audio/pulse/pulse_stubs.cc:220:20: error: conflicting types for 'pa_stream_get_state' -pa_stream_state_t pa_stream_get_state(pa_stream* p) { - ^ -../../../../../../../../../../usr/local/include/pulse/stream.h:345:19: note: previous declaration is here -pa_stream_state_t pa_stream_get_state(const pa_stream *p); - ^ -gen/media/audio/pulse/pulse_stubs.cc:235:12: error: conflicting types for 'pa_proplist_contains' -extern int pa_proplist_contains(pa_proplist* p, const char* key) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/proplist.h:390:5: note: previous declaration is here -int pa_proplist_contains(const pa_proplist *p, const char *key); - ^ -gen/media/audio/pulse/pulse_stubs.cc:236:6: error: conflicting types for 'pa_proplist_contains' -int pa_proplist_contains(pa_proplist* p, const char* key) { - ^ -../../../../../../../../../../usr/local/include/pulse/proplist.h:390:5: note: previous declaration is here -int pa_proplist_contains(const pa_proplist *p, const char *key); - ^ -gen/media/audio/pulse/pulse_stubs.cc:243:20: error: conflicting types for 'pa_proplist_gets' -extern const char* pa_proplist_gets(pa_proplist* p, const char* key) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/proplist.h:314:13: note: previous declaration is here -const char *pa_proplist_gets(const pa_proplist *p, const char *key); - ^ -gen/media/audio/pulse/pulse_stubs.cc:244:14: error: conflicting types for 'pa_proplist_gets' -const char* pa_proplist_gets(pa_proplist* p, const char* key) { - ^ -../../../../../../../../../../usr/local/include/pulse/proplist.h:314:13: note: previous declaration is here -const char *pa_proplist_gets(const pa_proplist *p, const char *key); - ^ -gen/media/audio/pulse/pulse_stubs.cc:251:15: error: conflicting types for 'pa_stream_readable_size' -extern size_t pa_stream_readable_size(pa_stream *p) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/stream.h:574:8: note: previous declaration is here -size_t pa_stream_readable_size(const pa_stream *p); - ^ -gen/media/audio/pulse/pulse_stubs.cc:252:9: error: conflicting types for 'pa_stream_readable_size' -size_t pa_stream_readable_size(pa_stream *p) { - ^ -../../../../../../../../../../usr/local/include/pulse/stream.h:574:8: note: previous declaration is here -size_t pa_stream_readable_size(const pa_stream *p); - ^ -gen/media/audio/pulse/pulse_stubs.cc:279:12: error: conflicting types for 'pa_context_errno' -extern int pa_context_errno(pa_context *c) __attribute__((weak)); - ^ -../../../../../../../../../../usr/local/include/pulse/context.h:193:5: note: previous declaration is here -int pa_context_errno(const pa_context *c); - ^ -gen/media/audio/pulse/pulse_stubs.cc:280:6: error: conflicting types for 'pa_context_errno' -int pa_context_errno(pa_context *c) { - ^ -../../../../../../../../../../usr/local/include/pulse/context.h:193:5: note: previous declaration is here -int pa_context_errno(const pa_context *c); - ^ - ---- src/3rdparty/chromium/media/audio/pulse/pulse.sigs.orig 2019-03-19 08:52:48 UTC -+++ src/3rdparty/chromium/media/audio/pulse/pulse.sigs -@@ -24,11 +24,11 @@ pa_operation* pa_context_get_source_info_by_index(pa_c - pa_operation* pa_context_get_source_info_by_name(pa_context* c, const char* name, pa_source_info_cb_t cb, void *userdata); - pa_operation* pa_context_get_source_info_list(pa_context* c, pa_source_info_cb_t cb, void* userdata); - pa_operation* pa_context_get_sink_info_list(pa_context* c, pa_sink_info_cb_t cb, void* userdata); --pa_context_state_t pa_context_get_state(pa_context* c); -+pa_context_state_t pa_context_get_state(const pa_context *c); - pa_context* pa_context_new(pa_mainloop_api* mainloop, const char* name); - pa_operation* pa_context_set_source_volume_by_index(pa_context* c, uint32_t idx, const pa_cvolume* volume, pa_context_success_cb_t cb, void* userdata); - void pa_context_set_state_callback(pa_context* c, pa_context_notify_cb_t cb, void* userdata); --pa_operation_state_t pa_operation_get_state(pa_operation* o); -+pa_operation_state_t pa_operation_get_state(const pa_operation* o); - void pa_context_unref(pa_context* c); - void pa_operation_unref(pa_operation* o); - int pa_stream_begin_write(pa_stream* p, void** data, size_t* nbytes); -@@ -38,23 +38,23 @@ pa_operation* pa_stream_cork(pa_stream* s, int b, pa_s - int pa_stream_disconnect(pa_stream* s); - int pa_stream_drop(pa_stream *p); - pa_operation* pa_stream_flush(pa_stream* s, pa_stream_success_cb_t cb, void* userdata); --uint32_t pa_stream_get_device_index(pa_stream* s); -+uint32_t pa_stream_get_device_index(const pa_stream* s); - int pa_stream_get_latency(pa_stream* s, pa_usec_t* r_usec, int* negative); --pa_stream_state_t pa_stream_get_state(pa_stream* p); -+pa_stream_state_t pa_stream_get_state(const pa_stream* p); - pa_stream* pa_stream_new(pa_context* c, const char* name, const pa_sample_spec* ss, const pa_channel_map * map); - pa_stream* pa_stream_new_with_proplist(pa_context* c, const char* name, const pa_sample_spec* ss, const pa_channel_map* map, pa_proplist* p); - pa_proplist* pa_proplist_new(void); --int pa_proplist_contains(pa_proplist* p, const char* key); -+int pa_proplist_contains(const pa_proplist* p, const char* key); - void pa_proplist_free(pa_proplist* p); --const char* pa_proplist_gets(pa_proplist* p, const char* key); -+const char* pa_proplist_gets(const pa_proplist* p, const char* key); - int pa_proplist_sets(pa_proplist* p, const char* key, const char* value); --size_t pa_stream_readable_size(pa_stream *p); -+size_t pa_stream_readable_size(const pa_stream *p); - int pa_stream_peek(pa_stream* p, const void** data, size_t* nbytes); - void pa_stream_set_read_callback(pa_stream* p, pa_stream_request_cb_t cb, void* userdata); - void pa_stream_set_state_callback(pa_stream* s, pa_stream_notify_cb_t cb, void* userdata); - int pa_stream_write(pa_stream* p, const void* data, size_t nbytes, pa_free_cb_t free_cb, int64_t offset, pa_seek_mode_t seek); - void pa_stream_set_write_callback(pa_stream *p, pa_stream_request_cb_t cb, void *userdata); - void pa_stream_unref(pa_stream* s); --int pa_context_errno(pa_context *c); -+int pa_context_errno(const pa_context *c); - const char* pa_strerror(int error); - pa_cvolume* pa_cvolume_set(pa_cvolume* a, unsigned channels, pa_volume_t v); Property changes on: head/www/qt5-webengine/files/patch-src_3rdparty_chromium_media_audio_pulse_pulse.sigs ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/www/qt5-webengine/files/patch-mkspecs_features_configure.prf =================================================================== --- head/www/qt5-webengine/files/patch-mkspecs_features_configure.prf (revision 517079) +++ head/www/qt5-webengine/files/patch-mkspecs_features_configure.prf (revision 517080) @@ -1,34 +1,34 @@ ---- mkspecs/features/configure.prf.orig 2018-11-27 04:10:38 UTC +--- mkspecs/features/configure.prf.orig 2019-10-23 10:30:33 UTC +++ mkspecs/features/configure.prf -@@ -22,7 +22,7 @@ defineTest(runConfigure) { +@@ -26,7 +26,7 @@ defineTest(runConfigure) { return(false) } - linux:contains(QT_CONFIG,no-pkg-config) { + unix:contains(QT_CONFIG,no-pkg-config) { skipBuild("pkg-config is required") return(false) } -@@ -64,17 +64,17 @@ defineTest(runConfigure) { +@@ -68,17 +68,17 @@ defineTest(runConfigure) { return(false); } - linux { + unix { !qtConfig(webengine-host-pkg-config) { skipBuild("Host pkg-config is required") return(false) } - !qtConfig(webengine-system-glibc) { -- skipBuild("A suitable version of libc could not be found. See: https://sourceware.org/bugzilla/show_bug.cgi?id=14898") +- skipBuild("A suitable version >= 2.27 of libc could not be found.") - return(false) - } + #!qtConfig(webengine-system-glibc) { -+ # skipBuild("A suitable version of libc could not be found. See: https://sourceware.org/bugzilla/show_bug.cgi?id=14898") ++ # skipBuild("A suitable version >= 2.27 of libc could not be found.") + # return(false) + #} QT_FOR_CONFIG += gui-private Index: head/www/qt5-webengine/files/patch-src_3rdparty_chromium_third__party_webrtc_rtc__base_physical__socket__server.cc =================================================================== --- head/www/qt5-webengine/files/patch-src_3rdparty_chromium_third__party_webrtc_rtc__base_physical__socket__server.cc (revision 517079) +++ head/www/qt5-webengine/files/patch-src_3rdparty_chromium_third__party_webrtc_rtc__base_physical__socket__server.cc (revision 517080) @@ -1,56 +1,65 @@ ---- src/3rdparty/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc.orig 2019-05-23 12:39:34 UTC +--- src/3rdparty/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc.orig 2019-10-21 08:14:54 UTC +++ src/3rdparty/chromium/third_party/webrtc/rtc_base/physical_socket_server.cc -@@ -66,7 +66,7 @@ typedef void* SockOptArg; +@@ -51,7 +51,7 @@ + #include "rtc_base/null_socket_server.h" + #include "rtc_base/time_utils.h" +-#if defined(WEBRTC_LINUX) ++#if defined(WEBRTC_LINUX) && !defined(WEBRTC_BSD) + #include + #endif + +@@ -70,7 +70,7 @@ typedef void* SockOptArg; + #endif // WEBRTC_POSIX -#if defined(WEBRTC_POSIX) && !defined(WEBRTC_MAC) && !defined(__native_client__) +#if defined(WEBRTC_POSIX) && !defined(WEBRTC_MAC) && !defined(WEBRTC_BSD) && !defined(__native_client__) int64_t GetSocketRecvTimestamp(int socket) { struct timeval tv_ioctl; -@@ -286,7 +286,7 @@ int PhysicalSocket::GetOption(Option opt, int* value) +@@ -290,7 +290,7 @@ int PhysicalSocket::GetOption(Option opt, int* value) socklen_t optlen = sizeof(*value); int ret = ::getsockopt(s_, slevel, sopt, (SockOptArg)value, &optlen); if (ret != -1 && opt == OPT_DONTFRAGMENT) { -#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) +#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) && !defined(WEBRTC_BSD) *value = (*value != IP_PMTUDISC_DONT) ? 1 : 0; #endif } -@@ -299,7 +299,7 @@ int PhysicalSocket::SetOption(Option opt, int value) { +@@ -303,7 +303,7 @@ int PhysicalSocket::SetOption(Option opt, int value) { if (TranslateOption(opt, &slevel, &sopt) == -1) return -1; if (opt == OPT_DONTFRAGMENT) { -#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) +#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) && !defined(WEBRTC_BSD) value = (value) ? IP_PMTUDISC_DO : IP_PMTUDISC_DONT; #endif } -@@ -309,7 +309,7 @@ int PhysicalSocket::SetOption(Option opt, int value) { +@@ -313,7 +313,7 @@ int PhysicalSocket::SetOption(Option opt, int value) { int PhysicalSocket::Send(const void* pv, size_t cb) { int sent = DoSend( s_, reinterpret_cast(pv), static_cast(cb), -#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) +#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) && !defined(WEBRTC_BSD) // Suppress SIGPIPE. Without this, attempting to send on a socket whose // other end is closed will result in a SIGPIPE signal being raised to // our process, which by default will terminate the process, which we -@@ -338,7 +338,7 @@ int PhysicalSocket::SendTo(const void* buffer, +@@ -342,7 +342,7 @@ int PhysicalSocket::SendTo(const void* buffer, size_t len = addr.ToSockAddrStorage(&saddr); int sent = DoSendTo(s_, static_cast(buffer), static_cast(length), -#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) +#if defined(WEBRTC_LINUX) && !defined(WEBRTC_ANDROID) && !defined(WEBRTC_BSD) // Suppress SIGPIPE. See above for explanation. MSG_NOSIGNAL, #else -@@ -529,7 +529,7 @@ int PhysicalSocket::TranslateOption(Option opt, int* s +@@ -533,7 +533,7 @@ int PhysicalSocket::TranslateOption(Option opt, int* s *slevel = IPPROTO_IP; *sopt = IP_DONTFRAGMENT; break; -#elif defined(WEBRTC_MAC) || defined(BSD) || defined(__native_client__) +#elif defined(WEBRTC_MAC) || defined(WEBRTC_BSD) || defined(__native_client__) RTC_LOG(LS_WARNING) << "Socket::OPT_DONTFRAGMENT not supported."; return -1; #elif defined(WEBRTC_POSIX) Index: head/www/qt5-webengine/files/patch-src_core_core__module.pro =================================================================== --- head/www/qt5-webengine/files/patch-src_core_core__module.pro (revision 517079) +++ head/www/qt5-webengine/files/patch-src_core_core__module.pro (revision 517080) @@ -1,51 +1,43 @@ -* Do not pass --no-undefined and -z,defs to the linker because of environ(7). -* Extend some Linux-only compiler arguments to FreeBSD. -* Generate split out debug files on FreeBSD too. - ---- src/core/core_module.pro.orig 2019-05-24 09:01:39 UTC +--- src/core/core_module.pro.orig 2019-10-23 10:30:33 UTC +++ src/core/core_module.pro @@ -4,6 +4,9 @@ include(core_common.pri) # Needed to set a CFBundleIdentifier QMAKE_INFO_PLIST = Info_mac.plist +# Do not pass --no-undefined to the linker because of environ(7) usage. +freebsd: QMAKE_LFLAGS_NOUNDEF = + linking_pri = $$OUT_PWD/$$getConfigDir()/$${TARGET}.pri !include($$linking_pri) { -@@ -30,21 +33,21 @@ RSP_ARCHIVE_FILE = $$OUT_PWD/$$getConfigDir()/$${TARGE +@@ -30,10 +33,10 @@ RSP_ARCHIVE_FILE = $$OUT_PWD/$$getConfigDir()/$${TARGE for(archive, NINJA_ARCHIVES): RSP_A_CONTENT += $$archive write_file($$RSP_ARCHIVE_FILE, RSP_A_CONTENT) macos:LIBS_PRIVATE += -Wl,-filelist,$$shell_quote($$RSP_OBJECT_FILE) -linux:QMAKE_LFLAGS += @$${RSP_OBJECT_FILE} +unix:QMAKE_LFLAGS += @$${RSP_OBJECT_FILE} # QTBUG-58710 add main rsp file on windows win32:QMAKE_LFLAGS += @$${RSP_OBJECT_FILE} -linux:QMAKE_LFLAGS += -Wl,--start-group @$${RSP_ARCHIVE_FILE} -Wl,--end-group +unix:QMAKE_LFLAGS += -Wl,--start-group @$${RSP_ARCHIVE_FILE} -Wl,--end-group else: LIBS_PRIVATE += $$NINJA_ARCHIVES LIBS_PRIVATE += $$NINJA_LIB_DIRS $$NINJA_LIBS # GN's LFLAGS doesn't always work across all the Linux configurations we support. - # The Windows and macOS ones from GN does provide a few useful flags however +@@ -41,7 +44,7 @@ LIBS_PRIVATE += $$NINJA_LIB_DIRS $$NINJA_LIBS + unix:qtConfig(webengine-noexecstack): \ + QMAKE_LFLAGS += -Wl,-z,noexecstack -linux { +unix { - QMAKE_LFLAGS += -Wl,--gc-sections -Wl,-O1 -Wl,-z,now - # Embedded address sanitizer symbols are undefined and are picked up by the dynamic link loader - # at runtime. Thus we do not to pass the linker flag below, because the linker would complain - # about the undefined sanitizer symbols. -- !sanitizer: QMAKE_LFLAGS += -Wl,-z,defs -+ #!sanitizer: QMAKE_LFLAGS += -Wl,-z,defs - } else { - QMAKE_LFLAGS += $$NINJA_LFLAGS - } -@@ -85,7 +88,7 @@ win32 { + # add chromium flags + for(flag, NINJA_LFLAGS) { + # filter out some flags +@@ -91,7 +94,7 @@ win32 { # and doesn't let Chromium get access to libc symbols through dlsym. CONFIG -= bsymbolic_functions -linux:qtConfig(separate_debug_info): QMAKE_POST_LINK="cd $(DESTDIR) && $(STRIP) --strip-unneeded $(TARGET)" +unix:qtConfig(separate_debug_info): QMAKE_POST_LINK="cd $(DESTDIR) && $(STRIP) --strip-unneeded $(TARGET)" REPACK_DIR = $$OUT_PWD/$$getConfigDir() Index: head/www/qt5-webkit/Makefile =================================================================== --- head/www/qt5-webkit/Makefile (revision 517079) +++ head/www/qt5-webkit/Makefile (revision 517080) @@ -1,61 +1,61 @@ # $FreeBSD$ PORTNAME= webkit DISTVERSION= 5.212.0-alpha3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www MASTER_SITES= https://github.com/qt${PORTNAME}/qt${PORTNAME}/releases/download/${DISTNAME}/ PKGNAMEPREFIX= qt5- DISTNAME= qt${PORTNAME}-${DISTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= QtWebKit with a more modern WebKit code base LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libhyphen.so:textproc/hyphen \ libicui18n.so:devel/icu \ libpng.so:graphics/png \ libwebp.so:graphics/webp \ libwoff2dec.so:devel/woff2 USES= bison cmake compiler:c++11-lang gnome gperf jpeg \ pathfix perl5 pkgconfig python:2.7,build qt:5 sqlite:3 \ tar:xz xorg USE_GNOME= glib20 libxml2 libxslt USE_PERL5= build USE_QT= core declarative gui location network opengl printsupport \ sensors testlib webchannel widgets \ buildtools_build qmake_build USE_RUBY= yes USE_XORG= x11 xcomposite xrender # Fix pkgconfig install paths. PATHFIX_CMAKELISTSTXT= PlatformQt.cmake RUBY_NO_RUN_DEPENDS= yes CMAKE_ARGS= -DPORT:STRING="Qt" \ -DKDE_INSTALL_INCLUDEDIR:PATH="${QT_INCDIR_REL}" \ -DKDE_INSTALL_LIBDIR:PATH="${QT_LIBDIR_REL}" CMAKE_ON= ENABLE_OPENGL CMAKE_OFF= USE_QT_MULTIMEDIA USE_LD_GOLD # Add -DNDEBUG to CXXFLAGS which in turn gets sucked into # CMAKE_CXX_FLAGS_RELEASE where we actually want to have it. # [for the ASSERT in Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp ] CXXFLAGS+= -DNDEBUG PLIST_SUB= FULLVER="${PORTVERSION:R}" SUB_FILES= pkg-install SUB_LIST= QT_INCDIR="${QT_INCDIR}" OPTIONS_DEFINE= GSTREAMER OPTIONS_DEFAULT= GSTREAMER GSTREAMER_LIB_DEPENDS= libgstapp-1.0.so:multimedia/gstreamer1-plugins \ libgstbase-1.0.so:multimedia/gstreamer1 GSTREAMER_USE= GSTREAMER1=core GSTREAMER_CMAKE_OFF= -DUSE_GSTREAMER:BOOL=OFF .include Index: head/www/qt5-websockets/Makefile =================================================================== --- head/www/qt5-websockets/Makefile (revision 517079) +++ head/www/qt5-websockets/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= websockets DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt implementation of WebSocket protocol USES= compiler:c++11-lang qmake:norecursive qt-dist:5,websockets USE_QT= buildtools_build core network USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/www/qt5-websockets-qml/Makefile =================================================================== --- head/www/qt5-websockets-qml/Makefile (revision 517079) +++ head/www/qt5-websockets-qml/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= websockets-qml DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt implementation of WebSocket protocol (QML bindings) USES= compiler:c++11-lang qmake qt-dist:5,websockets USE_QT= buildtools_build core declarative network websockets USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/www/qt5-webview/Makefile =================================================================== --- head/www/qt5-webview/Makefile (revision 517079) +++ head/www/qt5-webview/Makefile (revision 517080) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= webview DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt component for displaying web content USES= compiler:c++11-lang gl qmake:norecursive qt-dist:5 USE_GL= gl USE_QT= core declarative gui location network webchannel webengine \ buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/www/qt5-webview/files/patch-qtwebview.pro =================================================================== --- head/www/qt5-webview/files/patch-qtwebview.pro (nonexistent) +++ head/www/qt5-webview/files/patch-qtwebview.pro (revision 517080) @@ -0,0 +1,6 @@ +--- qtwebview.pro.orig 2019-10-14 10:11:35 UTC ++++ qtwebview.pro +@@ -1,3 +1 @@ +-requires(qtConfig(gui)) +- + load(qt_parts) Property changes on: head/www/qt5-webview/files/patch-qtwebview.pro ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/qt5-qev/Makefile =================================================================== --- head/x11/qt5-qev/Makefile (revision 517079) +++ head/x11/qt5-qev/Makefile (revision 517080) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= qev DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11 PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt QWidget events introspection tool USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core widgets WRKSRC_SUBDIR= src/${PORTNAME} # qev is not connected to qttool's build system, so we cannot just run qmake qt-dist:5,tools # and set {BUILD,INSTALL}_WRKSRC. # Instead, we run qmake qt-dist:5,tools from src/${PORTNAME} but need to copy .qmake qt-dist:5,tools.conf to # it for all required variables to be set (MODULE_VERSION etc). post-patch: ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC} .include Index: head/x11/qt5-x11extras/Makefile =================================================================== --- head/x11/qt5-x11extras/Makefile (revision 517079) +++ head/x11/qt5-x11extras/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= x11extras DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11 PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt platform-specific features for X11-based systems USES= compiler:c++11-lang qmake qt-dist:5,x11extras perl5 USE_QT= core gui USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/x11-themes/qt5-style-plugins/Makefile =================================================================== --- head/x11-themes/qt5-style-plugins/Makefile (revision 517079) +++ head/x11-themes/qt5-style-plugins/Makefile (revision 517080) @@ -1,30 +1,30 @@ # Created by: Marie Loise Nolden # $FreeBSD$ PORTNAME= qt5-style-plugins DISTVERSIONPREFIX= v DISTVERSION= 5.0.0-23 -PORTREVISION= 6 +PORTREVISION= 7 DISTVERSIONSUFFIX= -g335dbe CATEGORIES= x11-themes DIST_SUBDIR= KDE/Qt/addons MAINTAINER= kde@FreeBSD.org COMMENT= Additional Styles for Qt 5 and KDE LICENSE= LGPL21 LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 USES= compiler:c++11-lang gettext-runtime gl gnome pkgconfig qmake \ qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= qt GH_PROJECT= qtstyleplugins USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango USE_QT= core dbus gui widgets buildtools_build USE_GL= gl USE_XORG= x11 xext .include Index: head/x11-toolkits/qt5-charts/Makefile =================================================================== --- head/x11-toolkits/qt5-charts/Makefile (revision 517079) +++ head/x11-toolkits/qt5-charts/Makefile (revision 517080) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= charts DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 charts module USES= compiler:c++11-lang qmake qt-dist:5,charts tar:xz USE_QT= core declarative network gui widgets designer \ buildtools_build qmake_build .include Index: head/x11-toolkits/qt5-datavis3d/Makefile =================================================================== --- head/x11-toolkits/qt5-datavis3d/Makefile (revision 517079) +++ head/x11-toolkits/qt5-datavis3d/Makefile (revision 517080) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= datavis3d DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 3D data visualization module USE_QT= core declarative network gui widgets designer buildtools_build USES= compiler:c++11-lang qmake qt-dist:5,datavis3d USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/x11-toolkits/qt5-declarative/Makefile =================================================================== --- head/x11-toolkits/qt5-declarative/Makefile (revision 517079) +++ head/x11-toolkits/qt5-declarative/Makefile (revision 517080) @@ -1,31 +1,30 @@ # $FreeBSD$ PORTNAME= declarative DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt declarative framework for dynamic user interfaces USES= compiler:c++11-lang gl python:build qmake:norecursive \ qt-dist:5 USE_GL= gl USE_QT= core gui network sql testlib \ widgets xmlpatterns buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} CONFLICTS= qt5-declarative-render2d-* qt5-qml qt5-quick QT_DEFINES= ACCESSIBILITY QT_CONFIG= accessibility accessibility-atspi-bridge post-patch: # qtdeclarative.pro wants to run python, replace that with PYTHON_CMD ${REINPLACE_CMD} '/py_out/s#python#${PYTHON_CMD}#g' \ ${WRKSRC}/qtdeclarative.pro ${REINPLACE_CMD} 's,python,${PYTHON_CMD},g' \ ${WRKSRC}/src/3rdparty/masm/masm.pri .include Index: head/x11-toolkits/qt5-declarative/pkg-plist =================================================================== --- head/x11-toolkits/qt5-declarative/pkg-plist (revision 517079) +++ head/x11-toolkits/qt5-declarative/pkg-plist (revision 517080) @@ -1,853 +1,863 @@ %%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qpacket_p.h %%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qpacketprotocol_p.h %%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qversionedpacket_p.h %%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocol %%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocolDepends %%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocolVersion %%QT_INCDIR%%/QtPacketProtocol/qtpacketprotocolversion.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qabstractanimationjob_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qanimationgroupjob_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qanimationjobutil_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qbitfield_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qcontinuinganimationgroupjob_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qfieldlist_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qfinitestack_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qflagpointer_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qhashedstring_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qintrusivelist_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsengine_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsvalue_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsvalueiterator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qlazilyallocated_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qparallelanimationgroupjob_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qpauseanimationjob_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qpodvector_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlabstractbinding_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlabstractprofileradapter_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmladaptormodel_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlapplicationengine_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbind_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbinding_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlboundsignal_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlboundsignalexpressionpointer_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbuiltinfunctions_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlchangeset_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcleanup_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcomponent_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcomponentattached_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlconfigurabledebugservice_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlconnections_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcontext_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcustomparser_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldata_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugconnector_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugpluginmanager_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugserver_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugserverconnection_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugservice_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugservicefactory_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugserviceinterfaces_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugstatesdelegate_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldelayedcallqueue_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldelegatecomponent_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldelegatemodel_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldelegatemodel_p_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldirparser_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlengine_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlexpression_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlextensionplugin_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlfileselector_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlglobal_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlguard_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlimport_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlincubator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlinstantiator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlinstantiator_p_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlirbuilder_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljavascriptexpression_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsast_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsastfwd_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsastvisitor_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsengine_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsglobal_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsgrammar_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljskeywords_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljslexer_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsmemorypool_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsparser_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljssourcelocation_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllist_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistaccessor_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistcompositor_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistmodel_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistmodel_p_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistmodelworkeragent_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistwrapper_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllocale_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlloggingcategory_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmemoryprofiler_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmetatype_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmodelindexvaluetype_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmodelsmodule_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlnotifier_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlnullablevalue_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlobjectcreator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlobjectmodel_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlopenmetaobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlplatform_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlprofiler_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlprofilerdefinitions_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlproperty_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertycache_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertycachecreator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyindex_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyvalidator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyvalueinterceptor_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlproxymetaobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlrefcount_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlscriptstring_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlsourcecoordinate_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlstringconverters_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltableinstancemodel_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlthread_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltimer_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypecompiler_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypeloader_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypenamecache_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypenotavailable_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypewrapper_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetype_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetypeproxybinding_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetypewrapper_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvme_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvmemetaobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlxmlhttprequest_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qquickpackage_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qquickworkerscript_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qrecursionwatcher_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qrecyclepool_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qsequentialanimationgroupjob_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qtqml-config_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qtqmlglobal_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4alloca_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4argumentsobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arraybuffer_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arraydata_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arrayiterator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arrayobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4assemblercommon_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4atomics_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4baselineassembler_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4baselinejit_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4booleanobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4bytecodegenerator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4bytecodehandler_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4codegen_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilationunitmapper_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compileddata_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compiler_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilercontext_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilercontrolflow_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilerscanfunctions_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4context_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4dataview_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4dateobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4debugging_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4domerrors_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4engine_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4enginebase_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4errorobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4estable_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4executableallocator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4function_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4functionobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4functiontable_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4generatorobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4global_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4globalobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4heap_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4identifier_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4identifiertable_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4include_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4instr_moth_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4internalclass_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4iterator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4jithelpers_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4jscall_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4jsonobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4lookup_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4managed_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mapiterator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mapobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4math_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mathobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4memberdata_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mm_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mmdefs_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4module_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4numberobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4object_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4objectiterator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4objectproto_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4persistent_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4profiling_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4promiseobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4property_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4propertykey_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4proxy_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4qmlcontext_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4qobjectwrapper_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4reflect_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4regexp_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4regexpobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4runtime_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4runtimeapi_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4runtimecodegen_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4scopedvalue_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4script_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sequenceobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4serialize_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4setiterator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4setobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sparsearray_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sqlerrors_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stackframe_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4string_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stringiterator_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stringobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4symbol_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4typedarray_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4util_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4value_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4variantobject_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4vme_moth_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4vtable_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4writebarrier_p.h %%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv8engine_p.h %%QT_INCDIR%%/QtQml/QJSEngine %%QT_INCDIR%%/QtQml/QJSValue %%QT_INCDIR%%/QtQml/QJSValueIterator %%QT_INCDIR%%/QtQml/QJSValueList %%QT_INCDIR%%/QtQml/QQmlAbstractUrlInterceptor %%QT_INCDIR%%/QtQml/QQmlApplicationEngine %%QT_INCDIR%%/QtQml/QQmlAttachedPropertiesFunc %%QT_INCDIR%%/QtQml/QQmlComponent %%QT_INCDIR%%/QtQml/QQmlContext %%QT_INCDIR%%/QtQml/QQmlDebuggingEnabler %%QT_INCDIR%%/QtQml/QQmlEngine %%QT_INCDIR%%/QtQml/QQmlError %%QT_INCDIR%%/QtQml/QQmlExpression %%QT_INCDIR%%/QtQml/QQmlExtensionInterface %%QT_INCDIR%%/QtQml/QQmlExtensionPlugin %%QT_INCDIR%%/QtQml/QQmlFile %%QT_INCDIR%%/QtQml/QQmlFileSelector %%QT_INCDIR%%/QtQml/QQmlImageProviderBase %%QT_INCDIR%%/QtQml/QQmlIncubationController %%QT_INCDIR%%/QtQml/QQmlIncubator %%QT_INCDIR%%/QtQml/QQmlInfo %%QT_INCDIR%%/QtQml/QQmlListProperty %%QT_INCDIR%%/QtQml/QQmlListReference %%QT_INCDIR%%/QtQml/QQmlNetworkAccessManagerFactory %%QT_INCDIR%%/QtQml/QQmlParserStatus %%QT_INCDIR%%/QtQml/QQmlProperties %%QT_INCDIR%%/QtQml/QQmlProperty %%QT_INCDIR%%/QtQml/QQmlPropertyMap %%QT_INCDIR%%/QtQml/QQmlPropertyValueSource %%QT_INCDIR%%/QtQml/QQmlScriptString %%QT_INCDIR%%/QtQml/QQmlTypeInfo %%QT_INCDIR%%/QtQml/QQmlTypesExtensionInterface %%QT_INCDIR%%/QtQml/QtQml %%QT_INCDIR%%/QtQml/QtQmlDepends %%QT_INCDIR%%/QtQml/QtQmlVersion %%QT_INCDIR%%/QtQml/qjsengine.h %%QT_INCDIR%%/QtQml/qjsvalue.h %%QT_INCDIR%%/QtQml/qjsvalueiterator.h %%QT_INCDIR%%/QtQml/qqml.h %%QT_INCDIR%%/QtQml/qqmlabstracturlinterceptor.h %%QT_INCDIR%%/QtQml/qqmlapplicationengine.h %%QT_INCDIR%%/QtQml/qqmlcomponent.h %%QT_INCDIR%%/QtQml/qqmlcontext.h %%QT_INCDIR%%/QtQml/qqmldebug.h %%QT_INCDIR%%/QtQml/qqmlengine.h %%QT_INCDIR%%/QtQml/qqmlerror.h %%QT_INCDIR%%/QtQml/qqmlexpression.h %%QT_INCDIR%%/QtQml/qqmlextensioninterface.h %%QT_INCDIR%%/QtQml/qqmlextensionplugin.h %%QT_INCDIR%%/QtQml/qqmlfile.h %%QT_INCDIR%%/QtQml/qqmlfileselector.h %%QT_INCDIR%%/QtQml/qqmlincubator.h %%QT_INCDIR%%/QtQml/qqmlinfo.h %%QT_INCDIR%%/QtQml/qqmllist.h %%QT_INCDIR%%/QtQml/qqmlnetworkaccessmanagerfactory.h %%QT_INCDIR%%/QtQml/qqmlparserstatus.h %%QT_INCDIR%%/QtQml/qqmlprivate.h %%QT_INCDIR%%/QtQml/qqmlproperty.h %%QT_INCDIR%%/QtQml/qqmlpropertymap.h %%QT_INCDIR%%/QtQml/qqmlpropertyvaluesource.h %%QT_INCDIR%%/QtQml/qqmlscriptstring.h %%QT_INCDIR%%/QtQml/qtqml-config.h %%QT_INCDIR%%/QtQml/qtqmlglobal.h %%QT_INCDIR%%/QtQml/qtqmlversion.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugclient_p_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugconnection_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugmessageclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginecontrolclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginecontrolclient_p_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginedebugclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginedebugclient_p_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlinspectorclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlinspectorclient_p_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlpreviewclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlpreviewclient_p_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclient_p_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclientdefinitions_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerevent_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilereventlocation_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilereventreceiver_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilereventtype_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilertypedevent_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qv4debugclient_p.h %%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qv4debugclient_p_p.h %%QT_INCDIR%%/QtQmlDebug/QtQmlDebug %%QT_INCDIR%%/QtQmlDebug/QtQmlDebugDepends %%QT_INCDIR%%/QtQmlDebug/QtQmlDebugVersion %%QT_INCDIR%%/QtQmlDebug/qtqmldebugversion.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qaccessiblequickitem_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qaccessiblequickview_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qqmldesignermetaobject_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickaccessibleattached_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickaccessiblefactory_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanchors_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanchors_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedimage_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedimage_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedsprite_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedsprite_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimation_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimation_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimationcontroller_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimator_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimator_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatorcontroller_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatorjob_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickapplication_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickbehavior_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickborderimage_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickborderimage_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcanvascontext_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcanvasitem_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickclipnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2d_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dcommandbuffer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dtexture_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dtile_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignercustomobjectdata_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignercustomparserobject_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupport_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportitems_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportmetainfo_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportproperties_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportpropertychanges_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportstates_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignerwindowmanager_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdrag_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdragaxis_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdraghandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdroparea_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickevents_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickable_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickable_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickablebehavior_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflipable_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfocusscope_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfontloader_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfontmetrics_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgenericshadereffect_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgraphicsinfo_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgridview_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickhandlerpoint_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickhoverhandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimage_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimage_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimagebase_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimagebase_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimageprovider_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimplicitsizeitem_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimplicitsizeitem_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitem_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemanimation_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemanimation_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemchangelistener_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemsmodule_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemview_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemview_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemviewfxitem_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemviewtransition_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicklistview_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickloader_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickloader_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmousearea_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmousearea_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmultipointhandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmultipointtoucharea_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickopenglinfo_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickopenglshadereffect_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickopenglshadereffectnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpainteditem_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpath_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpath_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathinterpolator_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathview_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathview_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpincharea_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpincharea_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpinchhandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpixmapcache_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerdevicehandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerdevicehandler_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerhandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerhandler_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointhandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpositioners_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpositioners_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickprofiler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpropertychanges_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrectangle_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrectangle_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrendercontrol_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrepeater_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrepeater_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickscalegrid_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickscreen_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffect_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffectmesh_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffectsource_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshortcut_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksinglepointhandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksinglepointhandler_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksmoothedanimation_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksmoothedanimation_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspringanimation_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksprite_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspriteengine_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspritesequence_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspritesequence_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstate_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstate_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstatechangescript_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstategroup_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstateoperations_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstyledtext_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksvgparser_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksystempalette_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktableview_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktableview_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktaphandler_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktext_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktext_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextcontrol_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextcontrol_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextdocument_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextedit_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextedit_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextinput_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextinput_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextmetrics_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextnodeengine_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextutil_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktimeline_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktransition_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktransitionmanager_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktranslate_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickutilmodule_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickvalidator_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickvaluetypes_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickview_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindow_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindowattached_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindowmodule_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgabstractrenderer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgabstractsoftwarerenderer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgadaptationlayer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgareaallocator_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgatlastexture_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbasicglyphnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbasicinternalimagenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbasicinternalrectanglenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbatchrenderer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcompressedatlastexture_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcompressedtexture_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcontext_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcontextplugin_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultcontext_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultdistancefieldglyphcache_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultglyphnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultglyphnode_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultimagenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultinternalimagenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultinternalrectanglenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultlayer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultninepatchnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultpainternode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultrectanglenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultrendercontext_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultspritenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdepthstencilbuffer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdistancefieldglyphnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdistancefieldglyphnode_p_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgengine_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsggeometry_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgmaterialshader_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgnodeupdater_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrenderer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrenderloop_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrendernode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgshadersourcebuilder_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareadaptation_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarecontext_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareglyphnode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareinternalimagenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareinternalrectanglenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarelayer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepainternode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepixmaprenderer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepixmaptexture_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepublicnodes_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderablenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderablenodeupdater_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderer_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderlistbuilder_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderloop_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarespritenode_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarethreadedrenderloop_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexture_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexturematerial_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexturereader_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgthreadedrenderloop_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgwindowsrenderloop_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquick-config_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquick2_p.h %%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquickglobal_p.h %%QT_INCDIR%%/QtQuick/QQuickAsyncImageProvider %%QT_INCDIR%%/QtQuick/QQuickFramebufferObject %%QT_INCDIR%%/QtQuick/QQuickImageProvider %%QT_INCDIR%%/QtQuick/QQuickImageResponse %%QT_INCDIR%%/QtQuick/QQuickItem %%QT_INCDIR%%/QtQuick/QQuickItemGrabResult %%QT_INCDIR%%/QtQuick/QQuickPaintedItem %%QT_INCDIR%%/QtQuick/QQuickRenderControl %%QT_INCDIR%%/QtQuick/QQuickTextDocument %%QT_INCDIR%%/QtQuick/QQuickTextureFactory %%QT_INCDIR%%/QtQuick/QQuickTransform %%QT_INCDIR%%/QtQuick/QQuickView %%QT_INCDIR%%/QtQuick/QQuickWindow %%QT_INCDIR%%/QtQuick/QSGAbstractRenderer %%QT_INCDIR%%/QtQuick/QSGBasicGeometryNode %%QT_INCDIR%%/QtQuick/QSGClipNode %%QT_INCDIR%%/QtQuick/QSGDynamicTexture %%QT_INCDIR%%/QtQuick/QSGEngine %%QT_INCDIR%%/QtQuick/QSGFlatColorMaterial %%QT_INCDIR%%/QtQuick/QSGGeometry %%QT_INCDIR%%/QtQuick/QSGGeometryNode %%QT_INCDIR%%/QtQuick/QSGImageNode %%QT_INCDIR%%/QtQuick/QSGMaterial %%QT_INCDIR%%/QtQuick/QSGMaterialShader %%QT_INCDIR%%/QtQuick/QSGMaterialType %%QT_INCDIR%%/QtQuick/QSGNinePatchNode %%QT_INCDIR%%/QtQuick/QSGNode %%QT_INCDIR%%/QtQuick/QSGNodeVisitor %%QT_INCDIR%%/QtQuick/QSGOpacityNode %%QT_INCDIR%%/QtQuick/QSGOpaqueTextureMaterial %%QT_INCDIR%%/QtQuick/QSGRectangleNode %%QT_INCDIR%%/QtQuick/QSGRenderNode %%QT_INCDIR%%/QtQuick/QSGRendererInterface %%QT_INCDIR%%/QtQuick/QSGRootNode %%QT_INCDIR%%/QtQuick/QSGSimpleMaterial %%QT_INCDIR%%/QtQuick/QSGSimpleMaterialComparableMaterial %%QT_INCDIR%%/QtQuick/QSGSimpleMaterialShader %%QT_INCDIR%%/QtQuick/QSGSimpleRectNode %%QT_INCDIR%%/QtQuick/QSGSimpleTextureNode %%QT_INCDIR%%/QtQuick/QSGTexture %%QT_INCDIR%%/QtQuick/QSGTextureMaterial %%QT_INCDIR%%/QtQuick/QSGTextureProvider %%QT_INCDIR%%/QtQuick/QSGTransformNode %%QT_INCDIR%%/QtQuick/QSGVertexColorMaterial %%QT_INCDIR%%/QtQuick/QtQuick %%QT_INCDIR%%/QtQuick/QtQuickDepends %%QT_INCDIR%%/QtQuick/QtQuickVersion %%QT_INCDIR%%/QtQuick/qquickframebufferobject.h %%QT_INCDIR%%/QtQuick/qquickimageprovider.h %%QT_INCDIR%%/QtQuick/qquickitem.h %%QT_INCDIR%%/QtQuick/qquickitemgrabresult.h %%QT_INCDIR%%/QtQuick/qquickpainteditem.h %%QT_INCDIR%%/QtQuick/qquickrendercontrol.h %%QT_INCDIR%%/QtQuick/qquicktextdocument.h %%QT_INCDIR%%/QtQuick/qquickview.h %%QT_INCDIR%%/QtQuick/qquickwindow.h %%QT_INCDIR%%/QtQuick/qsgabstractrenderer.h %%QT_INCDIR%%/QtQuick/qsgengine.h %%QT_INCDIR%%/QtQuick/qsgflatcolormaterial.h %%QT_INCDIR%%/QtQuick/qsggeometry.h %%QT_INCDIR%%/QtQuick/qsgimagenode.h %%QT_INCDIR%%/QtQuick/qsgmaterial.h %%QT_INCDIR%%/QtQuick/qsgninepatchnode.h %%QT_INCDIR%%/QtQuick/qsgnode.h %%QT_INCDIR%%/QtQuick/qsgrectanglenode.h %%QT_INCDIR%%/QtQuick/qsgrendererinterface.h %%QT_INCDIR%%/QtQuick/qsgrendernode.h %%QT_INCDIR%%/QtQuick/qsgsimplematerial.h %%QT_INCDIR%%/QtQuick/qsgsimplerectnode.h %%QT_INCDIR%%/QtQuick/qsgsimpletexturenode.h %%QT_INCDIR%%/QtQuick/qsgtexture.h %%QT_INCDIR%%/QtQuick/qsgtexturematerial.h %%QT_INCDIR%%/QtQuick/qsgtextureprovider.h %%QT_INCDIR%%/QtQuick/qsgvertexcolormaterial.h %%QT_INCDIR%%/QtQuick/qtquick-config.h %%QT_INCDIR%%/QtQuick/qtquickglobal.h %%QT_INCDIR%%/QtQuick/qtquickversion.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickage_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickangledirection_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcumulativedirection_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcustomaffector_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcustomparticle_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickdirection_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickellipseextruder_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickfriction_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickgravity_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickgroupgoal_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickimageparticle_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickitemparticle_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicklineextruder_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickmaskextruder_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleaffector_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleemitter_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleextruder_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlegroup_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlepainter_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlesmodule_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlesystem_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickpointattractor_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickpointdirection_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickrectangleextruder_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickspritegoal_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicktargetdirection_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicktrailemitter_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickturbulence_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickv4particledata_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickwander_p.h %%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qtquickparticlesglobal_p.h %%QT_INCDIR%%/QtQuickParticles/QtQuickParticles %%QT_INCDIR%%/QtQuickParticles/QtQuickParticlesDepends %%QT_INCDIR%%/QtQuickParticles/QtQuickParticlesVersion %%QT_INCDIR%%/QtQuickParticles/qtquickparticlesversion.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquicknvprfunctions_p.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquicknvprfunctions_p_p.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshape_p.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshape_p_p.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshapegenericrenderer_p.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshapenvprrenderer_p.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshapesglobal_p.h %%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshapesoftwarerenderer_p.h %%QT_INCDIR%%/QtQuickShapes/QtQuickShapes %%QT_INCDIR%%/QtQuickShapes/QtQuickShapesDepends %%QT_INCDIR%%/QtQuickShapes/QtQuickShapesVersion %%QT_INCDIR%%/QtQuickShapes/qquickshapesglobal.h %%QT_INCDIR%%/QtQuickShapes/qtquickshapesversion.h %%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/qtestoptions_p.h %%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestevent_p.h %%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestresult_p.h %%QT_INCDIR%%/QtQuickTest/QtQuickTest %%QT_INCDIR%%/QtQuickTest/QtQuickTestDepends %%QT_INCDIR%%/QtQuickTest/QtQuickTestVersion %%QT_INCDIR%%/QtQuickTest/qtquicktestversion.h %%QT_INCDIR%%/QtQuickTest/quicktest.h %%QT_INCDIR%%/QtQuickTest/quicktestglobal.h %%QT_INCDIR%%/QtQuickWidgets/%%FULLVER%%/QtQuickWidgets/private/qquickwidget_p.h %%QT_INCDIR%%/QtQuickWidgets/QQuickWidget %%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgets %%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgetsDepends %%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgetsVersion %%QT_INCDIR%%/QtQuickWidgets/qquickwidget.h %%QT_INCDIR%%/QtQuickWidgets/qtquickwidgetsglobal.h %%QT_INCDIR%%/QtQuickWidgets/qtquickwidgetsversion.h +%%QT_CMAKEDIR%%/Qt5PacketProtocol/Qt5PacketProtocolConfig.cmake +%%QT_CMAKEDIR%%/Qt5PacketProtocol/Qt5PacketProtocolConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5QmlConfig.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5QmlConfigExtras.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5QmlConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QDebugMessageServiceFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlNativeDebugServiceFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlPreviewServiceFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QQuickProfilerAdapterFactory.cmake %%QT_CMAKEDIR%%/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake +%%QT_CMAKEDIR%%/Qt5QmlDebug/Qt5QmlDebugConfig.cmake +%%QT_CMAKEDIR%%/Qt5QmlDebug/Qt5QmlDebugConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5QmlDevTools/Qt5QmlDevToolsConfig.cmake +%%QT_CMAKEDIR%%/Qt5QmlDevTools/Qt5QmlDevToolsConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Quick/Qt5QuickConfig.cmake %%QT_CMAKEDIR%%/Qt5Quick/Qt5QuickConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5QuickCompiler/Qt5QuickCompilerConfig.cmake +%%QT_CMAKEDIR%%/Qt5QuickParticles/Qt5QuickParticlesConfig.cmake +%%QT_CMAKEDIR%%/Qt5QuickParticles/Qt5QuickParticlesConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5QuickShapes/Qt5QuickShapesConfig.cmake +%%QT_CMAKEDIR%%/Qt5QuickShapes/Qt5QuickShapesConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfig.cmake %%QT_CMAKEDIR%%/Qt5QuickTest/Qt5QuickTestConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake %%QT_CMAKEDIR%%/Qt5QuickWidgets/Qt5QuickWidgetsConfigVersion.cmake %%QT_BINDIR%%/qml %%QT_BINDIR%%/qmlcachegen %%QT_BINDIR%%/qmleasing %%QT_BINDIR%%/qmlimportscanner %%QT_BINDIR%%/qmllint %%QT_BINDIR%%/qmlmin %%QT_BINDIR%%/qmlplugindump %%QT_BINDIR%%/qmlpreview %%QT_BINDIR%%/qmlprofiler %%QT_BINDIR%%/qmlscene %%QT_BINDIR%%/qmltestrunner %%QT_LIBDIR%%/libQt5PacketProtocol.a %%QT_LIBDIR%%/libQt5PacketProtocol.prl %%QT_LIBDIR%%/libQt5Qml.prl %%QT_LIBDIR%%/libQt5Qml.so %%QT_LIBDIR%%/libQt5Qml.so.5 %%QT_LIBDIR%%/libQt5Qml.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Qml.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Qml.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5QmlDebug.a %%QT_LIBDIR%%/libQt5QmlDebug.prl %%QT_LIBDIR%%/libQt5QmlDevTools.a %%QT_LIBDIR%%/libQt5QmlDevTools.prl %%QT_LIBDIR%%/libQt5Quick.prl %%QT_LIBDIR%%/libQt5Quick.so %%QT_LIBDIR%%/libQt5Quick.so.5 %%QT_LIBDIR%%/libQt5Quick.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Quick.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Quick.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5QuickParticles.prl %%QT_LIBDIR%%/libQt5QuickParticles.so %%QT_LIBDIR%%/libQt5QuickParticles.so.5 %%QT_LIBDIR%%/libQt5QuickParticles.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5QuickParticles.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5QuickParticles.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5QuickShapes.prl %%QT_LIBDIR%%/libQt5QuickShapes.so %%QT_LIBDIR%%/libQt5QuickShapes.so.5 %%QT_LIBDIR%%/libQt5QuickShapes.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5QuickShapes.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5QuickShapes.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5QuickTest.prl %%QT_LIBDIR%%/libQt5QuickTest.so %%QT_LIBDIR%%/libQt5QuickTest.so.5 %%QT_LIBDIR%%/libQt5QuickTest.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5QuickTest.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5QuickWidgets.prl %%QT_LIBDIR%%/libQt5QuickWidgets.so %%QT_LIBDIR%%/libQt5QuickWidgets.so.5 %%QT_LIBDIR%%/libQt5QuickWidgets.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5QuickWidgets.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5QuickWidgets.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/features/qmlcache.prf %%QT_MKSPECDIR%%/features/qtquickcompiler.prf %%QT_MKSPECDIR%%/modules/qt_lib_packetprotocol_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_qml.pri %%QT_MKSPECDIR%%/modules/qt_lib_qml_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmldebug_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmldevtools_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmltest.pri %%QT_MKSPECDIR%%/modules/qt_lib_qmltest_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick.pri %%QT_MKSPECDIR%%/modules/qt_lib_quick_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quickparticles_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quickshapes_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets.pri %%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets_private.pri %%QT_PLUGINDIR%%/qmltooling/libqmldbg_debugger.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_debugger.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_inspector.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_inspector.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_local.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_local.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_messages.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_messages.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_native.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_native.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_nativedebugger.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_nativedebugger.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_preview.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_preview.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_profiler.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_profiler.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_quickprofiler.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_quickprofiler.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_server.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_server.so.debug %%QT_PLUGINDIR%%/qmltooling/libqmldbg_tcp.so %%DEBUG%%%%QT_PLUGINDIR%%/qmltooling/libqmldbg_tcp.so.debug %%QT_QMLDIR%%/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so.debug %%QT_QMLDIR%%/Qt/labs/folderlistmodel/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/folderlistmodel/qmldir %%QT_QMLDIR%%/Qt/labs/qmlmodels/liblabsmodelsplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/qmlmodels/liblabsmodelsplugin.so.debug %%QT_QMLDIR%%/Qt/labs/qmlmodels/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/qmlmodels/qmldir %%QT_QMLDIR%%/Qt/labs/settings/libqmlsettingsplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/settings/libqmlsettingsplugin.so.debug %%QT_QMLDIR%%/Qt/labs/settings/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/settings/qmldir %%QT_QMLDIR%%/Qt/labs/sharedimage/libsharedimageplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/sharedimage/libsharedimageplugin.so.debug %%QT_QMLDIR%%/Qt/labs/sharedimage/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/sharedimage/qmldir %%QT_QMLDIR%%/Qt/labs/wavefrontmesh/libqmlwavefrontmeshplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/wavefrontmesh/libqmlwavefrontmeshplugin.so.debug %%QT_QMLDIR%%/Qt/labs/wavefrontmesh/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/wavefrontmesh/qmldir %%QT_QMLDIR%%/QtQml/Models.2/libmodelsplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQml/Models.2/libmodelsplugin.so.debug %%QT_QMLDIR%%/QtQml/Models.2/plugins.qmltypes %%QT_QMLDIR%%/QtQml/Models.2/qmldir %%QT_QMLDIR%%/QtQml/StateMachine/libqtqmlstatemachine.so %%DEBUG%%%%QT_QMLDIR%%/QtQml/StateMachine/libqtqmlstatemachine.so.debug %%QT_QMLDIR%%/QtQml/StateMachine/plugins.qmltypes %%QT_QMLDIR%%/QtQml/StateMachine/qmldir %%QT_QMLDIR%%/QtQml/plugins.qmltypes %%QT_QMLDIR%%/QtQml/qmldir %%QT_QMLDIR%%/QtQuick.2/libqtquick2plugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick.2/libqtquick2plugin.so.debug %%QT_QMLDIR%%/QtQuick.2/plugins.qmltypes %%QT_QMLDIR%%/QtQuick.2/qmldir %%QT_QMLDIR%%/QtQuick/Layouts/libqquicklayoutsplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Layouts/libqquicklayoutsplugin.so.debug %%QT_QMLDIR%%/QtQuick/Layouts/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Layouts/qmldir %%QT_QMLDIR%%/QtQuick/LocalStorage/libqmllocalstorageplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/LocalStorage/libqmllocalstorageplugin.so.debug %%QT_QMLDIR%%/QtQuick/LocalStorage/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/LocalStorage/qmldir %%QT_QMLDIR%%/QtQuick/Particles.2/libparticlesplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Particles.2/libparticlesplugin.so.debug %%QT_QMLDIR%%/QtQuick/Particles.2/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Particles.2/qmldir %%QT_QMLDIR%%/QtQuick/Shapes/libqmlshapesplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Shapes/libqmlshapesplugin.so.debug %%QT_QMLDIR%%/QtQuick/Shapes/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Shapes/qmldir %%QT_QMLDIR%%/QtQuick/Window.2/libwindowplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/Window.2/libwindowplugin.so.debug %%QT_QMLDIR%%/QtQuick/Window.2/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/Window.2/qmldir %%QT_QMLDIR%%/QtTest/SignalSpy.qml %%QT_QMLDIR%%/QtTest/TestCase.qml %%QT_QMLDIR%%/QtTest/libqmltestplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtTest/libqmltestplugin.so.debug %%QT_QMLDIR%%/QtTest/plugins.qmltypes %%QT_QMLDIR%%/QtTest/qmldir %%QT_QMLDIR%%/QtTest/testlogger.js %%QT_QMLDIR%%/builtins.qmltypes libdata/pkgconfig/Qt5Qml.pc libdata/pkgconfig/Qt5Quick.pc libdata/pkgconfig/Qt5QuickTest.pc libdata/pkgconfig/Qt5QuickWidgets.pc Index: head/x11-toolkits/qt5-gamepad/Makefile =================================================================== --- head/x11-toolkits/qt5-gamepad/Makefile (revision 517079) +++ head/x11-toolkits/qt5-gamepad/Makefile (revision 517080) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= gamepad DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 Gamepad Module BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto USES= compiler:c++11-lang qmake:norecursive qt-dist:5,gamepad USE_QT= core declarative gui buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/x11-toolkits/qt5-gui/Makefile =================================================================== --- head/x11-toolkits/qt5-gui/Makefile (revision 517079) +++ head/x11-toolkits/qt5-gui/Makefile (revision 517080) @@ -1,106 +1,105 @@ # $FreeBSD$ PORTNAME= gui DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 CATEGORIES= x11-toolkits graphics PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt graphical user interface module BUILD_DEPENDS= at-spi2-core>=0:accessibility/at-spi2-core \ ${LOCALBASE}/include/linux/input.h:devel/evdev-proto LIB_DEPENDS= libdbus-1.so:devel/dbus \ libevdev.so:devel/libevdev \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ libinput.so:x11/libinput \ libpng.so:graphics/png \ libxcb.so:x11/libxcb \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxcb-render-util.so:x11/xcb-util-renderutil \ libxcb-icccm.so:x11/xcb-util-wm \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= xdg-open:devel/xdg-utils USES= compiler:c++11-lang gl gnome jpeg localbase qmake:no_env \ qt-dist:5,base xorg USE_GL= gl egl USE_GNOME= glib20 USE_QT= core dbus network qmake_build buildtools_build USE_XORG= ice sm x11 xi xrender HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-eglfs \ -no-libudev \ -system-harfbuzz # Explicitly set to c++14 to avoid c++17/c++1z, since libX11's headers # are using the obsolete 'register' keyword. CONFIGURE_ARGS+= -c++std c++14 USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} # Build and install QtPlatformSupport and default QPA plugins (XCB, # minimal and offscreen). QtGui won't work without (one of) them, but # they depend on QtGui itself, so they can't be added as dependencies. # QtPlatformSupport doesn't need to be installed (it's a static # library), but might be needed by people porting Qt on new platforms. MORE_WRKSRCS= src/platformheaders \ src/platformsupport \ src/plugins/platforms \ src/plugins/generic # Image formats are split through different tarballs, these are the # main ones; input contexts require no additional dependency. MORE_WRKSRCS+= src/plugins/imageformats \ src/plugins/platforminputcontexts # openglextensions is the static library to use for further things like qtcanvas3d MORE_WRKSRCS+= src/openglextensions QT_DEFINES= ACCESSIBILITY DBUS FONTCONFIG FREETYPE GLIB \ IMAGEFORMAT_PNG OPENGL SHAPE XCB XKB XKBCOMMON XRENDER QT_CONFIG= accessibility accessibility-atspi-bridge dbus \ fontconfig glib opengl png system-freetype \ system-jpeg system-png xcb xcb-glx xcb-render \ xcb-xlib xinput2 xlib xrender # Inherited from Qt 4. .if defined(PACKAGE_BUILDING) RUN_DEPENDS+= ${LOCALBASE}/share/fonts/encodings/encodings.dir:x11-fonts/encodings \ xorg-fonts-truetype>0:x11-fonts/xorg-fonts-truetype .endif post-configure: .for d in src/tools/qvkgen src/gui ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor pre-build: .for d in src/tools/qvkgen @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-build: .for d in ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-install: .for d in src/tools/qvkgen ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} .endfor .include Index: head/x11-toolkits/qt5-gui/pkg-plist =================================================================== --- head/x11-toolkits/qt5-gui/pkg-plist (revision 517079) +++ head/x11-toolkits/qt5-gui/pkg-plist (revision 517080) @@ -1,885 +1,917 @@ %%QT_INCDIR%%/QtAccessibilitySupport/%%FULLVER%%/QtAccessibilitySupport/private/qaccessiblebridgeutils_p.h %%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupport %%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupportDepends %%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupportVersion %%QT_INCDIR%%/QtAccessibilitySupport/qtaccessibilitysupportversion.h %%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_dummy_p.h %%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_p.h %%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_static_p.h %%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_udev_p.h %%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupport %%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportDepends %%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportVersion %%QT_INCDIR%%/QtDeviceDiscoverySupport/qtdevicediscoverysupportversion.h %%QT_INCDIR%%/QtEdidSupport/%%FULLVER%%/QtEdidSupport/private/qedidparser_p.h %%QT_INCDIR%%/QtEdidSupport/%%FULLVER%%/QtEdidSupport/private/qedidvendortable_p.h %%QT_INCDIR%%/QtEdidSupport/QtEdidSupport %%QT_INCDIR%%/QtEdidSupport/QtEdidSupportDepends %%QT_INCDIR%%/QtEdidSupport/QtEdidSupportVersion %%QT_INCDIR%%/QtEdidSupport/qtedidsupportversion.h %%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglconvenience_p.h %%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglpbuffer_p.h %%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglplatformcontext_p.h %%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglstreamconvenience_p.h %%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qt_egl_p.h %%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qxlibeglintegration_p.h %%QT_INCDIR%%/QtEglSupport/QtEglSupport %%QT_INCDIR%%/QtEglSupport/QtEglSupportDepends %%QT_INCDIR%%/QtEglSupport/QtEglSupportVersion %%QT_INCDIR%%/QtEglSupport/qteglsupportversion.h %%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qeventdispatcher_glib_p.h %%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h %%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qunixeventdispatcher_qpa_p.h %%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h %%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupport %%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupportDepends %%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupportVersion %%QT_INCDIR%%/QtEventDispatcherSupport/qteventdispatchersupportversion.h %%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbbackingstore_p.h %%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbcursor_p.h %%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbscreen_p.h %%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbvthandler_p.h %%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbwindow_p.h %%QT_INCDIR%%/QtFbSupport/QtFbSupport %%QT_INCDIR%%/QtFbSupport/QtFbSupportDepends %%QT_INCDIR%%/QtFbSupport/QtFbSupportVersion %%QT_INCDIR%%/QtFbSupport/qtfbsupportversion.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qcoretextfontdatabase_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontconfigdatabase_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontengine_coretext_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontengine_ft_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontenginemultifontconfig_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfreetypefontdatabase_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontdatabase_ft_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontdatabase_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontengine_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontenginedirectwrite_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsnativeimage_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwinrtfontdatabase_p.h %%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupport %%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupportDepends %%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupportVersion %%QT_INCDIR%%/QtFontDatabaseSupport/qtfontdatabasesupportversion.h %%QT_INCDIR%%/QtGlxSupport/%%FULLVER%%/QtGlxSupport/private/qglxconvenience_p.h %%QT_INCDIR%%/QtGlxSupport/QtGlxSupport %%QT_INCDIR%%/QtGlxSupport/QtGlxSupportDepends %%QT_INCDIR%%/QtGlxSupport/QtGlxSupportVersion %%QT_INCDIR%%/QtGlxSupport/qtglxsupportversion.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractlayoutstyleinfo_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstracttextdocumentlayout_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessiblecache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qastchandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qbezier_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qblendfunctions_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qblittable_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qbmphandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolor_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolorprofile_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcoregraphics_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcosmeticstroker_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssparser_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssutil_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcursor_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdatabuffer_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdistancefield_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdnd_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_mips_dsp_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_neon_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_x86_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawingprimitive_sse2_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qemulationpaintengine_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qevent_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfixed_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfont_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_qpf2_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengineglyphcache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontsubset_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfragmentmap_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglyphrun_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgrayraster_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgridlayoutengine_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qguiapplication_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qharfbuzzng_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qhexstring_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qhighdpiscaling_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qicon_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qiconloader_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimage_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagepixmapcleanuphooks_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagereaderwriterhelpers_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagescale_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputcontrol_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevicemanager_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevicemanager_p_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputmethod_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinternalmimedata_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeymapper_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeysequence_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qktxhandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qlayoutpolicy_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qmath_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qmemrotate_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengl2pexvertexarray_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengl_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglcontext_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglcustomshaderstage_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglengineshadermanager_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglengineshadersource_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglextensions_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglframebufferobject_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglgradientcache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglpaintdevice_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglpaintengine_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglprogrambinarycache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglqueryhelper_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglshadercache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltexture_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltexturecache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltextureglyphcache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltexturehelper_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengltextureuploader_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglversionfunctionsfactory_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglvertexarrayobject_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qoutlinemapper_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpagedpaintdevice_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintdevicewindow_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_blitter_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_pic_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_raster_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengineex_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpainter_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpainterpath_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpathclipper_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpathsimplifier_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpdf_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpen_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpicture_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmap_blitter_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmap_raster_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmapcache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpkmhandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpnghandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpolygonclipper_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qppmhandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrasterdefs_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrasterizer_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrawfont_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrbtree_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrgba64_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qscreen_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qsessionmanager_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshaderformat_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshadergenerator_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshadergraph_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshadergraphloader_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshaderlanguage_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshadernode_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshadernodeport_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshadernodesloader_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshapedpixmapdndwindow_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshortcutmap_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qsimpledrag_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstandarditemmodel_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstatictext_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstroker_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qt_gui_pch.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qt_mips_asm_dsp_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextcursor_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocument_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocumentfragment_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocumentlayout_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextengine_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextformat_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexthtmlparser_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextimagehandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextobject_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextodfwriter_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexttable_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexturefiledata_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexturefilehandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexturefilereader_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextureglyphcache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtgui-config_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtguiglobal_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtouchdevice_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtriangulatingstroker_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtriangulator_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qvectorpath_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qvulkanfunctions_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qvulkanwindow_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwasmlocalfileaccess_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindow_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxbmhandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxpmhandler_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qzipreader_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qzipwriter_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformaccessibility.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformbackingstore.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformclipboard.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformcursor.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformdialoghelper.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformdrag.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformfontdatabase.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformgraphicsbuffer.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformgraphicsbufferhelper.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontext.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontext_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontextfactory_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontextplugin_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegration.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegrationfactory_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegrationplugin.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformmenu.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformnativeinterface.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformoffscreensurface.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformopenglcontext.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformpixmap.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformscreen.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformscreen_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformservices.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsessionmanager.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsharedgraphicscache.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsurface.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsystemtrayicon.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformtheme.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformtheme_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformthemefactory_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformthemeplugin.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformvulkaninstance.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformwindow.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformwindow_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qwindowsysteminterface.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qwindowsysteminterface_p.h %%QT_INCDIR%%/QtGui/QAbstractTextDocumentLayout %%QT_INCDIR%%/QtGui/QAbstractUndoItem %%QT_INCDIR%%/QtGui/QAccessible %%QT_INCDIR%%/QtGui/QAccessibleActionInterface %%QT_INCDIR%%/QtGui/QAccessibleApplication %%QT_INCDIR%%/QtGui/QAccessibleBridge %%QT_INCDIR%%/QtGui/QAccessibleBridgePlugin %%QT_INCDIR%%/QtGui/QAccessibleEditableTextInterface %%QT_INCDIR%%/QtGui/QAccessibleEvent %%QT_INCDIR%%/QtGui/QAccessibleImageInterface %%QT_INCDIR%%/QtGui/QAccessibleInterface %%QT_INCDIR%%/QtGui/QAccessibleObject %%QT_INCDIR%%/QtGui/QAccessiblePlugin %%QT_INCDIR%%/QtGui/QAccessibleStateChangeEvent %%QT_INCDIR%%/QtGui/QAccessibleTableCellInterface %%QT_INCDIR%%/QtGui/QAccessibleTableInterface %%QT_INCDIR%%/QtGui/QAccessibleTableModelChangeEvent %%QT_INCDIR%%/QtGui/QAccessibleTextCursorEvent %%QT_INCDIR%%/QtGui/QAccessibleTextInsertEvent %%QT_INCDIR%%/QtGui/QAccessibleTextInterface %%QT_INCDIR%%/QtGui/QAccessibleTextRemoveEvent %%QT_INCDIR%%/QtGui/QAccessibleTextSelectionEvent %%QT_INCDIR%%/QtGui/QAccessibleTextUpdateEvent %%QT_INCDIR%%/QtGui/QAccessibleValueChangeEvent %%QT_INCDIR%%/QtGui/QAccessibleValueInterface %%QT_INCDIR%%/QtGui/QActionEvent %%QT_INCDIR%%/QtGui/QApplicationStateChangeEvent %%QT_INCDIR%%/QtGui/QBackingStore %%QT_INCDIR%%/QtGui/QBitmap %%QT_INCDIR%%/QtGui/QBrush %%QT_INCDIR%%/QtGui/QBrushData %%QT_INCDIR%%/QtGui/QClipboard %%QT_INCDIR%%/QtGui/QCloseEvent %%QT_INCDIR%%/QtGui/QColor %%QT_INCDIR%%/QtGui/QConicalGradient %%QT_INCDIR%%/QtGui/QContextMenuEvent %%QT_INCDIR%%/QtGui/QCursor %%QT_INCDIR%%/QtGui/QDesktopServices %%QT_INCDIR%%/QtGui/QDoubleValidator %%QT_INCDIR%%/QtGui/QDrag %%QT_INCDIR%%/QtGui/QDragEnterEvent %%QT_INCDIR%%/QtGui/QDragLeaveEvent %%QT_INCDIR%%/QtGui/QDragMoveEvent %%QT_INCDIR%%/QtGui/QDropEvent %%QT_INCDIR%%/QtGui/QEnterEvent %%QT_INCDIR%%/QtGui/QExposeEvent %%QT_INCDIR%%/QtGui/QFileOpenEvent %%QT_INCDIR%%/QtGui/QFocusEvent %%QT_INCDIR%%/QtGui/QFont %%QT_INCDIR%%/QtGui/QFontDatabase %%QT_INCDIR%%/QtGui/QFontInfo %%QT_INCDIR%%/QtGui/QFontMetrics %%QT_INCDIR%%/QtGui/QFontMetricsF %%QT_INCDIR%%/QtGui/QGenericMatrix %%QT_INCDIR%%/QtGui/QGenericPlugin %%QT_INCDIR%%/QtGui/QGenericPluginFactory %%QT_INCDIR%%/QtGui/QGlyphRun %%QT_INCDIR%%/QtGui/QGradient %%QT_INCDIR%%/QtGui/QGradientStop %%QT_INCDIR%%/QtGui/QGradientStops %%QT_INCDIR%%/QtGui/QGuiApplication %%QT_INCDIR%%/QtGui/QHelpEvent %%QT_INCDIR%%/QtGui/QHideEvent %%QT_INCDIR%%/QtGui/QHoverEvent %%QT_INCDIR%%/QtGui/QIcon %%QT_INCDIR%%/QtGui/QIconDragEvent %%QT_INCDIR%%/QtGui/QIconEngine %%QT_INCDIR%%/QtGui/QIconEnginePlugin %%QT_INCDIR%%/QtGui/QIconEngineV2 %%QT_INCDIR%%/QtGui/QImage %%QT_INCDIR%%/QtGui/QImageCleanupFunction %%QT_INCDIR%%/QtGui/QImageIOHandler %%QT_INCDIR%%/QtGui/QImageIOPlugin %%QT_INCDIR%%/QtGui/QImageReader %%QT_INCDIR%%/QtGui/QImageTextKeyLang %%QT_INCDIR%%/QtGui/QImageWriter %%QT_INCDIR%%/QtGui/QInputEvent %%QT_INCDIR%%/QtGui/QInputMethod %%QT_INCDIR%%/QtGui/QInputMethodEvent %%QT_INCDIR%%/QtGui/QInputMethodQueryEvent %%QT_INCDIR%%/QtGui/QIntValidator %%QT_INCDIR%%/QtGui/QKeyEvent %%QT_INCDIR%%/QtGui/QKeySequence %%QT_INCDIR%%/QtGui/QLinearGradient %%QT_INCDIR%%/QtGui/QList %%QT_INCDIR%%/QtGui/QMatrix %%QT_INCDIR%%/QtGui/QMatrix2x2 %%QT_INCDIR%%/QtGui/QMatrix2x3 %%QT_INCDIR%%/QtGui/QMatrix2x4 %%QT_INCDIR%%/QtGui/QMatrix3x2 %%QT_INCDIR%%/QtGui/QMatrix3x3 %%QT_INCDIR%%/QtGui/QMatrix3x4 %%QT_INCDIR%%/QtGui/QMatrix4x2 %%QT_INCDIR%%/QtGui/QMatrix4x3 %%QT_INCDIR%%/QtGui/QMatrix4x4 %%QT_INCDIR%%/QtGui/QMouseEvent %%QT_INCDIR%%/QtGui/QMoveEvent %%QT_INCDIR%%/QtGui/QMovie %%QT_INCDIR%%/QtGui/QNativeGestureEvent %%QT_INCDIR%%/QtGui/QOffscreenSurface %%QT_INCDIR%%/QtGui/QOpenGLBuffer %%QT_INCDIR%%/QtGui/QOpenGLContext %%QT_INCDIR%%/QtGui/QOpenGLContextGroup %%QT_INCDIR%%/QtGui/QOpenGLDebugLogger %%QT_INCDIR%%/QtGui/QOpenGLDebugMessage %%QT_INCDIR%%/QtGui/QOpenGLExtraFunctions %%QT_INCDIR%%/QtGui/QOpenGLExtraFunctionsPrivate %%QT_INCDIR%%/QtGui/QOpenGLFramebufferObject %%QT_INCDIR%%/QtGui/QOpenGLFramebufferObjectFormat %%QT_INCDIR%%/QtGui/QOpenGLFunctions %%QT_INCDIR%%/QtGui/QOpenGLFunctionsPrivate %%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_0 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_1 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_2 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_3 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_4 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_1_5 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_2_0 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_2_1 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_0 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_1 %%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_2_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_2_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_3_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_3_3_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_0_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_0_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_1_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_1_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_2_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_2_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_3_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_3_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_4_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_4_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_5_Compatibility %%QT_INCDIR%%/QtGui/QOpenGLFunctions_4_5_Core %%QT_INCDIR%%/QtGui/QOpenGLFunctions_ES2 %%QT_INCDIR%%/QtGui/QOpenGLPaintDevice %%QT_INCDIR%%/QtGui/QOpenGLPixelTransferOptions %%QT_INCDIR%%/QtGui/QOpenGLShader %%QT_INCDIR%%/QtGui/QOpenGLShaderProgram %%QT_INCDIR%%/QtGui/QOpenGLTexture %%QT_INCDIR%%/QtGui/QOpenGLTextureBlitter %%QT_INCDIR%%/QtGui/QOpenGLTimeMonitor %%QT_INCDIR%%/QtGui/QOpenGLTimerQuery %%QT_INCDIR%%/QtGui/QOpenGLVersionFunctions %%QT_INCDIR%%/QtGui/QOpenGLVersionProfile %%QT_INCDIR%%/QtGui/QOpenGLVertexArrayObject %%QT_INCDIR%%/QtGui/QOpenGLWindow %%QT_INCDIR%%/QtGui/QPageLayout %%QT_INCDIR%%/QtGui/QPageSize %%QT_INCDIR%%/QtGui/QPagedPaintDevice %%QT_INCDIR%%/QtGui/QPaintDevice %%QT_INCDIR%%/QtGui/QPaintDeviceWindow %%QT_INCDIR%%/QtGui/QPaintEngine %%QT_INCDIR%%/QtGui/QPaintEngineState %%QT_INCDIR%%/QtGui/QPaintEvent %%QT_INCDIR%%/QtGui/QPainter %%QT_INCDIR%%/QtGui/QPainterPath %%QT_INCDIR%%/QtGui/QPainterPathStroker %%QT_INCDIR%%/QtGui/QPalette %%QT_INCDIR%%/QtGui/QPdfWriter %%QT_INCDIR%%/QtGui/QPen %%QT_INCDIR%%/QtGui/QPicture %%QT_INCDIR%%/QtGui/QPictureFormatPlugin %%QT_INCDIR%%/QtGui/QPictureIO %%QT_INCDIR%%/QtGui/QPixelFormat %%QT_INCDIR%%/QtGui/QPixmap %%QT_INCDIR%%/QtGui/QPixmapCache %%QT_INCDIR%%/QtGui/QPlatformSurfaceEvent %%QT_INCDIR%%/QtGui/QPointingDeviceUniqueId %%QT_INCDIR%%/QtGui/QPolygon %%QT_INCDIR%%/QtGui/QPolygonF %%QT_INCDIR%%/QtGui/QQuaternion %%QT_INCDIR%%/QtGui/QRadialGradient %%QT_INCDIR%%/QtGui/QRasterWindow %%QT_INCDIR%%/QtGui/QRawFont %%QT_INCDIR%%/QtGui/QRegExpValidator %%QT_INCDIR%%/QtGui/QRegion %%QT_INCDIR%%/QtGui/QRegularExpressionValidator %%QT_INCDIR%%/QtGui/QResizeEvent %%QT_INCDIR%%/QtGui/QRgb %%QT_INCDIR%%/QtGui/QRgba64 %%QT_INCDIR%%/QtGui/QScreen %%QT_INCDIR%%/QtGui/QScreenOrientationChangeEvent %%QT_INCDIR%%/QtGui/QScrollEvent %%QT_INCDIR%%/QtGui/QScrollPrepareEvent %%QT_INCDIR%%/QtGui/QSessionManager %%QT_INCDIR%%/QtGui/QShortcutEvent %%QT_INCDIR%%/QtGui/QShowEvent %%QT_INCDIR%%/QtGui/QStandardItem %%QT_INCDIR%%/QtGui/QStandardItemModel %%QT_INCDIR%%/QtGui/QStaticText %%QT_INCDIR%%/QtGui/QStatusTipEvent %%QT_INCDIR%%/QtGui/QStyleHints %%QT_INCDIR%%/QtGui/QSurface %%QT_INCDIR%%/QtGui/QSurfaceFormat %%QT_INCDIR%%/QtGui/QSyntaxHighlighter %%QT_INCDIR%%/QtGui/QTabletEvent %%QT_INCDIR%%/QtGui/QTextBlock %%QT_INCDIR%%/QtGui/QTextBlockFormat %%QT_INCDIR%%/QtGui/QTextBlockGroup %%QT_INCDIR%%/QtGui/QTextBlockUserData %%QT_INCDIR%%/QtGui/QTextCharFormat %%QT_INCDIR%%/QtGui/QTextCursor %%QT_INCDIR%%/QtGui/QTextDocument %%QT_INCDIR%%/QtGui/QTextDocumentFragment %%QT_INCDIR%%/QtGui/QTextDocumentWriter %%QT_INCDIR%%/QtGui/QTextFormat %%QT_INCDIR%%/QtGui/QTextFragment %%QT_INCDIR%%/QtGui/QTextFrame %%QT_INCDIR%%/QtGui/QTextFrameFormat %%QT_INCDIR%%/QtGui/QTextFrameLayoutData %%QT_INCDIR%%/QtGui/QTextImageFormat %%QT_INCDIR%%/QtGui/QTextInlineObject %%QT_INCDIR%%/QtGui/QTextItem %%QT_INCDIR%%/QtGui/QTextLayout %%QT_INCDIR%%/QtGui/QTextLength %%QT_INCDIR%%/QtGui/QTextLine %%QT_INCDIR%%/QtGui/QTextList %%QT_INCDIR%%/QtGui/QTextListFormat %%QT_INCDIR%%/QtGui/QTextObject %%QT_INCDIR%%/QtGui/QTextObjectInterface %%QT_INCDIR%%/QtGui/QTextOption %%QT_INCDIR%%/QtGui/QTextTable %%QT_INCDIR%%/QtGui/QTextTableCell %%QT_INCDIR%%/QtGui/QTextTableCellFormat %%QT_INCDIR%%/QtGui/QTextTableFormat %%QT_INCDIR%%/QtGui/QToolBarChangeEvent %%QT_INCDIR%%/QtGui/QTouchDevice %%QT_INCDIR%%/QtGui/QTouchEvent %%QT_INCDIR%%/QtGui/QTransform %%QT_INCDIR%%/QtGui/QValidator %%QT_INCDIR%%/QtGui/QVector2D %%QT_INCDIR%%/QtGui/QVector3D %%QT_INCDIR%%/QtGui/QVector4D %%QT_INCDIR%%/QtGui/QVulkanDeviceFunctions %%QT_INCDIR%%/QtGui/QVulkanExtension %%QT_INCDIR%%/QtGui/QVulkanFunctions %%QT_INCDIR%%/QtGui/QVulkanInfoVector %%QT_INCDIR%%/QtGui/QVulkanInstance %%QT_INCDIR%%/QtGui/QVulkanLayer %%QT_INCDIR%%/QtGui/QVulkanWindow %%QT_INCDIR%%/QtGui/QVulkanWindowRenderer %%QT_INCDIR%%/QtGui/QWhatsThisClickedEvent %%QT_INCDIR%%/QtGui/QWheelEvent %%QT_INCDIR%%/QtGui/QWidgetList %%QT_INCDIR%%/QtGui/QWidgetMapper %%QT_INCDIR%%/QtGui/QWidgetSet %%QT_INCDIR%%/QtGui/QWindow %%QT_INCDIR%%/QtGui/QWindowList %%QT_INCDIR%%/QtGui/QWindowStateChangeEvent %%QT_INCDIR%%/QtGui/QtEvents %%QT_INCDIR%%/QtGui/QtGui %%QT_INCDIR%%/QtGui/QtGuiDepends %%QT_INCDIR%%/QtGui/QtGuiVersion %%QT_INCDIR%%/QtGui/qabstracttextdocumentlayout.h %%QT_INCDIR%%/QtGui/qaccessible.h %%QT_INCDIR%%/QtGui/qaccessiblebridge.h %%QT_INCDIR%%/QtGui/qaccessibleobject.h %%QT_INCDIR%%/QtGui/qaccessibleplugin.h %%QT_INCDIR%%/QtGui/qbackingstore.h %%QT_INCDIR%%/QtGui/qbitmap.h %%QT_INCDIR%%/QtGui/qbrush.h %%QT_INCDIR%%/QtGui/qclipboard.h %%QT_INCDIR%%/QtGui/qcolor.h %%QT_INCDIR%%/QtGui/qcursor.h %%QT_INCDIR%%/QtGui/qdesktopservices.h %%QT_INCDIR%%/QtGui/qdrag.h %%QT_INCDIR%%/QtGui/qevent.h %%QT_INCDIR%%/QtGui/qfont.h %%QT_INCDIR%%/QtGui/qfontdatabase.h %%QT_INCDIR%%/QtGui/qfontinfo.h %%QT_INCDIR%%/QtGui/qfontmetrics.h %%QT_INCDIR%%/QtGui/qgenericmatrix.h %%QT_INCDIR%%/QtGui/qgenericplugin.h %%QT_INCDIR%%/QtGui/qgenericpluginfactory.h %%QT_INCDIR%%/QtGui/qglyphrun.h %%QT_INCDIR%%/QtGui/qguiapplication.h %%QT_INCDIR%%/QtGui/qicon.h %%QT_INCDIR%%/QtGui/qiconengine.h %%QT_INCDIR%%/QtGui/qiconengineplugin.h %%QT_INCDIR%%/QtGui/qimage.h %%QT_INCDIR%%/QtGui/qimageiohandler.h %%QT_INCDIR%%/QtGui/qimagereader.h %%QT_INCDIR%%/QtGui/qimagewriter.h %%QT_INCDIR%%/QtGui/qinputmethod.h %%QT_INCDIR%%/QtGui/qkeysequence.h %%QT_INCDIR%%/QtGui/qmatrix.h %%QT_INCDIR%%/QtGui/qmatrix4x4.h %%QT_INCDIR%%/QtGui/qmovie.h %%QT_INCDIR%%/QtGui/qoffscreensurface.h %%QT_INCDIR%%/QtGui/qopengl.h %%QT_INCDIR%%/QtGui/qopenglbuffer.h %%QT_INCDIR%%/QtGui/qopenglcontext.h %%QT_INCDIR%%/QtGui/qopengldebug.h %%QT_INCDIR%%/QtGui/qopengles2ext.h %%QT_INCDIR%%/QtGui/qopenglext.h %%QT_INCDIR%%/QtGui/qopenglextrafunctions.h %%QT_INCDIR%%/QtGui/qopenglframebufferobject.h %%QT_INCDIR%%/QtGui/qopenglfunctions.h %%QT_INCDIR%%/QtGui/qopenglfunctions_1_0.h %%QT_INCDIR%%/QtGui/qopenglfunctions_1_1.h %%QT_INCDIR%%/QtGui/qopenglfunctions_1_2.h %%QT_INCDIR%%/QtGui/qopenglfunctions_1_3.h %%QT_INCDIR%%/QtGui/qopenglfunctions_1_4.h %%QT_INCDIR%%/QtGui/qopenglfunctions_1_5.h %%QT_INCDIR%%/QtGui/qopenglfunctions_2_0.h %%QT_INCDIR%%/QtGui/qopenglfunctions_2_1.h %%QT_INCDIR%%/QtGui/qopenglfunctions_3_0.h %%QT_INCDIR%%/QtGui/qopenglfunctions_3_1.h %%QT_INCDIR%%/QtGui/qopenglfunctions_3_2_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_3_2_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_3_3_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_3_3_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_0_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_0_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_1_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_1_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_2_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_2_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_3_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_3_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_4_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_4_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_5_compatibility.h %%QT_INCDIR%%/QtGui/qopenglfunctions_4_5_core.h %%QT_INCDIR%%/QtGui/qopenglfunctions_es2.h %%QT_INCDIR%%/QtGui/qopenglpaintdevice.h %%QT_INCDIR%%/QtGui/qopenglpixeltransferoptions.h %%QT_INCDIR%%/QtGui/qopenglshaderprogram.h %%QT_INCDIR%%/QtGui/qopengltexture.h %%QT_INCDIR%%/QtGui/qopengltextureblitter.h %%QT_INCDIR%%/QtGui/qopengltimerquery.h %%QT_INCDIR%%/QtGui/qopenglversionfunctions.h %%QT_INCDIR%%/QtGui/qopenglvertexarrayobject.h %%QT_INCDIR%%/QtGui/qopenglwindow.h %%QT_INCDIR%%/QtGui/qpagedpaintdevice.h %%QT_INCDIR%%/QtGui/qpagelayout.h %%QT_INCDIR%%/QtGui/qpagesize.h %%QT_INCDIR%%/QtGui/qpaintdevice.h %%QT_INCDIR%%/QtGui/qpaintdevicewindow.h %%QT_INCDIR%%/QtGui/qpaintengine.h %%QT_INCDIR%%/QtGui/qpainter.h %%QT_INCDIR%%/QtGui/qpainterpath.h %%QT_INCDIR%%/QtGui/qpalette.h %%QT_INCDIR%%/QtGui/qpdfwriter.h %%QT_INCDIR%%/QtGui/qpen.h %%QT_INCDIR%%/QtGui/qpicture.h %%QT_INCDIR%%/QtGui/qpictureformatplugin.h %%QT_INCDIR%%/QtGui/qpixelformat.h %%QT_INCDIR%%/QtGui/qpixmap.h %%QT_INCDIR%%/QtGui/qpixmapcache.h %%QT_INCDIR%%/QtGui/qpolygon.h %%QT_INCDIR%%/QtGui/qquaternion.h %%QT_INCDIR%%/QtGui/qrasterwindow.h %%QT_INCDIR%%/QtGui/qrawfont.h %%QT_INCDIR%%/QtGui/qregion.h %%QT_INCDIR%%/QtGui/qrgb.h %%QT_INCDIR%%/QtGui/qrgba64.h %%QT_INCDIR%%/QtGui/qscreen.h %%QT_INCDIR%%/QtGui/qsessionmanager.h %%QT_INCDIR%%/QtGui/qstandarditemmodel.h %%QT_INCDIR%%/QtGui/qstatictext.h %%QT_INCDIR%%/QtGui/qstylehints.h %%QT_INCDIR%%/QtGui/qsurface.h %%QT_INCDIR%%/QtGui/qsurfaceformat.h %%QT_INCDIR%%/QtGui/qsyntaxhighlighter.h %%QT_INCDIR%%/QtGui/qtestsupport_gui.h %%QT_INCDIR%%/QtGui/qtextcursor.h %%QT_INCDIR%%/QtGui/qtextdocument.h %%QT_INCDIR%%/QtGui/qtextdocumentfragment.h %%QT_INCDIR%%/QtGui/qtextdocumentwriter.h %%QT_INCDIR%%/QtGui/qtextformat.h %%QT_INCDIR%%/QtGui/qtextlayout.h %%QT_INCDIR%%/QtGui/qtextlist.h %%QT_INCDIR%%/QtGui/qtextobject.h %%QT_INCDIR%%/QtGui/qtextoption.h %%QT_INCDIR%%/QtGui/qtexttable.h %%QT_INCDIR%%/QtGui/qtgui-config.h %%QT_INCDIR%%/QtGui/qtguiglobal.h %%QT_INCDIR%%/QtGui/qtguiversion.h %%QT_INCDIR%%/QtGui/qtouchdevice.h %%QT_INCDIR%%/QtGui/qtransform.h %%QT_INCDIR%%/QtGui/qvalidator.h %%QT_INCDIR%%/QtGui/qvector2d.h %%QT_INCDIR%%/QtGui/qvector3d.h %%QT_INCDIR%%/QtGui/qvector4d.h %%QT_INCDIR%%/QtGui/qvulkanfunctions.h %%QT_INCDIR%%/QtGui/qvulkaninstance.h %%QT_INCDIR%%/QtGui/qvulkanwindow.h %%QT_INCDIR%%/QtGui/qwindow.h %%QT_INCDIR%%/QtGui/qwindowdefs.h %%QT_INCDIR%%/QtGui/qwindowdefs_win.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboard_defaultmap_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardhandler_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardmanager_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousehandler_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousemanager_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtablethandler_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtabletmanager_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchfilter_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchhandler_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchmanager_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputhandler_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputkeyboard_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputpointer_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputtouch_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtouchoutputmapping_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtslib_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qxkbcommon_p.h %%QT_INCDIR%%/QtInputSupport/QIntegrityHIDManager %%QT_INCDIR%%/QtInputSupport/QtInputSupport %%QT_INCDIR%%/QtInputSupport/QtInputSupportDepends %%QT_INCDIR%%/QtInputSupport/QtInputSupportVersion %%QT_INCDIR%%/QtInputSupport/qintegrityhidmanager.h %%QT_INCDIR%%/QtInputSupport/qtinputsupportversion.h %%QT_INCDIR%%/QtKmsSupport/%%FULLVER%%/QtKmsSupport/private/qkmsdevice_p.h %%QT_INCDIR%%/QtKmsSupport/QtKmsSupport %%QT_INCDIR%%/QtKmsSupport/QtKmsSupportDepends %%QT_INCDIR%%/QtKmsSupport/QtKmsSupportVersion %%QT_INCDIR%%/QtKmsSupport/qtkmssupportversion.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/application_p.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/atspiadaptor_p.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/bridge_p.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/cache_p.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/constant_mappings_p.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/dbusconnection_p.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/struct_marshallers_p.h %%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupport %%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportDepends %%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportVersion %%QT_INCDIR%%/QtLinuxAccessibilitySupport/qtlinuxaccessibilitysupportversion.h %%QT_INCDIR%%/QtOpenGLExtensions/QOpenGLExtensions %%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensions %%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsDepends %%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsVersion %%QT_INCDIR%%/QtOpenGLExtensions/qopenglextensions.h %%QT_INCDIR%%/QtOpenGLExtensions/qtopenglextensionsversion.h %%QT_INCDIR%%/QtPlatformCompositorSupport/%%FULLVER%%/QtPlatformCompositorSupport/private/qopenglcompositor_p.h %%QT_INCDIR%%/QtPlatformCompositorSupport/%%FULLVER%%/QtPlatformCompositorSupport/private/qopenglcompositorbackingstore_p.h %%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupport %%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupportDepends %%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupportVersion %%QT_INCDIR%%/QtPlatformCompositorSupport/qtplatformcompositorsupportversion.h %%QT_INCDIR%%/QtPlatformHeaders/QCocoaNativeContext %%QT_INCDIR%%/QtPlatformHeaders/QCocoaWindowFunctions %%QT_INCDIR%%/QtPlatformHeaders/QEGLNativeContext %%QT_INCDIR%%/QtPlatformHeaders/QEglFSFunctions %%QT_INCDIR%%/QtPlatformHeaders/QGLXNativeContext %%QT_INCDIR%%/QtPlatformHeaders/QLinuxFbFunctions %%QT_INCDIR%%/QtPlatformHeaders/QPlatformHeaderHelper %%QT_INCDIR%%/QtPlatformHeaders/QWGLNativeContext %%QT_INCDIR%%/QtPlatformHeaders/QWaylandWindowFunctions %%QT_INCDIR%%/QtPlatformHeaders/QWindowsWindowFunctions %%QT_INCDIR%%/QtPlatformHeaders/QXcbScreenFunctions %%QT_INCDIR%%/QtPlatformHeaders/QXcbWindowFunctions %%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeaders %%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersDepends %%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersVersion %%QT_INCDIR%%/QtPlatformHeaders/qcocoanativecontext.h %%QT_INCDIR%%/QtPlatformHeaders/qcocoawindowfunctions.h %%QT_INCDIR%%/QtPlatformHeaders/qeglfsfunctions.h %%QT_INCDIR%%/QtPlatformHeaders/qeglnativecontext.h %%QT_INCDIR%%/QtPlatformHeaders/qglxnativecontext.h %%QT_INCDIR%%/QtPlatformHeaders/qlinuxfbfunctions.h %%QT_INCDIR%%/QtPlatformHeaders/qplatformheaderhelper.h %%QT_INCDIR%%/QtPlatformHeaders/qtplatformheadersversion.h %%QT_INCDIR%%/QtPlatformHeaders/qwaylandwindowfunctions.h %%QT_INCDIR%%/QtPlatformHeaders/qwglnativecontext.h %%QT_INCDIR%%/QtPlatformHeaders/qwindowswindowfunctions.h %%QT_INCDIR%%/QtPlatformHeaders/qxcbscreenfunctions.h %%QT_INCDIR%%/QtPlatformHeaders/qxcbwindowfunctions.h %%QT_INCDIR%%/QtServiceSupport/%%FULLVER%%/QtServiceSupport/private/qgenericunixservices_p.h %%QT_INCDIR%%/QtServiceSupport/QtServiceSupport %%QT_INCDIR%%/QtServiceSupport/QtServiceSupportDepends %%QT_INCDIR%%/QtServiceSupport/QtServiceSupportVersion %%QT_INCDIR%%/QtServiceSupport/qtservicesupportversion.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qabstractfileiconengine_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuadaptor_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenubar_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuconnection_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuregistrarproxy_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenutypes_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusplatformmenu_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbustrayicon_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbustraytypes_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qgenericunixthemes_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qstatusnotifieritemadaptor_p.h %%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qxdgnotificationproxy_p.h %%QT_INCDIR%%/QtThemeSupport/QtThemeSupport %%QT_INCDIR%%/QtThemeSupport/QtThemeSupportDepends %%QT_INCDIR%%/QtThemeSupport/QtThemeSupportVersion %%QT_INCDIR%%/QtThemeSupport/qtthemesupportversion.h %%QT_INCDIR%%/QtXkbCommonSupport/%%FULLVER%%/QtXkbCommonSupport/private/qxkbcommon_p.h %%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupport %%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupportDepends %%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupportVersion %%QT_INCDIR%%/QtXkbCommonSupport/qtxkbcommonsupportversion.h +%%QT_CMAKEDIR%%/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5DeviceDiscoverySupport/Qt5DeviceDiscoverySupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5DeviceDiscoverySupport/Qt5DeviceDiscoverySupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5EdidSupport/Qt5EdidSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5EdidSupport/Qt5EdidSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5EglSupport/Qt5EglSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5EglSupport/Qt5EglSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5FbSupport/Qt5FbSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5FbSupport/Qt5FbSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5GlxSupport/Qt5GlxSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5GlxSupport/Qt5GlxSupportConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfig.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigExtras.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdFbIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdKeyboardPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdMousePlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevKeyboardPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevMousePlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevTabletPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevTouchScreenPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QGifPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QICOPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QJpegPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QVncIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake +%%QT_CMAKEDIR%%/Qt5InputSupport/Qt5InputSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5InputSupport/Qt5InputSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5KmsSupport/Qt5KmsSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5KmsSupport/Qt5KmsSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5LinuxAccessibilitySupport/Qt5LinuxAccessibilitySupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5LinuxAccessibilitySupport/Qt5LinuxAccessibilitySupportConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake %%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5PlatformCompositorSupport/Qt5PlatformCompositorSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5PlatformCompositorSupport/Qt5PlatformCompositorSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5ServiceSupport/Qt5ServiceSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5ServiceSupport/Qt5ServiceSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5ThemeSupport/Qt5ThemeSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5ThemeSupport/Qt5ThemeSupportConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5XcbQpa/Qt5XcbQpaConfig.cmake +%%QT_CMAKEDIR%%/Qt5XcbQpa/Qt5XcbQpaConfigVersion.cmake +%%QT_CMAKEDIR%%/Qt5XkbCommonSupport/Qt5XkbCommonSupportConfig.cmake +%%QT_CMAKEDIR%%/Qt5XkbCommonSupport/Qt5XkbCommonSupportConfigVersion.cmake %%QT_BINDIR%%/qvkgen %%QT_LIBDIR%%/libQt5AccessibilitySupport.a %%QT_LIBDIR%%/libQt5AccessibilitySupport.prl %%QT_LIBDIR%%/libQt5DeviceDiscoverySupport.a %%QT_LIBDIR%%/libQt5DeviceDiscoverySupport.prl %%QT_LIBDIR%%/libQt5EdidSupport.a %%QT_LIBDIR%%/libQt5EdidSupport.prl %%QT_LIBDIR%%/libQt5EglSupport.a %%QT_LIBDIR%%/libQt5EglSupport.prl %%QT_LIBDIR%%/libQt5EventDispatcherSupport.a %%QT_LIBDIR%%/libQt5EventDispatcherSupport.prl %%QT_LIBDIR%%/libQt5FbSupport.a %%QT_LIBDIR%%/libQt5FbSupport.prl %%QT_LIBDIR%%/libQt5FontDatabaseSupport.a %%QT_LIBDIR%%/libQt5FontDatabaseSupport.prl %%QT_LIBDIR%%/libQt5GlxSupport.a %%QT_LIBDIR%%/libQt5GlxSupport.prl %%QT_LIBDIR%%/libQt5Gui.prl %%QT_LIBDIR%%/libQt5Gui.so %%QT_LIBDIR%%/libQt5Gui.so.5 %%QT_LIBDIR%%/libQt5Gui.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5InputSupport.a %%QT_LIBDIR%%/libQt5InputSupport.prl %%QT_LIBDIR%%/libQt5XkbCommonSupport.a %%QT_LIBDIR%%/libQt5XkbCommonSupport.prl %%QT_LIBDIR%%/libQt5KmsSupport.a %%QT_LIBDIR%%/libQt5KmsSupport.prl %%QT_LIBDIR%%/libQt5LinuxAccessibilitySupport.a %%QT_LIBDIR%%/libQt5LinuxAccessibilitySupport.prl %%QT_LIBDIR%%/libQt5OpenGLExtensions.a %%QT_LIBDIR%%/libQt5OpenGLExtensions.prl %%QT_LIBDIR%%/libQt5PlatformCompositorSupport.a %%QT_LIBDIR%%/libQt5PlatformCompositorSupport.prl %%QT_LIBDIR%%/libQt5ServiceSupport.a %%QT_LIBDIR%%/libQt5ServiceSupport.prl %%QT_LIBDIR%%/libQt5ThemeSupport.a %%QT_LIBDIR%%/libQt5ThemeSupport.prl %%QT_LIBDIR%%/libQt5XcbQpa.prl %%QT_LIBDIR%%/libQt5XcbQpa.so %%QT_LIBDIR%%/libQt5XcbQpa.so.5 %%QT_LIBDIR%%/libQt5XcbQpa.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_accessibility_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_devicediscovery_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_edid_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_egl_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_eventdispatcher_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_fb_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_fontdatabase_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_glx_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_gui.pri %%QT_MKSPECDIR%%/modules/qt_lib_gui_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_input_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_kms_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_linuxaccessibility_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_openglextensions.pri %%QT_MKSPECDIR%%/modules/qt_lib_openglextensions_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_platformcompositor_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_service_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_theme_support_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_xcb_qpa_lib_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_xkbcommon_support_private.pri %%QT_PLUGINDIR%%/generic/libqbsdkeyboardplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/generic/libqbsdkeyboardplugin.so.debug %%QT_PLUGINDIR%%/generic/libqbsdmouseplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/generic/libqbsdmouseplugin.so.debug %%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so.debug %%QT_PLUGINDIR%%/generic/libqevdevkeyboardplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevkeyboardplugin.so.debug %%QT_PLUGINDIR%%/generic/libqevdevmouseplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevmouseplugin.so.debug %%QT_PLUGINDIR%%/generic/libqevdevtabletplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevtabletplugin.so.debug %%QT_PLUGINDIR%%/generic/libqevdevtouchplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevtouchplugin.so.debug %%QT_PLUGINDIR%%/imageformats/libqgif.so %%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqgif.so.debug %%QT_PLUGINDIR%%/imageformats/libqico.so %%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqico.so.debug %%QT_PLUGINDIR%%/imageformats/libqjpeg.so %%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqjpeg.so.debug %%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so.debug %%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so.debug %%QT_PLUGINDIR%%/platforms/libqbsdfb.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqbsdfb.so.debug %%QT_PLUGINDIR%%/platforms/libqminimal.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqminimal.so.debug %%QT_PLUGINDIR%%/platforms/libqoffscreen.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqoffscreen.so.debug %%QT_PLUGINDIR%%/platforms/libqvnc.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqvnc.so.debug %%QT_PLUGINDIR%%/platforms/libqxcb.so %%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqxcb.so.debug %%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so %%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so.debug %%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so %%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so.debug libdata/pkgconfig/Qt5Gui.pc libdata/pkgconfig/Qt5OpenGLExtensions.pc Index: head/x11-toolkits/qt5-quickcontrols/Makefile =================================================================== --- head/x11-toolkits/qt5-quickcontrols/Makefile (revision 517079) +++ head/x11-toolkits/qt5-quickcontrols/Makefile (revision 517080) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= quickcontrols DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Set of controls for building complete interfaces in Qt Quick BROKEN_armv6= fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: No such file or directory USES= compiler:c++11-lang qmake qt-dist:5,quickcontrols USE_QT= core declarative gui widgets \ buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/x11-toolkits/qt5-quickcontrols2/Makefile =================================================================== --- head/x11-toolkits/qt5-quickcontrols2/Makefile (revision 517079) +++ head/x11-toolkits/qt5-quickcontrols2/Makefile (revision 517080) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= quickcontrols2 DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Set of controls for building complete interfaces in Qt Quick BROKEN_armv6= fails to install: pkg-static: Unable to access file DayOfWeekRow.qmlc: No such file or directory USES= compiler:c++11-lang qmake:norecursive qt-dist:5 USE_QT= core declarative gui widgets \ buildtools_build QT_DIST= ${PORTNAME} USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/x11-toolkits/qt5-uiplugin/Makefile =================================================================== --- head/x11-toolkits/qt5-uiplugin/Makefile (revision 517079) +++ head/x11-toolkits/qt5-uiplugin/Makefile (revision 517080) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= uiplugin DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Custom Qt widget plugin interface for Qt Designer USES= compiler:c++17-lang qmake qt-dist:5,tools USE_QT= core gui widgets BUILD_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} .include Index: head/x11-toolkits/qt5-uiplugin/pkg-plist =================================================================== --- head/x11-toolkits/qt5-uiplugin/pkg-plist (revision 517079) +++ head/x11-toolkits/qt5-uiplugin/pkg-plist (revision 517080) @@ -1,12 +1,14 @@ %%QT_INCDIR%%/QtUiPlugin/QDesignerCustomWidgetCollectionInterface %%QT_INCDIR%%/QtUiPlugin/QDesignerCustomWidgetInterface %%QT_INCDIR%%/QtUiPlugin/QDesignerExportWidget %%QT_INCDIR%%/QtUiPlugin/QtUiPlugin %%QT_INCDIR%%/QtUiPlugin/QtUiPluginDepends %%QT_INCDIR%%/QtUiPlugin/QtUiPluginVersion %%QT_INCDIR%%/QtUiPlugin/customwidget.h %%QT_INCDIR%%/QtUiPlugin/qdesignerexportwidget.h %%QT_INCDIR%%/QtUiPlugin/qtuipluginversion.h %%QT_CMAKEDIR%%/Qt5UiPlugin/Qt5UiPluginConfig.cmake %%QT_CMAKEDIR%%/Qt5UiPlugin/Qt5UiPluginConfigVersion.cmake %%QT_MKSPECDIR%%/modules/qt_lib_uiplugin.pri +%%QT_LIBDIR%%/libQt5UiPlugin.prl +libdata/pkgconfig/Qt5UiPlugin.pc Index: head/x11-toolkits/qt5-virtualkeyboard/Makefile =================================================================== --- head/x11-toolkits/qt5-virtualkeyboard/Makefile (revision 517079) +++ head/x11-toolkits/qt5-virtualkeyboard/Makefile (revision 517080) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= virtualkeyboard DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 Virtual Keyboard Module LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell USES= compiler:c++11-lang pkgconfig qmake qt-dist:5,virtualkeyboard USE_QT= core declarative network gui widgets svg buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} # Disable the builtin layouts -- otherwise we need to pull in a lot of other # stuff. QMAKE_ARGS= CONFIG+=disable-layouts .include Index: head/x11-toolkits/qt5-virtualkeyboard/pkg-plist =================================================================== --- head/x11-toolkits/qt5-virtualkeyboard/pkg-plist (revision 517079) +++ head/x11-toolkits/qt5-virtualkeyboard/pkg-plist (revision 517080) @@ -1,84 +1,86 @@ %%QT_INCDIR%%/QtHunspellInputMethod/%%FULLVER%%/QtHunspellInputMethod/private/hunspellinputmethod_p.h %%QT_INCDIR%%/QtHunspellInputMethod/%%FULLVER%%/QtHunspellInputMethod/private/hunspellinputmethod_p_p.h %%QT_INCDIR%%/QtHunspellInputMethod/%%FULLVER%%/QtHunspellInputMethod/private/hunspellworker_p.h %%QT_INCDIR%%/QtHunspellInputMethod/QtHunspellInputMethod %%QT_INCDIR%%/QtHunspellInputMethod/QtHunspellInputMethodDepends %%QT_INCDIR%%/QtHunspellInputMethod/QtHunspellInputMethodVersion %%QT_INCDIR%%/QtHunspellInputMethod/qhunspellinputmethod_global.h %%QT_INCDIR%%/QtHunspellInputMethod/qthunspellinputmethodversion.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/abstractinputpanel_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/appinputpanel_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/appinputpanel_p_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/desktopinputpanel_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/desktopinputselectioncontrol_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/enterkeyaction_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/enterkeyactionattachedtype_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/fallbackinputmethod_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/gesturerecognizer_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/handwritinggesturerecognizer_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/inputmethod_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/inputselectionhandle_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/inputview_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/plaininputmethod_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/platforminputcontext_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/qvirtualkeyboard_staticplugin_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/qvirtualkeyboardinputcontext_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/settings_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/shadowinputcontext_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/shifthandler_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/unipentrace_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/virtualkeyboarddebug_p.h %%QT_INCDIR%%/QtVirtualKeyboard/%%FULLVER%%/QtVirtualKeyboard/private/virtualkeyboardsettings_p.h %%QT_INCDIR%%/QtVirtualKeyboard/QVirtualKeyboardAbstractInputMethod %%QT_INCDIR%%/QtVirtualKeyboard/QVirtualKeyboardExtensionPlugin %%QT_INCDIR%%/QtVirtualKeyboard/QVirtualKeyboardInputContext %%QT_INCDIR%%/QtVirtualKeyboard/QVirtualKeyboardInputEngine %%QT_INCDIR%%/QtVirtualKeyboard/QVirtualKeyboardSelectionListModel %%QT_INCDIR%%/QtVirtualKeyboard/QVirtualKeyboardTrace %%QT_INCDIR%%/QtVirtualKeyboard/QtVirtualKeyboard %%QT_INCDIR%%/QtVirtualKeyboard/QtVirtualKeyboardDepends %%QT_INCDIR%%/QtVirtualKeyboard/QtVirtualKeyboardVersion %%QT_INCDIR%%/QtVirtualKeyboard/qtvirtualkeyboardversion.h %%QT_INCDIR%%/QtVirtualKeyboard/qvirtualkeyboard_global.h %%QT_INCDIR%%/QtVirtualKeyboard/qvirtualkeyboardabstractinputmethod.h %%QT_INCDIR%%/QtVirtualKeyboard/qvirtualkeyboardextensionplugin.h %%QT_INCDIR%%/QtVirtualKeyboard/qvirtualkeyboardinputcontext.h %%QT_INCDIR%%/QtVirtualKeyboard/qvirtualkeyboardinputengine.h %%QT_INCDIR%%/QtVirtualKeyboard/qvirtualkeyboardselectionlistmodel.h %%QT_INCDIR%%/QtVirtualKeyboard/qvirtualkeyboardtrace.h %%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake +%%QT_CMAKEDIR%%/Qt5HunspellInputMethod/Qt5HunspellInputMethodConfig.cmake +%%QT_CMAKEDIR%%/Qt5HunspellInputMethod/Qt5HunspellInputMethodConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfig.cmake %%QT_CMAKEDIR%%/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardHunspellPlugin.cmake %%QT_LIBDIR%%/libQt5HunspellInputMethod.prl %%QT_LIBDIR%%/libQt5HunspellInputMethod.so %%QT_LIBDIR%%/libQt5HunspellInputMethod.so.5 %%QT_LIBDIR%%/libQt5HunspellInputMethod.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5HunspellInputMethod.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5HunspellInputMethod.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5VirtualKeyboard.prl %%QT_LIBDIR%%/libQt5VirtualKeyboard.so %%QT_LIBDIR%%/libQt5VirtualKeyboard.so.5 %%QT_LIBDIR%%/libQt5VirtualKeyboard.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5VirtualKeyboard.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5VirtualKeyboard.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_hunspellinputmethod_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_virtualkeyboard.pri %%QT_MKSPECDIR%%/modules/qt_lib_virtualkeyboard_private.pri %%QT_PLUGINDIR%%/platforminputcontexts/libqtvirtualkeyboardplugin.so %%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libqtvirtualkeyboardplugin.so.debug %%QT_PLUGINDIR%%/virtualkeyboard/libqtvirtualkeyboard_hunspell.so %%DEBUG%%%%QT_PLUGINDIR%%/virtualkeyboard/libqtvirtualkeyboard_hunspell.so.debug %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Settings/libqtquickvirtualkeyboardsettingsplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Settings/libqtquickvirtualkeyboardsettingsplugin.so.debug %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Settings/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Settings/qmldir %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/libqtquickvirtualkeyboardstylesplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/libqtquickvirtualkeyboardstylesplugin.so.debug %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/Styles/qmldir %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/libqtquickvirtualkeyboardplugin.so %%DEBUG%%%%QT_QMLDIR%%/QtQuick/VirtualKeyboard/libqtquickvirtualkeyboardplugin.so.debug %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/plugins.qmltypes %%QT_QMLDIR%%/QtQuick/VirtualKeyboard/qmldir libdata/pkgconfig/Qt5VirtualKeyboard.pc Index: head/x11-toolkits/qt5-widgets/Makefile =================================================================== --- head/x11-toolkits/qt5-widgets/Makefile (revision 517079) +++ head/x11-toolkits/qt5-widgets/Makefile (revision 517080) @@ -1,73 +1,72 @@ # $FreeBSD$ PORTNAME= widgets DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt C++ widgets module USES= compiler:c++11-lang qmake:no_env qt-dist:5,base xorg USE_QT= core gui qmake_build buildtools_build USE_XORG= x11 HAS_CONFIGURE= yes USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} MORE_WRKSRCS= src/tools/uic QT_DEFINES= ACCESSIBILITY WIDGETS XSYNC QT_CONFIG= accessibility accessibility-atspi-bridge xlib OPTIONS_DEFINE= GTK3 OPTIONS_SUB= YES GTK3_DESC= GTK+-based Qt theme GTK3_USES= gnome GTK3_USE= GNOME=gtk30 QT=dbus GTK3_CONFIGURE_ON= -gtk GTK3_CONFIGURE_OFF= -no-gtk .include .if ${PORT_OPTIONS:MGTK3} QT_DEFINES+= STYLE_GTK QT_CONFIG+= gtk MORE_WRKSRCS+= src/plugins/platformthemes .else QT_DEFINES+= -STYLE_GTK QT_CONFIG+= -gtk .endif post-configure: .for d in src/tools/uic src/widgets ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor pre-build: cd ${WRKSRC}/src/tools/uic && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} post-build: .for d in ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-install: .for d in src/tools/uic ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} .endfor ${INSTALL_DATA} ${BUILD_WRKSRC}/dialogs/images/qtlogo-64.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/qt5logo.png .include