Index: head/Mk/Uses/qt-dist.mk =================================================================== --- head/Mk/Uses/qt-dist.mk (revision 492792) +++ head/Mk/Uses/qt-dist.mk (revision 492793) @@ -1,390 +1,392 @@ # $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 Qt4 or 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 _QT4_DISTS= yes _QT5_DISTS= 3d activeqt androidextras base canvas3d charts connectivity \ datavis3d declarative doc gamepad graphicaleffects imageformats \ location macextras multimedia networkauth purchasing \ quickcontrols2 quickcontrols remoteobjects script scxml sensors \ serialbus serialport speech svg tools translations \ virtualkeyboard wayland webchannel webengine 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:M4} _QT_DIST= yes # don't force qt-dist to be set for Qt4 ports which all have 'yes'. . endif . 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:M4} MASTER_SITE_SUBDIR?= archive/qt/${_QT_VERSION:R}/${_QT_VERSION}/ DISTNAME= qt-everywhere-opensource-src-${_QT_VERSION} DIST_SUBDIR= KDE . else 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. # This could arguably work for Qt4 too, but since it is maintenance mode it is # better not to fix what is not explicitly broken there. 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:M4} 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:M4} CONFIGURE_ARGS+= -fast \ -platform ${QMAKESPEC} \ -system-libjpeg -system-libpng \ -system-libmng -system-libtiff -system-zlib \ -no-phonon-backend \ -examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL}/examples \ -demosdir ${PREFIX}/${QT_EXAMPLEDIR_REL}/demos . else 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:M4} . 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" || ${_QT_VER:M4} . if ${_QT_VER:M4} _EXTRA_PATCHES_QT4= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-src-corelib-global-qglobal.h \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-libtool \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-config.tests-unix-compile.test # Patch in proper name for armv6 architecture: https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html _EXTRA_PATCHES_QT4+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-armv6 _EXTRA_PATCHES_QT4+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-aarch64 . else _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 . 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 USE_GCC= yes . endif . endif EXTRA_PATCHES?= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-configure \ ${_EXTRA_PATCHES_QT4} ${_EXTRA_PATCHES_QT5} . endif # ${_QT_DIST} == "base" || ${_QT_VER:M4} # 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[45]/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:M4} . 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 .if ${_QT_VER:M5} post-patch: gcc-post-patch gcc-post-patch: ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/mkspecs/common/gcc-base.conf ${REINPLACE_CMD} 's|%%GCC_DEFAULT%%|${GCC_DEFAULT}|' ${WRKSRC}/mkspecs/common/gcc-base.conf \ ${WRKSRC}/mkspecs/common/g++-base.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 "/DEFAULT_LIBDIRS=/ s,\\\\\"\\\\n,\\\\n${LOCALBASE}/lib&," \ - ${WRKSRC}/configure + ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + ${WRKSRC}//mkspecs/common/bsd/bsd.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' >> ${CONFIGURE_WRKSRC}/.qmake.cache + ${ECHO_CMD} 'QMAKE_DEFAULT_INCDIRS = ${LOCALBASE}/include' >> ${CONFIGURE_WRKSRC}/.qmake.cache 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 # M4 .endif # defined(_QT_DIST_MK_INCLUDED) Index: head/Mk/Uses/qt.mk =================================================================== --- head/Mk/Uses/qt.mk (revision 492792) +++ head/Mk/Uses/qt.mk (revision 492793) @@ -1,507 +1,507 @@ # $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 Qt4 or Qt5 # - auto includes qt.mk and qmake.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # Usage: # USES=qt:[,no_env] # # Versions: 4 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. # Global switches (for inclusion into /etc/make.conf): # QT4_OPTIONS - A list of (Qt 4-only) global options; can be CUPS, NAS # and/or QGTKSTYLE. If set, Qt will be built with support # for: # * Common UNIX Printing System (CUPS); # * Network Audio System (NAS); # * GTK+-based Qt theme (QGTKSTYLE). .if !defined(_QT_MK_INCLUDED) _QT_MK_INCLUDED= qt.mk # Qt versions currently supported by the framework. _QT_SUPPORTED?= 4 5 QT4_VERSION?= 4.8.7 -QT5_VERSION?= 5.12.0 +QT5_VERSION?= 5.12.1 # 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. . if ${_QT_VERSION:M4*} QT_MKSPECDIR_REL= ${QT_DATADIR_REL}/mkspecs _QT_LIBVER= # empty . else QT_MKSPECDIR_REL= ${QT_ARCHDIR_REL}/mkspecs _QT_LIBVER= ${_QT_VERSION:R:R} . endif 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-ibase sql-mysql sql-odbc sql-pgsql \ sql-sqlite2 sql-sqlite3 svg testlib webkit \ xml xmlpatterns _USE_QT4_ONLY= accessible assistant-adp assistantclient clucene codecs-cn codecs-jp \ codecs-kr codecs-tw corelib demo graphicssystems-opengl \ help-tools iconengines inputmethods makeqpf moc phonon \ phonon-gst porting qdoc3 qmlviewer qt3support qtconfig \ qtestlib qvfb rcc uic uic3 xmlpatterns-tool _USE_QT5_ONLY= 3d buildtools canvas3d 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 \ webengine websockets websockets-qml webview widgets x11extras # Dependency tuples: _LIB should be preferred if possible. 3d_PORT= graphics/${_QT_RELNAME}-3d 3d_LIB= libQt${_QT_LIBVER}3DCore.so accessible_PORT= accessibility/${_QT_RELNAME}-accessible accessible_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/accessible/libqtaccessiblewidgets.so assistant_PORT= devel/${_QT_RELNAME}-assistant assistant_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/assistant assistant-adp_PORT= devel/${_QT_RELNAME}-assistant-adp assistant-adp_PATH= assistant_adp assistantclient_PORT= devel/${_QT_RELNAME}-libqtassistantclient assistantclient_LIB= libQt${_QT_LIBVER}AssistantClient.so buildtools_PORT= devel/${_QT_RELNAME}-buildtools buildtools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/moc canvas3d_PORT= x11-toolkits/${_QT_RELNAME}-canvas3d canvas3d_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtCanvas3D/qmldir charts_PORT= x11-toolkits/${_QT_RELNAME}-charts charts_LIB= libQt${_QT_LIBVER}Charts.so clucene_PORT= textproc/${_QT_RELNAME}-clucene clucene_LIB= libQt${_QT_LIBVER}CLucene.so codecs-cn_PORT= chinese/${_QT_RELNAME}-codecs-cn codecs-cn_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/codecs/libqcncodecs.so codecs-jp_PORT= japanese/${_QT_RELNAME}-codecs-jp codecs-jp_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/codecs/libqjpcodecs.so codecs-kr_PORT= korean/${_QT_RELNAME}-codecs-kr codecs-kr_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/codecs/libqkrcodecs.so codecs-tw_PORT= chinese/${_QT_RELNAME}-codecs-tw codecs-tw_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/codecs/libqtwcodecs.so concurrent_PORT= devel/${_QT_RELNAME}-concurrent concurrent_LIB= libQt${_QT_LIBVER}Concurrent.so connectivity_PORT= comms/${_QT_RELNAME}-connectivity connectivity_LIB= libQt${_QT_LIBVER}Bluetooth.so core_PORT= devel/${_QT_RELNAME}-core core_LIB= libQt${_QT_LIBVER}Core.so corelib_PORT= devel/${_QT_RELNAME}-corelib corelib_LIB= ${core_LIB} datavis3d_PORT= x11-toolkits/${_QT_RELNAME}-datavis3d datavis3d_LIB= libQt${_QT_LIBVER}DataVisualization.so dbus_PORT= devel/${_QT_RELNAME}-dbus dbus_LIB= libQt${_QT_LIBVER}DBus.so declarative_PORT= x11-toolkits/${_QT_RELNAME}-declarative . if ${_QT_VER:M4} declarative_LIB= libQt${_QT_LIBVER}Declarative.so . else declarative_LIB= libQt${_QT_LIBVER}Qml.so . endif demo_PORT= misc/${_QT_RELNAME}-qtdemo demo_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtdemo designer_PORT= devel/${_QT_RELNAME}-designer designer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/designer diag_PORT= sysutils/${_QT_RELNAME}-qtdiag diag_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtdiag doc_PORT= misc/${_QT_RELNAME}-doc doc_PATH= ${_QT_RELNAME}-doc>=${_QT_VERSION:R:R} examples_PORT= misc/${_QT_RELNAME}-examples examples_PATH= ${_QT_RELNAME}-examples>=${_QT_VERSION:R:R} gamepad_PORT= x11-toolkits/${_QT_RELNAME}-gamepad gamepad_LIB= libQt${_QT_LIBVER}Gamepad.so graphicaleffects_PORT= graphics/${_QT_RELNAME}-graphicaleffects graphicaleffects_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtGraphicalEffects/qmldir graphicssystems-opengl_PORT= x11/${_QT_RELNAME}-graphicssystems-opengl graphicssystems-opengl_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/graphicssystems/libqglgraphicssystem.so gui_PORT= x11-toolkits/${_QT_RELNAME}-gui gui_LIB= libQt${_QT_LIBVER}Gui.so help_PORT= devel/${_QT_RELNAME}-help help_LIB= libQt${_QT_LIBVER}Help.so help-tools_PORT= devel/${_QT_RELNAME}-help-tools help-tools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qhelpgenerator iconengines_PORT= graphics/${_QT_RELNAME}-iconengines iconengines_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/iconengines/libqsvgicon.so imageformats_PORT= graphics/${_QT_RELNAME}-imageformats imageformats_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/imageformats/libqtiff.so inputmethods_PORT= x11/${_QT_RELNAME}-inputmethods inputmethods_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/inputmethods/libqimsw-multi.so linguist_PORT= devel/${_QT_RELNAME}-linguist linguist_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/linguist linguisttools_PORT= devel/${_QT_RELNAME}-linguisttools linguisttools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/lrelease location_PORT= devel/${_QT_RELNAME}-location location_LIB= libQt${_QT_LIBVER}Location.so l10n_PORT= misc/${_QT_RELNAME}-l10n l10n_PATH= ${_QT_RELNAME}-l10n>=${_QT_VERSION:R:R} makeqpf_PORT= devel/${_QT_RELNAME}-makeqpf makeqpf_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/makeqpf moc_PORT= devel/${_QT_RELNAME}-moc moc_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/moc multimedia_PORT= multimedia/${_QT_RELNAME}-multimedia multimedia_LIB= libQt${_QT_LIBVER}Multimedia.so network_PORT= net/${_QT_RELNAME}-network network_LIB= libQt${_QT_LIBVER}Network.so networkauth_PORT= net/${_QT_RELNAME}-networkauth networkauth_LIB= libQt${_QT_LIBVER}NetworkAuth.so opengl_PORT= graphics/${_QT_RELNAME}-opengl opengl_LIB= libQt${_QT_LIBVER}OpenGL.so paths_PORT= sysutils/${_QT_RELNAME}-qtpaths paths_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtpaths pixeltool_PORT= graphics/${_QT_RELNAME}-pixeltool pixeltool_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/pixeltool phonon_PORT= multimedia/phonon@${_QT_RELNAME} phonon_LIB= libphonon.so phonon4_PORT= multimedia/phonon@${_QT_RELNAME} phonon4_LIB= libphonon4${_QT_RELNAME}.so phonon-gst_PORT= multimedia/phonon-gstreamer@${_QT_RELNAME} phonon-gst_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/phonon_backend/libphonon_gstreamer.so plugininfo_PORT= sysutils/${_QT_RELNAME}-qtplugininfo plugininfo_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtplugininfo porting_PORT= devel/${_QT_RELNAME}-porting porting_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qt3to4 printsupport_PORT= print/${_QT_RELNAME}-printsupport printsupport_LIB= libQt${_QT_LIBVER}PrintSupport.so qdbus_PORT= devel/${_QT_RELNAME}-qdbus qdbus_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbus qdbusviewer_PORT= devel/${_QT_RELNAME}-qdbusviewer qdbusviewer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbusviewer qdoc_PORT= devel/${_QT_RELNAME}-qdoc qdoc_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdoc qdoc-data_PORT= devel/${_QT_RELNAME}-qdoc-data qdoc-data_PATH= ${LOCALBASE}/${QT_DOCDIR_REL}/global/config.qdocconf qdoc3_PORT= devel/${_QT_RELNAME}-qdoc3 qdoc3_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdoc3 qev_PORT= x11/${_QT_RELNAME}-qev qev_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qev qmake_PORT= devel/${_QT_RELNAME}-qmake qmake_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qmake qmlviewer_PORT= devel/${_QT_RELNAME}-qmlviewer qmlviewer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qmlviewer qt3support_PORT= devel/${_QT_RELNAME}-qt3support qt3support_LIB= libQt${_QT_LIBVER}3Support.so qtconfig_PORT= misc/${_QT_RELNAME}-qtconfig qtconfig_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtconfig qtestlib_PORT= ${testlib_PORT} qtestlib_LIB= ${testlib_LIB} quickcontrols_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols quickcontrols_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtQuick/Controls/qmldir quickcontrols2_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols2 quickcontrols2_LIB= libQt${_QT_LIBVER}QuickControls2.so qvfb_PORT= devel/${_QT_RELNAME}-qvfb qvfb_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qvfb rcc_PORT= devel/${_QT_RELNAME}-rcc rcc_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/rcc remoteobjects_PORT= devel/${_QT_RELNAME}-remoteobjects remoteobjects_LIB= libQt${_QT_LIBVER}RemoteObjects.so sensors_PORT= comms/${_QT_RELNAME}-sensors sensors_LIB= libQt${_QT_LIBVER}Sensors.so script_PORT= devel/${_QT_RELNAME}-script script_LIB= libQt${_QT_LIBVER}Script.so scripttools_PORT= devel/${_QT_RELNAME}-scripttools scripttools_LIB= libQt${_QT_LIBVER}ScriptTools.so scxml_PORT= devel/${_QT_RELNAME}-scxml scxml_LIB= libQt${_QT_LIBVER}Scxml.so serialbus_PORT= comms/${_QT_RELNAME}-serialbus serialbus_LIB= libQt${_QT_LIBVER}SerialBus.so serialport_PORT= comms/${_QT_RELNAME}-serialport serialport_LIB= libQt${_QT_LIBVER}SerialPort.so speech_PORT= accessibility/${_QT_RELNAME}-speech speech_LIB= libQt${_QT_LIBVER}TextToSpeech.so sql_PORT= databases/${_QT_RELNAME}-sql sql_LIB= libQt${_QT_LIBVER}Sql.so sql-pgsql_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlpsql.so . if ${_QT_VERSION:M4*} sql-sqlite2_PORT= databases/${_QT_RELNAME}-sqlite-plugin . endif sql-sqlite3_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlite.so . for db in ibase mysql odbc pgsql sqlite2 sqlite3 tds . if ${_QT_VERSION:M4*} sql-${db}_PORT?= databases/${_QT_RELNAME}-${db}-plugin . else sql-${db}_PORT?= databases/${_QT_RELNAME}-sqldrivers-${db} . endif sql-${db}_PATH?= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsql${db:C/^sql//}.so . endfor svg_PORT= graphics/${_QT_RELNAME}-svg svg_LIB= libQt${_QT_LIBVER}Svg.so testlib_PORT= devel/${_QT_RELNAME}-testlib testlib_LIB= libQt${_QT_LIBVER}Test.so uic_PORT= devel/${_QT_RELNAME}-uic uic_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/uic uic3_PORT= devel/${_QT_RELNAME}-uic3 uic3_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/uic3 uiplugin_PORT= x11-toolkits/${_QT_RELNAME}-uiplugin uiplugin_PATH= ${LOCALBASE}/${QT_INCDIR_REL}/QtUiPlugin/QtUiPlugin uitools_PORT= devel/${_QT_RELNAME}-uitools uitools_PATH= ${LOCALBASE}/${QT_LIBDIR_REL}/libQt${_QT_LIBVER}UiTools.a virtualkeyboard_PORT= x11-toolkits/${_QT_RELNAME}-virtualkeyboard virtualkeyboard_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/platforminputcontexts/libqtvirtualkeyboardplugin.so webchannel_PORT= www/${_QT_RELNAME}-webchannel webchannel_LIB= libQt${_QT_LIBVER}WebChannel.so webengine_PORT= www/${_QT_RELNAME}-webengine webengine_LIB= libQt${_QT_LIBVER}WebEngine.so websockets_PORT= www/${_QT_RELNAME}-websockets websockets_LIB= libQt${_QT_LIBVER}WebSockets.so websockets-qml_PORT= www/${_QT_RELNAME}-websockets-qml websockets-qml_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtWebSockets/qmldir webkit_PORT= www/${_QT_RELNAME}-webkit webkit_LIB= libQt${_QT_LIBVER}WebKit.so webview_PORT= www/${_QT_RELNAME}-webview webview_LIB= libQt${_QT_LIBVER}WebView.so widgets_PORT= x11-toolkits/${_QT_RELNAME}-widgets widgets_LIB= libQt${_QT_LIBVER}Widgets.so x11extras_PORT= x11/${_QT_RELNAME}-x11extras x11extras_LIB= libQt${_QT_LIBVER}X11Extras.so xml_PORT= textproc/${_QT_RELNAME}-xml xml_LIB= libQt${_QT_LIBVER}Xml.so xmlpatterns_PORT= textproc/${_QT_RELNAME}-xmlpatterns xmlpatterns_LIB= libQt${_QT_LIBVER}XmlPatterns.so xmlpatterns-tool_PORT= textproc/${_QT_RELNAME}-xmlpatterns-tool xmlpatterns-tool_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/xmlpatterns # 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/_.+//} # Check that the component is valid. . if ${_USE_QT_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(${component}_PORT) && (defined(${component}_PATH) || defined(${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == "" ${component}_TYPE= # empty . if ${_USE_QT:M${component}_build} != "" ${component}_TYPE+= build . endif . if ${_USE_QT:M${component}_run} != "" ${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(${component}_TYPE) ${component}_TYPE= build run . endif # Set real dependencies. . if defined(${component}_LIB) && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} LIB_DEPENDS+= ${${component}_LIB}:${${component}_PORT} . else ${component}_PATH?= ${QT_LIBDIR}/${${component}_LIB} ${component}_DEPENDS= ${${component}_PATH}:${${component}_PORT} . if ${${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${${component}_DEPENDS} . endif . if ${${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${${component}_DEPENDS} . endif . endif # ${${component}_LIB} && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} . endif # defined(${component}_PORT) && defined(${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/accessibility/qt5-speech/Makefile =================================================================== --- head/accessibility/qt5-speech/Makefile (revision 492792) +++ head/accessibility/qt5-speech/Makefile (revision 492793) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= speech DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 CATEGORIES= accessibility PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Accessibilty features for Qt5 LIB_DEPENDS= libspeechd.so:accessibility/speech-dispatcher USES= compiler:c++11-lang pkgconfig qmake:outsource qt-dist:5,speech USE_QT= core gui buildtools_build qmake_build .include Index: head/comms/qt5-connectivity/Makefile =================================================================== --- head/comms/qt5-connectivity/Makefile (revision 492792) +++ head/comms/qt5-connectivity/Makefile (revision 492793) @@ -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 492792) +++ head/comms/qt5-sensors/Makefile (revision 492793) @@ -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 492792) +++ head/comms/qt5-serialbus/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= serialbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/comms/qt5-serialport/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= serialport DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/databases/qt5-sql/Makefile (revision 492793) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= sql DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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/databases/qt5-sqldrivers-ibase/Makefile =================================================================== --- head/databases/qt5-sqldrivers-ibase/Makefile (revision 492792) +++ head/databases/qt5-sqldrivers-ibase/Makefile (revision 492793) @@ -1,12 +1,11 @@ # $FreeBSD$ -PORTREVISION= 1 DB= IBase DB_DESC= InterBase/Firebird USES= firebird ONLY_FOR_ARCHS= i386 amd64 .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers" Index: head/databases/qt5-sqldrivers-mysql/Makefile =================================================================== --- head/databases/qt5-sqldrivers-mysql/Makefile (revision 492792) +++ head/databases/qt5-sqldrivers-mysql/Makefile (revision 492793) @@ -1,10 +1,9 @@ # $FreeBSD$ -PORTREVISION= 1 DB= MYSQL DB_DESC= MySQL USE_MYSQL= yes .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers" Index: head/databases/qt5-sqldrivers-odbc/Makefile =================================================================== --- head/databases/qt5-sqldrivers-odbc/Makefile (revision 492792) +++ head/databases/qt5-sqldrivers-odbc/Makefile (revision 492793) @@ -1,12 +1,11 @@ # $FreeBSD$ -PORTREVISION= 1 COMMENT= Qt ${DB_DESC} plugin DB= ODBC DB_DESC= Open Database Connectivity LIB_DEPENDS= libodbc.so:databases/unixODBC .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers" Index: head/databases/qt5-sqldrivers-pgsql/Makefile =================================================================== --- head/databases/qt5-sqldrivers-pgsql/Makefile (revision 492792) +++ head/databases/qt5-sqldrivers-pgsql/Makefile (revision 492793) @@ -1,11 +1,10 @@ # $FreeBSD$ PORTNAME= pgsql -PORTREVISION= 1 DB= PSQL DB_DESC= PostgreSQL USES+= pgsql .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers" Index: head/databases/qt5-sqldrivers-sqlite2/Makefile =================================================================== --- head/databases/qt5-sqldrivers-sqlite2/Makefile (revision 492792) +++ head/databases/qt5-sqldrivers-sqlite2/Makefile (revision 492793) @@ -1,10 +1,9 @@ # $FreeBSD$ -PORTREVISION= 1 DB= SQLite2 DB_DESC= SQLite 2 USES= sqlite:2 .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers" Index: head/databases/qt5-sqldrivers-sqlite3/Makefile =================================================================== --- head/databases/qt5-sqldrivers-sqlite3/Makefile (revision 492792) +++ head/databases/qt5-sqldrivers-sqlite3/Makefile (revision 492793) @@ -1,12 +1,11 @@ # $FreeBSD$ PORTNAME= sqlite3 -PORTREVISION= 1 DB= SQLite DB_DESC= SQLite 3 USES= sqlite:3 CONFIGURE_ARGS= -system-sqlite .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers" Index: head/databases/qt5-sqldrivers-tds/Makefile =================================================================== --- head/databases/qt5-sqldrivers-tds/Makefile (revision 492792) +++ head/databases/qt5-sqldrivers-tds/Makefile (revision 492793) @@ -1,10 +1,9 @@ # $FreeBSD$ -PORTREVISION= 1 DB= TDS DB_DESC= TDS Database Connectivity LIB_DEPENDS= libsybdb.so:databases/freetds .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers" Index: head/devel/qt5/distinfo =================================================================== --- head/devel/qt5/distinfo (revision 492792) +++ head/devel/qt5/distinfo (revision 492793) @@ -1,79 +1,79 @@ -TIMESTAMP = 1544129524 -SHA256 (KDE/Qt/5.12.0/qt3d-everywhere-src-5.12.0.tar.xz) = a12adc9c14ffa18ff5c4951efb41914d4840a0c2a88486eb8d39a4833e4631da -SIZE (KDE/Qt/5.12.0/qt3d-everywhere-src-5.12.0.tar.xz) = 84949704 -SHA256 (KDE/Qt/5.12.0/qtactiveqt-everywhere-src-5.12.0.tar.xz) = a22876b4243cb433042e7f4812974eac05935872f39cc880a3587bc3eae86d3e -SIZE (KDE/Qt/5.12.0/qtactiveqt-everywhere-src-5.12.0.tar.xz) = 261880 -SHA256 (KDE/Qt/5.12.0/qtandroidextras-everywhere-src-5.12.0.tar.xz) = f5a9a13bf8b8999250b27fd68c1ed4287f333d1cebed05ae9d0b29bf9f1d0868 -SIZE (KDE/Qt/5.12.0/qtandroidextras-everywhere-src-5.12.0.tar.xz) = 104620 -SHA256 (KDE/Qt/5.12.0/qtbase-everywhere-src-5.12.0.tar.xz) = 5e03221d780e121aabd734896aab8f331e5d8c9d9b54f1eb04907d0818eaeecb -SIZE (KDE/Qt/5.12.0/qtbase-everywhere-src-5.12.0.tar.xz) = 48288896 -SHA256 (KDE/Qt/5.12.0/qtcanvas3d-everywhere-src-5.12.0.tar.xz) = b21b9f01c498d0e51e3db4c54344147fb901c0f40ec8b3135609905b55f9c128 -SIZE (KDE/Qt/5.12.0/qtcanvas3d-everywhere-src-5.12.0.tar.xz) = 10914876 -SHA256 (KDE/Qt/5.12.0/qtcharts-everywhere-src-5.12.0.tar.xz) = 9cd71c4a4c10611083ce8f16992c59666d51b5275cc1a79f324ee18579ced450 -SIZE (KDE/Qt/5.12.0/qtcharts-everywhere-src-5.12.0.tar.xz) = 4242288 -SHA256 (KDE/Qt/5.12.0/qtconnectivity-everywhere-src-5.12.0.tar.xz) = 8ebca1ba859ebb5b0e8e6fffff1f8131dd84f9e44448df6ac58c8be32b5122a4 -SIZE (KDE/Qt/5.12.0/qtconnectivity-everywhere-src-5.12.0.tar.xz) = 2740124 -SHA256 (KDE/Qt/5.12.0/qtdatavis3d-everywhere-src-5.12.0.tar.xz) = 4eda7e352b5d7d58a19611f76a906e952f6a86451740a80a3759b8871090f433 -SIZE (KDE/Qt/5.12.0/qtdatavis3d-everywhere-src-5.12.0.tar.xz) = 5201308 -SHA256 (KDE/Qt/5.12.0/qtdeclarative-everywhere-src-5.12.0.tar.xz) = 4ffd58102b5714ae058f91cc31511f1c928978f77f01652beb9ce2352a4c227b -SIZE (KDE/Qt/5.12.0/qtdeclarative-everywhere-src-5.12.0.tar.xz) = 20436712 -SHA256 (KDE/Qt/5.12.0/qtdoc-everywhere-src-5.12.0.tar.xz) = 306576d717ffd37eafe10914dfa5a51301f3d5c701ef2416cc36b16a83520ccd -SIZE (KDE/Qt/5.12.0/qtdoc-everywhere-src-5.12.0.tar.xz) = 5588676 -SHA256 (KDE/Qt/5.12.0/qtgamepad-everywhere-src-5.12.0.tar.xz) = 4c1900b9917dc18584b2287cd7382f0668d71237ef8e71e3feb4d457c2b56091 -SIZE (KDE/Qt/5.12.0/qtgamepad-everywhere-src-5.12.0.tar.xz) = 385484 -SHA256 (KDE/Qt/5.12.0/qtgraphicaleffects-everywhere-src-5.12.0.tar.xz) = 81058fb12d4dd019bed6bb196a13ea5d308a390d72a1468da11171f8c3003455 -SIZE (KDE/Qt/5.12.0/qtgraphicaleffects-everywhere-src-5.12.0.tar.xz) = 14270812 -SHA256 (KDE/Qt/5.12.0/qtimageformats-everywhere-src-5.12.0.tar.xz) = 5f907de96d3db6276816f321b7e11cba7beb1fcc81bcb3f1729cde3b7599732e -SIZE (KDE/Qt/5.12.0/qtimageformats-everywhere-src-5.12.0.tar.xz) = 1774820 -SHA256 (KDE/Qt/5.12.0/qtlocation-everywhere-src-5.12.0.tar.xz) = b0a3134df3a00f6045405d3c12e0ea3ae7e640feaf38e238873df85424674449 -SIZE (KDE/Qt/5.12.0/qtlocation-everywhere-src-5.12.0.tar.xz) = 5898856 -SHA256 (KDE/Qt/5.12.0/qtmacextras-everywhere-src-5.12.0.tar.xz) = d90a7ba25543503ed40f6c248780b6859254536735d8f87fe5598f688c9cb003 -SIZE (KDE/Qt/5.12.0/qtmacextras-everywhere-src-5.12.0.tar.xz) = 68592 -SHA256 (KDE/Qt/5.12.0/qtmultimedia-everywhere-src-5.12.0.tar.xz) = 5c4b0cb9c08c57ce1aad3aee267c6f6270d254addfb2a6dd363a272e98e926a9 -SIZE (KDE/Qt/5.12.0/qtmultimedia-everywhere-src-5.12.0.tar.xz) = 3716764 -SHA256 (KDE/Qt/5.12.0/qtnetworkauth-everywhere-src-5.12.0.tar.xz) = 41111946f40ee110b789f365a398c3f27bc4fd6c0f9a8b1a72b79c81543e0775 -SIZE (KDE/Qt/5.12.0/qtnetworkauth-everywhere-src-5.12.0.tar.xz) = 139012 -SHA256 (KDE/Qt/5.12.0/qtpurchasing-everywhere-src-5.12.0.tar.xz) = d90bed1ec3e937255246873831f035684723f54fe91124ed7239ec43c46d60da -SIZE (KDE/Qt/5.12.0/qtpurchasing-everywhere-src-5.12.0.tar.xz) = 207680 -SHA256 (KDE/Qt/5.12.0/qtquickcontrols2-everywhere-src-5.12.0.tar.xz) = 89777e2ee89a08d203e0e394be0c47dc52008ea58506f4b3bdf1a696c5907dc6 -SIZE (KDE/Qt/5.12.0/qtquickcontrols2-everywhere-src-5.12.0.tar.xz) = 9279804 -SHA256 (KDE/Qt/5.12.0/qtquickcontrols-everywhere-src-5.12.0.tar.xz) = 2bfb63240beed6926be429310e91b33df836fe38bcaf9de6883d5e781511cd73 -SIZE (KDE/Qt/5.12.0/qtquickcontrols-everywhere-src-5.12.0.tar.xz) = 6054956 -SHA256 (KDE/Qt/5.12.0/qtremoteobjects-everywhere-src-5.12.0.tar.xz) = 0940d0a4a961b64f38c52a2e5638c2b3341fe46bd6bd88d1c638707f42159d5f -SIZE (KDE/Qt/5.12.0/qtremoteobjects-everywhere-src-5.12.0.tar.xz) = 335472 -SHA256 (KDE/Qt/5.12.0/qtscript-everywhere-src-5.12.0.tar.xz) = 97fe1a22e5d0e89d3850546c0771fe41707d4c40062dc16fae8e21bf6f8cffa8 -SIZE (KDE/Qt/5.12.0/qtscript-everywhere-src-5.12.0.tar.xz) = 2674336 -SHA256 (KDE/Qt/5.12.0/qtscxml-everywhere-src-5.12.0.tar.xz) = dc6ece52669976836844b0d9bcf4910bca7b5d2c446c6755d7b9f79bfa1add6b -SIZE (KDE/Qt/5.12.0/qtscxml-everywhere-src-5.12.0.tar.xz) = 433896 -SHA256 (KDE/Qt/5.12.0/qtsensors-everywhere-src-5.12.0.tar.xz) = c53132847a1f70d5a4c5fe689a9943d8afae3f3648bf5b0d824015093addc5a6 -SIZE (KDE/Qt/5.12.0/qtsensors-everywhere-src-5.12.0.tar.xz) = 2031092 -SHA256 (KDE/Qt/5.12.0/qtserialbus-everywhere-src-5.12.0.tar.xz) = 6b9286c9762341a48c636da62fecb7b76168a4634e44508b42c19eb0058a359a -SIZE (KDE/Qt/5.12.0/qtserialbus-everywhere-src-5.12.0.tar.xz) = 324680 -SHA256 (KDE/Qt/5.12.0/qtserialport-everywhere-src-5.12.0.tar.xz) = 59d4005695089c6b50fc5123094125d9224c1715655128640158a2404075a9bb -SIZE (KDE/Qt/5.12.0/qtserialport-everywhere-src-5.12.0.tar.xz) = 298892 -SHA256 (KDE/Qt/5.12.0/qtspeech-everywhere-src-5.12.0.tar.xz) = 1939a2ece528b115e4682dba7fa7138c132c62bb88db7d1f3552c543a1e2a4fb -SIZE (KDE/Qt/5.12.0/qtspeech-everywhere-src-5.12.0.tar.xz) = 99696 -SHA256 (KDE/Qt/5.12.0/qtsvg-everywhere-src-5.12.0.tar.xz) = ebe68d8ad73b6b8d8eabac81edcbf395838caf4d498d6b047c74b57341c3fbce -SIZE (KDE/Qt/5.12.0/qtsvg-everywhere-src-5.12.0.tar.xz) = 1845656 -SHA256 (KDE/Qt/5.12.0/qttools-everywhere-src-5.12.0.tar.xz) = 574ce34b6e5bcd5dce4020a3947730f3c2223eee65d0396a311099223364dac3 -SIZE (KDE/Qt/5.12.0/qttools-everywhere-src-5.12.0.tar.xz) = 9775520 -SHA256 (KDE/Qt/5.12.0/qttranslations-everywhere-src-5.12.0.tar.xz) = 5b4f186e0b96703041319b5b131393b6aa829ea74e067697ede548d936327508 -SIZE (KDE/Qt/5.12.0/qttranslations-everywhere-src-5.12.0.tar.xz) = 1424236 -SHA256 (KDE/Qt/5.12.0/qtvirtualkeyboard-everywhere-src-5.12.0.tar.xz) = db93b89ba13ec1a688850f456be9f10037033cebf7b4deb151ed9f5322d0d6da -SIZE (KDE/Qt/5.12.0/qtvirtualkeyboard-everywhere-src-5.12.0.tar.xz) = 10913328 -SHA256 (KDE/Qt/5.12.0/qtwayland-everywhere-src-5.12.0.tar.xz) = 555c2d1b31733735d94c228f5f9183ea8216d61f85e30af08044763639d97ed7 -SIZE (KDE/Qt/5.12.0/qtwayland-everywhere-src-5.12.0.tar.xz) = 427640 -SHA256 (KDE/Qt/5.12.0/qtwebchannel-everywhere-src-5.12.0.tar.xz) = 851af30ab951c7543c82640f46686227b244331ebf9235f963edcb7e5a184bf0 -SIZE (KDE/Qt/5.12.0/qtwebchannel-everywhere-src-5.12.0.tar.xz) = 177328 -SHA256 (KDE/Qt/5.12.0/qtwebengine-everywhere-src-5.12.0.tar.xz) = bd581e390a30e0f74d41b0e3334b3cf612dd4af23de36a3bf5931d5b4453687c -SIZE (KDE/Qt/5.12.0/qtwebengine-everywhere-src-5.12.0.tar.xz) = 252044400 -SHA256 (KDE/Qt/5.12.0/qtwebsockets-everywhere-src-5.12.0.tar.xz) = 444da1c1d32910738a01b8251c1ccc3ffe4df148f125bb4af532b247ad74fc3f -SIZE (KDE/Qt/5.12.0/qtwebsockets-everywhere-src-5.12.0.tar.xz) = 230980 -SHA256 (KDE/Qt/5.12.0/qtwebview-everywhere-src-5.12.0.tar.xz) = b7a82cc4edf9361d64155f0ec7848b37c947e0cfe9a9f03efe8af515c6326185 -SIZE (KDE/Qt/5.12.0/qtwebview-everywhere-src-5.12.0.tar.xz) = 130676 -SHA256 (KDE/Qt/5.12.0/qtwinextras-everywhere-src-5.12.0.tar.xz) = c64f5acde4d73d4bf45fab377cf3db7f4cf7044fb8854bb24aabbbbc0109dad0 -SIZE (KDE/Qt/5.12.0/qtwinextras-everywhere-src-5.12.0.tar.xz) = 759912 -SHA256 (KDE/Qt/5.12.0/qtx11extras-everywhere-src-5.12.0.tar.xz) = 06d4b4e9868d206f07ae4e884c46d46a5540172a85ce67d829fdb1fba7228b84 -SIZE (KDE/Qt/5.12.0/qtx11extras-everywhere-src-5.12.0.tar.xz) = 109676 -SHA256 (KDE/Qt/5.12.0/qtxmlpatterns-everywhere-src-5.12.0.tar.xz) = f36279bcafb8052a0b60edd473e1d341b4733a43eb26239848b4382303679375 -SIZE (KDE/Qt/5.12.0/qtxmlpatterns-everywhere-src-5.12.0.tar.xz) = 1389248 +TIMESTAMP = 1549515795 +SHA256 (KDE/Qt/5.12.1/qt3d-everywhere-src-5.12.1.tar.xz) = ce51ed3fe403672db2c874cbaa60f3a139ec817abd1270dc5e4255d35fd64bf1 +SIZE (KDE/Qt/5.12.1/qt3d-everywhere-src-5.12.1.tar.xz) = 84953112 +SHA256 (KDE/Qt/5.12.1/qtactiveqt-everywhere-src-5.12.1.tar.xz) = a56fbd9aa018b9b91a1de6018db6538f4bc4309bfbdd86c52d437e7297983c45 +SIZE (KDE/Qt/5.12.1/qtactiveqt-everywhere-src-5.12.1.tar.xz) = 261984 +SHA256 (KDE/Qt/5.12.1/qtandroidextras-everywhere-src-5.12.1.tar.xz) = 17d0bfe13e75b1a28de2f35dc81670741fd227664aa155170453dc34c82e071e +SIZE (KDE/Qt/5.12.1/qtandroidextras-everywhere-src-5.12.1.tar.xz) = 104620 +SHA256 (KDE/Qt/5.12.1/qtbase-everywhere-src-5.12.1.tar.xz) = 533078ce02678988576e224cb3844979907950cf83e0fda3364bc1d5701c9049 +SIZE (KDE/Qt/5.12.1/qtbase-everywhere-src-5.12.1.tar.xz) = 48239912 +SHA256 (KDE/Qt/5.12.1/qtcanvas3d-everywhere-src-5.12.1.tar.xz) = c7c940a06062b1e5078fd697e1da0cdaeaa315b6fcea81de15308a9d3f8ac254 +SIZE (KDE/Qt/5.12.1/qtcanvas3d-everywhere-src-5.12.1.tar.xz) = 10915000 +SHA256 (KDE/Qt/5.12.1/qtcharts-everywhere-src-5.12.1.tar.xz) = 142eb2b87a0bc2220a9f12e56bf390b846968c201d135b1a2a2338545692fdc0 +SIZE (KDE/Qt/5.12.1/qtcharts-everywhere-src-5.12.1.tar.xz) = 4242664 +SHA256 (KDE/Qt/5.12.1/qtconnectivity-everywhere-src-5.12.1.tar.xz) = 0edd0bd784a71809540dc23d24a842bd88dee2cdb5394b69c9e704f7e1ac8d6c +SIZE (KDE/Qt/5.12.1/qtconnectivity-everywhere-src-5.12.1.tar.xz) = 2748888 +SHA256 (KDE/Qt/5.12.1/qtdatavis3d-everywhere-src-5.12.1.tar.xz) = 8ebb94459e5eb5b978dcdac1d2d6503a7763d790ce74b03f78388beb480436a0 +SIZE (KDE/Qt/5.12.1/qtdatavis3d-everywhere-src-5.12.1.tar.xz) = 5199768 +SHA256 (KDE/Qt/5.12.1/qtdeclarative-everywhere-src-5.12.1.tar.xz) = a384a734d94f28a98aa74e076d50fa6b9724af83526feb6c371945545d8cb409 +SIZE (KDE/Qt/5.12.1/qtdeclarative-everywhere-src-5.12.1.tar.xz) = 20486428 +SHA256 (KDE/Qt/5.12.1/qtdoc-everywhere-src-5.12.1.tar.xz) = 7d4204e6ef5d9307975337cd18ffdc0b04e2d851c368eb36a48b9331377deadd +SIZE (KDE/Qt/5.12.1/qtdoc-everywhere-src-5.12.1.tar.xz) = 5588248 +SHA256 (KDE/Qt/5.12.1/qtgamepad-everywhere-src-5.12.1.tar.xz) = 717c11f8fba4e23c0096fcf3161d43223956038e866fcd7a18d2255755415d62 +SIZE (KDE/Qt/5.12.1/qtgamepad-everywhere-src-5.12.1.tar.xz) = 385492 +SHA256 (KDE/Qt/5.12.1/qtgraphicaleffects-everywhere-src-5.12.1.tar.xz) = 2e63abf6b02b86461b73b317eba00b6721601a9469c22da28e3f4ea1d5df68d7 +SIZE (KDE/Qt/5.12.1/qtgraphicaleffects-everywhere-src-5.12.1.tar.xz) = 14270888 +SHA256 (KDE/Qt/5.12.1/qtimageformats-everywhere-src-5.12.1.tar.xz) = 0425f35dbcc83cd5840e2d3a73ed4c57c426af9d6ac7b9fe3a40d23560653421 +SIZE (KDE/Qt/5.12.1/qtimageformats-everywhere-src-5.12.1.tar.xz) = 1782660 +SHA256 (KDE/Qt/5.12.1/qtlocation-everywhere-src-5.12.1.tar.xz) = 8b922373e6eefd1b0e2a993dbf3d0b3f3df777bc720d40cad3ccb46e1936bc50 +SIZE (KDE/Qt/5.12.1/qtlocation-everywhere-src-5.12.1.tar.xz) = 5902336 +SHA256 (KDE/Qt/5.12.1/qtmacextras-everywhere-src-5.12.1.tar.xz) = af6449c052aea19d100deb2b7f558835b8b88862d6bfdae3c510b60c80bc64c3 +SIZE (KDE/Qt/5.12.1/qtmacextras-everywhere-src-5.12.1.tar.xz) = 68680 +SHA256 (KDE/Qt/5.12.1/qtmultimedia-everywhere-src-5.12.1.tar.xz) = 9c5ba11225f57d3a8124f109514443e290a9eb94e063a5b1f78e63edfb5f0b18 +SIZE (KDE/Qt/5.12.1/qtmultimedia-everywhere-src-5.12.1.tar.xz) = 3740192 +SHA256 (KDE/Qt/5.12.1/qtnetworkauth-everywhere-src-5.12.1.tar.xz) = 090fbb6be35b2f2edf7cc4cb32f0f9c27a9a66defa06f6d23e1397836e31d44c +SIZE (KDE/Qt/5.12.1/qtnetworkauth-everywhere-src-5.12.1.tar.xz) = 139024 +SHA256 (KDE/Qt/5.12.1/qtpurchasing-everywhere-src-5.12.1.tar.xz) = 80485095ab64f48951b27795c72e7ed7c13e1ab3db2670c061548834584b1d19 +SIZE (KDE/Qt/5.12.1/qtpurchasing-everywhere-src-5.12.1.tar.xz) = 207812 +SHA256 (KDE/Qt/5.12.1/qtquickcontrols2-everywhere-src-5.12.1.tar.xz) = caa47b6d771b11c65d595fdd0f0942c3d78cda2884d318e3b1da8ec67155a8e7 +SIZE (KDE/Qt/5.12.1/qtquickcontrols2-everywhere-src-5.12.1.tar.xz) = 9289452 +SHA256 (KDE/Qt/5.12.1/qtquickcontrols-everywhere-src-5.12.1.tar.xz) = 15164b00921352b5145a4fc3be0015b8521138a0cb1ecfb9811f39fd35ecd62c +SIZE (KDE/Qt/5.12.1/qtquickcontrols-everywhere-src-5.12.1.tar.xz) = 6055248 +SHA256 (KDE/Qt/5.12.1/qtremoteobjects-everywhere-src-5.12.1.tar.xz) = f18cfde8d060d76f5f56ffb701a27f6e0c39b5abdae3dbac933dbb41d191f740 +SIZE (KDE/Qt/5.12.1/qtremoteobjects-everywhere-src-5.12.1.tar.xz) = 335956 +SHA256 (KDE/Qt/5.12.1/qtscript-everywhere-src-5.12.1.tar.xz) = e5c158fb85799404d20d1ec5dd33a25d5f5736807e1008ce626f666a52c80624 +SIZE (KDE/Qt/5.12.1/qtscript-everywhere-src-5.12.1.tar.xz) = 2674208 +SHA256 (KDE/Qt/5.12.1/qtscxml-everywhere-src-5.12.1.tar.xz) = 59a2aa1000fe03b0a3eff6fddd21f782e305408fcdd7af1f564a382331cb20b7 +SIZE (KDE/Qt/5.12.1/qtscxml-everywhere-src-5.12.1.tar.xz) = 434112 +SHA256 (KDE/Qt/5.12.1/qtsensors-everywhere-src-5.12.1.tar.xz) = ebc8b4bcfacf10c3bea3f400da7bf3fc7f44f90fa9eb0320c3b87f17307a63e4 +SIZE (KDE/Qt/5.12.1/qtsensors-everywhere-src-5.12.1.tar.xz) = 2036116 +SHA256 (KDE/Qt/5.12.1/qtserialbus-everywhere-src-5.12.1.tar.xz) = 97f0c690c77b0e19a8c90e376ecc94d59b21adb20a90179700d1c514a4c50d74 +SIZE (KDE/Qt/5.12.1/qtserialbus-everywhere-src-5.12.1.tar.xz) = 328608 +SHA256 (KDE/Qt/5.12.1/qtserialport-everywhere-src-5.12.1.tar.xz) = 243b2502283c45f5163d68c3f23c787d46eb0e3ba58f3d9a0560dc7968a6ce19 +SIZE (KDE/Qt/5.12.1/qtserialport-everywhere-src-5.12.1.tar.xz) = 302656 +SHA256 (KDE/Qt/5.12.1/qtspeech-everywhere-src-5.12.1.tar.xz) = 147524ba6f97c76784beb315ee939614b7a3b4eb1a6417cc0beea662cf0d9121 +SIZE (KDE/Qt/5.12.1/qtspeech-everywhere-src-5.12.1.tar.xz) = 99716 +SHA256 (KDE/Qt/5.12.1/qtsvg-everywhere-src-5.12.1.tar.xz) = 5bc1f744d32c06f5aa4eff33759568106a995ce21fa1326a247dfa5f783f63c8 +SIZE (KDE/Qt/5.12.1/qtsvg-everywhere-src-5.12.1.tar.xz) = 1859248 +SHA256 (KDE/Qt/5.12.1/qttools-everywhere-src-5.12.1.tar.xz) = ab1da4fbd84a9d3873e4ed212a0ae614c6059b8e7dca2f0a599a6f7e61f6cbf3 +SIZE (KDE/Qt/5.12.1/qttools-everywhere-src-5.12.1.tar.xz) = 9818060 +SHA256 (KDE/Qt/5.12.1/qttranslations-everywhere-src-5.12.1.tar.xz) = 7443d70d8572321e810c52fbdd096666e61510e07e17437f1910f0b800cca6a7 +SIZE (KDE/Qt/5.12.1/qttranslations-everywhere-src-5.12.1.tar.xz) = 1372812 +SHA256 (KDE/Qt/5.12.1/qtvirtualkeyboard-everywhere-src-5.12.1.tar.xz) = a9e3ed4786d603314144c7ad29a9fdeb6e5c3f2ea5a27f6545cc9777244cd683 +SIZE (KDE/Qt/5.12.1/qtvirtualkeyboard-everywhere-src-5.12.1.tar.xz) = 10917704 +SHA256 (KDE/Qt/5.12.1/qtwayland-everywhere-src-5.12.1.tar.xz) = 88f0507628b3697b0d59349d27b5e60a313a3138927722d6cf981089fff02553 +SIZE (KDE/Qt/5.12.1/qtwayland-everywhere-src-5.12.1.tar.xz) = 430032 +SHA256 (KDE/Qt/5.12.1/qtwebchannel-everywhere-src-5.12.1.tar.xz) = 40c3e74347c67a9864d0d54f14120555860e4ce529746407325b3cd6e9aeb5bf +SIZE (KDE/Qt/5.12.1/qtwebchannel-everywhere-src-5.12.1.tar.xz) = 182060 +SHA256 (KDE/Qt/5.12.1/qtwebengine-everywhere-src-5.12.1.tar.xz) = 43e91e06bc4a60ef0f91d15ae06425cf9c6b4f7dafe960259a5b013c687c3bd0 +SIZE (KDE/Qt/5.12.1/qtwebengine-everywhere-src-5.12.1.tar.xz) = 249191844 +SHA256 (KDE/Qt/5.12.1/qtwebsockets-everywhere-src-5.12.1.tar.xz) = 2fd0627916d817599c5f855a97156113ed3625b90b350603be6f668762abfc79 +SIZE (KDE/Qt/5.12.1/qtwebsockets-everywhere-src-5.12.1.tar.xz) = 235360 +SHA256 (KDE/Qt/5.12.1/qtwebview-everywhere-src-5.12.1.tar.xz) = 092624ba45913f6c90f7311c96bb5c3e97f2c2b427d834d3669434f97234bc97 +SIZE (KDE/Qt/5.12.1/qtwebview-everywhere-src-5.12.1.tar.xz) = 130712 +SHA256 (KDE/Qt/5.12.1/qtwinextras-everywhere-src-5.12.1.tar.xz) = 8d312155a7da329df41cc2ea5d265eb632be7dd9cbd789fa3bc0206b4022f557 +SIZE (KDE/Qt/5.12.1/qtwinextras-everywhere-src-5.12.1.tar.xz) = 759900 +SHA256 (KDE/Qt/5.12.1/qtx11extras-everywhere-src-5.12.1.tar.xz) = 08fb1c40e1562d43087368a5efa39569fa1ad52b72d2360f9fc1fe18b00da366 +SIZE (KDE/Qt/5.12.1/qtx11extras-everywhere-src-5.12.1.tar.xz) = 115964 +SHA256 (KDE/Qt/5.12.1/qtxmlpatterns-everywhere-src-5.12.1.tar.xz) = 76988ca9a7a184b9013b8a5864dad150e4603890c7eb7aecad4baad071802ecb +SIZE (KDE/Qt/5.12.1/qtxmlpatterns-everywhere-src-5.12.1.tar.xz) = 1389136 Index: head/devel/qt5/files/extrapatch-mkspecs_common_bsd_bsd.conf =================================================================== --- head/devel/qt5/files/extrapatch-mkspecs_common_bsd_bsd.conf (revision 492792) +++ head/devel/qt5/files/extrapatch-mkspecs_common_bsd_bsd.conf (revision 492793) @@ -1,30 +1,30 @@ --- mkspecs/common/bsd/bsd.conf.orig 2017-07-23 16:27:40 UTC +++ mkspecs/common/bsd/bsd.conf @@ -21,6 +21,27 @@ QMAKE_LIBS_X11 = -lXext -lX11 -lm QMAKE_LIBS_OPENGL = -lGL QMAKE_LIBS_THREAD = -+QMAKE_INCDIR_X11 = $$PREFIX/include -+QMAKE_LIBDIR_X11 = $$PREFIX/lib -+QMAKE_INCDIR_OPENGL = $$PREFIX/include -+QMAKE_LIBDIR_OPENGL = $$PREFIX/lib ++QMAKE_INCDIR_X11 = %%LOCALBASE%%/include ++QMAKE_LIBDIR_X11 = %%LOCALBASE%%/lib ++QMAKE_INCDIR_OPENGL = %%LOCALBASE%%/include ++QMAKE_LIBDIR_OPENGL = %%LOCALBASE%%/lib +QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL +QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL -+QMAKE_INCDIR_EGL = $$PREFIX/include -+QMAKE_LIBDIR_EGL = $$PREFIX/lib ++QMAKE_INCDIR_EGL = %%LOCALBASE%%/include ++QMAKE_LIBDIR_EGL = %%LOCALBASE%%/lib + +QMAKE_LIBS_EGL = -lEGL +QMAKE_LIBS_OPENGL_ES2 = -lGLESv2 +QMAKE_LIBS_LIBUDEV = -ludev + +QMAKE_CFLAGS_WAYLAND = -+QMAKE_INCDIR_WAYLAND = $$PREFIX/include ++QMAKE_INCDIR_WAYLAND = %%LOCALBASE%%/include +QMAKE_LIBS_WAYLAND_CLIENT = -lwayland-client +QMAKE_LIBS_WAYLAND_SERVER = -lwayland-server -+QMAKE_LIBDIR_WAYLAND = $$PREFIX/lib ++QMAKE_LIBDIR_WAYLAND = %%LOCALBASE%%/lib +QMAKE_DEFINES_WAYLAND = +QMAKE_WAYLAND_SCANNER = wayland-scanner + QMAKE_AR = ar cqs QMAKE_OBJCOPY = objcopy QMAKE_NM = nm -P Index: head/devel/qt5-assistant/Makefile =================================================================== --- head/devel/qt5-assistant/Makefile (revision 492792) +++ head/devel/qt5-assistant/Makefile (revision 492793) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= assistant DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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} post-install: ${INSTALL_DATA} ${INSTALL_WRKSRC}/images/assistant-128.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/assistant-qt5.png .include Index: head/devel/qt5-assistant/files/patch-src__src.pro =================================================================== --- head/devel/qt5-assistant/files/patch-src__src.pro (revision 492792) +++ head/devel/qt5-assistant/files/patch-src__src.pro (revision 492793) @@ -1,59 +1,61 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:19:26 UTC +--- src/src.pro.orig 2019-02-08 21:21:18 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} +SUBDIRS = assistant Index: head/devel/qt5-buildtools/Makefile =================================================================== --- head/devel/qt5-buildtools/Makefile (revision 492792) +++ head/devel/qt5-buildtools/Makefile (revision 492793) @@ -1,45 +1,44 @@ # $FreeBSD$ PORTNAME= buildtools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-concurrent/Makefile =================================================================== --- head/devel/qt5-concurrent/Makefile (revision 492792) +++ head/devel/qt5-concurrent/Makefile (revision 492793) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= concurrent DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/devel/qt5-core/Makefile (revision 492793) @@ -1,67 +1,66 @@ # $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 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-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 492792) +++ head/devel/qt5-dbus/Makefile (revision 492793) @@ -1,48 +1,47 @@ # $FreeBSD$ PORTNAME= dbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/devel/qt5-designer/Makefile (revision 492793) @@ -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/files/patch-src__src.pro =================================================================== --- head/devel/qt5-designer/files/patch-src__src.pro (revision 492792) +++ head/devel/qt5-designer/files/patch-src__src.pro (revision 492793) @@ -1,59 +1,61 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:21:44 UTC +--- src/src.pro.orig 2019-02-08 21:28:33 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} +SUBDIRS = designer Index: head/devel/qt5-help/Makefile =================================================================== --- head/devel/qt5-help/Makefile (revision 492792) +++ head/devel/qt5-help/Makefile (revision 492793) @@ -1,26 +1,19 @@ # $FreeBSD$ PORTNAME= help DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 - -post-install: -# qcollectiongenerator was integrated into qhelpgenerator. -# Instead of fixing 20 ports, simply provide it. - ${RLN} ${STAGEDIR}${QT_BINDIR}/qhelpgenerator \ - ${STAGEDIR}${QT_BINDIR}/qcollectiongenerator .include Index: head/devel/qt5-help/files/patch-src__assistant__assistant.pro =================================================================== --- head/devel/qt5-help/files/patch-src__assistant__assistant.pro (revision 492792) +++ head/devel/qt5-help/files/patch-src__assistant__assistant.pro (revision 492793) @@ -1,21 +1,23 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. assistant/ is built in devel/qt5-assistant. ---- src/assistant/assistant.pro.orig 2018-10-12 10:07:26 UTC +--- src/assistant/assistant.pro.orig 2019-01-15 05:20:10 UTC +++ src/assistant/assistant.pro -@@ -3,13 +3,11 @@ TEMPLATE = subdirs +@@ -3,7 +3,6 @@ TEMPLATE = subdirs SUBDIRS += \ help \ - assistant \ - qhelpgenerator + qhelpgenerator \ + qcollectiongenerator - assistant.depends = help +@@ -11,7 +10,6 @@ assistant.depends = help qhelpgenerator.depends = help qtNomakeTools( \ - assistant \ qhelpgenerator \ + qcollectiongenerator \ ) Index: head/devel/qt5-help/files/patch-src__src.pro =================================================================== --- head/devel/qt5-help/files/patch-src__src.pro (revision 492792) +++ head/devel/qt5-help/files/patch-src__src.pro (revision 492793) @@ -1,59 +1,61 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:12:43 UTC +--- src/src.pro.orig 2019-02-08 21:08:58 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} +SUBDIRS = assistant Index: head/devel/qt5-linguist/Makefile =================================================================== --- head/devel/qt5-linguist/Makefile (revision 492792) +++ head/devel/qt5-linguist/Makefile (revision 492793) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= linguist DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-linguist/files/patch-src__src.pro =================================================================== --- head/devel/qt5-linguist/files/patch-src__src.pro (revision 492792) +++ head/devel/qt5-linguist/files/patch-src__src.pro (revision 492793) @@ -1,59 +1,61 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:23:55 UTC +--- src/src.pro.orig 2019-02-08 21:36:50 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} +SUBDIRS = linguist Index: head/devel/qt5-linguisttools/Makefile =================================================================== --- head/devel/qt5-linguisttools/Makefile (revision 492792) +++ head/devel/qt5-linguisttools/Makefile (revision 492793) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= linguisttools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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__src.pro =================================================================== --- head/devel/qt5-linguisttools/files/patch-src__src.pro (revision 492792) +++ head/devel/qt5-linguisttools/files/patch-src__src.pro (revision 492793) @@ -1,59 +1,61 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:06:18 UTC +--- src/src.pro.orig 2019-02-08 21:14:29 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} -+SUBDIRS += linguist ++SUBDIRS += linguist \ Index: head/devel/qt5-location/Makefile =================================================================== --- head/devel/qt5-location/Makefile (revision 492792) +++ head/devel/qt5-location/Makefile (revision 492793) @@ -1,17 +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 buildtools_build +USE_QT= concurrent core dbus declarative gui network serialport \ + buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/devel/qt5-location/files/patch-src_plugins_position_position.pro =================================================================== --- head/devel/qt5-location/files/patch-src_plugins_position_position.pro (nonexistent) +++ head/devel/qt5-location/files/patch-src_plugins_position_position.pro (revision 492793) @@ -0,0 +1,13 @@ +--- src/plugins/position/position.pro.orig 2019-02-08 20:56:53 UTC ++++ src/plugins/position/position.pro +@@ -2,8 +2,8 @@ TEMPLATE = subdirs + + QT_FOR_CONFIG += positioning-private + +-linux:qtHaveModule(dbus):SUBDIRS += geoclue +-linux:qtHaveModule(dbus):SUBDIRS += geoclue2 ++linux|freebsd:qtHaveModule(dbus):SUBDIRS += geoclue ++linux|freebsd:qtHaveModule(dbus):SUBDIRS += geoclue2 + qtConfig(gypsy):SUBDIRS += gypsy + qtConfig(winrt_geolocation):SUBDIRS += winrt + qtHaveModule(simulator):SUBDIRS += simulator Property changes on: head/devel/qt5-location/files/patch-src_plugins_position_position.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/devel/qt5-location/pkg-plist =================================================================== --- head/devel/qt5-location/pkg-plist (revision 492792) +++ head/devel/qt5-location/pkg-plist (revision 492793) @@ -1,361 +1,366 @@ %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/error_messages_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/locationvaluetypehelper_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qabstractgeotilecache_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qcache3q_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativecategory_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativecirclemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativecontactdetail_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeocodemodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomaneuver_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomap_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapcopyrightsnotice_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitembase_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitemgroup_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitemtransitionmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitemview_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapparameter_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapquickitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomaptype_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoroute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoroutemodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoroutesegment_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoserviceprovider_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativenavigator_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativenavigator_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeperiod_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplace_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceattribute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplacecontentmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceeditorialmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceicon_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceimagemodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceuser_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativepolygonmapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativepolylinemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeratings_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativerectanglemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativereviewmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeroutemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesearchmodelbase_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesearchresultmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesearchsuggestionmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesupplier_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesupportedcategoriesmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameracapabilities_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameradata_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameratiles_p.h +%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameratiles_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodereply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodingmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeofiletilecache_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaneuver_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomap_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomap_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapitemgeometry_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapobjectqsgsupport_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapparameter_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanager_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanagerengine_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaptype_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaptype_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoprojection_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparser_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparser_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparserosrmv4_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparserosrmv5_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutereply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouterequest_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutesegment_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutingmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoserviceprovider_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmap_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmap_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmaplabs_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmappingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmappingmanagerengine_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapreply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapreply_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapscene_p.h +%%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapscene_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilefetcher_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilefetcher_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilerequestmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilespec_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilespec_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qlocationglobal_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapcircleobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapcircleobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapcircleobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapiconobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapiconobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapiconobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapobjectview_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapobjectview_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolygonobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolygonobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolygonobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolylineobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolylineobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolylineobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmaprouteobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmaprouteobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmaprouteobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qnavigationmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qnavigationmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qparameterizableobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplace_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceattribute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecategory_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontactdetail_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontent_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontentrequest_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceeditorial_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceicon_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceimage_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacemanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceproposedsearchresult_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceratings_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacereply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceresult_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacereview_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesearchrequest_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesearchresult_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesupplier_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceuser_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qqsgmapobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qquickgeomapgesturearea_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qtlocation-config_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/unsupportedreplies_p.h %%QT_INCDIR%%/QtLocation/QGeoCodeReply %%QT_INCDIR%%/QtLocation/QGeoCodingManager %%QT_INCDIR%%/QtLocation/QGeoCodingManagerEngine %%QT_INCDIR%%/QtLocation/QGeoManeuver %%QT_INCDIR%%/QtLocation/QGeoRoute %%QT_INCDIR%%/QtLocation/QGeoRouteLeg %%QT_INCDIR%%/QtLocation/QGeoRouteReply %%QT_INCDIR%%/QtLocation/QGeoRouteRequest %%QT_INCDIR%%/QtLocation/QGeoRouteSegment %%QT_INCDIR%%/QtLocation/QGeoRoutingManager %%QT_INCDIR%%/QtLocation/QGeoRoutingManagerEngine %%QT_INCDIR%%/QtLocation/QGeoServiceProvider %%QT_INCDIR%%/QtLocation/QGeoServiceProviderFactory %%QT_INCDIR%%/QtLocation/QLocation %%QT_INCDIR%%/QtLocation/QPlace %%QT_INCDIR%%/QtLocation/QPlaceAttribute %%QT_INCDIR%%/QtLocation/QPlaceCategory %%QT_INCDIR%%/QtLocation/QPlaceContactDetail %%QT_INCDIR%%/QtLocation/QPlaceContent %%QT_INCDIR%%/QtLocation/QPlaceContentReply %%QT_INCDIR%%/QtLocation/QPlaceContentRequest %%QT_INCDIR%%/QtLocation/QPlaceDetailsReply %%QT_INCDIR%%/QtLocation/QPlaceEditorial %%QT_INCDIR%%/QtLocation/QPlaceIcon %%QT_INCDIR%%/QtLocation/QPlaceIdReply %%QT_INCDIR%%/QtLocation/QPlaceImage %%QT_INCDIR%%/QtLocation/QPlaceManager %%QT_INCDIR%%/QtLocation/QPlaceManagerEngine %%QT_INCDIR%%/QtLocation/QPlaceMatchReply %%QT_INCDIR%%/QtLocation/QPlaceMatchRequest %%QT_INCDIR%%/QtLocation/QPlaceProposedSearchResult %%QT_INCDIR%%/QtLocation/QPlaceRatings %%QT_INCDIR%%/QtLocation/QPlaceReply %%QT_INCDIR%%/QtLocation/QPlaceResult %%QT_INCDIR%%/QtLocation/QPlaceReview %%QT_INCDIR%%/QtLocation/QPlaceSearchReply %%QT_INCDIR%%/QtLocation/QPlaceSearchRequest %%QT_INCDIR%%/QtLocation/QPlaceSearchResult %%QT_INCDIR%%/QtLocation/QPlaceSearchSuggestionReply %%QT_INCDIR%%/QtLocation/QPlaceSupplier %%QT_INCDIR%%/QtLocation/QPlaceUser %%QT_INCDIR%%/QtLocation/QtLocation %%QT_INCDIR%%/QtLocation/QtLocationDepends %%QT_INCDIR%%/QtLocation/QtLocationVersion %%QT_INCDIR%%/QtLocation/placemacro.h %%QT_INCDIR%%/QtLocation/qgeocodereply.h %%QT_INCDIR%%/QtLocation/qgeocodingmanager.h %%QT_INCDIR%%/QtLocation/qgeocodingmanagerengine.h %%QT_INCDIR%%/QtLocation/qgeomaneuver.h %%QT_INCDIR%%/QtLocation/qgeoroute.h %%QT_INCDIR%%/QtLocation/qgeoroutereply.h %%QT_INCDIR%%/QtLocation/qgeorouterequest.h %%QT_INCDIR%%/QtLocation/qgeoroutesegment.h %%QT_INCDIR%%/QtLocation/qgeoroutingmanager.h %%QT_INCDIR%%/QtLocation/qgeoroutingmanagerengine.h %%QT_INCDIR%%/QtLocation/qgeoserviceprovider.h %%QT_INCDIR%%/QtLocation/qgeoserviceproviderfactory.h %%QT_INCDIR%%/QtLocation/qlocation.h %%QT_INCDIR%%/QtLocation/qlocationglobal.h %%QT_INCDIR%%/QtLocation/qplace.h %%QT_INCDIR%%/QtLocation/qplaceattribute.h %%QT_INCDIR%%/QtLocation/qplacecategory.h %%QT_INCDIR%%/QtLocation/qplacecontactdetail.h %%QT_INCDIR%%/QtLocation/qplacecontent.h %%QT_INCDIR%%/QtLocation/qplacecontentreply.h %%QT_INCDIR%%/QtLocation/qplacecontentrequest.h %%QT_INCDIR%%/QtLocation/qplacedetailsreply.h %%QT_INCDIR%%/QtLocation/qplaceeditorial.h %%QT_INCDIR%%/QtLocation/qplaceicon.h %%QT_INCDIR%%/QtLocation/qplaceidreply.h %%QT_INCDIR%%/QtLocation/qplaceimage.h %%QT_INCDIR%%/QtLocation/qplacemanager.h %%QT_INCDIR%%/QtLocation/qplacemanagerengine.h %%QT_INCDIR%%/QtLocation/qplacematchreply.h %%QT_INCDIR%%/QtLocation/qplacematchrequest.h %%QT_INCDIR%%/QtLocation/qplaceproposedsearchresult.h %%QT_INCDIR%%/QtLocation/qplaceratings.h %%QT_INCDIR%%/QtLocation/qplacereply.h %%QT_INCDIR%%/QtLocation/qplaceresult.h %%QT_INCDIR%%/QtLocation/qplacereview.h %%QT_INCDIR%%/QtLocation/qplacesearchreply.h %%QT_INCDIR%%/QtLocation/qplacesearchrequest.h %%QT_INCDIR%%/QtLocation/qplacesearchresult.h %%QT_INCDIR%%/QtLocation/qplacesearchsuggestionreply.h %%QT_INCDIR%%/QtLocation/qplacesupplier.h %%QT_INCDIR%%/QtLocation/qplaceuser.h %%QT_INCDIR%%/QtLocation/qtlocation-config.h %%QT_INCDIR%%/QtLocation/qtlocationversion.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qclipperutils_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdeclarativegeoaddress_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdeclarativegeolocation_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublematrix4x4_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublevector2d_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublevector3d_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeoaddress_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocircle_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocoordinate_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocoordinateobject_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeolocation_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopath_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopositioninfo_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopositioninfosource_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeorectangle_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeoshape_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qlocationdata_simulator_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qlocationutils_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qnmeapositioninfosource_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qpositioningglobal_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qtpositioning-config_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qwebmercator_p.h %%QT_INCDIR%%/QtPositioning/QGeoAddress %%QT_INCDIR%%/QtPositioning/QGeoAreaMonitorInfo %%QT_INCDIR%%/QtPositioning/QGeoAreaMonitorSource %%QT_INCDIR%%/QtPositioning/QGeoCircle %%QT_INCDIR%%/QtPositioning/QGeoCoordinate %%QT_INCDIR%%/QtPositioning/QGeoLocation %%QT_INCDIR%%/QtPositioning/QGeoPath %%QT_INCDIR%%/QtPositioning/QGeoPolygon %%QT_INCDIR%%/QtPositioning/QGeoPolygonPrivate %%QT_INCDIR%%/QtPositioning/QGeoPositionInfo %%QT_INCDIR%%/QtPositioning/QGeoPositionInfoSource %%QT_INCDIR%%/QtPositioning/QGeoPositionInfoSourceFactory %%QT_INCDIR%%/QtPositioning/QGeoRectangle %%QT_INCDIR%%/QtPositioning/QGeoSatelliteInfo %%QT_INCDIR%%/QtPositioning/QGeoSatelliteInfoSource %%QT_INCDIR%%/QtPositioning/QGeoShape %%QT_INCDIR%%/QtPositioning/QNmeaPositionInfoSource %%QT_INCDIR%%/QtPositioning/QtPositioning %%QT_INCDIR%%/QtPositioning/QtPositioningDepends %%QT_INCDIR%%/QtPositioning/QtPositioningVersion %%QT_INCDIR%%/QtPositioning/qgeoaddress.h %%QT_INCDIR%%/QtPositioning/qgeoareamonitorinfo.h %%QT_INCDIR%%/QtPositioning/qgeoareamonitorsource.h %%QT_INCDIR%%/QtPositioning/qgeocircle.h %%QT_INCDIR%%/QtPositioning/qgeocoordinate.h %%QT_INCDIR%%/QtPositioning/qgeolocation.h %%QT_INCDIR%%/QtPositioning/qgeopath.h %%QT_INCDIR%%/QtPositioning/qgeopolygon.h %%QT_INCDIR%%/QtPositioning/qgeopositioninfo.h %%QT_INCDIR%%/QtPositioning/qgeopositioninfosource.h %%QT_INCDIR%%/QtPositioning/qgeopositioninfosourcefactory.h %%QT_INCDIR%%/QtPositioning/qgeorectangle.h %%QT_INCDIR%%/QtPositioning/qgeosatelliteinfo.h %%QT_INCDIR%%/QtPositioning/qgeosatelliteinfosource.h %%QT_INCDIR%%/QtPositioning/qgeoshape.h %%QT_INCDIR%%/QtPositioning/qnmeapositioninfosource.h %%QT_INCDIR%%/QtPositioning/qpositioningglobal.h %%QT_INCDIR%%/QtPositioning/qtpositioning-config.h %%QT_INCDIR%%/QtPositioning/qtpositioningversion.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qdeclarativeposition_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qdeclarativepositionsource_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qpositioningquickglobal_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qquickgeocoordinateanimation_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qquickgeocoordinateanimation_p_p.h %%QT_INCDIR%%/QtPositioningQuick/QtPositioningQuick %%QT_INCDIR%%/QtPositioningQuick/QtPositioningQuickDepends %%QT_INCDIR%%/QtPositioningQuick/QtPositioningQuickVersion %%QT_INCDIR%%/QtPositioningQuick/qpositioningquickglobal.h %%QT_INCDIR%%/QtPositioningQuick/qtpositioningquickversion.h %%QT_CMAKEDIR%%/Qt5Location/Qt5LocationConfig.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5LocationConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_GeoServiceProviderFactoryEsri.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryItemsOverlay.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryMapbox.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryNokia.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryOsm.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5PositioningConfig.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5PositioningConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryGeoclue.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryGeoclue2.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryPoll.cmake +%%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactorySerialNmea.cmake %%QT_CMAKEDIR%%/Qt5PositioningQuick/Qt5PositioningQuickConfig.cmake %%QT_CMAKEDIR%%/Qt5PositioningQuick/Qt5PositioningQuickConfigVersion.cmake %%QT_LIBDIR%%/libQt5Location.prl %%QT_LIBDIR%%/libQt5Location.so %%QT_LIBDIR%%/libQt5Location.so.5 %%QT_LIBDIR%%/libQt5Location.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Location.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Location.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5Positioning.prl %%QT_LIBDIR%%/libQt5Positioning.so %%QT_LIBDIR%%/libQt5Positioning.so.5 %%QT_LIBDIR%%/libQt5Positioning.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Positioning.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Positioning.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5PositioningQuick.prl %%QT_LIBDIR%%/libQt5PositioningQuick.so %%QT_LIBDIR%%/libQt5PositioningQuick.so.5 %%QT_LIBDIR%%/libQt5PositioningQuick.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5PositioningQuick.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5PositioningQuick.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_location.pri %%QT_MKSPECDIR%%/modules/qt_lib_location_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioning.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioning_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioningquick.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioningquick_private.pri %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_esri.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_esri.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_itemsoverlay.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_itemsoverlay.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_mapbox.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_mapbox.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_nokia.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_nokia.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_osm.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_osm.so.debug %%QT_PLUGINDIR%%/position/libqtposition_geoclue.so %%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_geoclue.so.debug %%QT_PLUGINDIR%%/position/libqtposition_geoclue2.so %%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_geoclue2.so.debug %%QT_PLUGINDIR%%/position/libqtposition_positionpoll.so %%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_positionpoll.so.debug +%%QT_PLUGINDIR%%/position/libqtposition_serialnmea.so +%%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_serialnmea.so.debug %%QT_QMLDIR%%/Qt/labs/location/liblocationlabsplugin.so %%DEBUG%%%%QT_QMLDIR%%/Qt/labs/location/liblocationlabsplugin.so.debug %%QT_QMLDIR%%/Qt/labs/location/plugins.qmltypes %%QT_QMLDIR%%/Qt/labs/location/qmldir %%QT_QMLDIR%%/QtLocation/libdeclarative_location.so %%DEBUG%%%%QT_QMLDIR%%/QtLocation/libdeclarative_location.so.debug %%QT_QMLDIR%%/QtLocation/plugins.qmltypes %%QT_QMLDIR%%/QtLocation/qmldir %%QT_QMLDIR%%/QtPositioning/libdeclarative_positioning.so %%DEBUG%%%%QT_QMLDIR%%/QtPositioning/libdeclarative_positioning.so.debug %%QT_QMLDIR%%/QtPositioning/plugins.qmltypes %%QT_QMLDIR%%/QtPositioning/qmldir libdata/pkgconfig/Qt5Location.pc libdata/pkgconfig/Qt5Positioning.pc libdata/pkgconfig/Qt5PositioningQuick.pc Index: head/devel/qt5-qdbus/Makefile =================================================================== --- head/devel/qt5-qdbus/Makefile (revision 492792) +++ head/devel/qt5-qdbus/Makefile (revision 492793) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= qdbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-qdbus/files/patch-src_src.pro =================================================================== --- head/devel/qt5-qdbus/files/patch-src_src.pro (revision 492792) +++ head/devel/qt5-qdbus/files/patch-src_src.pro (revision 492793) @@ -1,58 +1,60 @@ Only enter the directories we want to build, otherwise we might fail due to -missing dependencies. +missing dependencies ---- src/src.pro.orig 2018-10-16 19:57:17 UTC +--- src/src.pro.orig 2019-02-07 05:50:19 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} Index: head/devel/qt5-qdbusviewer/Makefile =================================================================== --- head/devel/qt5-qdbusviewer/Makefile (revision 492792) +++ head/devel/qt5-qdbusviewer/Makefile (revision 492793) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= qdbusviewer DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-qdbusviewer/files/patch-src__src.pro =================================================================== --- head/devel/qt5-qdbusviewer/files/patch-src__src.pro (revision 492792) +++ head/devel/qt5-qdbusviewer/files/patch-src__src.pro (revision 492793) @@ -1,58 +1,60 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:13:51 UTC +--- src/src.pro.orig 2019-02-08 21:10:39 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} Index: head/devel/qt5-qdoc/Makefile =================================================================== --- head/devel/qt5-qdoc/Makefile (revision 492792) +++ head/devel/qt5-qdoc/Makefile (revision 492793) @@ -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= llvm60>=0:devel/llvm60 RUN_DEPENDS= llvm60>=0:devel/llvm60 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}/llvm60 .include Index: head/devel/qt5-qdoc/files/patch-src_src.pro =================================================================== --- head/devel/qt5-qdoc/files/patch-src_src.pro (revision 492792) +++ head/devel/qt5-qdoc/files/patch-src_src.pro (revision 492793) @@ -1,58 +1,60 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:05:35 UTC +--- src/src.pro.orig 2019-02-08 21:19:15 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,5 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - - config_clang: qtConfig(thread): SUBDIRS += qdoc + include($$OUT_PWD/qdoc/qtqdoc-config.pri) + QT_FOR_CONFIG += qdoc-private + qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} Index: head/devel/qt5-qmake/Makefile =================================================================== --- head/devel/qt5-qmake/Makefile (revision 492792) +++ head/devel/qt5-qmake/Makefile (revision 492793) @@ -1,47 +1,46 @@ # $FreeBSD$ PORTNAME= qmake DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt Makefile generator USES= compiler:c++11-lib gmake pkgconfig \ python:build qmake:no_env qt-dist:5,base shebangfix SHEBANG_FILES= util/harfbuzz/update-harfbuzz \ util/unicode/x11/makeencodings \ src/3rdparty/freetype/src/tools/afblue.pl \ mkspecs/features/data/mac/objc_namespace.sh \ mkspecs/features/uikit/devices.py \ mkspecs/features/uikit/device_destinations.sh REINPLACE_ARGS= -i "" HAS_CONFIGURE= yes # Disable everything to install minimal qconfig.pri. CONFIGURE_ARGS= -no-accessibility -no-openssl -no-gui -no-cups \ -no-iconv -no-icu -no-dbus -no-xcb -no-opengl \ -no-glib -no-fontconfig \ -no-gtk \ -no-evdev -no-xkbcommon \ -no-freetype -no-gif -no-harfbuzz -no-libjpeg \ -no-libpng -no-widgets QMAKESPEC= freebsd-${QMAKE_COMPILER} INSTALL_TARGET= sub-qmake-qmake-aux-pro-install_subtargets install_mkspecs BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} post-patch: # Clean up files created by patching @${RM} ${WRKSRC}/mkspecs/*/*.orig post-build: # Complete configure stage to generate *.pri files. cd ${WRKSRC} && \ ${SETENV} CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" \ CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" BUILD_QMAKE=1 \ ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS} .include Index: head/devel/qt5-qmake/pkg-plist =================================================================== --- head/devel/qt5-qmake/pkg-plist (revision 492792) +++ head/devel/qt5-qmake/pkg-plist (revision 492793) @@ -1,477 +1,478 @@ %%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-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/benchmark.prf %%QT_MKSPECDIR%%/features/build_pass.prf %%QT_MKSPECDIR%%/features/cmake_functions.prf %%QT_MKSPECDIR%%/features/configure.prf %%QT_MKSPECDIR%%/features/configure_base.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/qml1_module.prf -%%QT_MKSPECDIR%%/features/qml1_plugin.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_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/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/qt.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/rtti.prf %%QT_MKSPECDIR%%/features/win32/rtti_off.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/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-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-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-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 Index: head/devel/qt5-remoteobjects/Makefile =================================================================== --- head/devel/qt5-remoteobjects/Makefile (revision 492792) +++ head/devel/qt5-remoteobjects/Makefile (revision 492793) @@ -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-script/Makefile =================================================================== --- head/devel/qt5-script/Makefile (revision 492792) +++ head/devel/qt5-script/Makefile (revision 492793) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= script DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-script/pkg-plist =================================================================== --- head/devel/qt5-script/pkg-plist (revision 492792) +++ head/devel/qt5-script/pkg-plist (revision 492793) @@ -1,69 +1,71 @@ +%%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qtscript-config_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptable_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptactivationobject_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptast_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptastfwd_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptastvisitor_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptclassobject_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptcontext_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptdeclarativeclass_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptdeclarativeobject_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptengine_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptengineagent_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptfunction_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptglobalobject_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptgrammar_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptlexer_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptobject_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptparser_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptprogram_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptqobject_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptstaticscopeobject_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptstring_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptsyntaxchecker_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptvalue_p.h %%QT_INCDIR%%/QtScript/%%FULLVER%%/QtScript/private/qscriptvariant_p.h %%QT_INCDIR%%/QtScript/QScriptClass %%QT_INCDIR%%/QtScript/QScriptClassPropertyIterator %%QT_INCDIR%%/QtScript/QScriptContext %%QT_INCDIR%%/QtScript/QScriptContextInfo %%QT_INCDIR%%/QtScript/QScriptContextInfoList %%QT_INCDIR%%/QtScript/QScriptEngine %%QT_INCDIR%%/QtScript/QScriptEngineAgent %%QT_INCDIR%%/QtScript/QScriptExtensionInterface %%QT_INCDIR%%/QtScript/QScriptExtensionPlugin %%QT_INCDIR%%/QtScript/QScriptProgram %%QT_INCDIR%%/QtScript/QScriptString %%QT_INCDIR%%/QtScript/QScriptSyntaxCheckResult %%QT_INCDIR%%/QtScript/QScriptValue %%QT_INCDIR%%/QtScript/QScriptValueIterator %%QT_INCDIR%%/QtScript/QScriptValueList %%QT_INCDIR%%/QtScript/QScriptable %%QT_INCDIR%%/QtScript/QtScript %%QT_INCDIR%%/QtScript/QtScriptDepends %%QT_INCDIR%%/QtScript/QtScriptVersion +%%QT_INCDIR%%/QtScript/qtscript-config.h %%QT_INCDIR%%/QtScript/qscriptable.h %%QT_INCDIR%%/QtScript/qscriptclass.h %%QT_INCDIR%%/QtScript/qscriptclasspropertyiterator.h %%QT_INCDIR%%/QtScript/qscriptcontext.h %%QT_INCDIR%%/QtScript/qscriptcontextinfo.h %%QT_INCDIR%%/QtScript/qscriptengine.h %%QT_INCDIR%%/QtScript/qscriptengineagent.h %%QT_INCDIR%%/QtScript/qscriptextensioninterface.h %%QT_INCDIR%%/QtScript/qscriptextensionplugin.h %%QT_INCDIR%%/QtScript/qscriptprogram.h %%QT_INCDIR%%/QtScript/qscriptstring.h %%QT_INCDIR%%/QtScript/qscriptvalue.h %%QT_INCDIR%%/QtScript/qscriptvalueiterator.h %%QT_INCDIR%%/QtScript/qtscriptglobal.h %%QT_INCDIR%%/QtScript/qtscriptversion.h %%QT_CMAKEDIR%%/Qt5Script/Qt5ScriptConfig.cmake %%QT_CMAKEDIR%%/Qt5Script/Qt5ScriptConfigVersion.cmake %%QT_LIBDIR%%/libQt5Script.prl %%QT_LIBDIR%%/libQt5Script.so %%QT_LIBDIR%%/libQt5Script.so.5 %%QT_LIBDIR%%/libQt5Script.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Script.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Script.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_script.pri %%QT_MKSPECDIR%%/modules/qt_lib_script_private.pri libdata/pkgconfig/Qt5Script.pc Index: head/devel/qt5-scripttools/Makefile =================================================================== --- head/devel/qt5-scripttools/Makefile (revision 492792) +++ head/devel/qt5-scripttools/Makefile (revision 492793) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= scripttools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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} .include Index: head/devel/qt5-scxml/Makefile =================================================================== --- head/devel/qt5-scxml/Makefile (revision 492792) +++ head/devel/qt5-scxml/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= scxml DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/devel/qt5-testlib/Makefile (revision 492793) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= testlib DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/devel/qt5-uitools/Makefile (revision 492793) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= uitools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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/devel/qt5-uitools/files/patch-src__src.pro =================================================================== --- head/devel/qt5-uitools/files/patch-src__src.pro (revision 492792) +++ head/devel/qt5-uitools/files/patch-src__src.pro (revision 492793) @@ -1,59 +1,61 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:20:18 UTC +--- src/src.pro.orig 2019-02-08 21:08:17 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} +SUBDIRS = designer Index: head/emulators/qmc2/files/patch-qmc2_imagechecker.cpp =================================================================== --- head/emulators/qmc2/files/patch-qmc2_imagechecker.cpp (nonexistent) +++ head/emulators/qmc2/files/patch-qmc2_imagechecker.cpp (revision 492793) @@ -0,0 +1,9 @@ +Workaround where the LZMA headers #define False 0, while +parts of QtCore (the new qcborflags?) use False as an identifier. +--- qmc2/imagechecker.cpp.orig 2016-09-04 14:08:00 UTC ++++ qmc2/imagechecker.cpp +@@ -1,3 +1,4 @@ ++#include + #include + #include + #include Property changes on: head/emulators/qmc2/files/patch-qmc2_imagechecker.cpp ___________________________________________________________________ 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/graphics/qt5-3d/Makefile =================================================================== --- head/graphics/qt5-3d/Makefile (revision 492792) +++ head/graphics/qt5-3d/Makefile (revision 492793) @@ -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-graphicaleffects/Makefile =================================================================== --- head/graphics/qt5-graphicaleffects/Makefile (revision 492792) +++ head/graphics/qt5-graphicaleffects/Makefile (revision 492793) @@ -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 492792) +++ head/graphics/qt5-imageformats/Makefile (revision 492793) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= imageformats DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/graphics/qt5-opengl/Makefile (revision 492793) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= opengl DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/graphics/qt5-pixeltool/Makefile (revision 492793) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= pixeltool DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-pixeltool/files/patch-src__src.pro =================================================================== --- head/graphics/qt5-pixeltool/files/patch-src__src.pro (revision 492792) +++ head/graphics/qt5-pixeltool/files/patch-src__src.pro (revision 492793) @@ -1,59 +1,61 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:14:56 UTC +--- src/src.pro.orig 2019-02-08 21:09:32 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} +SUBDIRS = pixeltool Index: head/graphics/qt5-svg/Makefile =================================================================== --- head/graphics/qt5-svg/Makefile (revision 492792) +++ head/graphics/qt5-svg/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= svg DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/graphics/qt5-wayland/Makefile (revision 492793) @@ -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 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 492792) +++ head/graphics/qt5-wayland/pkg-plist (revision 492793) @@ -1,319 +1,322 @@ %%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/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/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-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-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/qwaylandview_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/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-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-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/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/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_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_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/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/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-doc/Makefile =================================================================== --- head/misc/qt5-doc/Makefile (revision 492792) +++ head/misc/qt5-doc/Makefile (revision 492793) @@ -1,39 +1,37 @@ # Created by: Marie Loise Nolden # $FreeBSD$ PORTNAME= doc DISTVERSION= ${QT5_VERSION} CATEGORIES= misc MASTER_SITES= QT/online/qtsdkrepository/linux_x64/desktop/qt5_${QT5_VERSION:S/.//g}_src_doc_examples/qt.qt5.${QT5_VERSION:S/.//g}.doc/ PKGNAMEPREFIX= qt5- -DISTNAME= ${QT5_VERSION}-0-201812040400qt-everywhere-documentation +DISTNAME= ${QT5_VERSION}-0-201901300533qt-everywhere-documentation DIST_SUBDIR= KDE/Qt/${QT5_VERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 documentation WRKSRC= ${WRKDIR}/Docs/Qt-${QT5_VERSION} # bsdtar(1) from 10.3 and earlier cannot read the distfile correctly: # tar: Damaged 7-Zip archive # Depend on p7zip across all versions because Uses/7z.mk does not work if # included after bsd.port.pre.mk. USES= 7z:p7zip qt:5 USE_QT= # we just need access to QT5_VERSION and other variables. DESCR= ${.CURDIR:H:H}/devel/qt5/pkg-descr NO_ARCH= yes NO_BUILD= yes - -QT5_VERSION= 5.12.0 post-extract: ${RM} ${WRKSRC}/Makefile ${RM} -r ${WRKSRC}/global do-install: ${MKDIR} ${STAGEDIR}${QT_DOCDIR} cd ${WRKSRC} && \ ${COPYTREE_SHARE} \* ${STAGEDIR}${QT_DOCDIR} .include Index: head/misc/qt5-doc/distinfo =================================================================== --- head/misc/qt5-doc/distinfo (revision 492792) +++ head/misc/qt5-doc/distinfo (revision 492793) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544129560 -SHA256 (KDE/Qt/5.12.0/5.12.0-0-201812040400qt-everywhere-documentation.7z) = 5509d4018b01ce0c06cb3b03f421a7d18bc9d18bfd55f5e67600d2119ac1ab03 -SIZE (KDE/Qt/5.12.0/5.12.0-0-201812040400qt-everywhere-documentation.7z) = 237771529 +TIMESTAMP = 1549517894 +SHA256 (KDE/Qt/5.12.1/5.12.1-0-201901300533qt-everywhere-documentation.7z) = 7396a7154e30ba53719f8f147ebbf04c89111e66876a9f2f7c798924563b35a9 +SIZE (KDE/Qt/5.12.1/5.12.1-0-201901300533qt-everywhere-documentation.7z) = 253481395 Index: head/misc/qt5-doc/pkg-plist =================================================================== --- head/misc/qt5-doc/pkg-plist (revision 492792) +++ head/misc/qt5-doc/pkg-plist (revision 492793) @@ -1,15818 +1,15981 @@ %%QT_DOCDIR%%/activeqt.qch %%QT_DOCDIR%%/activeqt/activeqt-activeqt-comapp-comapp-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-comapp-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-comapp-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-hierarchy-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-objects-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-hierarchy-objects-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-mediaplayer-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-mediaplayer-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-mediaplayer-mainwindow-ui.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-mediaplayer-mediaaxwidget-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-mediaplayer-mediaplayer-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-menus-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-menus-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-menus-menus-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-ax1-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-ax2-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-multiple-multiple-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-glbox-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-glbox-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-globjwin-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-globjwin-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-opengl-opengl-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-addressview-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-addressview-h.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-qutlook-qutlook-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-simple-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-simple-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-simple-simple-pro.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-wrapper-example.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-wrapper-main-cpp.html %%QT_DOCDIR%%/activeqt/activeqt-activeqt-wrapper-wrapper-pro.html %%QT_DOCDIR%%/activeqt/activeqt-container.html %%QT_DOCDIR%%/activeqt/activeqt-dotnet.html %%QT_DOCDIR%%/activeqt/activeqt-dumpcpp.html %%QT_DOCDIR%%/activeqt/activeqt-dumpdoc.html %%QT_DOCDIR%%/activeqt/activeqt-index.html %%QT_DOCDIR%%/activeqt/activeqt-server.html %%QT_DOCDIR%%/activeqt/activeqt-tools.html %%QT_DOCDIR%%/activeqt/activeqt.index %%QT_DOCDIR%%/activeqt/activeqt.qhp %%QT_DOCDIR%%/activeqt/activeqt.qhp.sha1 %%QT_DOCDIR%%/activeqt/activeqt.tags %%QT_DOCDIR%%/activeqt/examples-manifest.xml %%QT_DOCDIR%%/activeqt/images/activeqt-mediaplayer-example.jpg %%QT_DOCDIR%%/activeqt/images/arrow_bc.png %%QT_DOCDIR%%/activeqt/images/bgrContent.png %%QT_DOCDIR%%/activeqt/images/btn_next.png %%QT_DOCDIR%%/activeqt/images/btn_prev.png %%QT_DOCDIR%%/activeqt/images/bullet_dn.png %%QT_DOCDIR%%/activeqt/images/bullet_sq.png %%QT_DOCDIR%%/activeqt/images/home.png %%QT_DOCDIR%%/activeqt/images/ico_note.png %%QT_DOCDIR%%/activeqt/images/ico_note_attention.png %%QT_DOCDIR%%/activeqt/images/ico_out.png %%QT_DOCDIR%%/activeqt/images/logo.png %%QT_DOCDIR%%/activeqt/qaxaggregated-members.html %%QT_DOCDIR%%/activeqt/qaxaggregated.html %%QT_DOCDIR%%/activeqt/qaxbase-members.html %%QT_DOCDIR%%/activeqt/qaxbase.html %%QT_DOCDIR%%/activeqt/qaxbindable-members.html %%QT_DOCDIR%%/activeqt/qaxbindable.html %%QT_DOCDIR%%/activeqt/qaxcontainer-module.html %%QT_DOCDIR%%/activeqt/qaxfactory-members.html %%QT_DOCDIR%%/activeqt/qaxfactory-obsolete.html %%QT_DOCDIR%%/activeqt/qaxfactory.html %%QT_DOCDIR%%/activeqt/qaxobject-members.html %%QT_DOCDIR%%/activeqt/qaxobject-obsolete.html %%QT_DOCDIR%%/activeqt/qaxobject.html %%QT_DOCDIR%%/activeqt/qaxscript-members.html %%QT_DOCDIR%%/activeqt/qaxscript-obsolete.html %%QT_DOCDIR%%/activeqt/qaxscript.html %%QT_DOCDIR%%/activeqt/qaxscriptengine-members.html %%QT_DOCDIR%%/activeqt/qaxscriptengine-obsolete.html %%QT_DOCDIR%%/activeqt/qaxscriptengine.html %%QT_DOCDIR%%/activeqt/qaxscriptmanager-members.html %%QT_DOCDIR%%/activeqt/qaxscriptmanager-obsolete.html %%QT_DOCDIR%%/activeqt/qaxscriptmanager.html %%QT_DOCDIR%%/activeqt/qaxselect-members.html %%QT_DOCDIR%%/activeqt/qaxselect-obsolete.html %%QT_DOCDIR%%/activeqt/qaxselect.html %%QT_DOCDIR%%/activeqt/qaxserver-demo-hierarchy.html %%QT_DOCDIR%%/activeqt/qaxserver-demo-menus.html %%QT_DOCDIR%%/activeqt/qaxserver-demo-multiple.html %%QT_DOCDIR%%/activeqt/qaxserver-demo-opengl.html %%QT_DOCDIR%%/activeqt/qaxserver-demo-simple.html %%QT_DOCDIR%%/activeqt/qaxserver-demo-wrapper.html %%QT_DOCDIR%%/activeqt/qaxserver-module.html %%QT_DOCDIR%%/activeqt/qaxwidget-members.html %%QT_DOCDIR%%/activeqt/qaxwidget-obsolete.html %%QT_DOCDIR%%/activeqt/qaxwidget.html %%QT_DOCDIR%%/activeqt/style/offline-simple.css %%QT_DOCDIR%%/activeqt/style/offline.css +%%QT_DOCDIR%%/gammaray-manual.qch +%%QT_DOCDIR%%/gammaray-manual/examples-gammaray.html +%%QT_DOCDIR%%/gammaray-manual/examples-manifest.xml +%%QT_DOCDIR%%/gammaray-manual/gammaray-action-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-advanced-usage.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-application-attributes.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-basic-operations.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-classinfo.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-client.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-codec-browser.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-command-line.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-connections.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-enums.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-font-browser.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-geo-positioning.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-getting-started.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-graphicsscene-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-http-cookies.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-install.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-launcher-gui.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-licenses-and-attributions.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-locales.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual-attribution-backward-cpp.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual-attribution-kitemmodels.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual-attribution-kuserfeedback.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual-attribution-lz4.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual-attribution-qt.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual-attribution-stackwalker.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual.qhp +%%QT_DOCDIR%%/gammaray-manual/gammaray-manual.qhp.sha1 +%%QT_DOCDIR%%/gammaray-manual/gammaray-messages.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-metaobject-browser.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-metatype-browser.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-methods.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-mime-types.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-model-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-network.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-object-inspection.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-paint-analyzer.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-properties.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qmlbindings.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qmlcontext.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qmltype.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qobject-browser.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qresource-browser.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qsggeometry.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qsgmaterial.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qsgtexture.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qt3d-geometry-example.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qt3d-geometry-mycylinder-cpp.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qt3d-geometry-mycylinder-h.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qt3d-geometry-qt3d-geometry-cpp.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qt3d-geometry-qt3d-geometry-pro.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qt3d-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qt3dgeometry-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qtcreator.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-qtquick2-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-quick-batching-example.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-quick-batching-quick-batching-pro.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-quick-batching-quick-batching-qml.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-quick-batching-slider-qml.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-quick-event-handling-example.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-quick-event-handling-quick-event-handling-pro.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-quick-event-handling-quick-event-handling-qml.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-signal-plotter.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-signal-slot-example.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-signal-slot-signal-slot-cpp.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-signal-slot-signal-slot-pro.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-stack-trace.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-standard-paths.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-state-machine-debugger.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-state-machine-example.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-state-machine-state-machine-pro.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-state-machine-state-machine-qml.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-styles.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-text-documents.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-timer-example.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-timer-timer-cpp.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-timer-timer-pro.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-timertop.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-tools.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-translator-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-wayland-compositors.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-web-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-widget-attributes.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-widget-inspector.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-widget-layouting-example.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-widget-layouting-widget-layouting-cpp.html +%%QT_DOCDIR%%/gammaray-manual/gammaray-widget-layouting-widget-layouting-pro.html +%%QT_DOCDIR%%/gammaray-manual/gammaray.index +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-action-inspector.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-application-attributes.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-bindings.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-classinfo.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-codec-browser.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-connections.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-enums.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-font-browser.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-geo-positioning.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-graphicsitem-paint-analyzer.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-graphicsscene-inspector.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-http-cookies.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-launcher-attach.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-launcher-connect.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-launcher-launch.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-launcher-selftest.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-locales.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-logging-categories.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-metaobject-browser.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-metatype-browser.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-method-invocation.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-methods.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-mime-types.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-model-inspector.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-network-interfaces.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-object-inspector.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-paint-analyzer.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-properties.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qmlcontext.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qmltype.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qq2-geometry.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qq2-inspector.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qq2-qsg-visualize.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qqpainteditem-paint-analyzer.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qrc-browser.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qsggeometry.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qsgmaterial.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qsgtexture.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qsm-debugger.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qt3d-buffers.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qt3d-geometry-backface-culling.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qt3d-geometry-buffers.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qt3d-geometry-diagnostic-shading.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qt3d-geometry-normals.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qt3d-geometry-wireframe.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qt3d-geometry.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qtcreator-attach.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qtcreator-connect.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-qtcreator.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-signal-plotter.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-stack-trace.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-standard-paths.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-style-controls.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-text-documents.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-timertop.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-timezones.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-translations.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-wayland-compositor.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-web-inspector.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-widget-attributes.png +%%QT_DOCDIR%%/gammaray-manual/images/gammaray-widget-inspector.png +%%QT_DOCDIR%%/gammaray-manual/index.html %%QT_DOCDIR%%/qdoc.qch %%QT_DOCDIR%%/qdoc/01-qdoc-manual.html %%QT_DOCDIR%%/qdoc/03-qdoc-commands-markup.html %%QT_DOCDIR%%/qdoc/04-qdoc-commands-textmarkup.html %%QT_DOCDIR%%/qdoc/05-qdoc-commands-documentstructure.html %%QT_DOCDIR%%/qdoc/06-qdoc-commands-includecodeinline.html %%QT_DOCDIR%%/qdoc/07-0-qdoc-commands-includingexternalcode.html %%QT_DOCDIR%%/qdoc/08-qdoc-commands-creatinglinks.html %%QT_DOCDIR%%/qdoc/09-qdoc-commands-includingimages.html %%QT_DOCDIR%%/qdoc/10-qdoc-commands-tablesandlists.html %%QT_DOCDIR%%/qdoc/11-qdoc-commands-specialcontent.html %%QT_DOCDIR%%/qdoc/12-0-qdoc-commands-miscellaneous.html %%QT_DOCDIR%%/qdoc/13-qdoc-commands-topics.html %%QT_DOCDIR%%/qdoc/14-qdoc-commands-contextcommands.html %%QT_DOCDIR%%/qdoc/15-qdoc-commands-navigation.html %%QT_DOCDIR%%/qdoc/16-qdoc-commands-status.html %%QT_DOCDIR%%/qdoc/17-qdoc-commands-thread.html %%QT_DOCDIR%%/qdoc/18-qdoc-commands-relating.html %%QT_DOCDIR%%/qdoc/19-qdoc-commands-grouping.html %%QT_DOCDIR%%/qdoc/20-qdoc-commands-namingthings.html %%QT_DOCDIR%%/qdoc/21-0-qdoc-configuration.html %%QT_DOCDIR%%/qdoc/21-0-qdoc-creating-dita-maps.html %%QT_DOCDIR%%/qdoc/21-1-minimum-qdocconf.html %%QT_DOCDIR%%/qdoc/21-2-qtgui-qdocconf.html %%QT_DOCDIR%%/qdoc/21-3-qt-dita-xml-output.html %%QT_DOCDIR%%/qdoc/22-creating-help-project-files.html %%QT_DOCDIR%%/qdoc/22-qdoc-configuration-generalvariables.html %%QT_DOCDIR%%/qdoc/23-qdoc-configuration-cppvariables.html %%QT_DOCDIR%%/qdoc/24-qdoc-configuration-htmlvariables.html %%QT_DOCDIR%%/qdoc/25-qdoc-configuration-derivedprojects.html %%QT_DOCDIR%%/qdoc/26-qdoc-configuration-example-manifest-files.html %%QT_DOCDIR%%/qdoc/27-qdoc-commands-alphabetical.html %%QT_DOCDIR%%/qdoc/28-qdoc-qa-pages.html %%QT_DOCDIR%%/qdoc/corefeatures.html -%%QT_DOCDIR%%/qdoc/examples-manifest.xml %%QT_DOCDIR%%/qdoc/images/arrow_bc.png %%QT_DOCDIR%%/qdoc/images/bgrContent.png %%QT_DOCDIR%%/qdoc/images/btn_next.png %%QT_DOCDIR%%/qdoc/images/btn_prev.png %%QT_DOCDIR%%/qdoc/images/bullet_dn.png %%QT_DOCDIR%%/qdoc/images/bullet_sq.png %%QT_DOCDIR%%/qdoc/images/happy.gif %%QT_DOCDIR%%/qdoc/images/happyguy.jpg %%QT_DOCDIR%%/qdoc/images/home.png %%QT_DOCDIR%%/qdoc/images/ico_note.png %%QT_DOCDIR%%/qdoc/images/ico_note_attention.png %%QT_DOCDIR%%/qdoc/images/ico_out.png %%QT_DOCDIR%%/qdoc/images/link-to-qquickitem.png %%QT_DOCDIR%%/qdoc/images/links-to-links.png %%QT_DOCDIR%%/qdoc/images/logo.png %%QT_DOCDIR%%/qdoc/images/qa-table.png %%QT_DOCDIR%%/qdoc/images/training.jpg %%QT_DOCDIR%%/qdoc/images/windowsvista-pushbutton.png %%QT_DOCDIR%%/qdoc/qdoc-categories.html -%%QT_DOCDIR%%/qdoc/qdoc-componentset-componentset-pro.html -%%QT_DOCDIR%%/qdoc/qdoc-componentset-example.html -%%QT_DOCDIR%%/qdoc/qdoc-componentset-progressbar-qml.html -%%QT_DOCDIR%%/qdoc/qdoc-componentset-switch-qml.html -%%QT_DOCDIR%%/qdoc/qdoc-componentset-tabwidget-qml.html -%%QT_DOCDIR%%/qdoc/qdoc-componentset-uicomponents-qdoc-sample.html %%QT_DOCDIR%%/qdoc/qdoc-guide-clang.html %%QT_DOCDIR%%/qdoc/qdoc-guide-conf.html %%QT_DOCDIR%%/qdoc/qdoc-guide-writing.html %%QT_DOCDIR%%/qdoc/qdoc-guide.html %%QT_DOCDIR%%/qdoc/qdoc-index.html %%QT_DOCDIR%%/qdoc/qdoc-minimum-qdocconf.html %%QT_DOCDIR%%/qdoc/qdoc.index %%QT_DOCDIR%%/qdoc/qdoc.qhp %%QT_DOCDIR%%/qdoc/qdoc.qhp.sha1 %%QT_DOCDIR%%/qdoc/qdoc.tags -%%QT_DOCDIR%%/qdoc/qml-uicomponents-progressbar-members.html -%%QT_DOCDIR%%/qdoc/qml-uicomponents-progressbar.html -%%QT_DOCDIR%%/qdoc/qml-uicomponents-switch-members.html -%%QT_DOCDIR%%/qdoc/qml-uicomponents-switch.html -%%QT_DOCDIR%%/qdoc/qml-uicomponents-tabwidget-members.html -%%QT_DOCDIR%%/qdoc/qml-uicomponents-tabwidget.html %%QT_DOCDIR%%/qdoc/qtgui-qdocconf.html %%QT_DOCDIR%%/qdoc/qtwritingstyle-cpp.html %%QT_DOCDIR%%/qdoc/qtwritingstyle-qml.html %%QT_DOCDIR%%/qdoc/style/offline-simple.css %%QT_DOCDIR%%/qdoc/style/offline.css -%%QT_DOCDIR%%/qdoc/uicomponents-qmlmodule.html %%QT_DOCDIR%%/qmake.qch %%QT_DOCDIR%%/qmake/images/arrow_bc.png %%QT_DOCDIR%%/qmake/images/bgrContent.png %%QT_DOCDIR%%/qmake/images/btn_next.png %%QT_DOCDIR%%/qmake/images/btn_prev.png %%QT_DOCDIR%%/qmake/images/bullet_dn.png %%QT_DOCDIR%%/qmake/images/bullet_sq.png %%QT_DOCDIR%%/qmake/images/home.png %%QT_DOCDIR%%/qmake/images/ico_note.png %%QT_DOCDIR%%/qmake/images/ico_note_attention.png %%QT_DOCDIR%%/qmake/images/ico_out.png %%QT_DOCDIR%%/qmake/images/logo.png %%QT_DOCDIR%%/qmake/images/qmake-precompile-ui.png %%QT_DOCDIR%%/qmake/qmake-advanced-usage.html %%QT_DOCDIR%%/qmake/qmake-common-projects.html %%QT_DOCDIR%%/qmake/qmake-environment-reference.html %%QT_DOCDIR%%/qmake/qmake-function-reference.html %%QT_DOCDIR%%/qmake/qmake-language.html %%QT_DOCDIR%%/qmake/qmake-manual.html %%QT_DOCDIR%%/qmake/qmake-overview.html %%QT_DOCDIR%%/qmake/qmake-platform-notes.html %%QT_DOCDIR%%/qmake/qmake-precompiledheaders.html %%QT_DOCDIR%%/qmake/qmake-project-files.html %%QT_DOCDIR%%/qmake/qmake-reference.html %%QT_DOCDIR%%/qmake/qmake-running.html %%QT_DOCDIR%%/qmake/qmake-test-function-reference.html %%QT_DOCDIR%%/qmake/qmake-tutorial.html %%QT_DOCDIR%%/qmake/qmake-variable-reference.html %%QT_DOCDIR%%/qmake/qmake.index %%QT_DOCDIR%%/qmake/qmake.qhp %%QT_DOCDIR%%/qmake/qmake.qhp.sha1 %%QT_DOCDIR%%/qmake/style/offline-simple.css %%QT_DOCDIR%%/qmake/style/offline.css %%QT_DOCDIR%%/qt3d.qch %%QT_DOCDIR%%/qt3d/examples-manifest.xml %%QT_DOCDIR%%/qt3d/images/Space-invaders.jpg %%QT_DOCDIR%%/qt3d/images/advanced-custom-material.jpg %%QT_DOCDIR%%/qt3d/images/arrow_bc.png %%QT_DOCDIR%%/qt3d/images/audio-visualizer-qml-example.png %%QT_DOCDIR%%/qt3d/images/basicshapes-cpp-example.jpg %%QT_DOCDIR%%/qt3d/images/bgrContent.png %%QT_DOCDIR%%/qt3d/images/btn_next.png %%QT_DOCDIR%%/qt3d/images/btn_prev.png %%QT_DOCDIR%%/qt3d/images/bullet_dn.png %%QT_DOCDIR%%/qt3d/images/bullet_sq.png %%QT_DOCDIR%%/qt3d/images/deferred-framegraph.png %%QT_DOCDIR%%/qt3d/images/ecs-1.png %%QT_DOCDIR%%/qt3d/images/ecs-2.png %%QT_DOCDIR%%/qt3d/images/framegraph-parallel-build.png %%QT_DOCDIR%%/qt3d/images/home.png %%QT_DOCDIR%%/qt3d/images/ico_note.png %%QT_DOCDIR%%/qt3d/images/ico_note_attention.png %%QT_DOCDIR%%/qt3d/images/ico_out.png %%QT_DOCDIR%%/qt3d/images/logo.png %%QT_DOCDIR%%/qt3d/images/multiviewport-1.png %%QT_DOCDIR%%/qt3d/images/multiviewport-2.png %%QT_DOCDIR%%/qt3d/images/multiviewport-qml-example.jpg %%QT_DOCDIR%%/qt3d/images/multiviewport.png %%QT_DOCDIR%%/qt3d/images/pbr-materials.png %%QT_DOCDIR%%/qt3d/images/planets-qml-example.jpg %%QT_DOCDIR%%/qt3d/images/qt3d-wireframe-rendering.png %%QT_DOCDIR%%/qt3d/images/scene2d.png %%QT_DOCDIR%%/qt3d/images/scene3d.png %%QT_DOCDIR%%/qt3d/images/shadowmapping-depth.png %%QT_DOCDIR%%/qt3d/images/shadowmapping-qt3d.png %%QT_DOCDIR%%/qt3d/images/simple-cpp.png %%QT_DOCDIR%%/qt3d/images/simple-custom-material.jpg %%QT_DOCDIR%%/qt3d/images/simple-framegraph.png %%QT_DOCDIR%%/qt3d/images/simple-qml.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/advancedcustommaterial/textures/WaterDiffuse.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/advancedcustommaterial/textures/WaterNormal.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/advancedcustommaterial/textures/WaterSpecular.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/advancedcustommaterial/textures/Waterwave.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/advancedcustommaterial/textures/foam.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/advancedcustommaterial/textures/sky.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/albumcover.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/demotitle.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/normalmap.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/pausehoverpressed.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/pausenormal.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/playhoverpressed.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/playnormal.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/songtitle.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/stopdisabled.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/stophoverpressed.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/audio-visualizer-qml/images/stopnormal.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/android/res/drawable-hdpi/icon.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/android/res/drawable-ldpi/icon.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/android/res/drawable-mdpi/icon.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/earth.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/jupiter.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/mars.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/mercury.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/nasa/uranusringcolortrans.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/neptune.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/saturn.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/earthcloudmapcolortrans.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/earthcloudmapspec.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/earthmap2k.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/earthnormal2k.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/earthspec2k.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/galaxy_starfield.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/jupitermap.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/marsmap2k.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/marsnormal2k.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/mercurymap.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/mercurynormal.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/moonmap2k.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/moonnormal2k.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/neptunemap.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/saturnmap.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/saturnringcolortrans.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/sunmap.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/uranusmap.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/venusmap.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/solarsystemscope/venusnormal.jpg %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/sun.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/uranus.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/images/venus.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/planets-watchos/PlanetsClient WatchKit App/Assets.xcassets/AppIcon.appiconset/home_icon.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/planets-watchos/PlanetsClient/Assets.xcassets/AppIcon.appiconset/icon120.png %%QT_DOCDIR%%/qt3d/images/used-in-examples/planets-qml/planets-watchos/PlanetsClient/Assets.xcassets/AppIcon.appiconset/icon180.png %%QT_DOCDIR%%/qt3d/images/wave.png %%QT_DOCDIR%%/qt3d/images/widgets-scene3d.png %%QT_DOCDIR%%/qt3d/qml-computecommand-members.html %%QT_DOCDIR%%/qt3d/qml-computecommand.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-abstractanimation-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-abstractanimation.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-abstractclipanimator-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-abstractclipanimator.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-abstractclipblendnode-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-abstractclipblendnode.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-additiveclipblend-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-additiveclipblend.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-animationcontroller-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-animationcontroller.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-animationgroup-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-animationgroup.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-blendedclipanimator-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-blendedclipanimator.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-clipanimator-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-clipanimator.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-keyframeanimation-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-keyframeanimation.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-lerpblend-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-lerpblend.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-morphinganimation-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-morphinganimation.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-morphtarget-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-morphtarget.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-vertexblendanimation-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-animation-vertexblendanimation.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-abstractskeleton-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-abstractskeleton.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-armature-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-armature.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-component3d-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-component3d.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-entity-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-entity.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-entityloader-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-entityloader.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-joint-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-joint.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-node-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-node.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-nodeinstantiator-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-nodeinstantiator.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-quaternionanimation-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-quaternionanimation.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-skeleton-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-skeleton.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-skeletonloader-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-skeletonloader.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-transform-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-core-transform.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conegeometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conegeometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conemesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-conemesh.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidgeometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidgeometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidmesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cuboidmesh.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindergeometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindergeometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindermesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-cylindermesh.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusemapmaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusemapmaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusespecularmapmaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusespecularmapmaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusespecularmaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-diffusespecularmaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-extrudedtextgeometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-extrudedtextgeometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-extrudedtextmesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-extrudedtextmesh.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-firstpersoncameracontroller-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-firstpersoncameracontroller.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-forwardrenderer-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-forwardrenderer-obsolete.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-forwardrenderer.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-goochmaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-goochmaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapalphamaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapalphamaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapmaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusemapmaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusespecularmapmaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-normaldiffusespecularmapmaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-orbitcameracontroller-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-orbitcameracontroller.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-pervertexcolormaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-pervertexcolormaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongalphamaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongalphamaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongmaterial-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-phongmaterial.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planegeometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planegeometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planemesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-planemesh.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheregeometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheregeometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheremesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-spheremesh.html +%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-text2dentity-members.html +%%QT_DOCDIR%%/qt3d/qml-qt3d-extras-text2dentity.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusgeometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusgeometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusmesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-extras-torusmesh.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractactioninput-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractactioninput.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractaxisinput-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractaxisinput.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractphysicaldevice-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-abstractphysicaldevice.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-action-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-action.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-actioninput-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-actioninput.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-analogaxisinput-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-analogaxisinput.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-axis-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-axis.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-axisaccumulator-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-axisaccumulator.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-axissetting-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-axissetting.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-buttonaxisinput-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-buttonaxisinput.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputchord-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputchord.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsequence-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsequence.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsettings-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-inputsettings.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboarddevice-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboarddevice.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardhandler-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyboardhandler.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyevent-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-keyevent.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-logicaldevice-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-logicaldevice.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousedevice-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousedevice.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-mouseevent-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-mouseevent.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousehandler-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-mousehandler.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-wheelevent-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-input-wheelevent.html %%QT_DOCDIR%%/qt3d/qml-qt3d-logic-frameaction-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-logic-frameaction.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstractraycaster-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstractraycaster.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstracttextureimage-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-abstracttextureimage.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-alphacoverage-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-alphacoverage.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-alphatest-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-alphatest.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-attribute-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-attribute.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequation-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequation.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequationarguments-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-blendequationarguments.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-blitframebuffer-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-blitframebuffer.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-buffer-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-buffer-obsolete.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-buffer.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-camera-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-camera-obsolete.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-camera.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameralens-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameralens.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameraselector-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-cameraselector.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-clearbuffers-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-clearbuffers.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-clipplane-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-clipplane.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-colormask-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-colormask.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-cullface-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-cullface.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-depthtest-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-depthtest.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-directionallight-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-directionallight.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-dispatchcompute-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-dispatchcompute.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-dithering-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-dithering.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-effect-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-effect.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-environmentlight-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-environmentlight.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-filterkey-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-filterkey.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-framegraphnode-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-framegraphnode.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-frontface-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-frontface.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-frustumculling-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-frustumculling.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometry-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometry.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometryrenderer-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-geometryrenderer.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-graphicsapifilter-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-graphicsapifilter.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-layer-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-layer.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-layerfilter-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-layerfilter.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetail-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetail.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetailboundingsphere-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetailboundingsphere.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetailloader-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetailloader.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetailswitch-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-levelofdetailswitch.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-light-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-light.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-linewidth-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-linewidth.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-material-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-material.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-memorybarrier-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-memorybarrier.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-mesh-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-mesh.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-multisampleantialiasing-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-multisampleantialiasing.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-nodepthmask-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-nodepthmask.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-nodraw-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-nodraw.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-objectpicker-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-objectpicker.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-parameter-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-parameter.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickevent-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickevent.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickingsettings-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickingsettings.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-picklineevent-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-picklineevent.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickpointevent-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pickpointevent.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-picktriangleevent-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-picktriangleevent.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointlight-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointlight.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointsize-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-pointsize.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-polygonoffset-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-polygonoffset.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-proximityfilter-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-proximityfilter.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-raycaster-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-raycaster.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendercapture-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendercapture-obsolete.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendercapture.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendercapturereply-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendercapturereply-obsolete.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendercapturereply.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderpass-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderpass.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderpassfilter-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderpassfilter.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersettings-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersettings.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderstateset-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-renderstateset.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersurfaceselector-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendersurfaceselector.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertarget-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertarget.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertargetoutput-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertargetoutput.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertargetselector-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-rendertargetselector.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-sceneloader-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-sceneloader.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-scissortest-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-scissortest.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-screenraycaster-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-screenraycaster.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-seamlesscubemap-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-seamlesscubemap.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-shaderprogram-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-shaderprogram.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-shaderprogrambuilder-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-shaderprogrambuilder.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-sortpolicy-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-sortpolicy.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-spotlight-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-spotlight.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stencilmask-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stencilmask.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciloperation-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciloperation.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciloperationarguments-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciloperationarguments.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciltest-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciltest.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciltestarguments-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-stenciltestarguments.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-technique-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-technique.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-techniquefilter-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-techniquefilter.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-textureimage-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-textureimage.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-viewport-members.html %%QT_DOCDIR%%/qt3d/qml-qt3d-render-viewport.html %%QT_DOCDIR%%/qt3d/qml-qtquick-scene2d-scene2d-members.html %%QT_DOCDIR%%/qt3d/qml-qtquick-scene2d-scene2d.html %%QT_DOCDIR%%/qt3d/qml-qtquick-scene3d-scene3d-members.html %%QT_DOCDIR%%/qt3d/qml-qtquick-scene3d-scene3d.html %%QT_DOCDIR%%/qt3d/qml-renderstate-members.html %%QT_DOCDIR%%/qt3d/qml-renderstate.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-advancedcustommaterial-pro.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-example.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-models-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-qml-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-sceneroot-qml.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-shaders-es2-water-vert.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-shaders-gl3-water-vert.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-shaders-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-textures-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-water-qml.html %%QT_DOCDIR%%/qt3d/qt3d-advancedcustommaterial-watermaterial-qml.html %%QT_DOCDIR%%/qt3d/qt3d-animation-qmlmodule.html %%QT_DOCDIR%%/qt3d/qt3d-attribution-assimp.html %%QT_DOCDIR%%/qt3d/qt3d-attribution-gltf-wine.html %%QT_DOCDIR%%/qt3d/qt3d-attribution-miramar-sky.html %%QT_DOCDIR%%/qt3d/qt3d-attribution-nasa-jpl.html %%QT_DOCDIR%%/qt3d/qt3d-attribution-solar-system-scope.html %%QT_DOCDIR%%/qt3d/qt3d-attribution-substance-share.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-audio-visualizer-qml-pro.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-audio-visualizer-qml-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-barentity-qml.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-example.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-touchsettings-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-touchsettings-h.html %%QT_DOCDIR%%/qt3d/qt3d-audio-visualizer-qml-visualizer-qml.html %%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-basicshapes-cpp-pro.html %%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-example.html %%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-scenemodifier-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-basicshapes-cpp-scenemodifier-h.html %%QT_DOCDIR%%/qt3d/qt3d-core-qmlmodule.html %%QT_DOCDIR%%/qt3d/qt3d-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-examples.html %%QT_DOCDIR%%/qt3d/qt3d-extras-qmlmodule.html %%QT_DOCDIR%%/qt3d/qt3d-index.html %%QT_DOCDIR%%/qt3d/qt3d-input-qmlmodule.html %%QT_DOCDIR%%/qt3d/qt3d-logic-qmlmodule.html %%QT_DOCDIR%%/qt3d/qt3d-multiviewport-example.html %%QT_DOCDIR%%/qt3d/qt3d-multiviewport-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-multiviewport-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-multiviewport-multiviewport-pro.html %%QT_DOCDIR%%/qt3d/qt3d-multiviewport-multiviewport-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-multiviewport-quadviewportframegraph-qml.html %%QT_DOCDIR%%/qt3d/qt3d-multiviewport-simplecamera-qml.html %%QT_DOCDIR%%/qt3d/qt3d-overview.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-basiccamera-qml.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-example.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-lights-qml.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-materials-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-pbr-materials-pro.html %%QT_DOCDIR%%/qt3d/qt3d-pbr-materials-trefoilknot-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-android-androidmanifest-xml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-appletvinput-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-example.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-fpsdisplay-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-infosheet-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-networkcontroller-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-networkcontroller-h.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planet-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetbutton-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planeteffect-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetframegraph-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetmaterial-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-js.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-qml-images-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-qml-pro.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-qml-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-watchos-planetsclient-appdelegate-h.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-watchos-planetsclient-viewcontroller-h.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-watchos-planetsclient-watchkit-extension-extensiondelegate-h.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planets-watchos-planetsclient-watchkit-extension-interfacecontroller-h.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetslight-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-planetsmain-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-ring-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-es2-planetd-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-es2-planetdb-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-es2-sun-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-planetd-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-planetdb-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-planetdshadow-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-shadowmap-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shaders-gl3-sun-vert.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-shadoweffect-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-solarsystem-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-styledslider-qml.html %%QT_DOCDIR%%/qt3d/qt3d-planets-qml-suneffect-qml.html %%QT_DOCDIR%%/qt3d/qt3d-qml.html %%QT_DOCDIR%%/qt3d/qt3d-render-qmlmodule.html %%QT_DOCDIR%%/qt3d/qt3d-scene2d-example.html %%QT_DOCDIR%%/qt3d/qt3d-scene2d-logocontrols-qml.html %%QT_DOCDIR%%/qt3d/qt3d-scene2d-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-scene2d-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-scene2d-scene2d-pro.html %%QT_DOCDIR%%/qt3d/qt3d-scene2d-scene2d-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-scene3d-animatedentity-qml.html %%QT_DOCDIR%%/qt3d/qt3d-scene3d-example.html %%QT_DOCDIR%%/qt3d/qt3d-scene3d-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-scene3d-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-scene3d-scene3d-pro.html %%QT_DOCDIR%%/qt3d/qt3d-scene3d-scene3d-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-adseffect-qml.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-adsmaterial-qml.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-example.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-groundplane-qml.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-ads-vert.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-es3-ads-vert.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-es3-shadowmap-vert.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shaders-shadowmap-vert.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadow-map-qml-pro.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadow-map-qml-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadowmapframegraph-qml.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-shadowmaplight-qml.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-toyplane-qml.html %%QT_DOCDIR%%/qt3d/qt3d-shadow-map-qml-trefoil-qml.html %%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-example.html %%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-orbittransformcontroller-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-orbittransformcontroller-h.html %%QT_DOCDIR%%/qt3d/qt3d-simple-cpp-simple-cpp-pro.html %%QT_DOCDIR%%/qt3d/qt3d-simple-qml-example.html %%QT_DOCDIR%%/qt3d/qt3d-simple-qml-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-simple-qml-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-simple-qml-simple-qml-pro.html %%QT_DOCDIR%%/qt3d/qt3d-simple-qml-simple-qml-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-example.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-models-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-planemodel-qml.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-qml-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-sceneroot-qml.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-shaders-es2-simplecolor-vert.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-shaders-gl3-simplecolor-vert.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-shaders-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-simplecustommaterial-pro.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-simplematerial-qml.html %%QT_DOCDIR%%/qt3d/qt3d-simplecustommaterial-textures-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-wave-background-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wave-backgroundeffect-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wave-basiccamera-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wave-example.html %%QT_DOCDIR%%/qt3d/qt3d-wave-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-wave-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wave-shaders-background-vert.html %%QT_DOCDIR%%/qt3d/qt3d-wave-shaders-ribbon-vert.html %%QT_DOCDIR%%/qt3d/qt3d-wave-shaders-robustwireframe-geom.html %%QT_DOCDIR%%/qt3d/qt3d-wave-wave-pro.html %%QT_DOCDIR%%/qt3d/qt3d-wave-wave-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wave-wave-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-wave-waveeffect-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wave-waveforwardrenderer-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wave-wavematerial-qml.html %%QT_DOCDIR%%/qt3d/qt3d-widgets-scene3d-example.html %%QT_DOCDIR%%/qt3d/qt3d-widgets-scene3d-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-widgets-scene3d-widgets-scene3d-pro.html %%QT_DOCDIR%%/qt3d/qt3d-widgets-scene3d-widgets-scene3d-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-basiccamera-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-example.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-main-cpp.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-main-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-shaders-robustwireframe-geom.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-shaders-robustwireframe-vert.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-trefoilknot-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframe-pro.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframe-qrc.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframeeffect-qml.html %%QT_DOCDIR%%/qt3d/qt3d-wireframe-wireframematerial-qml.html %%QT_DOCDIR%%/qt3d/qt3d.index %%QT_DOCDIR%%/qt3d/qt3d.qhp %%QT_DOCDIR%%/qt3d/qt3d.qhp.sha1 %%QT_DOCDIR%%/qt3d/qt3d.tags %%QT_DOCDIR%%/qt3d/qt3danimation-module.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractanimation-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractanimation-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractanimation.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractanimationclip-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractanimationclip-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractanimationclip.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractchannelmapping-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractchannelmapping.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractclipanimator-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractclipanimator-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractclipanimator.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractclipblendnode-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractclipblendnode-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qabstractclipblendnode.html %%QT_DOCDIR%%/qt3d/qt3danimation-qadditiveclipblend-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qadditiveclipblend-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qadditiveclipblend.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationaspect-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationaspect-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationaspect.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcallback-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcallback.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationclip-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationclip-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationclip.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationclipdata-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationclipdata.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcliploader-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcliploader-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcliploader.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcontroller-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcontroller-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationcontroller.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationgroup-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationgroup-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qanimationgroup.html %%QT_DOCDIR%%/qt3d/qt3danimation-qblendedclipanimator-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qblendedclipanimator-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qblendedclipanimator.html %%QT_DOCDIR%%/qt3d/qt3danimation-qcallbackmapping-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qcallbackmapping-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qcallbackmapping.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannel-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannel.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelcomponent-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelcomponent.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmapper-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmapper-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmapper.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmapping-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmapping-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmapping.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmappingcreatedchange-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmappingcreatedchange.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmappingcreatedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qchannelmappingcreatedchangebase.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipanimator-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipanimator-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipanimator.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipblendnodecreatedchange-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipblendnodecreatedchange.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipblendnodecreatedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipblendnodecreatedchangebase.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipblendvalue-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipblendvalue-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclipblendvalue.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclock-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qclock.html %%QT_DOCDIR%%/qt3d/qt3danimation-qkeyframe-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qkeyframe.html %%QT_DOCDIR%%/qt3d/qt3danimation-qkeyframeanimation-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qkeyframeanimation-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qkeyframeanimation.html %%QT_DOCDIR%%/qt3d/qt3danimation-qlerpclipblend-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qlerpclipblend-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qlerpclipblend.html %%QT_DOCDIR%%/qt3d/qt3danimation-qmorphinganimation-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qmorphinganimation-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qmorphinganimation.html %%QT_DOCDIR%%/qt3d/qt3danimation-qmorphtarget-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qmorphtarget-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qmorphtarget.html %%QT_DOCDIR%%/qt3d/qt3danimation-qskeletonmapping-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qskeletonmapping.html %%QT_DOCDIR%%/qt3d/qt3danimation-qvertexblendanimation-members.html %%QT_DOCDIR%%/qt3d/qt3danimation-qvertexblendanimation-obsolete.html %%QT_DOCDIR%%/qt3d/qt3danimation-qvertexblendanimation.html %%QT_DOCDIR%%/qt3d/qt3danimation.html %%QT_DOCDIR%%/qt3d/qt3dcore-module.html %%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspect-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspect-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qabstractaspect.html %%QT_DOCDIR%%/qt3d/qt3dcore-qabstractskeleton-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qabstractskeleton-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qabstractskeleton.html %%QT_DOCDIR%%/qt3d/qt3dcore-qarmature-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qarmature-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qarmature.html %%QT_DOCDIR%%/qt3d/qt3dcore-qaspectengine-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qaspectengine-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qaspectengine.html %%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjob-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qaspectjob.html %%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnode-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnode.html %%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodemapper-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qbackendnodemapper.html %%QT_DOCDIR%%/qt3d/qt3dcore-qcomponent-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qcomponent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qcomponent.html %%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentaddedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentaddedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentremovedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qcomponentremovedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qdynamicpropertyupdatedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qdynamicpropertyupdatedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qentity-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qentity-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qentity.html %%QT_DOCDIR%%/qt3d/qt3dcore-qjoint-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qjoint-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qjoint.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnode-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnode-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnode.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodecommand-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodecommand.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodecreatedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodedestroyedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodedestroyedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodeid-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodeid.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodeidtypepair-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qnodeidtypepair.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynodeaddedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynodeaddedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynoderemovedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertynoderemovedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyupdatedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueaddedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qpropertyvalueremovedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dcore-qscenechange-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qscenechange.html %%QT_DOCDIR%%/qt3d/qt3dcore-qskeleton-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qskeleton-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qskeleton.html %%QT_DOCDIR%%/qt3d/qt3dcore-qskeletonloader-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qskeletonloader-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qskeletonloader.html %%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyupdatedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyupdatedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueaddedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueaddedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueremovedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qstaticpropertyvalueremovedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dcore-qtransform-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-qtransform-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-qtransform.html %%QT_DOCDIR%%/qt3d/qt3dcore-quick-qqmlaspectengine-members.html %%QT_DOCDIR%%/qt3d/qt3dcore-quick-qqmlaspectengine-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dcore-quick-qqmlaspectengine.html %%QT_DOCDIR%%/qt3d/qt3dcore-quick.html %%QT_DOCDIR%%/qt3d/qt3dcore.html %%QT_DOCDIR%%/qt3d/qt3dextras-module.html %%QT_DOCDIR%%/qt3d/qt3dextras-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qabstractcameracontroller-inputstate-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qabstractcameracontroller-inputstate.html %%QT_DOCDIR%%/qt3d/qt3dextras-qabstractcameracontroller-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qabstractcameracontroller-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qabstractcameracontroller.html %%QT_DOCDIR%%/qt3d/qt3dextras-qabstractspritesheet-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qabstractspritesheet.html %%QT_DOCDIR%%/qt3d/qt3dextras-qconegeometry-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qconegeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qconegeometry.html %%QT_DOCDIR%%/qt3d/qt3dextras-qconemesh-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qconemesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qconemesh.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidgeometry-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidgeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidgeometry.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidmesh-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidmesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcuboidmesh.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcylindergeometry-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcylindergeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcylindergeometry.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcylindermesh-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcylindermesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qcylindermesh.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusemapmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusemapmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusemapmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmapmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmapmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmapmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qdiffusespecularmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qextrudedtextgeometry-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qextrudedtextgeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qextrudedtextgeometry.html %%QT_DOCDIR%%/qt3d/qt3dextras-qextrudedtextmesh-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qextrudedtextmesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qextrudedtextmesh.html %%QT_DOCDIR%%/qt3d/qt3dextras-qfirstpersoncameracontroller-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qfirstpersoncameracontroller-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qfirstpersoncameracontroller.html %%QT_DOCDIR%%/qt3d/qt3dextras-qforwardrenderer-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qforwardrenderer-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qforwardrenderer.html %%QT_DOCDIR%%/qt3d/qt3dextras-qgoochmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qgoochmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qgoochmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qmetalroughmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qmetalroughmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qmetalroughmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qmorphphongmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qmorphphongmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qmorphphongmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapalphamaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapalphamaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapalphamaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusemapmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusespecularmapmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusespecularmapmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qnormaldiffusespecularmapmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qorbitcameracontroller-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qorbitcameracontroller-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qorbitcameracontroller.html %%QT_DOCDIR%%/qt3d/qt3dextras-qpervertexcolormaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qpervertexcolormaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qpervertexcolormaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qphongalphamaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qphongalphamaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qphongalphamaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qphongmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qphongmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qphongmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qplanegeometry-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qplanegeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qplanegeometry.html %%QT_DOCDIR%%/qt3d/qt3dextras-qplanemesh-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qplanemesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qplanemesh.html %%QT_DOCDIR%%/qt3d/qt3dextras-qskyboxentity-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qskyboxentity-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qskyboxentity.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspheregeometry-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspheregeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspheregeometry.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspheremesh-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspheremesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspheremesh.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspritegrid-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspritegrid.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspritesheet-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspritesheet.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspritesheetitem-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qspritesheetitem.html %%QT_DOCDIR%%/qt3d/qt3dextras-qt3dwindow-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qt3dwindow.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtext2dentity-members.html +%%QT_DOCDIR%%/qt3d/qt3dextras-qtext2dentity-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtext2dentity.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtexturedmetalroughmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtexturedmetalroughmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtexturedmetalroughmaterial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtexturematerial-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtexturematerial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtexturematerial.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtorusgeometry-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtorusgeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtorusgeometry.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtorusmesh-members.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtorusmesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dextras-qtorusmesh.html %%QT_DOCDIR%%/qt3d/qt3dextras.html %%QT_DOCDIR%%/qt3d/qt3dinput-module.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractactioninput-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractactioninput-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractactioninput.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinput-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinput-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractaxisinput.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevice-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevice-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldevice.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldeviceproxy-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldeviceproxy-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qabstractphysicaldeviceproxy.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaction-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaction-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaction.html %%QT_DOCDIR%%/qt3d/qt3dinput-qactioninput-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qactioninput-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qactioninput.html %%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinput-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinput-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qanalogaxisinput.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxis-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxis-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxis.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxisaccumulator-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxisaccumulator-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxisaccumulator.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxissetting-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxissetting-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qaxissetting.html %%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinput-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinput-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qbuttonaxisinput.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputaspect-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputaspect-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputaspect.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputchord-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputchord-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputchord.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegration-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegration-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputdeviceintegration.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputsequence-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputsequence-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputsequence.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettings-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettings-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qinputsettings.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboarddevice-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboarddevice-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboarddevice.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandler-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandler-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyboardhandler.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyevent-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyevent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qkeyevent.html %%QT_DOCDIR%%/qt3d/qt3dinput-qlogicaldevice-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qlogicaldevice-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qlogicaldevice.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmousedevice-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmousedevice-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmousedevice.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmouseevent-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmouseevent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmouseevent.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandler-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandler-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qmousehandler.html %%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchange-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchange.html %%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qphysicaldevicecreatedchangebase.html %%QT_DOCDIR%%/qt3d/qt3dinput-qwheelevent-members.html %%QT_DOCDIR%%/qt3d/qt3dinput-qwheelevent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dinput-qwheelevent.html %%QT_DOCDIR%%/qt3d/qt3dinput.html +%%QT_DOCDIR%%/qt3d/qt3dlogic-logic.html %%QT_DOCDIR%%/qt3d/qt3dlogic-module.html %%QT_DOCDIR%%/qt3d/qt3dlogic-qframeaction-members.html %%QT_DOCDIR%%/qt3d/qt3dlogic-qframeaction-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dlogic-qframeaction.html %%QT_DOCDIR%%/qt3d/qt3dlogic-qlogicaspect-members.html %%QT_DOCDIR%%/qt3d/qt3dlogic-qlogicaspect-obsolete.html %%QT_DOCDIR%%/qt3d/qt3dlogic-qlogicaspect.html %%QT_DOCDIR%%/qt3d/qt3dlogic.html %%QT_DOCDIR%%/qt3d/qt3drender-fbxgeometryloader-members.html %%QT_DOCDIR%%/qt3d/qt3drender-fbxgeometryloader.html %%QT_DOCDIR%%/qt3d/qt3drender-framegraph.html %%QT_DOCDIR%%/qt3d/qt3drender-functortype-members.html %%QT_DOCDIR%%/qt3d/qt3drender-functortype.html %%QT_DOCDIR%%/qt3d/qt3drender-geometry.html -%%QT_DOCDIR%%/qt3d/qt3drender-gltfgeometryloader-gltf1-members.html -%%QT_DOCDIR%%/qt3d/qt3drender-gltfgeometryloader-gltf1.html -%%QT_DOCDIR%%/qt3d/qt3drender-gltfgeometryloader-gltf2-members.html -%%QT_DOCDIR%%/qt3d/qt3drender-gltfgeometryloader-gltf2.html %%QT_DOCDIR%%/qt3d/qt3drender-gltfgeometryloader-members.html %%QT_DOCDIR%%/qt3d/qt3drender-gltfgeometryloader.html %%QT_DOCDIR%%/qt3d/qt3drender-module.html %%QT_DOCDIR%%/qt3d/qt3drender-objgeometryloader-members.html %%QT_DOCDIR%%/qt3d/qt3drender-objgeometryloader.html %%QT_DOCDIR%%/qt3d/qt3drender-plygeometryloader-element-members.html %%QT_DOCDIR%%/qt3d/qt3drender-plygeometryloader-element.html %%QT_DOCDIR%%/qt3d/qt3drender-plygeometryloader-members.html %%QT_DOCDIR%%/qt3d/qt3drender-plygeometryloader-property-members.html %%QT_DOCDIR%%/qt3d/qt3drender-plygeometryloader-property.html %%QT_DOCDIR%%/qt3d/qt3drender-plygeometryloader.html %%QT_DOCDIR%%/qt3d/qt3drender-propertyreaderinterface-members.html %%QT_DOCDIR%%/qt3d/qt3drender-propertyreaderinterface.html %%QT_DOCDIR%%/qt3d/qt3drender-protips.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractfunctor-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractfunctor.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractlight-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractlight-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractlight.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractraycaster-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractraycaster-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstractraycaster.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstracttexture-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstracttexture-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstracttexture.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimage-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimage-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qabstracttextureimage.html %%QT_DOCDIR%%/qt3d/qt3drender-qalphacoverage-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qalphacoverage-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qalphacoverage.html %%QT_DOCDIR%%/qt3d/qt3drender-qalphatest-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qalphatest-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qalphatest.html %%QT_DOCDIR%%/qt3d/qt3drender-qattribute-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qattribute-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qattribute.html %%QT_DOCDIR%%/qt3d/qt3drender-qblendequation-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qblendequation-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qblendequation.html %%QT_DOCDIR%%/qt3d/qt3drender-qblendequationarguments-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qblendequationarguments-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qblendequationarguments.html %%QT_DOCDIR%%/qt3d/qt3drender-qblitframebuffer-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qblitframebuffer-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qblitframebuffer.html %%QT_DOCDIR%%/qt3d/qt3drender-qbuffer-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qbuffer-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qbuffer.html %%QT_DOCDIR%%/qt3d/qt3drender-qbuffercapture-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qbuffercapture-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qbuffercapture.html %%QT_DOCDIR%%/qt3d/qt3drender-qbufferdatagenerator-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qbufferdatagenerator.html %%QT_DOCDIR%%/qt3d/qt3drender-qcamera-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qcamera-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qcamera.html %%QT_DOCDIR%%/qt3d/qt3drender-qcameralens-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qcameralens-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qcameralens.html %%QT_DOCDIR%%/qt3d/qt3drender-qcameraselector-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qcameraselector-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qcameraselector.html %%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffers-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffers-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qclearbuffers.html %%QT_DOCDIR%%/qt3d/qt3drender-qclipplane-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qclipplane-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qclipplane.html %%QT_DOCDIR%%/qt3d/qt3drender-qcolormask-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qcolormask-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qcolormask.html %%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommand-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommand-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qcomputecommand.html %%QT_DOCDIR%%/qt3d/qt3drender-qcullface-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qcullface-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qcullface.html %%QT_DOCDIR%%/qt3d/qt3drender-qdepthtest-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qdepthtest-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qdepthtest.html %%QT_DOCDIR%%/qt3d/qt3drender-qdirectionallight-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qdirectionallight-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qdirectionallight.html %%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcompute-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcompute-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qdispatchcompute.html %%QT_DOCDIR%%/qt3d/qt3drender-qdithering-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qdithering-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qdithering.html %%QT_DOCDIR%%/qt3d/qt3drender-qeffect-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qeffect-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qeffect.html %%QT_DOCDIR%%/qt3d/qt3drender-qenvironmentlight-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qenvironmentlight-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qenvironmentlight.html %%QT_DOCDIR%%/qt3d/qt3drender-qfilterkey-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qfilterkey-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qfilterkey.html %%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnode-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnode-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnode.html %%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnodecreatedchange-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnodecreatedchange.html %%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnodecreatedchangebase-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qframegraphnodecreatedchangebase.html %%QT_DOCDIR%%/qt3d/qt3drender-qfrontface-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qfrontface-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qfrontface.html %%QT_DOCDIR%%/qt3d/qt3drender-qfrustumculling-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qfrustumculling-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qfrustumculling.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometry-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometry-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometry.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometryfactory-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometryfactory.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrenderer-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrenderer-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qgeometryrenderer.html %%QT_DOCDIR%%/qt3d/qt3drender-qgraphicsapifilter-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qgraphicsapifilter-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qgraphicsapifilter.html %%QT_DOCDIR%%/qt3d/qt3drender-qlayer-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qlayer-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qlayer.html %%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilter-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilter-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qlayerfilter.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetail-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetail-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetail.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetailboundingsphere-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetailboundingsphere.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetailswitch-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetailswitch-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qlevelofdetailswitch.html %%QT_DOCDIR%%/qt3d/qt3drender-qlinewidth-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qlinewidth-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qlinewidth.html %%QT_DOCDIR%%/qt3d/qt3drender-qmaterial-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qmaterial-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qmaterial.html %%QT_DOCDIR%%/qt3d/qt3drender-qmemorybarrier-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qmemorybarrier-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qmemorybarrier.html %%QT_DOCDIR%%/qt3d/qt3drender-qmesh-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qmesh-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qmesh.html %%QT_DOCDIR%%/qt3d/qt3drender-qmultisampleantialiasing-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qmultisampleantialiasing-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qmultisampleantialiasing.html %%QT_DOCDIR%%/qt3d/qt3drender-qnodepthmask-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qnodepthmask-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qnodepthmask.html %%QT_DOCDIR%%/qt3d/qt3drender-qnodraw-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qnodraw-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qnodraw.html %%QT_DOCDIR%%/qt3d/qt3drender-qobjectpicker-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qobjectpicker-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qobjectpicker.html %%QT_DOCDIR%%/qt3d/qt3drender-qpaintedtextureimage-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpaintedtextureimage-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpaintedtextureimage.html %%QT_DOCDIR%%/qt3d/qt3drender-qparameter-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qparameter-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qparameter.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickevent-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickevent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickevent.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickingsettings-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickingsettings-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickingsettings.html %%QT_DOCDIR%%/qt3d/qt3drender-qpicklineevent-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpicklineevent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpicklineevent.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickpointevent-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickpointevent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpickpointevent.html %%QT_DOCDIR%%/qt3d/qt3drender-qpicktriangleevent-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpicktriangleevent-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpicktriangleevent.html %%QT_DOCDIR%%/qt3d/qt3drender-qpointlight-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpointlight-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpointlight.html %%QT_DOCDIR%%/qt3d/qt3drender-qpointsize-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpointsize-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpointsize.html %%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffset-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffset-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qpolygonoffset.html %%QT_DOCDIR%%/qt3d/qt3drender-qproximityfilter-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qproximityfilter-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qproximityfilter.html %%QT_DOCDIR%%/qt3d/qt3drender-qraycaster-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qraycaster-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qraycaster.html %%QT_DOCDIR%%/qt3d/qt3drender-qraycasterhit-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qraycasterhit.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderaspect-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderaspect-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderaspect.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendercapture-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendercapture-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendercapture.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendercapturereply-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendercapturereply-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendercapturereply.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderpass-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderpass-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderpass.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilter-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilter-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderpassfilter.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendersettings-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendersettings-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendersettings.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderstate-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderstate-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderstate.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderstateset-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderstateset-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrenderstateset.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselector-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselector-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendersurfaceselector.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertarget-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertarget-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertarget.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutput-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutput-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetoutput.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselector-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselector-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qrendertargetselector.html %%QT_DOCDIR%%/qt3d/qt3drender-qsceneloader-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qsceneloader-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qsceneloader.html %%QT_DOCDIR%%/qt3d/qt3drender-qscissortest-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qscissortest-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qscissortest.html %%QT_DOCDIR%%/qt3d/qt3drender-qscreenraycaster-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qscreenraycaster-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qscreenraycaster.html %%QT_DOCDIR%%/qt3d/qt3drender-qseamlesscubemap-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qseamlesscubemap-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qseamlesscubemap.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderdata-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderdata-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderdata.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogram-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogram-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogram.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogrambuilder-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogrambuilder-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qshaderprogrambuilder.html %%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicy-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicy-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qsortpolicy.html %%QT_DOCDIR%%/qt3d/qt3drender-qspotlight-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qspotlight-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qspotlight.html %%QT_DOCDIR%%/qt3d/qt3drender-qstencilmask-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qstencilmask-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qstencilmask.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperation-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperation-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperation.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationarguments-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationarguments-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciloperationarguments.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciltest-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciltest-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciltest.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestarguments-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestarguments-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qstenciltestarguments.html %%QT_DOCDIR%%/qt3d/qt3drender-qtechnique-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtechnique-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtechnique.html %%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilter-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilter-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtechniquefilter.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture1d-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture1d-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture1d.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture1darray-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture1darray-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture1darray.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2d-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2d-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2d.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2darray-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2darray-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2darray.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisample-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisample-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisample.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisamplearray-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisamplearray-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture2dmultisamplearray.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture3d-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture3d-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexture3d.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturebuffer-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturebuffer-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturebuffer.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemap-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemap-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemap.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemaparray-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemaparray-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturecubemaparray.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturedata-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturedata.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturegenerator-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturegenerator.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureimage-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureimage-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureimage.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedata-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedata.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedatagenerator-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureimagedatagenerator.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureloader-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureloader-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtextureloader.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturerectangle-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturerectangle-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturerectangle.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturewrapmode-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturewrapmode-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qtexturewrapmode.html %%QT_DOCDIR%%/qt3d/qt3drender-quick-qscene2d-members.html %%QT_DOCDIR%%/qt3d/qt3drender-quick-qscene2d-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-quick-qscene2d.html %%QT_DOCDIR%%/qt3d/qt3drender-quick-sub-qt3d.html %%QT_DOCDIR%%/qt3d/qt3drender-qviewport-members.html %%QT_DOCDIR%%/qt3d/qt3drender-qviewport-obsolete.html %%QT_DOCDIR%%/qt3d/qt3drender-qviewport.html +%%QT_DOCDIR%%/qt3d/qt3drender-render.html %%QT_DOCDIR%%/qt3d/qt3drender-stlgeometryloader-members.html %%QT_DOCDIR%%/qt3d/qt3drender-stlgeometryloader.html %%QT_DOCDIR%%/qt3d/qt3drender.html %%QT_DOCDIR%%/qt3d/qt3dscene2d-module.html %%QT_DOCDIR%%/qt3d/qtquick-scene2d-qmlmodule.html %%QT_DOCDIR%%/qt3d/qtquick-scene3d-qmlmodule.html %%QT_DOCDIR%%/qt3d/style/offline-simple.css %%QT_DOCDIR%%/qt3d/style/offline.css %%QT_DOCDIR%%/qtandroidextras.qch %%QT_DOCDIR%%/qtandroidextras/examples-manifest.xml %%QT_DOCDIR%%/qtandroidextras/examples-qtandroidextras.html %%QT_DOCDIR%%/qtandroidextras/images/arrow_bc.png %%QT_DOCDIR%%/qtandroidextras/images/bgrContent.png %%QT_DOCDIR%%/qtandroidextras/images/btn_next.png %%QT_DOCDIR%%/qtandroidextras/images/btn_prev.png %%QT_DOCDIR%%/qtandroidextras/images/bullet_dn.png %%QT_DOCDIR%%/qtandroidextras/images/bullet_sq.png %%QT_DOCDIR%%/qtandroidextras/images/home.png %%QT_DOCDIR%%/qtandroidextras/images/ico_note.png %%QT_DOCDIR%%/qtandroidextras/images/ico_note_attention.png %%QT_DOCDIR%%/qtandroidextras/images/ico_out.png %%QT_DOCDIR%%/qtandroidextras/images/logo.png %%QT_DOCDIR%%/qtandroidextras/images/notification.png %%QT_DOCDIR%%/qtandroidextras/images/used-in-examples/notification/android-sources/res/drawable/icon.png %%QT_DOCDIR%%/qtandroidextras/images/used-in-examples/notification/images/happy.png %%QT_DOCDIR%%/qtandroidextras/images/used-in-examples/notification/images/sad.png %%QT_DOCDIR%%/qtandroidextras/qandroidactivityresultreceiver-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidactivityresultreceiver.html %%QT_DOCDIR%%/qtandroidextras/qandroidbinder-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidbinder.html %%QT_DOCDIR%%/qtandroidextras/qandroidintent-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidintent.html %%QT_DOCDIR%%/qtandroidextras/qandroidjnienvironment-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidjnienvironment.html %%QT_DOCDIR%%/qtandroidextras/qandroidjniexceptioncleaner-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidjniexceptioncleaner.html %%QT_DOCDIR%%/qtandroidextras/qandroidjniobject-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidjniobject.html %%QT_DOCDIR%%/qtandroidextras/qandroidparcel-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidparcel.html %%QT_DOCDIR%%/qtandroidextras/qandroidservice-members.html +%%QT_DOCDIR%%/qtandroidextras/qandroidservice-obsolete.html %%QT_DOCDIR%%/qtandroidextras/qandroidservice.html %%QT_DOCDIR%%/qtandroidextras/qandroidserviceconnection-members.html %%QT_DOCDIR%%/qtandroidextras/qandroidserviceconnection.html %%QT_DOCDIR%%/qtandroidextras/qtandroid.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-index.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-module.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-android-sources-androidmanifest-xml.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-android-sources-src-org-qtproject-example-notification-notificationclient-java.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-example.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-main-cpp.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-main-qrc.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-notification-pro.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-notificationclient-cpp.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-notificationclient-h.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras-notification-qml-main-qml.html %%QT_DOCDIR%%/qtandroidextras/qtandroidextras.index %%QT_DOCDIR%%/qtandroidextras/qtandroidextras.qhp %%QT_DOCDIR%%/qtandroidextras/qtandroidextras.qhp.sha1 %%QT_DOCDIR%%/qtandroidextras/style/offline-simple.css %%QT_DOCDIR%%/qtandroidextras/style/offline.css %%QT_DOCDIR%%/qtassistant.qch %%QT_DOCDIR%%/qtassistant/assistant-custom-help-viewer.html %%QT_DOCDIR%%/qtassistant/assistant-details.html %%QT_DOCDIR%%/qtassistant/assistant-quick-guide.html %%QT_DOCDIR%%/qtassistant/examples-manifest.xml %%QT_DOCDIR%%/qtassistant/examples-qtassistant.html %%QT_DOCDIR%%/qtassistant/images/arrow_bc.png %%QT_DOCDIR%%/qtassistant/images/assistant-assistant.png %%QT_DOCDIR%%/qtassistant/images/assistant-bookmarks.png %%QT_DOCDIR%%/qtassistant/images/assistant-dockwidgets.png %%QT_DOCDIR%%/qtassistant/images/assistant-examples.png %%QT_DOCDIR%%/qtassistant/images/assistant-index.png %%QT_DOCDIR%%/qtassistant/images/assistant-preferences-documentation.png %%QT_DOCDIR%%/qtassistant/images/assistant-preferences-filters.png %%QT_DOCDIR%%/qtassistant/images/assistant-preferences-fonts.png %%QT_DOCDIR%%/qtassistant/images/assistant-preferences-options.png %%QT_DOCDIR%%/qtassistant/images/assistant-search.png %%QT_DOCDIR%%/qtassistant/images/bgrContent.png %%QT_DOCDIR%%/qtassistant/images/btn_next.png %%QT_DOCDIR%%/qtassistant/images/btn_prev.png %%QT_DOCDIR%%/qtassistant/images/bullet_dn.png %%QT_DOCDIR%%/qtassistant/images/bullet_sq.png %%QT_DOCDIR%%/qtassistant/images/home.png %%QT_DOCDIR%%/qtassistant/images/ico_note.png %%QT_DOCDIR%%/qtassistant/images/ico_note_attention.png %%QT_DOCDIR%%/qtassistant/images/ico_out.png %%QT_DOCDIR%%/qtassistant/images/logo.png %%QT_DOCDIR%%/qtassistant/images/simpletextviewer-example.png %%QT_DOCDIR%%/qtassistant/images/simpletextviewer-findfiledialog.png %%QT_DOCDIR%%/qtassistant/images/simpletextviewer-mainwindow.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/remotecontrol/enter.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/browse.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/fadedfilemenu.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/filedialog.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/handbook.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/icon.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/mainwindow.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/open.png %%QT_DOCDIR%%/qtassistant/images/used-in-examples/simpletextviewer/documentation/images/wildcard.png %%QT_DOCDIR%%/qtassistant/qtassistant-index.html %%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-example.html %%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-main-cpp.html %%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-cpp.html %%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-h.html %%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-pro.html %%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-qrc.html %%QT_DOCDIR%%/qtassistant/qtassistant-remotecontrol-remotecontrol-ui.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-assistant-cpp.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-assistant-h.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-documentation-simpletextviewer-qhcp.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-documentation-simpletextviewer-qhp.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-example.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-findfiledialog-cpp.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-findfiledialog-h.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-main-cpp.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-mainwindow-cpp.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-mainwindow-h.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-simpletextviewer-pro.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-textedit-cpp.html %%QT_DOCDIR%%/qtassistant/qtassistant-simpletextviewer-textedit-h.html %%QT_DOCDIR%%/qtassistant/qtassistant.index %%QT_DOCDIR%%/qtassistant/qtassistant.qhp %%QT_DOCDIR%%/qtassistant/qtassistant.qhp.sha1 %%QT_DOCDIR%%/qtassistant/style/offline-simple.css %%QT_DOCDIR%%/qtassistant/style/offline.css %%QT_DOCDIR%%/qtbluetooth.qch %%QT_DOCDIR%%/qtbluetooth/bluetooth-examples.html %%QT_DOCDIR%%/qtbluetooth/examples-manifest.xml %%QT_DOCDIR%%/qtbluetooth/images/arrow_bc.png %%QT_DOCDIR%%/qtbluetooth/images/bgrContent.png %%QT_DOCDIR%%/qtbluetooth/images/btchat-example.png %%QT_DOCDIR%%/qtbluetooth/images/btfiletransfer-example.png %%QT_DOCDIR%%/qtbluetooth/images/btn_next.png %%QT_DOCDIR%%/qtbluetooth/images/btn_prev.png %%QT_DOCDIR%%/qtbluetooth/images/btscanner-example.png %%QT_DOCDIR%%/qtbluetooth/images/bullet_dn.png %%QT_DOCDIR%%/qtbluetooth/images/bullet_sq.png %%QT_DOCDIR%%/qtbluetooth/images/chat-view.png %%QT_DOCDIR%%/qtbluetooth/images/devicescan.png %%QT_DOCDIR%%/qtbluetooth/images/heartgame-result.png %%QT_DOCDIR%%/qtbluetooth/images/heartgame-running.png %%QT_DOCDIR%%/qtbluetooth/images/heartgame-search.png %%QT_DOCDIR%%/qtbluetooth/images/heartgame-start.png %%QT_DOCDIR%%/qtbluetooth/images/home.png %%QT_DOCDIR%%/qtbluetooth/images/ico_note.png %%QT_DOCDIR%%/qtbluetooth/images/ico_note_attention.png %%QT_DOCDIR%%/qtbluetooth/images/ico_out.png %%QT_DOCDIR%%/qtbluetooth/images/intro.png %%QT_DOCDIR%%/qtbluetooth/images/intro1.png %%QT_DOCDIR%%/qtbluetooth/images/logo.png %%QT_DOCDIR%%/qtbluetooth/images/lowenergyscanner-chars.png %%QT_DOCDIR%%/qtbluetooth/images/lowenergyscanner-devices.png %%QT_DOCDIR%%/qtbluetooth/images/lowenergyscanner-services.png %%QT_DOCDIR%%/qtbluetooth/images/opp-example-1.png %%QT_DOCDIR%%/qtbluetooth/images/opp-example-2.png %%QT_DOCDIR%%/qtbluetooth/images/opp-example-3.png %%QT_DOCDIR%%/qtbluetooth/images/peripheral-structure.png %%QT_DOCDIR%%/qtbluetooth/images/servicescan.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/btfiletransfer/busy.gif %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/btfiletransfer/pairing.gif %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/chat/images/clear.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/chat/images/default.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/chat/images/lineedit-bg.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/heartrate-game/qml/images/bt_off_to_on.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/heartrate-game/qml/images/heart.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/heartrate-game/qml/images/logo.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/lowenergyscanner/assets/busy_dark.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/picturetransfer/background.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/picturetransfer/icon.png %%QT_DOCDIR%%/qtbluetooth/images/used-in-examples/scanner/default.png %%QT_DOCDIR%%/qtbluetooth/qbluetooth.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothaddress-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothaddress.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothdevicediscoveryagent-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothdevicediscoveryagent-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothdevicediscoveryagent.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothdeviceinfo-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothdeviceinfo.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothhostinfo-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothhostinfo.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothlocaldevice-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothlocaldevice-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothlocaldevice.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserver-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserver-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserver.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothservicediscoveryagent-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothservicediscoveryagent-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothservicediscoveryagent.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-alternative-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-alternative.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-sequence-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo-sequence.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothserviceinfo.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothsocket-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothsocket-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothsocket.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransfermanager-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransfermanager-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransfermanager.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferreply-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferreply-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferreply.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferrequest-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothtransferrequest.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothuuid-members.html %%QT_DOCDIR%%/qtbluetooth/qbluetoothuuid.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingdata-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingdata.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters-addressinfo-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters-addressinfo.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyadvertisingparameters.html %%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristic-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristic.html %%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristicdata-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergycharacteristicdata.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyconnectionparameters-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyconnectionparameters.html %%QT_DOCDIR%%/qtbluetooth/qlowenergycontroller-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergycontroller-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qlowenergycontroller.html %%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptor-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptor.html %%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptordata-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergydescriptordata.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyservice-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyservice-obsolete.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyservice.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyservicedata-members.html %%QT_DOCDIR%%/qtbluetooth/qlowenergyservicedata.html %%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothdiscoverymodel-members.html %%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothdiscoverymodel.html %%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothservice-members.html %%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothservice.html %%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothsocket-members.html %%QT_DOCDIR%%/qtbluetooth/qml-qtbluetooth-bluetoothsocket.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-attribution-bluez.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-btchat-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chat-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chat-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chat-ui.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatclient-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatclient-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatserver-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-chatserver-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-remoteselector-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-remoteselector-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btchat-remoteselector-ui.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-btfiletransfer-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-btfiletransfer-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-pindisplay-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-pindisplay-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-pindisplay-ui.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-progress-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-progress-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-progress-ui.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-remoteselector-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-remoteselector-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btfiletransfer-remoteselector-ui.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-btscanner-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-device-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-device-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-device-ui.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-service-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-service-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-btscanner-service-ui.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-button-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-chat-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-chat-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-chat-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-inputbox-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-qmlchat-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-chat-search-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-bluetoothbaseclass-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-bluetoothbaseclass-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-connectionhandler-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-connectionhandler-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-devicefinder-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-devicefinder-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-devicehandler-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-devicehandler-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-deviceinfo-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-deviceinfo-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-heartrate-game-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-heartrate-global-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-images-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-app-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-bluetoothalarmdialog-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-bottomline-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-connect-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-gamebutton-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-gamepage-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-gamesettings-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-main-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-measure-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-qmldir.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-splashscreen-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-stats-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-statslabel-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-game-qml-titlebar-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-server-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-server-heartrate-server-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-heartrate-server-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-index.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-le-overview.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-characteristics-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-dialog-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-header-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-label-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-main-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-menu-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-assets-services-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-characteristicinfo-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-characteristicinfo-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-device-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-device-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-deviceinfo-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-deviceinfo-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-lowenergyscanner-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-resources-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-serviceinfo-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-lowenergyscanner-serviceinfo-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-module.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-overview.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-bttransfer-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-button-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-devicediscovery-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-filesending-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-filetransfer-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-filetransfer-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-pictureselector-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-picturetransfer-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-picturetransfer-qmltransfer-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-board-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-dialog-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-main-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-assets-menu-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-main-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-pingpong-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-pingpong-h.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-pingpong-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-pingpong-resource-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-qmlmodule.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-button-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-example.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-qmlscanner-cpp.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-scanner-pro.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-scanner-qml.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth-scanner-scanner-qrc.html %%QT_DOCDIR%%/qtbluetooth/qtbluetooth.index %%QT_DOCDIR%%/qtbluetooth/qtbluetooth.qhp %%QT_DOCDIR%%/qtbluetooth/qtbluetooth.qhp.sha1 %%QT_DOCDIR%%/qtbluetooth/qtbluetooth.tags %%QT_DOCDIR%%/qtbluetooth/style/offline-simple.css %%QT_DOCDIR%%/qtbluetooth/style/offline.css %%QT_DOCDIR%%/qtcanvas3d.qch %%QT_DOCDIR%%/qtcanvas3d/examples-manifest.xml %%QT_DOCDIR%%/qtcanvas3d/images/arrow_bc.png %%QT_DOCDIR%%/qtcanvas3d/images/bgrContent.png %%QT_DOCDIR%%/qtcanvas3d/images/btn_next.png %%QT_DOCDIR%%/qtcanvas3d/images/btn_prev.png %%QT_DOCDIR%%/qtcanvas3d/images/bullet_dn.png %%QT_DOCDIR%%/qtcanvas3d/images/bullet_sq.png %%QT_DOCDIR%%/qtcanvas3d/images/cellphone-example.png %%QT_DOCDIR%%/qtcanvas3d/images/framebuffer-example.png %%QT_DOCDIR%%/qtcanvas3d/images/home.png %%QT_DOCDIR%%/qtcanvas3d/images/ico_note.png %%QT_DOCDIR%%/qtcanvas3d/images/ico_note_attention.png %%QT_DOCDIR%%/qtcanvas3d/images/ico_out.png %%QT_DOCDIR%%/qtcanvas3d/images/interaction-example.png %%QT_DOCDIR%%/qtcanvas3d/images/jsonmodels-example.png %%QT_DOCDIR%%/qtcanvas3d/images/logo.png %%QT_DOCDIR%%/qtcanvas3d/images/oneqt-example.png %%QT_DOCDIR%%/qtcanvas3d/images/planets-example.jpg %%QT_DOCDIR%%/qtcanvas3d/images/quickitemtexture-example.png %%QT_DOCDIR%%/qtcanvas3d/images/textureandlight-example.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/framebuffer/qml/framebuffer/qtlogo.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/interaction/qml/interaction/barrel.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/jsonmodels/qml/jsonmodels/bush.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/jsonmodels/qml/jsonmodels/gold.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/jsonmodels/qml/jsonmodels/pallet.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/jsonmodels/qml/jsonmodels/rock.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/jsonmodels/qml/jsonmodels/woodbox.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/textureandlight/qml/textureandlight/qtlogo.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/calendar.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/camera.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/clock.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/contacts.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/gallery.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/games.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/lock.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/mail.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/maps.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/menu_background.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/music.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/plutomap1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/qtlogo_with_alpha.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/settings.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/todo.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/cellphone/images/videos.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon29x29.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon29x29@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon29x29@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon29x29~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon40x40@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon40x40@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon40x40~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon50x50@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon50x50~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon57x57.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon57x57@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon60x60@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon72x72@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon72x72~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon76x76@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/ios/OneQtIcon76x76~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/dataviz.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/devices.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/embedded.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/iot.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/multiscreen.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/puzzle-pieces.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/qtlogo.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/oneqt/textures/qtlogosmall.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earth.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthbump1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthcloudmapcolortrans.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthmap1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/earthspec1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/galaxy_starfield.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/jupiter.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/jupitermap.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mars.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/marsbump1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/marsmap1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mercury.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mercurybump.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/mercurymap.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/moonbump1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/moonmap1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/neptune.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/neptunemap.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/plutobump1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/plutomap1k.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/saturn.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/saturnmap.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/saturnringcolortrans.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/sun.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/sunmap.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/uranus.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/uranusmap.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/uranusringcolortrans.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/venus.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/venusbump.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/images/venusmap.jpg %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon29x29.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon29x29@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon29x29@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon29x29~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon40x40@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon40x40@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon40x40~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon50x50@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon50x50~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon57x57.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon57x57@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon60x60@2x.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon72x72@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon72x72~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon76x76@2x~ipad.png %%QT_DOCDIR%%/qtcanvas3d/images/used-in-examples/threejs/planets/ios/AppIcon76x76~ipad.png %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3d-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3d.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dabstractobject-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dabstractobject.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dactiveinfo-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dactiveinfo.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dbuffer-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dbuffer.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dcontextattributes-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dcontextattributes.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dframebuffer-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dframebuffer.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dprogram-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dprogram.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3drenderbuffer-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3drenderbuffer.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshader-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshader.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshaderprecisionformat-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dshaderprecisionformat.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtexture-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtexture.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtextureprovider-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3dtextureprovider.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3duniformlocation-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-canvas3duniformlocation.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-context3d-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-context3d.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-glstatedumpext-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-glstatedumpext.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimage-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimage.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimagefactory-members.html %%QT_DOCDIR%%/qtcanvas3d/qml-qtcanvas3d-textureimagefactory.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-conformance-issues-html.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-examples.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-framebuffer-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-framebuffer-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-qml-framebuffer-framebuffer-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-framebuffer-qml-framebuffer-main-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-getting-started.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-index.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-interaction-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-interaction-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-qml-interaction-interaction-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-interaction-qml-interaction-main-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-jsonmodels-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-qml-jsonmodels-jsonmodels-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-qml-jsonmodels-jsonmodels-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-jsonmodels-qml-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-logging.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-qmlmodule-obsolete.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-qml-quickitemtexture-main-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-qml-quickitemtexture-quickitemtexture-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-quickitemtexture-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-quickitemtexture-quickitemtexture-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-qml-textureandlight-main-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-qml-textureandlight-textureandlight-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-textureandlight-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-textureandlight-textureandlight-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-cellphone-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-cellphone-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-cellphone-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-cellphoneapp-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-cellphonecanvas-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-colorselector-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-fpsdisplay-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-cellphone-qml-cellphone-main-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-imagecube-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-imagecube-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-infosheet-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-navibutton-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-oneqt-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-oneqt-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-oneqt-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-oneqt-swipearea-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-example.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-fpsdisplay-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-infosheet-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-main-cpp.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planetbutton-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-js.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-pro.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-planets-qrc.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d-threejs-planets-styledslider-qml.html %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d.index %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d.qhp %%QT_DOCDIR%%/qtcanvas3d/qtcanvas3d.qhp.sha1 %%QT_DOCDIR%%/qtcanvas3d/style/offline-simple.css %%QT_DOCDIR%%/qtcanvas3d/style/offline.css %%QT_DOCDIR%%/qtconcurrent.qch %%QT_DOCDIR%%/qtconcurrent/examples-manifest.xml %%QT_DOCDIR%%/qtconcurrent/images/arrow_bc.png %%QT_DOCDIR%%/qtconcurrent/images/bgrContent.png %%QT_DOCDIR%%/qtconcurrent/images/btn_next.png %%QT_DOCDIR%%/qtconcurrent/images/btn_prev.png %%QT_DOCDIR%%/qtconcurrent/images/bullet_dn.png %%QT_DOCDIR%%/qtconcurrent/images/bullet_sq.png %%QT_DOCDIR%%/qtconcurrent/images/home.png %%QT_DOCDIR%%/qtconcurrent/images/ico_note.png %%QT_DOCDIR%%/qtconcurrent/images/ico_note_attention.png %%QT_DOCDIR%%/qtconcurrent/images/ico_out.png %%QT_DOCDIR%%/qtconcurrent/images/imagescaling_example.png %%QT_DOCDIR%%/qtconcurrent/images/logo.png %%QT_DOCDIR%%/qtconcurrent/images/qtconcurrent-progressdialog.png %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-example.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-imagescaling-cpp.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-imagescaling-h.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-imagescaling-pro.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-imagescaling-main-cpp.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-index.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-intermediateresults-members.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-intermediateresults.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-map-example.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-map-main-cpp.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-map-map-pro.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-module.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-obsolete.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-progressdialog-example.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-progressdialog-main-cpp.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-progressdialog-progressdialog-pro.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-runfunction-example.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-runfunction-main-cpp.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-runfunction-runfunction-pro.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-wordcount-example.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-wordcount-main-cpp.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent-wordcount-wordcount-pro.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrent.index %%QT_DOCDIR%%/qtconcurrent/qtconcurrent.qhp %%QT_DOCDIR%%/qtconcurrent/qtconcurrent.qhp.sha1 %%QT_DOCDIR%%/qtconcurrent/qtconcurrent.tags %%QT_DOCDIR%%/qtconcurrent/qtconcurrentfilter.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrentmap.html %%QT_DOCDIR%%/qtconcurrent/qtconcurrentrun.html %%QT_DOCDIR%%/qtconcurrent/style/offline-simple.css %%QT_DOCDIR%%/qtconcurrent/style/offline.css %%QT_DOCDIR%%/qtcore.qch %%QT_DOCDIR%%/qtcore/animation-overview.html %%QT_DOCDIR%%/qtcore/animation.html %%QT_DOCDIR%%/qtcore/codec-big5.html %%QT_DOCDIR%%/qtcore/codec-big5hkscs.html %%QT_DOCDIR%%/qtcore/codec-eucjp.html %%QT_DOCDIR%%/qtcore/codec-euckr.html %%QT_DOCDIR%%/qtcore/codec-gbk.html %%QT_DOCDIR%%/qtcore/codec-sjis.html %%QT_DOCDIR%%/qtcore/codec-tscii.html %%QT_DOCDIR%%/qtcore/codecs-jis.html %%QT_DOCDIR%%/qtcore/containers.html %%QT_DOCDIR%%/qtcore/custom-types.html %%QT_DOCDIR%%/qtcore/datastreamformat.html %%QT_DOCDIR%%/qtcore/events.html %%QT_DOCDIR%%/qtcore/eventsandfilters.html %%QT_DOCDIR%%/qtcore/examples-manifest.xml %%QT_DOCDIR%%/qtcore/images/abstract-connections.png %%QT_DOCDIR%%/qtcore/images/animations-architecture.png %%QT_DOCDIR%%/qtcore/images/arrow_bc.png %%QT_DOCDIR%%/qtcore/images/bgrContent.png %%QT_DOCDIR%%/qtcore/images/brush-styles.png %%QT_DOCDIR%%/qtcore/images/btn_next.png %%QT_DOCDIR%%/qtcore/images/btn_prev.png %%QT_DOCDIR%%/qtcore/images/bullet_dn.png %%QT_DOCDIR%%/qtcore/images/bullet_sq.png %%QT_DOCDIR%%/qtcore/images/cursor-arrow.png %%QT_DOCDIR%%/qtcore/images/cursor-busy.png %%QT_DOCDIR%%/qtcore/images/cursor-closedhand.png %%QT_DOCDIR%%/qtcore/images/cursor-cross.png %%QT_DOCDIR%%/qtcore/images/cursor-forbidden.png %%QT_DOCDIR%%/qtcore/images/cursor-hand.png %%QT_DOCDIR%%/qtcore/images/cursor-hsplit.png %%QT_DOCDIR%%/qtcore/images/cursor-ibeam.png %%QT_DOCDIR%%/qtcore/images/cursor-openhand.png %%QT_DOCDIR%%/qtcore/images/cursor-sizeall.png %%QT_DOCDIR%%/qtcore/images/cursor-sizeb.png %%QT_DOCDIR%%/qtcore/images/cursor-sizef.png %%QT_DOCDIR%%/qtcore/images/cursor-sizeh.png %%QT_DOCDIR%%/qtcore/images/cursor-sizev.png %%QT_DOCDIR%%/qtcore/images/cursor-uparrow.png %%QT_DOCDIR%%/qtcore/images/cursor-vsplit.png %%QT_DOCDIR%%/qtcore/images/cursor-wait.png %%QT_DOCDIR%%/qtcore/images/cursor-whatsthis.png %%QT_DOCDIR%%/qtcore/images/home.png %%QT_DOCDIR%%/qtcore/images/ico_note.png %%QT_DOCDIR%%/qtcore/images/ico_note_attention.png %%QT_DOCDIR%%/qtcore/images/ico_out.png %%QT_DOCDIR%%/qtcore/images/javaiterators1.png %%QT_DOCDIR%%/qtcore/images/javaiterators2.png %%QT_DOCDIR%%/qtcore/images/localfortuneclient-example.png %%QT_DOCDIR%%/qtcore/images/localfortuneserver-example.png %%QT_DOCDIR%%/qtcore/images/logo.png %%QT_DOCDIR%%/qtcore/images/mandelbrot-example.png %%QT_DOCDIR%%/qtcore/images/mandelbrot_scroll1.png %%QT_DOCDIR%%/qtcore/images/mandelbrot_scroll2.png %%QT_DOCDIR%%/qtcore/images/mandelbrot_scroll3.png %%QT_DOCDIR%%/qtcore/images/mandelbrot_zoom1.png %%QT_DOCDIR%%/qtcore/images/mandelbrot_zoom2.png %%QT_DOCDIR%%/qtcore/images/mandelbrot_zoom3.png %%QT_DOCDIR%%/qtcore/images/mimetypebrowser.png %%QT_DOCDIR%%/qtcore/images/modelindex-no-parent.png %%QT_DOCDIR%%/qtcore/images/modelview-begin-append-columns.png %%QT_DOCDIR%%/qtcore/images/modelview-begin-append-rows.png %%QT_DOCDIR%%/qtcore/images/modelview-begin-insert-columns.png %%QT_DOCDIR%%/qtcore/images/modelview-begin-insert-rows.png %%QT_DOCDIR%%/qtcore/images/modelview-begin-remove-columns.png %%QT_DOCDIR%%/qtcore/images/modelview-begin-remove-rows.png %%QT_DOCDIR%%/qtcore/images/modelview-move-rows-1.png %%QT_DOCDIR%%/qtcore/images/modelview-move-rows-2.png %%QT_DOCDIR%%/qtcore/images/modelview-move-rows-3.png %%QT_DOCDIR%%/qtcore/images/modelview-move-rows-4.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inback.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inbounce.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-incirc.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-incubic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inelastic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inexpo.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutback.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutbounce.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutcirc.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutcubic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutelastic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutexpo.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutquad.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutquart.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutquint.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inoutsine.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inquad.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inquart.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-inquint.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-insine.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-linear.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outback.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outbounce.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outcirc.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outcubic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outelastic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outexpo.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinback.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinbounce.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outincirc.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outincubic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinelastic.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinexpo.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinquad.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinquart.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinquint.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outinsine.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outquad.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outquart.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outquint.png %%QT_DOCDIR%%/qtcore/images/qeasingcurve-outsine.png %%QT_DOCDIR%%/qtcore/images/qimage-scaling.png %%QT_DOCDIR%%/qtcore/images/qline-coordinates.png %%QT_DOCDIR%%/qtcore/images/qline-point.png %%QT_DOCDIR%%/qtcore/images/qlinef-angle-identicaldirection.png %%QT_DOCDIR%%/qtcore/images/qlinef-angle-oppositedirection.png %%QT_DOCDIR%%/qtcore/images/qlinef-bounded.png %%QT_DOCDIR%%/qtcore/images/qlinef-normalvector.png %%QT_DOCDIR%%/qtcore/images/qlinef-unbounded.png %%QT_DOCDIR%%/qtcore/images/qpen-bevel.png %%QT_DOCDIR%%/qtcore/images/qpen-custom.png %%QT_DOCDIR%%/qtcore/images/qpen-dash.png %%QT_DOCDIR%%/qtcore/images/qpen-dashdot.png %%QT_DOCDIR%%/qtcore/images/qpen-dashdotdot.png %%QT_DOCDIR%%/qtcore/images/qpen-dot.png %%QT_DOCDIR%%/qtcore/images/qpen-flat.png %%QT_DOCDIR%%/qtcore/images/qpen-miter.png %%QT_DOCDIR%%/qtcore/images/qpen-roundcap.png %%QT_DOCDIR%%/qtcore/images/qpen-roundjoin.png %%QT_DOCDIR%%/qtcore/images/qpen-solid.png %%QT_DOCDIR%%/qtcore/images/qpen-square.png %%QT_DOCDIR%%/qtcore/images/qrect-coordinates.png %%QT_DOCDIR%%/qtcore/images/qrect-diagram-one.png %%QT_DOCDIR%%/qtcore/images/qrect-diagram-three.png %%QT_DOCDIR%%/qtcore/images/qrect-diagram-two.png %%QT_DOCDIR%%/qtcore/images/qrect-diagram-zero.png %%QT_DOCDIR%%/qtcore/images/qrect-intersect.png %%QT_DOCDIR%%/qtcore/images/qrect-unite.png %%QT_DOCDIR%%/qtcore/images/qrectf-coordinates.png %%QT_DOCDIR%%/qtcore/images/qrectf-diagram-one.png %%QT_DOCDIR%%/qtcore/images/qrectf-diagram-three.png %%QT_DOCDIR%%/qtcore/images/qrectf-diagram-two.png %%QT_DOCDIR%%/qtcore/images/qsortfilterproxymodel-sorting.png %%QT_DOCDIR%%/qtcore/images/queuedcustomtype-example.png %%QT_DOCDIR%%/qtcore/images/qurl-authority.png %%QT_DOCDIR%%/qtcore/images/qurl-authority2.png %%QT_DOCDIR%%/qtcore/images/qurl-authority3.png %%QT_DOCDIR%%/qtcore/images/qurl-fragment.png %%QT_DOCDIR%%/qtcore/images/qurl-ftppath.png %%QT_DOCDIR%%/qtcore/images/qurl-mailtopath.png %%QT_DOCDIR%%/qtcore/images/qurl-querystring.png %%QT_DOCDIR%%/qtcore/images/resources.png %%QT_DOCDIR%%/qtcore/images/sharedmemory-example_1.png %%QT_DOCDIR%%/qtcore/images/sharedmemory-example_2.png %%QT_DOCDIR%%/qtcore/images/statemachine-button-history.png %%QT_DOCDIR%%/qtcore/images/statemachine-button-nested.png %%QT_DOCDIR%%/qtcore/images/statemachine-button.png %%QT_DOCDIR%%/qtcore/images/statemachine-customevents.png %%QT_DOCDIR%%/qtcore/images/statemachine-customevents2.png %%QT_DOCDIR%%/qtcore/images/statemachine-finished.png %%QT_DOCDIR%%/qtcore/images/statemachine-nonparallel.png %%QT_DOCDIR%%/qtcore/images/statemachine-parallel.png %%QT_DOCDIR%%/qtcore/images/stliterators1.png %%QT_DOCDIR%%/qtcore/images/used-in-examples/ipc/sharedmemory/image.png %%QT_DOCDIR%%/qtcore/images/used-in-examples/ipc/sharedmemory/qt.png %%QT_DOCDIR%%/qtcore/implicit-sharing.html %%QT_DOCDIR%%/qtcore/io-functions.html %%QT_DOCDIR%%/qtcore/io.html %%QT_DOCDIR%%/qtcore/json.html %%QT_DOCDIR%%/qtcore/metaobjects.html %%QT_DOCDIR%%/qtcore/object.html %%QT_DOCDIR%%/qtcore/objecttrees.html %%QT_DOCDIR%%/qtcore/plugins.html %%QT_DOCDIR%%/qtcore/properties.html %%QT_DOCDIR%%/qtcore/qabstractanimation-members.html %%QT_DOCDIR%%/qtcore/qabstractanimation-obsolete.html %%QT_DOCDIR%%/qtcore/qabstractanimation.html %%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-members.html %%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-obsolete.html %%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-timerinfo-members.html %%QT_DOCDIR%%/qtcore/qabstracteventdispatcher-timerinfo.html %%QT_DOCDIR%%/qtcore/qabstracteventdispatcher.html %%QT_DOCDIR%%/qtcore/qabstractitemmodel-members.html %%QT_DOCDIR%%/qtcore/qabstractitemmodel-obsolete.html %%QT_DOCDIR%%/qtcore/qabstractitemmodel.html %%QT_DOCDIR%%/qtcore/qabstractlistmodel-members.html %%QT_DOCDIR%%/qtcore/qabstractlistmodel-obsolete.html %%QT_DOCDIR%%/qtcore/qabstractlistmodel.html %%QT_DOCDIR%%/qtcore/qabstractnativeeventfilter-members.html %%QT_DOCDIR%%/qtcore/qabstractnativeeventfilter.html %%QT_DOCDIR%%/qtcore/qabstractproxymodel-members.html %%QT_DOCDIR%%/qtcore/qabstractproxymodel-obsolete.html %%QT_DOCDIR%%/qtcore/qabstractproxymodel.html %%QT_DOCDIR%%/qtcore/qabstractstate-members.html %%QT_DOCDIR%%/qtcore/qabstractstate-obsolete.html %%QT_DOCDIR%%/qtcore/qabstractstate.html %%QT_DOCDIR%%/qtcore/qabstracttablemodel-members.html %%QT_DOCDIR%%/qtcore/qabstracttablemodel-obsolete.html %%QT_DOCDIR%%/qtcore/qabstracttablemodel.html %%QT_DOCDIR%%/qtcore/qabstracttransition-members.html %%QT_DOCDIR%%/qtcore/qabstracttransition-obsolete.html %%QT_DOCDIR%%/qtcore/qabstracttransition.html %%QT_DOCDIR%%/qtcore/qanimationgroup-members.html %%QT_DOCDIR%%/qtcore/qanimationgroup-obsolete.html %%QT_DOCDIR%%/qtcore/qanimationgroup.html %%QT_DOCDIR%%/qtcore/qassociativeiterable-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qassociativeiterable-const-iterator.html %%QT_DOCDIR%%/qtcore/qassociativeiterable-members.html %%QT_DOCDIR%%/qtcore/qassociativeiterable.html %%QT_DOCDIR%%/qtcore/qatomicint-members.html %%QT_DOCDIR%%/qtcore/qatomicint.html %%QT_DOCDIR%%/qtcore/qatomicinteger-members.html %%QT_DOCDIR%%/qtcore/qatomicinteger.html %%QT_DOCDIR%%/qtcore/qatomicpointer-members.html %%QT_DOCDIR%%/qtcore/qatomicpointer.html %%QT_DOCDIR%%/qtcore/qbasictimer-members.html %%QT_DOCDIR%%/qtcore/qbasictimer.html %%QT_DOCDIR%%/qtcore/qbeinteger-members.html %%QT_DOCDIR%%/qtcore/qbeinteger.html %%QT_DOCDIR%%/qtcore/qbitarray-members.html %%QT_DOCDIR%%/qtcore/qbitarray.html %%QT_DOCDIR%%/qtcore/qbuffer-members.html %%QT_DOCDIR%%/qtcore/qbuffer-obsolete.html %%QT_DOCDIR%%/qtcore/qbuffer.html %%QT_DOCDIR%%/qtcore/qbytearray-members.html %%QT_DOCDIR%%/qtcore/qbytearray-obsolete.html %%QT_DOCDIR%%/qtcore/qbytearray.html %%QT_DOCDIR%%/qtcore/qbytearraylist-members.html %%QT_DOCDIR%%/qtcore/qbytearraylist.html %%QT_DOCDIR%%/qtcore/qbytearraymatcher-members.html %%QT_DOCDIR%%/qtcore/qbytearraymatcher.html %%QT_DOCDIR%%/qtcore/qcache-members.html %%QT_DOCDIR%%/qtcore/qcache.html %%QT_DOCDIR%%/qtcore/qcborarray-constiterator-members.html %%QT_DOCDIR%%/qtcore/qcborarray-constiterator.html %%QT_DOCDIR%%/qtcore/qcborarray-iterator-members.html %%QT_DOCDIR%%/qtcore/qcborarray-iterator.html %%QT_DOCDIR%%/qtcore/qcborarray-members.html %%QT_DOCDIR%%/qtcore/qcborarray.html %%QT_DOCDIR%%/qtcore/qcbormap-constiterator-members.html %%QT_DOCDIR%%/qtcore/qcbormap-constiterator.html %%QT_DOCDIR%%/qtcore/qcbormap-iterator-members.html %%QT_DOCDIR%%/qtcore/qcbormap-iterator.html %%QT_DOCDIR%%/qtcore/qcbormap-members.html %%QT_DOCDIR%%/qtcore/qcbormap.html %%QT_DOCDIR%%/qtcore/qcborparsererror-members.html %%QT_DOCDIR%%/qtcore/qcborparsererror.html %%QT_DOCDIR%%/qtcore/qcborstreamreader-members.html %%QT_DOCDIR%%/qtcore/qcborstreamreader-stringresult-members.html %%QT_DOCDIR%%/qtcore/qcborstreamreader-stringresult.html %%QT_DOCDIR%%/qtcore/qcborstreamreader.html %%QT_DOCDIR%%/qtcore/qcborstreamwriter-members.html %%QT_DOCDIR%%/qtcore/qcborstreamwriter.html %%QT_DOCDIR%%/qtcore/qcborvalue-members.html %%QT_DOCDIR%%/qtcore/qcborvalue.html %%QT_DOCDIR%%/qtcore/qchar-members.html %%QT_DOCDIR%%/qtcore/qchar-obsolete.html %%QT_DOCDIR%%/qtcore/qchar.html %%QT_DOCDIR%%/qtcore/qchildevent-members.html %%QT_DOCDIR%%/qtcore/qchildevent.html %%QT_DOCDIR%%/qtcore/qcollator-members.html %%QT_DOCDIR%%/qtcore/qcollator.html %%QT_DOCDIR%%/qtcore/qcollatorsortkey-members.html %%QT_DOCDIR%%/qtcore/qcollatorsortkey.html %%QT_DOCDIR%%/qtcore/qcommandlineoption-members.html %%QT_DOCDIR%%/qtcore/qcommandlineoption-obsolete.html %%QT_DOCDIR%%/qtcore/qcommandlineoption.html %%QT_DOCDIR%%/qtcore/qcommandlineparser-members.html %%QT_DOCDIR%%/qtcore/qcommandlineparser.html %%QT_DOCDIR%%/qtcore/qcontiguouscache-members.html %%QT_DOCDIR%%/qtcore/qcontiguouscache.html %%QT_DOCDIR%%/qtcore/qcoreapplication-members.html %%QT_DOCDIR%%/qtcore/qcoreapplication-obsolete.html %%QT_DOCDIR%%/qtcore/qcoreapplication.html %%QT_DOCDIR%%/qtcore/qcryptographichash-members.html %%QT_DOCDIR%%/qtcore/qcryptographichash.html %%QT_DOCDIR%%/qtcore/qdatastream-members.html %%QT_DOCDIR%%/qtcore/qdatastream-obsolete.html %%QT_DOCDIR%%/qtcore/qdatastream.html %%QT_DOCDIR%%/qtcore/qdate-members.html %%QT_DOCDIR%%/qtcore/qdate-obsolete.html %%QT_DOCDIR%%/qtcore/qdate.html %%QT_DOCDIR%%/qtcore/qdatetime-members.html %%QT_DOCDIR%%/qtcore/qdatetime-obsolete.html %%QT_DOCDIR%%/qtcore/qdatetime.html %%QT_DOCDIR%%/qtcore/qdeadlinetimer-members.html %%QT_DOCDIR%%/qtcore/qdeadlinetimer.html %%QT_DOCDIR%%/qtcore/qdebug-members.html %%QT_DOCDIR%%/qtcore/qdebug.html %%QT_DOCDIR%%/qtcore/qdebugstatesaver-members.html %%QT_DOCDIR%%/qtcore/qdebugstatesaver.html %%QT_DOCDIR%%/qtcore/qdir-members.html %%QT_DOCDIR%%/qtcore/qdir-obsolete.html %%QT_DOCDIR%%/qtcore/qdir.html %%QT_DOCDIR%%/qtcore/qdiriterator-members.html %%QT_DOCDIR%%/qtcore/qdiriterator.html %%QT_DOCDIR%%/qtcore/qdynamicpropertychangeevent-members.html %%QT_DOCDIR%%/qtcore/qdynamicpropertychangeevent.html %%QT_DOCDIR%%/qtcore/qeasingcurve-members.html %%QT_DOCDIR%%/qtcore/qeasingcurve-obsolete.html %%QT_DOCDIR%%/qtcore/qeasingcurve.html %%QT_DOCDIR%%/qtcore/qelapsedtimer-members.html %%QT_DOCDIR%%/qtcore/qelapsedtimer.html %%QT_DOCDIR%%/qtcore/qenablesharedfromthis-members.html %%QT_DOCDIR%%/qtcore/qenablesharedfromthis.html %%QT_DOCDIR%%/qtcore/qevent-members.html %%QT_DOCDIR%%/qtcore/qevent.html %%QT_DOCDIR%%/qtcore/qeventloop-members.html %%QT_DOCDIR%%/qtcore/qeventloop-obsolete.html %%QT_DOCDIR%%/qtcore/qeventloop.html %%QT_DOCDIR%%/qtcore/qeventlooplocker-members.html %%QT_DOCDIR%%/qtcore/qeventlooplocker.html %%QT_DOCDIR%%/qtcore/qeventtransition-members.html %%QT_DOCDIR%%/qtcore/qeventtransition-obsolete.html %%QT_DOCDIR%%/qtcore/qeventtransition.html %%QT_DOCDIR%%/qtcore/qexception-members.html %%QT_DOCDIR%%/qtcore/qexception.html %%QT_DOCDIR%%/qtcore/qexplicitlyshareddatapointer-members.html %%QT_DOCDIR%%/qtcore/qexplicitlyshareddatapointer.html %%QT_DOCDIR%%/qtcore/qfile-members.html %%QT_DOCDIR%%/qtcore/qfile-obsolete.html %%QT_DOCDIR%%/qtcore/qfile.html %%QT_DOCDIR%%/qtcore/qfiledevice-members.html %%QT_DOCDIR%%/qtcore/qfiledevice-obsolete.html %%QT_DOCDIR%%/qtcore/qfiledevice.html %%QT_DOCDIR%%/qtcore/qfileinfo-members.html %%QT_DOCDIR%%/qtcore/qfileinfo-obsolete.html %%QT_DOCDIR%%/qtcore/qfileinfo.html %%QT_DOCDIR%%/qtcore/qfileselector-members.html %%QT_DOCDIR%%/qtcore/qfileselector-obsolete.html %%QT_DOCDIR%%/qtcore/qfileselector.html %%QT_DOCDIR%%/qtcore/qfilesystemwatcher-members.html %%QT_DOCDIR%%/qtcore/qfilesystemwatcher-obsolete.html %%QT_DOCDIR%%/qtcore/qfilesystemwatcher.html %%QT_DOCDIR%%/qtcore/qfinalstate-members.html %%QT_DOCDIR%%/qtcore/qfinalstate-obsolete.html %%QT_DOCDIR%%/qtcore/qfinalstate.html %%QT_DOCDIR%%/qtcore/qflag-members.html %%QT_DOCDIR%%/qtcore/qflag.html %%QT_DOCDIR%%/qtcore/qflags-members.html %%QT_DOCDIR%%/qtcore/qflags.html %%QT_DOCDIR%%/qtcore/qfloat16.html %%QT_DOCDIR%%/qtcore/qfuture-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qfuture-const-iterator.html %%QT_DOCDIR%%/qtcore/qfuture-members.html %%QT_DOCDIR%%/qtcore/qfuture.html %%QT_DOCDIR%%/qtcore/qfutureiterator-members.html %%QT_DOCDIR%%/qtcore/qfutureiterator.html %%QT_DOCDIR%%/qtcore/qfuturesynchronizer-members.html %%QT_DOCDIR%%/qtcore/qfuturesynchronizer.html %%QT_DOCDIR%%/qtcore/qfuturewatcher-members.html %%QT_DOCDIR%%/qtcore/qfuturewatcher-obsolete.html %%QT_DOCDIR%%/qtcore/qfuturewatcher.html %%QT_DOCDIR%%/qtcore/qgenericargument-members.html %%QT_DOCDIR%%/qtcore/qgenericargument.html %%QT_DOCDIR%%/qtcore/qgenericreturnargument-members.html %%QT_DOCDIR%%/qtcore/qgenericreturnargument.html %%QT_DOCDIR%%/qtcore/qglobalstatic-members.html %%QT_DOCDIR%%/qtcore/qglobalstatic-obsolete.html %%QT_DOCDIR%%/qtcore/qglobalstatic.html %%QT_DOCDIR%%/qtcore/qhash-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qhash-const-iterator.html %%QT_DOCDIR%%/qtcore/qhash-iterator-members.html %%QT_DOCDIR%%/qtcore/qhash-iterator.html %%QT_DOCDIR%%/qtcore/qhash-key-iterator-members.html %%QT_DOCDIR%%/qtcore/qhash-key-iterator.html %%QT_DOCDIR%%/qtcore/qhash-members.html %%QT_DOCDIR%%/qtcore/qhash.html %%QT_DOCDIR%%/qtcore/qhashiterator-members.html %%QT_DOCDIR%%/qtcore/qhashiterator.html %%QT_DOCDIR%%/qtcore/qhistorystate-members.html %%QT_DOCDIR%%/qtcore/qhistorystate-obsolete.html %%QT_DOCDIR%%/qtcore/qhistorystate.html %%QT_DOCDIR%%/qtcore/qidentityproxymodel-members.html %%QT_DOCDIR%%/qtcore/qidentityproxymodel-obsolete.html %%QT_DOCDIR%%/qtcore/qidentityproxymodel.html %%QT_DOCDIR%%/qtcore/qiodevice-members.html %%QT_DOCDIR%%/qtcore/qiodevice-obsolete.html %%QT_DOCDIR%%/qtcore/qiodevice.html %%QT_DOCDIR%%/qtcore/qitemselection-members.html %%QT_DOCDIR%%/qtcore/qitemselection.html %%QT_DOCDIR%%/qtcore/qitemselectionmodel-members.html %%QT_DOCDIR%%/qtcore/qitemselectionmodel-obsolete.html %%QT_DOCDIR%%/qtcore/qitemselectionmodel.html %%QT_DOCDIR%%/qtcore/qitemselectionrange-members.html %%QT_DOCDIR%%/qtcore/qitemselectionrange-obsolete.html %%QT_DOCDIR%%/qtcore/qitemselectionrange.html %%QT_DOCDIR%%/qtcore/qjsonarray-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qjsonarray-const-iterator.html %%QT_DOCDIR%%/qtcore/qjsonarray-iterator-members.html %%QT_DOCDIR%%/qtcore/qjsonarray-iterator.html %%QT_DOCDIR%%/qtcore/qjsonarray-members.html %%QT_DOCDIR%%/qtcore/qjsonarray.html %%QT_DOCDIR%%/qtcore/qjsondocument-members.html %%QT_DOCDIR%%/qtcore/qjsondocument.html %%QT_DOCDIR%%/qtcore/qjsonobject-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qjsonobject-const-iterator.html %%QT_DOCDIR%%/qtcore/qjsonobject-iterator-members.html %%QT_DOCDIR%%/qtcore/qjsonobject-iterator.html %%QT_DOCDIR%%/qtcore/qjsonobject-members.html %%QT_DOCDIR%%/qtcore/qjsonobject.html %%QT_DOCDIR%%/qtcore/qjsonparseerror-members.html %%QT_DOCDIR%%/qtcore/qjsonparseerror.html %%QT_DOCDIR%%/qtcore/qjsonvalue-members.html %%QT_DOCDIR%%/qtcore/qjsonvalue.html %%QT_DOCDIR%%/qtcore/qkeyvalueiterator-members.html %%QT_DOCDIR%%/qtcore/qkeyvalueiterator.html %%QT_DOCDIR%%/qtcore/qlatin1char-members.html %%QT_DOCDIR%%/qtcore/qlatin1char.html %%QT_DOCDIR%%/qtcore/qlatin1string-members.html %%QT_DOCDIR%%/qtcore/qlatin1string.html %%QT_DOCDIR%%/qtcore/qleinteger-members.html %%QT_DOCDIR%%/qtcore/qleinteger.html %%QT_DOCDIR%%/qtcore/qlibrary-members.html %%QT_DOCDIR%%/qtcore/qlibrary-obsolete.html %%QT_DOCDIR%%/qtcore/qlibrary.html %%QT_DOCDIR%%/qtcore/qlibraryinfo-members.html %%QT_DOCDIR%%/qtcore/qlibraryinfo-obsolete.html %%QT_DOCDIR%%/qtcore/qlibraryinfo.html %%QT_DOCDIR%%/qtcore/qline-members.html %%QT_DOCDIR%%/qtcore/qline.html %%QT_DOCDIR%%/qtcore/qlinef-members.html %%QT_DOCDIR%%/qtcore/qlinef-obsolete.html %%QT_DOCDIR%%/qtcore/qlinef.html %%QT_DOCDIR%%/qtcore/qlinkedlist-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qlinkedlist-const-iterator.html %%QT_DOCDIR%%/qtcore/qlinkedlist-iterator-members.html %%QT_DOCDIR%%/qtcore/qlinkedlist-iterator.html %%QT_DOCDIR%%/qtcore/qlinkedlist-members.html %%QT_DOCDIR%%/qtcore/qlinkedlist.html %%QT_DOCDIR%%/qtcore/qlinkedlistiterator-members.html %%QT_DOCDIR%%/qtcore/qlinkedlistiterator.html %%QT_DOCDIR%%/qtcore/qlist-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qlist-const-iterator.html %%QT_DOCDIR%%/qtcore/qlist-iterator-members.html %%QT_DOCDIR%%/qtcore/qlist-iterator.html %%QT_DOCDIR%%/qtcore/qlist-members.html %%QT_DOCDIR%%/qtcore/qlist-memorylayout.html %%QT_DOCDIR%%/qtcore/qlist.html %%QT_DOCDIR%%/qtcore/qlistiterator-members.html %%QT_DOCDIR%%/qtcore/qlistiterator.html %%QT_DOCDIR%%/qtcore/qlocale-members.html %%QT_DOCDIR%%/qtcore/qlocale-obsolete.html %%QT_DOCDIR%%/qtcore/qlocale.html %%QT_DOCDIR%%/qtcore/qlockfile-members.html %%QT_DOCDIR%%/qtcore/qlockfile.html -%%QT_DOCDIR%%/qtcore/qloggingcategory-atomicbools-members.html -%%QT_DOCDIR%%/qtcore/qloggingcategory-atomicbools.html %%QT_DOCDIR%%/qtcore/qloggingcategory-members.html %%QT_DOCDIR%%/qtcore/qloggingcategory.html %%QT_DOCDIR%%/qtcore/qmap-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qmap-const-iterator.html %%QT_DOCDIR%%/qtcore/qmap-iterator-members.html %%QT_DOCDIR%%/qtcore/qmap-iterator.html %%QT_DOCDIR%%/qtcore/qmap-key-iterator-members.html %%QT_DOCDIR%%/qtcore/qmap-key-iterator.html %%QT_DOCDIR%%/qtcore/qmap-members.html %%QT_DOCDIR%%/qtcore/qmap.html %%QT_DOCDIR%%/qtcore/qmapiterator-members.html %%QT_DOCDIR%%/qtcore/qmapiterator.html %%QT_DOCDIR%%/qtcore/qmargins-members.html %%QT_DOCDIR%%/qtcore/qmargins.html %%QT_DOCDIR%%/qtcore/qmarginsf-members.html %%QT_DOCDIR%%/qtcore/qmarginsf.html %%QT_DOCDIR%%/qtcore/qmessageauthenticationcode-members.html %%QT_DOCDIR%%/qtcore/qmessageauthenticationcode.html %%QT_DOCDIR%%/qtcore/qmessagelogcontext-members.html %%QT_DOCDIR%%/qtcore/qmessagelogcontext.html %%QT_DOCDIR%%/qtcore/qmessagelogger-members.html %%QT_DOCDIR%%/qtcore/qmessagelogger.html %%QT_DOCDIR%%/qtcore/qmetaclassinfo-members.html %%QT_DOCDIR%%/qtcore/qmetaclassinfo.html %%QT_DOCDIR%%/qtcore/qmetaenum-members.html %%QT_DOCDIR%%/qtcore/qmetaenum.html %%QT_DOCDIR%%/qtcore/qmetamethod-members.html %%QT_DOCDIR%%/qtcore/qmetamethod.html %%QT_DOCDIR%%/qtcore/qmetaobject-connection-members.html %%QT_DOCDIR%%/qtcore/qmetaobject-connection.html %%QT_DOCDIR%%/qtcore/qmetaobject-members.html %%QT_DOCDIR%%/qtcore/qmetaobject.html %%QT_DOCDIR%%/qtcore/qmetaproperty-members.html %%QT_DOCDIR%%/qtcore/qmetaproperty-obsolete.html %%QT_DOCDIR%%/qtcore/qmetaproperty.html %%QT_DOCDIR%%/qtcore/qmetatype-members.html %%QT_DOCDIR%%/qtcore/qmetatype-obsolete.html %%QT_DOCDIR%%/qtcore/qmetatype.html %%QT_DOCDIR%%/qtcore/qmimedata-members.html %%QT_DOCDIR%%/qtcore/qmimedata-obsolete.html %%QT_DOCDIR%%/qtcore/qmimedata.html %%QT_DOCDIR%%/qtcore/qmimedatabase-members.html %%QT_DOCDIR%%/qtcore/qmimedatabase.html %%QT_DOCDIR%%/qtcore/qmimetype-members.html %%QT_DOCDIR%%/qtcore/qmimetype.html %%QT_DOCDIR%%/qtcore/qmodelindex-members.html %%QT_DOCDIR%%/qtcore/qmodelindex-obsolete.html %%QT_DOCDIR%%/qtcore/qmodelindex.html %%QT_DOCDIR%%/qtcore/qmultihash-members.html %%QT_DOCDIR%%/qtcore/qmultihash.html %%QT_DOCDIR%%/qtcore/qmultimap-members.html %%QT_DOCDIR%%/qtcore/qmultimap.html %%QT_DOCDIR%%/qtcore/qmutablehashiterator-members.html %%QT_DOCDIR%%/qtcore/qmutablehashiterator.html %%QT_DOCDIR%%/qtcore/qmutablelinkedlistiterator-members.html %%QT_DOCDIR%%/qtcore/qmutablelinkedlistiterator.html %%QT_DOCDIR%%/qtcore/qmutablelistiterator-members.html %%QT_DOCDIR%%/qtcore/qmutablelistiterator.html %%QT_DOCDIR%%/qtcore/qmutablemapiterator-members.html %%QT_DOCDIR%%/qtcore/qmutablemapiterator.html %%QT_DOCDIR%%/qtcore/qmutablesetiterator-members.html %%QT_DOCDIR%%/qtcore/qmutablesetiterator.html %%QT_DOCDIR%%/qtcore/qmutablevectoriterator-members.html %%QT_DOCDIR%%/qtcore/qmutablevectoriterator.html %%QT_DOCDIR%%/qtcore/qmutex-members.html %%QT_DOCDIR%%/qtcore/qmutex.html %%QT_DOCDIR%%/qtcore/qmutexlocker-members.html %%QT_DOCDIR%%/qtcore/qmutexlocker.html %%QT_DOCDIR%%/qtcore/qobject-members.html %%QT_DOCDIR%%/qtcore/qobject-obsolete.html %%QT_DOCDIR%%/qtcore/qobject.html %%QT_DOCDIR%%/qtcore/qobjectcleanuphandler-members.html %%QT_DOCDIR%%/qtcore/qobjectcleanuphandler-obsolete.html %%QT_DOCDIR%%/qtcore/qobjectcleanuphandler.html %%QT_DOCDIR%%/qtcore/qoperatingsystemversion-members.html %%QT_DOCDIR%%/qtcore/qoperatingsystemversion.html %%QT_DOCDIR%%/qtcore/qpair-members.html %%QT_DOCDIR%%/qtcore/qpair.html %%QT_DOCDIR%%/qtcore/qparallelanimationgroup-members.html %%QT_DOCDIR%%/qtcore/qparallelanimationgroup-obsolete.html %%QT_DOCDIR%%/qtcore/qparallelanimationgroup.html %%QT_DOCDIR%%/qtcore/qpauseanimation-members.html %%QT_DOCDIR%%/qtcore/qpauseanimation-obsolete.html %%QT_DOCDIR%%/qtcore/qpauseanimation.html %%QT_DOCDIR%%/qtcore/qpersistentmodelindex-members.html %%QT_DOCDIR%%/qtcore/qpersistentmodelindex-obsolete.html %%QT_DOCDIR%%/qtcore/qpersistentmodelindex.html %%QT_DOCDIR%%/qtcore/qpluginloader-members.html %%QT_DOCDIR%%/qtcore/qpluginloader-obsolete.html %%QT_DOCDIR%%/qtcore/qpluginloader.html %%QT_DOCDIR%%/qtcore/qpoint-members.html %%QT_DOCDIR%%/qtcore/qpoint.html %%QT_DOCDIR%%/qtcore/qpointer-members.html %%QT_DOCDIR%%/qtcore/qpointer.html %%QT_DOCDIR%%/qtcore/qpointf-members.html %%QT_DOCDIR%%/qtcore/qpointf.html %%QT_DOCDIR%%/qtcore/qprocess-createprocessarguments-members.html %%QT_DOCDIR%%/qtcore/qprocess-createprocessarguments.html %%QT_DOCDIR%%/qtcore/qprocess-members.html %%QT_DOCDIR%%/qtcore/qprocess-obsolete.html %%QT_DOCDIR%%/qtcore/qprocess.html %%QT_DOCDIR%%/qtcore/qprocessenvironment-members.html %%QT_DOCDIR%%/qtcore/qprocessenvironment.html %%QT_DOCDIR%%/qtcore/qpropertyanimation-members.html %%QT_DOCDIR%%/qtcore/qpropertyanimation-obsolete.html %%QT_DOCDIR%%/qtcore/qpropertyanimation.html %%QT_DOCDIR%%/qtcore/qqueue-members.html %%QT_DOCDIR%%/qtcore/qqueue.html %%QT_DOCDIR%%/qtcore/qrandomgenerator-members.html %%QT_DOCDIR%%/qtcore/qrandomgenerator-storage-members.html %%QT_DOCDIR%%/qtcore/qrandomgenerator-storage.html %%QT_DOCDIR%%/qtcore/qrandomgenerator.html %%QT_DOCDIR%%/qtcore/qrandomgenerator64-members.html %%QT_DOCDIR%%/qtcore/qrandomgenerator64.html %%QT_DOCDIR%%/qtcore/qreadlocker-members.html %%QT_DOCDIR%%/qtcore/qreadlocker.html %%QT_DOCDIR%%/qtcore/qreadwritelock-members.html %%QT_DOCDIR%%/qtcore/qreadwritelock.html %%QT_DOCDIR%%/qtcore/qrect-members.html %%QT_DOCDIR%%/qtcore/qrect-obsolete.html %%QT_DOCDIR%%/qtcore/qrect.html %%QT_DOCDIR%%/qtcore/qrectf-members.html %%QT_DOCDIR%%/qtcore/qrectf-obsolete.html %%QT_DOCDIR%%/qtcore/qrectf.html %%QT_DOCDIR%%/qtcore/qregexp-members.html %%QT_DOCDIR%%/qtcore/qregexp.html %%QT_DOCDIR%%/qtcore/qregularexpression-members.html %%QT_DOCDIR%%/qtcore/qregularexpression.html %%QT_DOCDIR%%/qtcore/qregularexpressionmatch-members.html %%QT_DOCDIR%%/qtcore/qregularexpressionmatch.html %%QT_DOCDIR%%/qtcore/qregularexpressionmatchiterator-members.html %%QT_DOCDIR%%/qtcore/qregularexpressionmatchiterator.html %%QT_DOCDIR%%/qtcore/qresource-members.html %%QT_DOCDIR%%/qtcore/qresource-obsolete.html %%QT_DOCDIR%%/qtcore/qresource.html %%QT_DOCDIR%%/qtcore/qrunnable-members.html %%QT_DOCDIR%%/qtcore/qrunnable.html %%QT_DOCDIR%%/qtcore/qsavefile-members.html %%QT_DOCDIR%%/qtcore/qsavefile-obsolete.html %%QT_DOCDIR%%/qtcore/qsavefile.html %%QT_DOCDIR%%/qtcore/qscopedarraypointer-members.html %%QT_DOCDIR%%/qtcore/qscopedarraypointer.html %%QT_DOCDIR%%/qtcore/qscopedpointer-members.html %%QT_DOCDIR%%/qtcore/qscopedpointer.html %%QT_DOCDIR%%/qtcore/qscopedvaluerollback-members.html %%QT_DOCDIR%%/qtcore/qscopedvaluerollback.html %%QT_DOCDIR%%/qtcore/qscopeguard-members.html %%QT_DOCDIR%%/qtcore/qscopeguard.html %%QT_DOCDIR%%/qtcore/qsemaphore-members.html %%QT_DOCDIR%%/qtcore/qsemaphore.html %%QT_DOCDIR%%/qtcore/qsemaphorereleaser-members.html %%QT_DOCDIR%%/qtcore/qsemaphorereleaser.html %%QT_DOCDIR%%/qtcore/qsequentialanimationgroup-members.html %%QT_DOCDIR%%/qtcore/qsequentialanimationgroup-obsolete.html %%QT_DOCDIR%%/qtcore/qsequentialanimationgroup.html %%QT_DOCDIR%%/qtcore/qsequentialiterable-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qsequentialiterable-const-iterator.html %%QT_DOCDIR%%/qtcore/qsequentialiterable-members.html %%QT_DOCDIR%%/qtcore/qsequentialiterable.html %%QT_DOCDIR%%/qtcore/qset-const-iterator-members.html %%QT_DOCDIR%%/qtcore/qset-const-iterator.html %%QT_DOCDIR%%/qtcore/qset-iterator-members.html %%QT_DOCDIR%%/qtcore/qset-iterator.html %%QT_DOCDIR%%/qtcore/qset-members.html %%QT_DOCDIR%%/qtcore/qset.html %%QT_DOCDIR%%/qtcore/qsetiterator-members.html %%QT_DOCDIR%%/qtcore/qsetiterator.html %%QT_DOCDIR%%/qtcore/qsettings-members.html %%QT_DOCDIR%%/qtcore/qsettings-obsolete.html %%QT_DOCDIR%%/qtcore/qsettings.html %%QT_DOCDIR%%/qtcore/qshareddata-members.html %%QT_DOCDIR%%/qtcore/qshareddata.html %%QT_DOCDIR%%/qtcore/qshareddatapointer-members.html %%QT_DOCDIR%%/qtcore/qshareddatapointer.html %%QT_DOCDIR%%/qtcore/qsharedmemory-members.html %%QT_DOCDIR%%/qtcore/qsharedmemory-obsolete.html %%QT_DOCDIR%%/qtcore/qsharedmemory.html %%QT_DOCDIR%%/qtcore/qsharedpointer-members.html %%QT_DOCDIR%%/qtcore/qsharedpointer.html %%QT_DOCDIR%%/qtcore/qsignalblocker-members.html %%QT_DOCDIR%%/qtcore/qsignalblocker.html %%QT_DOCDIR%%/qtcore/qsignalmapper-members.html %%QT_DOCDIR%%/qtcore/qsignalmapper-obsolete.html %%QT_DOCDIR%%/qtcore/qsignalmapper.html %%QT_DOCDIR%%/qtcore/qsignaltransition-members.html %%QT_DOCDIR%%/qtcore/qsignaltransition-obsolete.html %%QT_DOCDIR%%/qtcore/qsignaltransition.html %%QT_DOCDIR%%/qtcore/qsize-members.html %%QT_DOCDIR%%/qtcore/qsize.html %%QT_DOCDIR%%/qtcore/qsizef-members.html %%QT_DOCDIR%%/qtcore/qsizef.html %%QT_DOCDIR%%/qtcore/qsocketnotifier-members.html %%QT_DOCDIR%%/qtcore/qsocketnotifier-obsolete.html %%QT_DOCDIR%%/qtcore/qsocketnotifier.html %%QT_DOCDIR%%/qtcore/qsortfilterproxymodel-members.html %%QT_DOCDIR%%/qtcore/qsortfilterproxymodel-obsolete.html %%QT_DOCDIR%%/qtcore/qsortfilterproxymodel.html %%QT_DOCDIR%%/qtcore/qstack-members.html %%QT_DOCDIR%%/qtcore/qstack.html %%QT_DOCDIR%%/qtcore/qstandardpaths-members.html %%QT_DOCDIR%%/qtcore/qstandardpaths-obsolete.html %%QT_DOCDIR%%/qtcore/qstandardpaths.html %%QT_DOCDIR%%/qtcore/qstate-members.html %%QT_DOCDIR%%/qtcore/qstate-obsolete.html %%QT_DOCDIR%%/qtcore/qstate.html %%QT_DOCDIR%%/qtcore/qstatemachine-members.html %%QT_DOCDIR%%/qtcore/qstatemachine-obsolete.html %%QT_DOCDIR%%/qtcore/qstatemachine-signalevent-members.html %%QT_DOCDIR%%/qtcore/qstatemachine-signalevent.html %%QT_DOCDIR%%/qtcore/qstatemachine-wrappedevent-members.html %%QT_DOCDIR%%/qtcore/qstatemachine-wrappedevent.html %%QT_DOCDIR%%/qtcore/qstatemachine.html %%QT_DOCDIR%%/qtcore/qstaticbytearraymatcher-members.html %%QT_DOCDIR%%/qtcore/qstaticbytearraymatcher.html %%QT_DOCDIR%%/qtcore/qstaticplugin-members.html %%QT_DOCDIR%%/qtcore/qstaticplugin.html %%QT_DOCDIR%%/qtcore/qstorageinfo-members.html %%QT_DOCDIR%%/qtcore/qstorageinfo.html %%QT_DOCDIR%%/qtcore/qstring-members.html %%QT_DOCDIR%%/qtcore/qstring-null.html %%QT_DOCDIR%%/qtcore/qstring-obsolete.html %%QT_DOCDIR%%/qtcore/qstring.html %%QT_DOCDIR%%/qtcore/qstringlist-members.html %%QT_DOCDIR%%/qtcore/qstringlist.html %%QT_DOCDIR%%/qtcore/qstringlistmodel-members.html %%QT_DOCDIR%%/qtcore/qstringlistmodel-obsolete.html %%QT_DOCDIR%%/qtcore/qstringlistmodel.html %%QT_DOCDIR%%/qtcore/qstringmatcher-members.html %%QT_DOCDIR%%/qtcore/qstringmatcher.html %%QT_DOCDIR%%/qtcore/qstringref-members.html %%QT_DOCDIR%%/qtcore/qstringref-obsolete.html %%QT_DOCDIR%%/qtcore/qstringref.html %%QT_DOCDIR%%/qtcore/qstringview-members.html %%QT_DOCDIR%%/qtcore/qstringview.html %%QT_DOCDIR%%/qtcore/qsysinfo-members.html %%QT_DOCDIR%%/qtcore/qsysinfo-obsolete.html %%QT_DOCDIR%%/qtcore/qsysinfo.html %%QT_DOCDIR%%/qtcore/qsystemsemaphore-members.html %%QT_DOCDIR%%/qtcore/qsystemsemaphore.html %%QT_DOCDIR%%/qtcore/qt-obsolete.html %%QT_DOCDIR%%/qtcore/qt.html %%QT_DOCDIR%%/qtcore/qtalgorithms-obsolete.html %%QT_DOCDIR%%/qtcore/qtalgorithms.html %%QT_DOCDIR%%/qtcore/qtcborcommon-members.html %%QT_DOCDIR%%/qtcore/qtcborcommon.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-android-gradle-wrapper.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-doubleconversion.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-easing.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-forkfd.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-freebsd.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-md4.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-md5.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-pcre2-sljit.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-pcre2.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-psl.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qbig5codecs.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qbkcodec.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qeucjpcodec.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qeuckrcodec.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qeventdispatcher-cf.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qjiscodec.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qsjiscodec.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-qtsciicodec.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-rfc6234.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-sha1.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-sha3-endian.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-sha3-keccak.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-tinycbor.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-unicode-character-database.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-unicode-cldr.html %%QT_DOCDIR%%/qtcore/qtcore-attribution-zlib.html %%QT_DOCDIR%%/qtcore/qtcore-index.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-client-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-client-h.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-example.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-localfortuneclient-pro.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneclient-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-example.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-localfortuneserver-pro.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-server-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-localfortuneserver-server-h.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-dialog-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-dialog-h.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-dialog-ui.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-example.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-ipc-sharedmemory-sharedmemory-pro.html %%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-example.html %%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mainwindow-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mainwindow-h.html %%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mimetypebrowser-pro.html %%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mimetypemodel-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-mimetypes-mimetypebrowser-mimetypemodel-h.html %%QT_DOCDIR%%/qtcore/qtcore-module.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-character-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-character-h.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-example.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-game-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-game-h.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-level-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-level-h.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-serialization-savegame-savegame-pro.html %%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-example.html %%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-mandelbrot-pro.html %%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-mandelbrotwidget-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-mandelbrotwidget-h.html %%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-renderthread-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-mandelbrot-renderthread-h.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-block-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-block-h.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-example.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-queuedcustomtype-pro.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-renderthread-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-renderthread-h.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-window-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-queuedcustomtype-window-h.html %%QT_DOCDIR%%/qtcore/qtcore-threads-semaphores-example.html %%QT_DOCDIR%%/qtcore/qtcore-threads-semaphores-semaphores-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-semaphores-semaphores-pro.html %%QT_DOCDIR%%/qtcore/qtcore-threads-waitconditions-example.html %%QT_DOCDIR%%/qtcore/qtcore-threads-waitconditions-waitconditions-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-threads-waitconditions-waitconditions-pro.html %%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-contiguouscache-pro.html %%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-example.html %%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-randomlistmodel-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-tools-contiguouscache-randomlistmodel-h.html %%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-customtype-pro.html %%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-example.html %%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-main-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-message-cpp.html %%QT_DOCDIR%%/qtcore/qtcore-tools-customtype-message-h.html %%QT_DOCDIR%%/qtcore/qtcore.index %%QT_DOCDIR%%/qtcore/qtcore.qhp %%QT_DOCDIR%%/qtcore/qtcore.qhp.sha1 %%QT_DOCDIR%%/qtcore/qtcore.tags %%QT_DOCDIR%%/qtcore/qtemporarydir-members.html %%QT_DOCDIR%%/qtcore/qtemporarydir.html %%QT_DOCDIR%%/qtcore/qtemporaryfile-members.html %%QT_DOCDIR%%/qtcore/qtemporaryfile-obsolete.html %%QT_DOCDIR%%/qtcore/qtemporaryfile.html %%QT_DOCDIR%%/qtcore/qtendian.html %%QT_DOCDIR%%/qtcore/qtextboundaryfinder-members.html %%QT_DOCDIR%%/qtcore/qtextboundaryfinder.html %%QT_DOCDIR%%/qtcore/qtextcodec-converterstate-members.html %%QT_DOCDIR%%/qtcore/qtextcodec-converterstate.html %%QT_DOCDIR%%/qtcore/qtextcodec-members.html %%QT_DOCDIR%%/qtcore/qtextcodec-obsolete.html %%QT_DOCDIR%%/qtcore/qtextcodec.html %%QT_DOCDIR%%/qtcore/qtextdecoder-members.html %%QT_DOCDIR%%/qtcore/qtextdecoder.html %%QT_DOCDIR%%/qtcore/qtextencoder-members.html %%QT_DOCDIR%%/qtcore/qtextencoder.html %%QT_DOCDIR%%/qtcore/qtextstream-members.html %%QT_DOCDIR%%/qtcore/qtextstream.html %%QT_DOCDIR%%/qtcore/qtglobal-obsolete.html %%QT_DOCDIR%%/qtcore/qtglobal.html %%QT_DOCDIR%%/qtcore/qthread-members.html %%QT_DOCDIR%%/qtcore/qthread-obsolete.html %%QT_DOCDIR%%/qtcore/qthread.html %%QT_DOCDIR%%/qtcore/qthreadpool-members.html %%QT_DOCDIR%%/qtcore/qthreadpool-obsolete.html %%QT_DOCDIR%%/qtcore/qthreadpool.html %%QT_DOCDIR%%/qtcore/qthreadstorage-members.html %%QT_DOCDIR%%/qtcore/qthreadstorage.html %%QT_DOCDIR%%/qtcore/qtime-members.html %%QT_DOCDIR%%/qtcore/qtime.html %%QT_DOCDIR%%/qtcore/qtimeline-members.html %%QT_DOCDIR%%/qtcore/qtimeline-obsolete.html %%QT_DOCDIR%%/qtcore/qtimeline.html %%QT_DOCDIR%%/qtcore/qtimer-members.html %%QT_DOCDIR%%/qtcore/qtimer-obsolete.html %%QT_DOCDIR%%/qtcore/qtimer.html %%QT_DOCDIR%%/qtcore/qtimerevent-members.html %%QT_DOCDIR%%/qtcore/qtimerevent.html %%QT_DOCDIR%%/qtcore/qtimezone-members.html %%QT_DOCDIR%%/qtcore/qtimezone-offsetdata-members.html %%QT_DOCDIR%%/qtcore/qtimezone-offsetdata.html %%QT_DOCDIR%%/qtcore/qtimezone.html %%QT_DOCDIR%%/qtcore/qtmath.html %%QT_DOCDIR%%/qtcore/qtplugin.html %%QT_DOCDIR%%/qtcore/qtranslator-members.html %%QT_DOCDIR%%/qtcore/qtranslator-obsolete.html %%QT_DOCDIR%%/qtcore/qtranslator.html %%QT_DOCDIR%%/qtcore/qunhandledexception-members.html %%QT_DOCDIR%%/qtcore/qunhandledexception.html %%QT_DOCDIR%%/qtcore/qurl-members.html %%QT_DOCDIR%%/qtcore/qurl-obsolete.html %%QT_DOCDIR%%/qtcore/qurl.html %%QT_DOCDIR%%/qtcore/qurlquery-members.html %%QT_DOCDIR%%/qtcore/qurlquery.html %%QT_DOCDIR%%/qtcore/quuid-members.html %%QT_DOCDIR%%/qtcore/quuid.html %%QT_DOCDIR%%/qtcore/qvariant-handler-members.html %%QT_DOCDIR%%/qtcore/qvariant-handler.html %%QT_DOCDIR%%/qtcore/qvariant-members.html %%QT_DOCDIR%%/qtcore/qvariant-obsolete.html %%QT_DOCDIR%%/qtcore/qvariant-private-data-members.html %%QT_DOCDIR%%/qtcore/qvariant-private-data.html %%QT_DOCDIR%%/qtcore/qvariant-private-members.html %%QT_DOCDIR%%/qtcore/qvariant-private.html %%QT_DOCDIR%%/qtcore/qvariant-privateshared-members.html %%QT_DOCDIR%%/qtcore/qvariant-privateshared.html %%QT_DOCDIR%%/qtcore/qvariant.html %%QT_DOCDIR%%/qtcore/qvariantanimation-members.html %%QT_DOCDIR%%/qtcore/qvariantanimation-obsolete.html %%QT_DOCDIR%%/qtcore/qvariantanimation.html %%QT_DOCDIR%%/qtcore/qvarlengtharray-members.html %%QT_DOCDIR%%/qtcore/qvarlengtharray.html %%QT_DOCDIR%%/qtcore/qvector-members.html %%QT_DOCDIR%%/qtcore/qvector.html %%QT_DOCDIR%%/qtcore/qvectoriterator-members.html %%QT_DOCDIR%%/qtcore/qvectoriterator.html %%QT_DOCDIR%%/qtcore/qversionnumber-members.html %%QT_DOCDIR%%/qtcore/qversionnumber.html %%QT_DOCDIR%%/qtcore/qwaitcondition-members.html %%QT_DOCDIR%%/qtcore/qwaitcondition.html %%QT_DOCDIR%%/qtcore/qweakpointer-members.html %%QT_DOCDIR%%/qtcore/qweakpointer-obsolete.html %%QT_DOCDIR%%/qtcore/qweakpointer.html %%QT_DOCDIR%%/qtcore/qwineventnotifier-members.html %%QT_DOCDIR%%/qtcore/qwineventnotifier-obsolete.html %%QT_DOCDIR%%/qtcore/qwineventnotifier.html %%QT_DOCDIR%%/qtcore/qwritelocker-members.html %%QT_DOCDIR%%/qtcore/qwritelocker.html %%QT_DOCDIR%%/qtcore/qxmlstreamattribute-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamattribute.html %%QT_DOCDIR%%/qtcore/qxmlstreamattributes-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamattributes.html %%QT_DOCDIR%%/qtcore/qxmlstreamentitydeclaration-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamentitydeclaration.html %%QT_DOCDIR%%/qtcore/qxmlstreamentityresolver-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamentityresolver.html %%QT_DOCDIR%%/qtcore/qxmlstreamnamespacedeclaration-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamnamespacedeclaration.html %%QT_DOCDIR%%/qtcore/qxmlstreamnotationdeclaration-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamnotationdeclaration.html %%QT_DOCDIR%%/qtcore/qxmlstreamreader-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamreader.html %%QT_DOCDIR%%/qtcore/qxmlstreamwriter-members.html %%QT_DOCDIR%%/qtcore/qxmlstreamwriter.html %%QT_DOCDIR%%/qtcore/resources.html %%QT_DOCDIR%%/qtcore/shared.html %%QT_DOCDIR%%/qtcore/signalsandslots.html %%QT_DOCDIR%%/qtcore/statemachine-api.html %%QT_DOCDIR%%/qtcore/statemachine.html %%QT_DOCDIR%%/qtcore/style/offline-simple.css %%QT_DOCDIR%%/qtcore/style/offline.css %%QT_DOCDIR%%/qtcore/timers.html %%QT_DOCDIR%%/qtdbus.qch %%QT_DOCDIR%%/qtdbus/examples-dbus.html %%QT_DOCDIR%%/qtdbus/examples-manifest.xml %%QT_DOCDIR%%/qtdbus/images/arrow_bc.png %%QT_DOCDIR%%/qtdbus/images/bgrContent.png %%QT_DOCDIR%%/qtdbus/images/btn_next.png %%QT_DOCDIR%%/qtdbus/images/btn_prev.png %%QT_DOCDIR%%/qtdbus/images/bullet_dn.png %%QT_DOCDIR%%/qtdbus/images/bullet_sq.png %%QT_DOCDIR%%/qtdbus/images/dbus-chat-example.png %%QT_DOCDIR%%/qtdbus/images/home.png %%QT_DOCDIR%%/qtdbus/images/ico_note.png %%QT_DOCDIR%%/qtdbus/images/ico_note_attention.png %%QT_DOCDIR%%/qtdbus/images/ico_out.png %%QT_DOCDIR%%/qtdbus/images/logo.png %%QT_DOCDIR%%/qtdbus/images/qurl-ftppath.png %%QT_DOCDIR%%/qtdbus/images/remotecontrolledcar-car-example.png %%QT_DOCDIR%%/qtdbus/qdbus.html %%QT_DOCDIR%%/qtdbus/qdbusabstractadaptor-members.html %%QT_DOCDIR%%/qtdbus/qdbusabstractadaptor-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusabstractadaptor.html %%QT_DOCDIR%%/qtdbus/qdbusabstractinterface-members.html %%QT_DOCDIR%%/qtdbus/qdbusabstractinterface-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusabstractinterface.html %%QT_DOCDIR%%/qtdbus/qdbusargument-members.html %%QT_DOCDIR%%/qtdbus/qdbusargument.html %%QT_DOCDIR%%/qtdbus/qdbusconnection-members.html %%QT_DOCDIR%%/qtdbus/qdbusconnection-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusconnection.html %%QT_DOCDIR%%/qtdbus/qdbusconnectioninterface-members.html %%QT_DOCDIR%%/qtdbus/qdbusconnectioninterface-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusconnectioninterface.html %%QT_DOCDIR%%/qtdbus/qdbuscontext-members.html %%QT_DOCDIR%%/qtdbus/qdbuscontext.html %%QT_DOCDIR%%/qtdbus/qdbusdeclaringsignals.html %%QT_DOCDIR%%/qtdbus/qdbusdeclaringslots.html %%QT_DOCDIR%%/qtdbus/qdbuserror-members.html %%QT_DOCDIR%%/qtdbus/qdbuserror.html %%QT_DOCDIR%%/qtdbus/qdbusinterface-members.html %%QT_DOCDIR%%/qtdbus/qdbusinterface-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusinterface.html %%QT_DOCDIR%%/qtdbus/qdbusmessage-members.html %%QT_DOCDIR%%/qtdbus/qdbusmessage.html %%QT_DOCDIR%%/qtdbus/qdbusobjectpath-members.html %%QT_DOCDIR%%/qtdbus/qdbusobjectpath.html %%QT_DOCDIR%%/qtdbus/qdbuspendingcall-members.html %%QT_DOCDIR%%/qtdbus/qdbuspendingcall.html %%QT_DOCDIR%%/qtdbus/qdbuspendingcallwatcher-members.html %%QT_DOCDIR%%/qtdbus/qdbuspendingcallwatcher-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbuspendingcallwatcher.html %%QT_DOCDIR%%/qtdbus/qdbuspendingreply-members.html %%QT_DOCDIR%%/qtdbus/qdbuspendingreply.html %%QT_DOCDIR%%/qtdbus/qdbusreply-members.html %%QT_DOCDIR%%/qtdbus/qdbusreply.html %%QT_DOCDIR%%/qtdbus/qdbusserver-members.html %%QT_DOCDIR%%/qtdbus/qdbusserver-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusserver.html %%QT_DOCDIR%%/qtdbus/qdbusservicewatcher-members.html %%QT_DOCDIR%%/qtdbus/qdbusservicewatcher-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusservicewatcher.html %%QT_DOCDIR%%/qtdbus/qdbussignature-members.html %%QT_DOCDIR%%/qtdbus/qdbussignature.html %%QT_DOCDIR%%/qtdbus/qdbustypesystem.html %%QT_DOCDIR%%/qtdbus/qdbusunixfiledescriptor-members.html %%QT_DOCDIR%%/qtdbus/qdbusunixfiledescriptor.html %%QT_DOCDIR%%/qtdbus/qdbusvariant-members.html %%QT_DOCDIR%%/qtdbus/qdbusvariant.html %%QT_DOCDIR%%/qtdbus/qdbusviewer.html %%QT_DOCDIR%%/qtdbus/qdbusvirtualobject-members.html %%QT_DOCDIR%%/qtdbus/qdbusvirtualobject-obsolete.html %%QT_DOCDIR%%/qtdbus/qdbusvirtualobject.html %%QT_DOCDIR%%/qtdbus/qdbusxml2cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-attribution-libdbus-1-headers.html %%QT_DOCDIR%%/qtdbus/qtdbus-chat-chat-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-chat-chat-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-chat-chat-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-chat-chatmainwindow-ui.html %%QT_DOCDIR%%/qtdbus/qtdbus-chat-chatsetnickname-ui.html %%QT_DOCDIR%%/qtdbus/qtdbus-chat-example.html %%QT_DOCDIR%%/qtdbus/qtdbus-chat-org-example-chat-xml.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexping-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexping-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexping-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpingpong-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpong-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpong-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-complexpong-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-example.html %%QT_DOCDIR%%/qtdbus/qtdbus-complexpingpong-ping-common-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-index.html %%QT_DOCDIR%%/qtdbus/qtdbus-listnames-example.html %%QT_DOCDIR%%/qtdbus/qtdbus-listnames-listnames-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-listnames-listnames-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-module.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-example.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-ping-common-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-ping-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-ping-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pingpong-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pong-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pong-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-pingpong-pong-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-car-xml.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-car-main-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-car-xml.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-cpp.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-h.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-controller-controller-ui.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-example.html %%QT_DOCDIR%%/qtdbus/qtdbus-remotecontrolledcar-remotecontrolledcar-pro.html %%QT_DOCDIR%%/qtdbus/qtdbus.index %%QT_DOCDIR%%/qtdbus/qtdbus.qhp %%QT_DOCDIR%%/qtdbus/qtdbus.qhp.sha1 %%QT_DOCDIR%%/qtdbus/style/offline-simple.css %%QT_DOCDIR%%/qtdbus/style/offline.css %%QT_DOCDIR%%/qtdbus/usingadaptors.html %%QT_DOCDIR%%/qtdesigner.qch %%QT_DOCDIR%%/qtdesigner/designer-buddy-mode.html %%QT_DOCDIR%%/qtdesigner/designer-connection-mode.html %%QT_DOCDIR%%/qtdesigner/designer-creating-custom-widgets-extensions.html %%QT_DOCDIR%%/qtdesigner/designer-creating-custom-widgets.html %%QT_DOCDIR%%/qtdesigner/designer-creating-mainwindows.html %%QT_DOCDIR%%/qtdesigner/designer-customizing-forms.html %%QT_DOCDIR%%/qtdesigner/designer-editing-mode.html %%QT_DOCDIR%%/qtdesigner/designer-layouts.html %%QT_DOCDIR%%/qtdesigner/designer-preview.html %%QT_DOCDIR%%/qtdesigner/designer-quick-start.html %%QT_DOCDIR%%/qtdesigner/designer-resources.html %%QT_DOCDIR%%/qtdesigner/designer-stylesheet.html %%QT_DOCDIR%%/qtdesigner/designer-tab-order.html %%QT_DOCDIR%%/qtdesigner/designer-to-know.html %%QT_DOCDIR%%/qtdesigner/designer-ui-file-format.html %%QT_DOCDIR%%/qtdesigner/designer-using-a-ui-file.html %%QT_DOCDIR%%/qtdesigner/designer-using-containers.html %%QT_DOCDIR%%/qtdesigner/designer-using-custom-widgets.html %%QT_DOCDIR%%/qtdesigner/designer-widget-mode.html %%QT_DOCDIR%%/qtdesigner/examples-designer.html %%QT_DOCDIR%%/qtdesigner/examples-manifest.xml %%QT_DOCDIR%%/qtdesigner/images/addressbook-tutorial-part3-labeled-layout.png %%QT_DOCDIR%%/qtdesigner/images/arrow_bc.png %%QT_DOCDIR%%/qtdesigner/images/bgrContent.png %%QT_DOCDIR%%/qtdesigner/images/btn_next.png %%QT_DOCDIR%%/qtdesigner/images/btn_prev.png %%QT_DOCDIR%%/qtdesigner/images/bullet_dn.png %%QT_DOCDIR%%/qtdesigner/images/bullet_sq.png %%QT_DOCDIR%%/qtdesigner/images/calculatorbuilder-example.png %%QT_DOCDIR%%/qtdesigner/images/calculatorform-example.png %%QT_DOCDIR%%/qtdesigner/images/containerextension-example.png %%QT_DOCDIR%%/qtdesigner/images/customwidgetplugin-example.png %%QT_DOCDIR%%/qtdesigner/images/designer-action-editor.png %%QT_DOCDIR%%/qtdesigner/images/designer-add-files-button.png %%QT_DOCDIR%%/qtdesigner/images/designer-add-resource-entry-button.png %%QT_DOCDIR%%/qtdesigner/images/designer-adding-dockwidget.png %%QT_DOCDIR%%/qtdesigner/images/designer-adding-menu-action.png %%QT_DOCDIR%%/qtdesigner/images/designer-adding-toolbar-action.png %%QT_DOCDIR%%/qtdesigner/images/designer-buddy-making.png %%QT_DOCDIR%%/qtdesigner/images/designer-buddy-mode.png %%QT_DOCDIR%%/qtdesigner/images/designer-buddy-tool.png %%QT_DOCDIR%%/qtdesigner/images/designer-choosing-form.png %%QT_DOCDIR%%/qtdesigner/images/designer-code-viewer.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-dialog.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-editing.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-editor.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-highlight.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-making.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-mode.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-to-form.png %%QT_DOCDIR%%/qtdesigner/images/designer-connection-tool.png %%QT_DOCDIR%%/qtdesigner/images/designer-containers-dockwidget.png %%QT_DOCDIR%%/qtdesigner/images/designer-containers-frame.png %%QT_DOCDIR%%/qtdesigner/images/designer-containers-groupbox.png %%QT_DOCDIR%%/qtdesigner/images/designer-containers-stackedwidget.png %%QT_DOCDIR%%/qtdesigner/images/designer-containers-tabwidget.png %%QT_DOCDIR%%/qtdesigner/images/designer-containers-toolbox.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry1.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry2.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry3.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu-entry4.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu1.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu2.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu3.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-menu4.png %%QT_DOCDIR%%/qtdesigner/images/designer-creating-toolbar.png %%QT_DOCDIR%%/qtdesigner/images/designer-dialog-preview.png %%QT_DOCDIR%%/qtdesigner/images/designer-dragging-onto-form.png %%QT_DOCDIR%%/qtdesigner/images/designer-edit-resource.png %%QT_DOCDIR%%/qtdesigner/images/designer-edit-resources-button.png %%QT_DOCDIR%%/qtdesigner/images/designer-editing-mode.png %%QT_DOCDIR%%/qtdesigner/images/designer-english-dialog.png %%QT_DOCDIR%%/qtdesigner/images/designer-file-menu.png %%QT_DOCDIR%%/qtdesigner/images/designer-form-layout-cleanlooks.png %%QT_DOCDIR%%/qtdesigner/images/designer-form-layout-macintosh.png %%QT_DOCDIR%%/qtdesigner/images/designer-form-layout-windowsXP.png %%QT_DOCDIR%%/qtdesigner/images/designer-form-layout.png %%QT_DOCDIR%%/qtdesigner/images/designer-form-layoutfunction.png %%QT_DOCDIR%%/qtdesigner/images/designer-form-settings.png %%QT_DOCDIR%%/qtdesigner/images/designer-form-viewcode.png %%QT_DOCDIR%%/qtdesigner/images/designer-french-dialog.png %%QT_DOCDIR%%/qtdesigner/images/designer-layout-inserting.png %%QT_DOCDIR%%/qtdesigner/images/designer-main-window.png %%QT_DOCDIR%%/qtdesigner/images/designer-manual-containerextension.png %%QT_DOCDIR%%/qtdesigner/images/designer-manual-membersheetextension.png %%QT_DOCDIR%%/qtdesigner/images/designer-manual-propertysheetextension.png %%QT_DOCDIR%%/qtdesigner/images/designer-manual-taskmenuextension.png %%QT_DOCDIR%%/qtdesigner/images/designer-multiple-screenshot.png %%QT_DOCDIR%%/qtdesigner/images/designer-object-inspector.png %%QT_DOCDIR%%/qtdesigner/images/designer-preview-deviceskin-selection.png %%QT_DOCDIR%%/qtdesigner/images/designer-preview-style-selection.png %%QT_DOCDIR%%/qtdesigner/images/designer-preview-style.png %%QT_DOCDIR%%/qtdesigner/images/designer-preview-stylesheet.png %%QT_DOCDIR%%/qtdesigner/images/designer-promoting-widgets.png %%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-add-dynamic.png %%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-configure.png %%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-remove-dynamic.png %%QT_DOCDIR%%/qtdesigner/images/designer-property-editor-toolbar.png %%QT_DOCDIR%%/qtdesigner/images/designer-property-editor.png %%QT_DOCDIR%%/qtdesigner/images/designer-reload-resources-button.png %%QT_DOCDIR%%/qtdesigner/images/designer-remove-resource-entry-button.png %%QT_DOCDIR%%/qtdesigner/images/designer-removing-toolbar-action.png %%QT_DOCDIR%%/qtdesigner/images/designer-resource-browser.png %%QT_DOCDIR%%/qtdesigner/images/designer-resource-selector.png %%QT_DOCDIR%%/qtdesigner/images/designer-resources-editing.png %%QT_DOCDIR%%/qtdesigner/images/designer-resources-using.png %%QT_DOCDIR%%/qtdesigner/images/designer-screenshot.png %%QT_DOCDIR%%/qtdesigner/images/designer-selecting-widget.png %%QT_DOCDIR%%/qtdesigner/images/designer-set-layout.png %%QT_DOCDIR%%/qtdesigner/images/designer-set-layout2.png %%QT_DOCDIR%%/qtdesigner/images/designer-splitter-layout.png %%QT_DOCDIR%%/qtdesigner/images/designer-stylesheet-options.png %%QT_DOCDIR%%/qtdesigner/images/designer-stylesheet-usage.png %%QT_DOCDIR%%/qtdesigner/images/designer-tab-order-mode.png %%QT_DOCDIR%%/qtdesigner/images/designer-tab-order-tool.png %%QT_DOCDIR%%/qtdesigner/images/designer-widget-box.png %%QT_DOCDIR%%/qtdesigner/images/designer-widget-morph.png %%QT_DOCDIR%%/qtdesigner/images/designer-widget-tool.png %%QT_DOCDIR%%/qtdesigner/images/directapproach-calculatorform.png %%QT_DOCDIR%%/qtdesigner/images/home.png %%QT_DOCDIR%%/qtdesigner/images/ico_note.png %%QT_DOCDIR%%/qtdesigner/images/ico_note_attention.png %%QT_DOCDIR%%/qtdesigner/images/ico_out.png %%QT_DOCDIR%%/qtdesigner/images/logo.png %%QT_DOCDIR%%/qtdesigner/images/qtdesignerextensions.png %%QT_DOCDIR%%/qtdesigner/images/qtdesignerscreenshot.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-arrangement.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-configure-connection1.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-configure-connection2.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-final-layout.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-form-gridLayout.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-no-toplevel-layout.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-property-editing.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-screenshot.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-selectForLayout.png %%QT_DOCDIR%%/qtdesigner/images/rgbController-signalsAndSlots.png %%QT_DOCDIR%%/qtdesigner/images/taskmenuextension-dialog.png %%QT_DOCDIR%%/qtdesigner/images/taskmenuextension-example-faded.png %%QT_DOCDIR%%/qtdesigner/images/taskmenuextension-menu.png %%QT_DOCDIR%%/qtdesigner/images/worldtimeclock-connection.png %%QT_DOCDIR%%/qtdesigner/images/worldtimeclock-signalandslot.png %%QT_DOCDIR%%/qtdesigner/images/worldtimeclockbuilder-example.png %%QT_DOCDIR%%/qtdesigner/images/worldtimeclockplugin-example.png %%QT_DOCDIR%%/qtdesigner/qabstractextensionfactory-members.html %%QT_DOCDIR%%/qtdesigner/qabstractextensionfactory.html %%QT_DOCDIR%%/qtdesigner/qabstractextensionmanager-members.html %%QT_DOCDIR%%/qtdesigner/qabstractextensionmanager.html %%QT_DOCDIR%%/qtdesigner/qabstractformbuilder-members.html %%QT_DOCDIR%%/qtdesigner/qabstractformbuilder.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actiondata-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actiondata.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actioneditor-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actioneditor.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actioninsertioncommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actioninsertioncommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionlistview-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionlistview.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionmodel-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionmodel.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionrepositorymimedata-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionrepositorymimedata.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actiontreeview-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actiontreeview.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionview-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-actionview.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addactioncommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addactioncommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addconnectioncommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addconnectioncommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addcontainerwidgetpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addcontainerwidgetpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-adddockwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-adddockwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-adddynamicpropertycommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-adddynamicpropertycommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addmenuactioncommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addmenuactioncommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addstackedwidgetpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addstackedwidgetpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addtabpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addtabpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addtoolbarcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addtoolbarcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addtoolboxpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-addtoolboxpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-adjustwidgetsizecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-adjustwidgetsizecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-breaklayoutcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-breaklayoutcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cetypes-endpoint-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cetypes-endpoint.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cetypes-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cetypes.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changecurrentpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changecurrentpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changeformlayoutitemrolecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changeformlayoutitemrolecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changelayoutitemgeometry-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changelayoutitemgeometry.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changelistcontentscommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changelistcontentscommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changetablecontentscommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changetablecontentscommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changetreecontentscommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changetreecontentscommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changezordercommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-changezordercommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-codedialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-codedialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-connection-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-connection.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-connectionedit-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-connectionedit.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-containerwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-containerwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-createmenubarcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-createmenubarcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-createstatusbarcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-createstatusbarcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-createsubmenucommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-createsubmenucommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-csshighlighter-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-csshighlighter.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cursorselectionstate-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-cursorselectionstate.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deleteconnectionscommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deleteconnectionscommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletecontainerwidgetpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletecontainerwidgetpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletemenubarcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletemenubarcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletestackedwidgetpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletestackedwidgetpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletestatusbarcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletestatusbarcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletetabpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletetabpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletetoolbarcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletetoolbarcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletetoolboxpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletetoolboxpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletewidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deletewidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-demotefromcustomwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-demotefromcustomwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designericoncache-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designericoncache.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designermetaenum-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designermetaenum.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designermetaflags-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designermetaflags.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designerpixmapcache-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-designerpixmapcache.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deviceprofile-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-deviceprofile.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-dialoggui-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-dialoggui.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-dockwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-dockwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-extensionfactory-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-extensionfactory.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-formbuilderclipboard-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-formbuilderclipboard.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-formlayoutmenu-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-formlayoutmenu.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-formwindowbase-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-formwindowbase.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-grid-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-grid.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-gridpanel-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-gridpanel.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-htmlhighlighter-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-htmlhighlighter.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-iconselector-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-iconselector.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-iconthemeeditor-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-iconthemeeditor.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-insertactionintocommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-insertactionintocommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-insertwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-insertwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-invisiblewidget-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-invisiblewidget.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-itemdata-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-itemdata.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-languageresourcedialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-languageresourcedialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutalignmentcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutalignmentcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layouthelper-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layouthelper.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutinfo-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutinfo.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutproperties-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-layoutproperties.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-listcontents-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-listcontents.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-lowerwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-lowerwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-managewidgetcommandhelper-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-managewidgetcommandhelper.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-menuactioncommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-menuactioncommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-metadatabase-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-metadatabase.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-metadatabaseitem-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-metadatabaseitem.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-metaenum-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-metaenum.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-morphlayoutcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-morphlayoutcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-morphmenu-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-morphmenu.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-movestackedwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-movestackedwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-movetabpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-movetabpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-movetoolboxpagecommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-movetoolboxpagecommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newactiondialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newactiondialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newformwidget-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newformwidget.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newformwidgetformbuilder-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newformwidgetformbuilder.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newpromotedclasspanel-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-newpromotedclasspanel.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-orderdialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-orderdialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-plaintexteditordialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-plaintexteditordialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-plugindialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-plugindialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-previewconfiguration-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-previewconfiguration.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-previewconfigurationwidget-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-previewconfigurationwidget.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-previewmanager-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-previewmanager.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotetocustomwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotetocustomwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotionmodel-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotionmodel-modeldata-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotionmodel-modeldata.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotionmodel.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotiontaskmenu-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-promotiontaskmenu.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertyhelper-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertyhelper.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertylineedit-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertylineedit.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertylistcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertylistcommand-propertydescription-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertylistcommand-propertydescription.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertylistcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetenumvalue-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetenumvalue.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetflagvalue-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetflagvalue.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheeticonvalue-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheeticonvalue.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetkeysequencevalue-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetkeysequencevalue.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetpixmapvalue-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetpixmapvalue.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetstringlistvalue-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetstringlistvalue.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetstringvalue-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheetstringvalue.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheettranslatabledata-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-propertysheettranslatabledata.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerdnditem-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerdnditem.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformbuilder-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformbuilder.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformeditorcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformeditorcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformwindowcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformwindowcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformwindowmanager-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformwindowmanager-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerformwindowmanager.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerintrospection-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerintrospection.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignermimedata-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignermimedata.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerobjectinspector-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerobjectinspector.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerpromotion-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerpromotion.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerpromotiondialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerpromotiondialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerpropertyeditor-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerpropertyeditor.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignersharedsettings-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignersharedsettings.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignertaskmenu-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignertaskmenu.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerwidgetbox-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerwidgetbox.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerwidgetitem-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerwidgetitem.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerwidgetiteminstaller-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qdesignerwidgetiteminstaller.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qeditorformbuilder-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qeditorformbuilder.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qlayoutsupport-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qlayoutsupport.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qsimpleresource-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-qsimpleresource.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-raisewidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-raisewidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removeactioncommand-actiondataitem-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removeactioncommand-actiondataitem.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removeactioncommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removeactioncommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removeactionfromcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removeactionfromcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removedynamicpropertycommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removedynamicpropertycommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removemenuactioncommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-removemenuactioncommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-reparentwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-reparentwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-resetpropertycommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-resetpropertycommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-richtexteditordialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-richtexteditordialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-selection-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-selection.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-selectsignaldialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-selectsignaldialog-method-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-selectsignaldialog-method.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-selectsignaldialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-setpropertycommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-setpropertycommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-sheetdelegate-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-sheetdelegate.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signalslotdialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signalslotdialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signalslotdialogdata-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signalslotdialogdata.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signaturemodel-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signaturemodel.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signaturepanel-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-signaturepanel.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-simplifylayoutcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-simplifylayoutcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-specialmenuaction-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-specialmenuaction.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stackedwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stackedwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stylesheeteditor-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stylesheeteditor.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stylesheeteditordialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stylesheeteditordialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stylesheetpropertyeditordialog-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-stylesheetpropertyeditordialog.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-sub-qtdesigner.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-tablewidgetcontents-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-tablewidgetcontents.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-tabordercommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-tabordercommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-tabwidgetcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-tabwidgetcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-textpropertyeditor-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-textpropertyeditor.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-toolbareventfilter-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-toolbareventfilter.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-toolboxcommand-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-toolboxcommand.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-treewidgetcontents-itemcontents-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-treewidgetcontents-itemcontents.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-treewidgetcontents-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-treewidgetcontents.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-updateblocker-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-updateblocker.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-widgetdatabase-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-widgetdatabase.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-widgetdatabaseitem-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-widgetdatabaseitem.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-widgetfactory-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-widgetfactory.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoommenu-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoommenu.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoomproxywidget-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoomproxywidget.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoomview-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoomview.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoomwidget-members.html %%QT_DOCDIR%%/qtdesigner/qdesigner-internal-zoomwidget.html %%QT_DOCDIR%%/qtdesigner/qdesigneractioneditorinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesigneractioneditorinterface-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesigneractioneditorinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignercontainerextension-members.html %%QT_DOCDIR%%/qtdesigner/qdesignercontainerextension.html %%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetcollectioninterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetcollectioninterface.html %%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignercustomwidgetinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignerdynamicpropertysheetextension-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerdynamicpropertysheetextension.html %%QT_DOCDIR%%/qtdesigner/qdesignerformeditorinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerformeditorinterface-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesignerformeditorinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowcursorinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowcursorinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowinterface-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowmanagerinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowmanagerinterface-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesignerformwindowmanagerinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignermembersheetextension-members.html %%QT_DOCDIR%%/qtdesigner/qdesignermembersheetextension.html %%QT_DOCDIR%%/qtdesigner/qdesignerobjectinspectorinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerobjectinspectorinterface-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesignerobjectinspectorinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignerpropertyeditorinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerpropertyeditorinterface-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesignerpropertyeditorinterface.html %%QT_DOCDIR%%/qtdesigner/qdesignerpropertysheetextension-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerpropertysheetextension.html %%QT_DOCDIR%%/qtdesigner/qdesignertaskmenuextension-members.html %%QT_DOCDIR%%/qtdesigner/qdesignertaskmenuextension.html %%QT_DOCDIR%%/qtdesigner/qdesignerwidgetboxinterface-members.html %%QT_DOCDIR%%/qtdesigner/qdesignerwidgetboxinterface-obsolete.html %%QT_DOCDIR%%/qtdesigner/qdesignerwidgetboxinterface.html %%QT_DOCDIR%%/qtdesigner/qextensionfactory-members.html %%QT_DOCDIR%%/qtdesigner/qextensionfactory-obsolete.html %%QT_DOCDIR%%/qtdesigner/qextensionfactory.html %%QT_DOCDIR%%/qtdesigner/qextensionmanager-members.html %%QT_DOCDIR%%/qtdesigner/qextensionmanager-obsolete.html %%QT_DOCDIR%%/qtdesigner/qextensionmanager.html %%QT_DOCDIR%%/qtdesigner/qformbuilder-members.html %%QT_DOCDIR%%/qtdesigner/qformbuilder.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorbuilder-pro.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorbuilder-qrc.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorform-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorform-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-calculatorform-ui.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-example.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorbuilder-main-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-pro.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-calculatorform-ui.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-example.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-calculatorform-main-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-components.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-containerextension-pro.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-example.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidget-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidget-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetcontainerextension-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetcontainerextension-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetextensionfactory-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetextensionfactory-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetplugin-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-containerextension-multipagewidgetplugin-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-analogclock-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-analogclock-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-customwidgetplugin-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-customwidgetplugin-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-customwidgetplugin-pro.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-customwidgetplugin-example.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-index.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-manual.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-module.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-example.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-taskmenuextension-pro.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoe-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoe-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoedialog-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoedialog-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoeplugin-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoeplugin-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoetaskmenu-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-taskmenuextension-tictactoetaskmenu-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-example.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-form-ui.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-main-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-worldtimeclockbuilder-pro.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockbuilder-worldtimeclockbuilder-qrc.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-example.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclock-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclock-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclockplugin-cpp.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclockplugin-h.html %%QT_DOCDIR%%/qtdesigner/qtdesigner-worldtimeclockplugin-worldtimeclockplugin-pro.html %%QT_DOCDIR%%/qtdesigner/qtdesigner.index %%QT_DOCDIR%%/qtdesigner/qtdesigner.qhp %%QT_DOCDIR%%/qtdesigner/qtdesigner.qhp.sha1 %%QT_DOCDIR%%/qtdesigner/style/offline-simple.css %%QT_DOCDIR%%/qtdesigner/style/offline.css %%QT_DOCDIR%%/qtdistancefieldgenerator.qch %%QT_DOCDIR%%/qtdistancefieldgenerator/images/arrow_bc.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/bgrContent.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/btn_next.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/btn_prev.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/bullet_dn.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/bullet_sq.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/distancefieldgenerator.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/home.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/ico_note.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/ico_note_attention.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/ico_out.png %%QT_DOCDIR%%/qtdistancefieldgenerator/images/logo.png %%QT_DOCDIR%%/qtdistancefieldgenerator/qtdistancefieldgenerator-index.html %%QT_DOCDIR%%/qtdistancefieldgenerator/qtdistancefieldgenerator.index %%QT_DOCDIR%%/qtdistancefieldgenerator/qtdistancefieldgenerator.qhp %%QT_DOCDIR%%/qtdistancefieldgenerator/qtdistancefieldgenerator.qhp.sha1 %%QT_DOCDIR%%/qtdistancefieldgenerator/style/offline-simple.css %%QT_DOCDIR%%/qtdistancefieldgenerator/style/offline.css %%QT_DOCDIR%%/qtdoc.qch %%QT_DOCDIR%%/qtdoc/accelerators.html %%QT_DOCDIR%%/qtdoc/accessibility.html %%QT_DOCDIR%%/qtdoc/accessible-qtquick.html %%QT_DOCDIR%%/qtdoc/accessible-qwidget.html %%QT_DOCDIR%%/qtdoc/accessible.html %%QT_DOCDIR%%/qtdoc/activeqt-idc.html %%QT_DOCDIR%%/qtdoc/activeqt-testcon.html %%QT_DOCDIR%%/qtdoc/activeqt.html %%QT_DOCDIR%%/qtdoc/all-examples.html %%QT_DOCDIR%%/qtdoc/android-3rdparty-libs.html %%QT_DOCDIR%%/qtdoc/android-getting-started.html %%QT_DOCDIR%%/qtdoc/android-openssl-support.html %%QT_DOCDIR%%/qtdoc/android-platform-notes.html %%QT_DOCDIR%%/qtdoc/android-publishing-to-googleplay.html %%QT_DOCDIR%%/qtdoc/android-runtime-licensing-notes.html %%QT_DOCDIR%%/qtdoc/android-services.html %%QT_DOCDIR%%/qtdoc/android.html %%QT_DOCDIR%%/qtdoc/annotated.html %%QT_DOCDIR%%/qtdoc/appicon.html %%QT_DOCDIR%%/qtdoc/atomic-operations.html %%QT_DOCDIR%%/qtdoc/best-practices.html %%QT_DOCDIR%%/qtdoc/bughowto.html %%QT_DOCDIR%%/qtdoc/build-sources.html %%QT_DOCDIR%%/qtdoc/classes.html %%QT_DOCDIR%%/qtdoc/classesandfunctions.html %%QT_DOCDIR%%/qtdoc/cmake-manual.html %%QT_DOCDIR%%/qtdoc/commerciallicense.html %%QT_DOCDIR%%/qtdoc/configure-options.html %%QT_DOCDIR%%/qtdoc/debug.html %%QT_DOCDIR%%/qtdoc/demos-manifest.xml %%QT_DOCDIR%%/qtdoc/deployment-android.html %%QT_DOCDIR%%/qtdoc/deployment-plugins.html %%QT_DOCDIR%%/qtdoc/deployment.html %%QT_DOCDIR%%/qtdoc/desktop-integration.html %%QT_DOCDIR%%/qtdoc/embedded-linux.html %%QT_DOCDIR%%/qtdoc/examples-activeqt.html %%QT_DOCDIR%%/qtdoc/examples-android.html %%QT_DOCDIR%%/qtdoc/examples-animation.html %%QT_DOCDIR%%/qtdoc/examples-draganddrop.html %%QT_DOCDIR%%/qtdoc/examples-gestures.html %%QT_DOCDIR%%/qtdoc/examples-ios.html %%QT_DOCDIR%%/qtdoc/examples-ipc.html %%QT_DOCDIR%%/qtdoc/examples-layouts.html %%QT_DOCDIR%%/qtdoc/examples-license.html %%QT_DOCDIR%%/qtdoc/examples-manifest.xml %%QT_DOCDIR%%/qtdoc/examples-sql.html %%QT_DOCDIR%%/qtdoc/examples-statemachine.html %%QT_DOCDIR%%/qtdoc/examples-threadandconcurrent.html %%QT_DOCDIR%%/qtdoc/examples-widgets-tools.html %%QT_DOCDIR%%/qtdoc/examples-xml.html %%QT_DOCDIR%%/qtdoc/exceptionsafety.html %%QT_DOCDIR%%/qtdoc/fdl.html %%QT_DOCDIR%%/qtdoc/functions.html %%QT_DOCDIR%%/qtdoc/gettingstarted.html %%QT_DOCDIR%%/qtdoc/gpl.html %%QT_DOCDIR%%/qtdoc/groups.html %%QT_DOCDIR%%/qtdoc/hierarchy.html %%QT_DOCDIR%%/qtdoc/highdpi.html %%QT_DOCDIR%%/qtdoc/i18n-plural-rules.html %%QT_DOCDIR%%/qtdoc/i18n-source-translation.html %%QT_DOCDIR%%/qtdoc/i18n.html %%QT_DOCDIR%%/qtdoc/images/I5jasWrsxT0.jpg %%QT_DOCDIR%%/qtdoc/images/accessibleobjecttree.png %%QT_DOCDIR%%/qtdoc/images/activeqt-examples.png %%QT_DOCDIR%%/qtdoc/images/addalarms.png %%QT_DOCDIR%%/qtdoc/images/alarms2.png %%QT_DOCDIR%%/qtdoc/images/alarms3.png %%QT_DOCDIR%%/qtdoc/images/animatedtiles_snapshot.png %%QT_DOCDIR%%/qtdoc/images/animation-examples.png %%QT_DOCDIR%%/qtdoc/images/applicationwindow.png %%QT_DOCDIR%%/qtdoc/images/arrow_bc.png %%QT_DOCDIR%%/qtdoc/images/bgrContent.png %%QT_DOCDIR%%/qtdoc/images/btn_next.png %%QT_DOCDIR%%/qtdoc/images/btn_prev.png %%QT_DOCDIR%%/qtdoc/images/bullet_dn.png %%QT_DOCDIR%%/qtdoc/images/bullet_sq.png %%QT_DOCDIR%%/qtdoc/images/coffee_machine_emptycup.png %%QT_DOCDIR%%/qtdoc/images/coffee_machine_modify.png %%QT_DOCDIR%%/qtdoc/images/coffee_machine_overview.png %%QT_DOCDIR%%/qtdoc/images/coffee_machine_selection.png %%QT_DOCDIR%%/qtdoc/images/controlstexteditor_designer.png %%QT_DOCDIR%%/qtdoc/images/controlstexteditor_main.png %%QT_DOCDIR%%/qtdoc/images/controlstexteditor_navigator.png %%QT_DOCDIR%%/qtdoc/images/controlstexteditor_newproperties.png %%QT_DOCDIR%%/qtdoc/images/controlstexteditor_openproperties.png %%QT_DOCDIR%%/qtdoc/images/controlstexteditor_rowproperties.png %%QT_DOCDIR%%/qtdoc/images/deployment-mac-application.png %%QT_DOCDIR%%/qtdoc/images/deployment-mac-bundlestructure.png %%QT_DOCDIR%%/qtdoc/images/deployment-windows-depends.png %%QT_DOCDIR%%/qtdoc/images/detailscreen.png %%QT_DOCDIR%%/qtdoc/images/draganddrop-examples.png %%QT_DOCDIR%%/qtdoc/images/flickr_application.png %%QT_DOCDIR%%/qtdoc/images/home.png %%QT_DOCDIR%%/qtdoc/images/ico_note.png %%QT_DOCDIR%%/qtdoc/images/ico_note_attention.png %%QT_DOCDIR%%/qtdoc/images/ico_out.png %%QT_DOCDIR%%/qtdoc/images/icon_QtCreator_78x78px.png %%QT_DOCDIR%%/qtdoc/images/icon_Qt_78x78px.png %%QT_DOCDIR%%/qtdoc/images/icon_Tools.png %%QT_DOCDIR%%/qtdoc/images/kernel-settings.png %%QT_DOCDIR%%/qtdoc/images/layout-examples.png %%QT_DOCDIR%%/qtdoc/images/logo.png %%QT_DOCDIR%%/qtdoc/images/mainscreen.png %%QT_DOCDIR%%/qtdoc/images/mob-idle.png %%QT_DOCDIR%%/qtdoc/images/ok.png %%QT_DOCDIR%%/qtdoc/images/open-project.png %%QT_DOCDIR%%/qtdoc/images/project-view-2.png %%QT_DOCDIR%%/qtdoc/images/project-view.png %%QT_DOCDIR%%/qtdoc/images/project-wizard.png -%%QT_DOCDIR%%/qtdoc/images/qml-extending-types.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-animation.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-integratingjs.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-layouts-anchors.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-layouts-direct.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-layouts-positioners.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-text.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-visual-opacity.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-visual-rectangles.png %%QT_DOCDIR%%/qtdoc/images/qml-uses-visual-transforms.png %%QT_DOCDIR%%/qtdoc/images/qt-codesample.png %%QT_DOCDIR%%/qtdoc/images/qt-creator-gs.png %%QT_DOCDIR%%/qtdoc/images/qt-embedded-fontfeatures.png %%QT_DOCDIR%%/qtdoc/images/qt5_everywhere_demo.jpg %%QT_DOCDIR%%/qtdoc/images/qt5_graphicaleffects.jpg %%QT_DOCDIR%%/qtdoc/images/qt5_particles.jpg %%QT_DOCDIR%%/qtdoc/images/qt5_shadereffect.jpg %%QT_DOCDIR%%/qtdoc/images/qt5_video.jpg %%QT_DOCDIR%%/qtdoc/images/qt5_widgets.jpg %%QT_DOCDIR%%/qtdoc/images/qtcreator-run.png %%QT_DOCDIR%%/qtdoc/images/qtlocation-mapviewer-demo.jpg %%QT_DOCDIR%%/qtdoc/images/qtpositioning_weatherinfo_ex.jpg %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-calqlatr.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-clocks-small.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-maroon-med-1.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-maroon-med-2.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-maroon-med-3.jpg %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-maroon-med-4.jpg %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-maroon-med-5.jpg %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-maroon-med-6.jpg %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-photosurface-small.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-photoviewer-small.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-rssnews-small.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-samegame-med-1.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-samegame-med-2.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-stocqt.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-tweetsearch-med-1.png %%QT_DOCDIR%%/qtdoc/images/qtquick-demo-tweetsearch-med-2.png %%QT_DOCDIR%%/qtdoc/images/qtquickcontrols2-material.png %%QT_DOCDIR%%/qtdoc/images/qtsensors_accelbubble_ex.jpg %%QT_DOCDIR%%/qtdoc/images/qtwebengine_quicknanobrowser.jpg %%QT_DOCDIR%%/qtdoc/images/scalability-gridlayout.png %%QT_DOCDIR%%/qtdoc/images/select-item-to-add.png %%QT_DOCDIR%%/qtdoc/images/session.png %%QT_DOCDIR%%/qtdoc/images/sql-examples.png %%QT_DOCDIR%%/qtdoc/images/thread-examples.png %%QT_DOCDIR%%/qtdoc/images/threadsandobjects.png %%QT_DOCDIR%%/qtdoc/images/threadvisual-example.png %%QT_DOCDIR%%/qtdoc/images/tool-examples.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/calqlatr/content/images/paper-edge-left.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/calqlatr/content/images/paper-edge-right.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/calqlatr/content/images/paper-grip.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/arrow.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/background.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/center.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/clock-night.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/clock.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/hour.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/minute.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/quit.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/clocks/content/second.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/coffee_cup_large.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/coffee_cup_outline.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/cup elements/coffee_cup_back.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/cup elements/coffee_cup_coverplate.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/cup elements/coffee_cup_front.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/liquids/liquid_coffee.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/liquids/liquid_foam.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/cup structure/liquids/liquid_milk.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/coffees/Americano.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/coffees/Espresso.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/coffees/Latte.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/coffees/Macchiato.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/coffees/cappucino.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/contents/coffee.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/contents/milk.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/icons/contents/sugar.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/ui controls/buttons/back/white.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/ui controls/buttons/go/white.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/coffee/images/ui controls/line.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/background.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/bomb-action.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/bomb-idle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/bomb.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/button-help.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/button-play.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/catch-action.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/catch.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/cloud.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/currency.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/dialog-bomb.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/dialog-factory.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/dialog-melee.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/dialog-pointer.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/dialog-shooter.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/dialog.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/factory-action.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/factory-idle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/factory.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/grid.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/help.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/lifes.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/logo-bubble.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/logo-fish.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/logo.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/melee-action.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/melee-idle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/melee.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/mob-idle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/mob.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/points.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/projectile-action.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/projectile.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/scores.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/shooter-action.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/shooter-idle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/shooter.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/sunlight.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/text-1.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/text-2.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/text-3.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/text-blank.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/text-gameover.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/text-go.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/maroon/content/gfx/wave.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/photosurface/resources/folder.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/photosurface/resources/icon.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/photoviewer/PhotoViewerCore/images/box-shadow.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/photoviewer/PhotoViewerCore/images/busy.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/photoviewer/PhotoViewerCore/images/cardboard.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Asia.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Business.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Entertainment.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Europe.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Health.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Politics.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Science.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Sports.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/Technology.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/TopStories.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/USNational.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/World.jpg %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/btn_close.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/busy.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/rssnews/content/images/scrollbar.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/background-puzzle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/background.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/bar.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/blue-puzzle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/blue.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/bubble-highscore.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/bubble-puzzle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-game-1.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-game-2.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-game-3.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-game-4.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-game-new.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-menu.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-puzzle-next.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/but-quit.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/green-puzzle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/green.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/icon-fail.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/icon-ok.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/icon-time.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/logo-a.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/logo-e.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/logo-g.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/logo-m.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/logo-s.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/logo.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/particle-brick.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/particle-paint.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/particle-smoke.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/red-puzzle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/red.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-highscore-new.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-highscore.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-no-winner.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-p1-go.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-p1-won.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-p1.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-p2-go.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-p2-won.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/text-p2.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/yellow-puzzle.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/samegame/content/gfx/yellow.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/stocqt/content/images/icon-left-arrow.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/stocqt/content/images/wheel-touch.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/stocqt/content/images/wheel.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/tweetsearch/content/resources/anonymous.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/tweetsearch/content/resources/bird-anim-sprites.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/tweetsearch/content/resources/icon-clear.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/tweetsearch/content/resources/icon-loading.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/tweetsearch/content/resources/icon-refresh.png %%QT_DOCDIR%%/qtdoc/images/used-in-examples/demos/tweetsearch/content/resources/icon-search.png %%QT_DOCDIR%%/qtdoc/images/xml-examples.png %%QT_DOCDIR%%/qtdoc/index.html %%QT_DOCDIR%%/qtdoc/integrity-building-monolith.html %%QT_DOCDIR%%/qtdoc/integrity-building-qt-for-imx6quad-board.html %%QT_DOCDIR%%/qtdoc/integrity-building-u-boot-image.html %%QT_DOCDIR%%/qtdoc/integrity-creating-bootable-sd-card.html %%QT_DOCDIR%%/qtdoc/integrity-installing-dependencies.html %%QT_DOCDIR%%/qtdoc/integrity-monolith-project-tutorial.html %%QT_DOCDIR%%/qtdoc/integrity-preparing-bsp-for-imx6quad-board.html %%QT_DOCDIR%%/qtdoc/integrity-preparing-u-boot.html %%QT_DOCDIR%%/qtdoc/integrity.html %%QT_DOCDIR%%/qtdoc/internationalization.html %%QT_DOCDIR%%/qtdoc/ios-building-from-source.html %%QT_DOCDIR%%/qtdoc/ios-platform-notes.html %%QT_DOCDIR%%/qtdoc/ios.html %%QT_DOCDIR%%/qtdoc/ipc.html %%QT_DOCDIR%%/qtdoc/known-issues.html %%QT_DOCDIR%%/qtdoc/lgpl.html %%QT_DOCDIR%%/qtdoc/license-changes.html %%QT_DOCDIR%%/qtdoc/licenses-used-in-qt.html %%QT_DOCDIR%%/qtdoc/licensing.html %%QT_DOCDIR%%/qtdoc/linux-building.html %%QT_DOCDIR%%/qtdoc/linux-deployment.html %%QT_DOCDIR%%/qtdoc/linux-issues.html %%QT_DOCDIR%%/qtdoc/linux-requirements.html %%QT_DOCDIR%%/qtdoc/linux.html %%QT_DOCDIR%%/qtdoc/macos-building.html %%QT_DOCDIR%%/qtdoc/macos-deployment.html %%QT_DOCDIR%%/qtdoc/macos-issues.html %%QT_DOCDIR%%/qtdoc/macos.html %%QT_DOCDIR%%/qtdoc/mobiledevelopment.html %%QT_DOCDIR%%/qtdoc/moc.html %%QT_DOCDIR%%/qtdoc/modules-cpp.html %%QT_DOCDIR%%/qtdoc/modules-qml.html %%QT_DOCDIR%%/qtdoc/modules.html %%QT_DOCDIR%%/qtdoc/namespaces.html %%QT_DOCDIR%%/qtdoc/newclasses51.html %%QT_DOCDIR%%/qtdoc/newclasses510.html %%QT_DOCDIR%%/qtdoc/newclasses511.html %%QT_DOCDIR%%/qtdoc/newclasses512.html %%QT_DOCDIR%%/qtdoc/newclasses52.html %%QT_DOCDIR%%/qtdoc/newclasses53.html %%QT_DOCDIR%%/qtdoc/newclasses54.html %%QT_DOCDIR%%/qtdoc/newclasses55.html %%QT_DOCDIR%%/qtdoc/newclasses56.html %%QT_DOCDIR%%/qtdoc/newclasses57.html %%QT_DOCDIR%%/qtdoc/newclasses58.html %%QT_DOCDIR%%/qtdoc/newclasses59.html %%QT_DOCDIR%%/qtdoc/obsoleteclasses.html %%QT_DOCDIR%%/qtdoc/obsoleteqmltypes.html %%QT_DOCDIR%%/qtdoc/opensourcelicense.html %%QT_DOCDIR%%/qtdoc/overviews-main.html %%QT_DOCDIR%%/qtdoc/overviews.html %%QT_DOCDIR%%/qtdoc/plugins-howto.html %%QT_DOCDIR%%/qtdoc/porting-to-android.html %%QT_DOCDIR%%/qtdoc/porting-to-ios.html %%QT_DOCDIR%%/qtdoc/portingcppapp.html %%QT_DOCDIR%%/qtdoc/portingguide.html %%QT_DOCDIR%%/qtdoc/portingqmlapp.html %%QT_DOCDIR%%/qtdoc/qml-codingconventions.html %%QT_DOCDIR%%/qtdoc/qml-glossary.html %%QT_DOCDIR%%/qtdoc/qmlapplications.html %%QT_DOCDIR%%/qtdoc/qmlbasictypes.html %%QT_DOCDIR%%/qtdoc/qmlfirststeps.html %%QT_DOCDIR%%/qtdoc/qmltypes.html %%QT_DOCDIR%%/qtdoc/qnx.html %%QT_DOCDIR%%/qtdoc/qpa.html %%QT_DOCDIR%%/qtdoc/qt-activex.html %%QT_DOCDIR%%/qtdoc/qt-attribution-cmake-macros.html %%QT_DOCDIR%%/qtdoc/qt-attribution-llvm.html %%QT_DOCDIR%%/qtdoc/qt-attribution-llvmpipe.html %%QT_DOCDIR%%/qtdoc/qt-conf.html %%QT_DOCDIR%%/qtdoc/qt-embedded-fonts.html %%QT_DOCDIR%%/qtdoc/qt-embedded-kmap2qmap.html %%QT_DOCDIR%%/qtdoc/qt-embedded-makeqpf.html %%QT_DOCDIR%%/qtdoc/qt-gui-concepts.html %%QT_DOCDIR%%/qtdoc/qt5-intro.html %%QT_DOCDIR%%/qtdoc/qtconcurrent-mtexamples.html %%QT_DOCDIR%%/qtdoc/qtconcurrentexamples.html %%QT_DOCDIR%%/qtdoc/qtdoc-attribution-coffeeexample-titillium.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-calqlatr-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-calqlatr-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-calqlatr-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-calqlatr-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-content-button-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-content-calculator-js.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-content-display-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-content-numberpad-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-calqlatr-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-clocks-clocks-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-clocks-clocks-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-clocks-clocks-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-clocks-clocks-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-clocks-content-clock-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-clocks-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-clocks-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-applicationflow-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-applicationflowform-ui-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-brewing-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-brewingform-ui-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-choosingcoffee-ui-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-coffee-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-coffeebutton-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-cup-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-cupform-ui-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-emptycup-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-emptycupform-ui-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-imports-coffee-constants-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-imports-coffee-qmldir.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-main-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-navigationbutton-ui-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-qml-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-sidebar-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-coffee-sidebarform-ui-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-buildbutton-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-gamecanvas-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-gameoverscreen-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-infobar-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-logic-js.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-mobs-mobbase-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-newgamescreen-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-soundeffect-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-towers-bomb-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-towers-factory-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-towers-melee-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-towers-ranged-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-content-towers-towerbase-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-maroon-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-maroon-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-maroon-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-maroon-maroon-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photosurface-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photosurface-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photosurface-photosurface-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photosurface-photosurface-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photosurface-photosurface-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photosurface-photosurface-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-main-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewer-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-albumdelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-busyindicator-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-button-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-editablebutton-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-photodelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-progressbar-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-rssmodel-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-photoviewer-photoviewercore-tag-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-content-busyindicator-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-content-categorydelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-content-newsdelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-content-rssfeeds-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-content-scrollbar-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-rssnews-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-rssnews-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-rssnews-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-rssnews-rssnews-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-block-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-blockemitter-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-button-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-gamearea-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level0-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level1-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level2-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level3-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level4-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level5-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level6-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level7-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level8-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-level9-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-levels-templatebase-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-logoanimation-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-menuemitter-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-paintemitter-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-primarypack-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-puzzleblock-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-qmldir.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-samegame-js.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-samegametext-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-settings-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-simpleblock-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-content-smoketext-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-samegame-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-samegame-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-samegame-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-samegame-samegame-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-banner-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-button-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-checkbox-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-qmldir.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-settings-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stockchart-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stockinfo-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stocklistdelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stocklistmodel-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stocklistview-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stockmodel-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stocksettingspanel-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-stockview-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-content-windows-settings-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-stocqt-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-stocqt-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-stocqt-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-stocqt-stocqt-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-content-flipbar-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-content-lineinput-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-content-listfooter-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-content-listheader-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-content-searchdelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-content-tweetdelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-content-tweetsmodel-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-tweetsearch-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-tweetsearch-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-demos-tweetsearch-tweetsearch-qmlproject.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-alarmdelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-alarmdialog-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-alarmmodel-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-alarms-pro.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-example.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-main-cpp.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-main-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-qml-qrc.html %%QT_DOCDIR%%/qtdoc/qtdoc-tutorials-alarms-tumblerdelegate-qml.html %%QT_DOCDIR%%/qtdoc/qtdoc.index %%QT_DOCDIR%%/qtdoc/qtdoc.qhp %%QT_DOCDIR%%/qtdoc/qtdoc.qhp.sha1 %%QT_DOCDIR%%/qtdoc/qtexamples.html %%QT_DOCDIR%%/qtdoc/qtexamplesandtutorials.html %%QT_DOCDIR%%/qtdoc/qtmain.html %%QT_DOCDIR%%/qtdoc/qtmodules.html %%QT_DOCDIR%%/qtdoc/qtquick-debugging.html %%QT_DOCDIR%%/qtdoc/qtquick-deployment.html %%QT_DOCDIR%%/qtdoc/qtquick-internationalization.html %%QT_DOCDIR%%/qtdoc/qtquick-performance.html %%QT_DOCDIR%%/qtdoc/qtquick-porting-qt5.html %%QT_DOCDIR%%/qtdoc/qtquick-qmlscene.html %%QT_DOCDIR%%/qtdoc/qtquick-usecase-animations.html %%QT_DOCDIR%%/qtdoc/qtquick-usecase-integratingjs.html %%QT_DOCDIR%%/qtdoc/qtquick-usecase-layouts.html %%QT_DOCDIR%%/qtdoc/qtquick-usecase-styling.html %%QT_DOCDIR%%/qtdoc/qtquick-usecase-text.html %%QT_DOCDIR%%/qtdoc/qtquick-usecase-userinput.html %%QT_DOCDIR%%/qtdoc/qtquick-usecase-visual.html %%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor-action.html %%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor-logic.html %%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor-ui.html %%QT_DOCDIR%%/qtdoc/qtquickcontrols-texteditor.html %%QT_DOCDIR%%/qtdoc/qundo.html %%QT_DOCDIR%%/qtdoc/rcc.html %%QT_DOCDIR%%/qtdoc/reference-overview.html %%QT_DOCDIR%%/qtdoc/restoring-geometry.html %%QT_DOCDIR%%/qtdoc/scalability.html %%QT_DOCDIR%%/qtdoc/session.html %%QT_DOCDIR%%/qtdoc/sharedlibrary.html %%QT_DOCDIR%%/qtdoc/signalsandslots-syntaxes.html %%QT_DOCDIR%%/qtdoc/sourcebreaks.html %%QT_DOCDIR%%/qtdoc/sql-examples.html %%QT_DOCDIR%%/qtdoc/string-processing.html %%QT_DOCDIR%%/qtdoc/style/offline-simple.css %%QT_DOCDIR%%/qtdoc/style/offline.css %%QT_DOCDIR%%/qtdoc/style/qt5-sidebar.html %%QT_DOCDIR%%/qtdoc/supported-platforms.html %%QT_DOCDIR%%/qtdoc/testing-and-debugging.html %%QT_DOCDIR%%/qtdoc/third-party-libraries.html %%QT_DOCDIR%%/qtdoc/thread-basics.html %%QT_DOCDIR%%/qtdoc/thread.html %%QT_DOCDIR%%/qtdoc/threads-modules.html %%QT_DOCDIR%%/qtdoc/threads-qobject.html %%QT_DOCDIR%%/qtdoc/threads-reentrancy.html %%QT_DOCDIR%%/qtdoc/threads-synchronizing.html %%QT_DOCDIR%%/qtdoc/threads-technologies.html %%QT_DOCDIR%%/qtdoc/threads.html %%QT_DOCDIR%%/qtdoc/topics-app-development.html %%QT_DOCDIR%%/qtdoc/topics-core.html %%QT_DOCDIR%%/qtdoc/topics-data-storage.html %%QT_DOCDIR%%/qtdoc/topics-graphics.html %%QT_DOCDIR%%/qtdoc/topics-network-connectivity.html %%QT_DOCDIR%%/qtdoc/topics-scripting.html %%QT_DOCDIR%%/qtdoc/topics-ui.html %%QT_DOCDIR%%/qtdoc/topics-web-content.html %%QT_DOCDIR%%/qtdoc/touchinputexamples.html %%QT_DOCDIR%%/qtdoc/trademarks.html %%QT_DOCDIR%%/qtdoc/uic.html %%QT_DOCDIR%%/qtdoc/unicode.html %%QT_DOCDIR%%/qtdoc/unix-signals.html %%QT_DOCDIR%%/qtdoc/vxworks.html %%QT_DOCDIR%%/qtdoc/webgl.html %%QT_DOCDIR%%/qtdoc/whatsnew50.html %%QT_DOCDIR%%/qtdoc/whatsnew51.html %%QT_DOCDIR%%/qtdoc/whatsnew510.html %%QT_DOCDIR%%/qtdoc/whatsnew511.html %%QT_DOCDIR%%/qtdoc/whatsnew512.html %%QT_DOCDIR%%/qtdoc/whatsnew52.html %%QT_DOCDIR%%/qtdoc/whatsnew53.html %%QT_DOCDIR%%/qtdoc/whatsnew54.html %%QT_DOCDIR%%/qtdoc/whatsnew55.html %%QT_DOCDIR%%/qtdoc/whatsnew56.html %%QT_DOCDIR%%/qtdoc/whatsnew57.html %%QT_DOCDIR%%/qtdoc/whatsnew58.html %%QT_DOCDIR%%/qtdoc/whatsnew59.html %%QT_DOCDIR%%/qtdoc/why-moc.html %%QT_DOCDIR%%/qtdoc/windows-building.html %%QT_DOCDIR%%/qtdoc/windows-deployment.html %%QT_DOCDIR%%/qtdoc/windows-issues.html %%QT_DOCDIR%%/qtdoc/windows-requirements.html %%QT_DOCDIR%%/qtdoc/windows.html %%QT_DOCDIR%%/qtdoc/winrt-support.html %%QT_DOCDIR%%/qtdoc/xml-examples.html %%QT_DOCDIR%%/qtgamepad.qch %%QT_DOCDIR%%/qtgamepad/examples-manifest.xml %%QT_DOCDIR%%/qtgamepad/images/arrow_bc.png %%QT_DOCDIR%%/qtgamepad/images/bgrContent.png %%QT_DOCDIR%%/qtgamepad/images/btn_next.png %%QT_DOCDIR%%/qtgamepad/images/btn_prev.png %%QT_DOCDIR%%/qtgamepad/images/bullet_dn.png %%QT_DOCDIR%%/qtgamepad/images/bullet_sq.png %%QT_DOCDIR%%/qtgamepad/images/configuregamepadbuttons-example.png %%QT_DOCDIR%%/qtgamepad/images/home.png %%QT_DOCDIR%%/qtgamepad/images/ico_note.png %%QT_DOCDIR%%/qtgamepad/images/ico_note_attention.png %%QT_DOCDIR%%/qtgamepad/images/ico_out.png %%QT_DOCDIR%%/qtgamepad/images/keynavigationgamepad-example.png %%QT_DOCDIR%%/qtgamepad/images/logo.png %%QT_DOCDIR%%/qtgamepad/images/qtquickgamepad-example.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/keyNavigation/keyNavigation64.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/keyNavigation/keyNavigation80.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/mouseItem/mouseItem64.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/mouseItem/mouseItem80.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerBack.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerButtonA.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerButtonB.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerButtonGuide.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerButtonX.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerButtonY.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerDPad.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerLeftShoulder.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerLeftThumbstick.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerLeftTrigger.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerRightShoulder.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerRightThumbstick.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerRightTrigger.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/qml/xboxControllerStart.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/quickGamepad64.png %%QT_DOCDIR%%/qtgamepad/images/used-in-examples/quickGamepad/quickGamepad80.png %%QT_DOCDIR%%/qtgamepad/qgamepad-members.html %%QT_DOCDIR%%/qtgamepad/qgamepad-obsolete.html %%QT_DOCDIR%%/qtgamepad/qgamepad.html %%QT_DOCDIR%%/qtgamepad/qgamepadkeynavigation-members.html %%QT_DOCDIR%%/qtgamepad/qgamepadkeynavigation-obsolete.html %%QT_DOCDIR%%/qtgamepad/qgamepadkeynavigation.html %%QT_DOCDIR%%/qtgamepad/qgamepadmanager-members.html %%QT_DOCDIR%%/qtgamepad/qgamepadmanager-obsolete.html %%QT_DOCDIR%%/qtgamepad/qgamepadmanager.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-android-androidmanifest-xml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-configurebuttons-pro.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-example.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-main-cpp.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-main-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-configurebuttons-qml-qrc.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-examples.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-index.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-example.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-keynavigation-pro.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-main-cpp.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-qml-main-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-keynavigation-qml-qrc.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-module.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-example.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-main-cpp.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-mouseitem-pro.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-qml-main-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-mouseitem-qml-qrc.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-qmlmodule.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-example.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-main-cpp.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-buttonimage-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-dpad-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-joystickviewer-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-leftthumbstick-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-main-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-qrc.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-qml-rightthumbstick-qml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-quickgamepad-quickgamepad-pro.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-android-androidmanifest-xml.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-example.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-gamepadmonitor-cpp.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-gamepadmonitor-h.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-main-cpp.html %%QT_DOCDIR%%/qtgamepad/qtgamepad-simple-simple-pro.html %%QT_DOCDIR%%/qtgamepad/qtgamepad.index %%QT_DOCDIR%%/qtgamepad/qtgamepad.qhp %%QT_DOCDIR%%/qtgamepad/qtgamepad.qhp.sha1 %%QT_DOCDIR%%/qtgamepad/style/offline-simple.css %%QT_DOCDIR%%/qtgamepad/style/offline.css %%QT_DOCDIR%%/qtgraphicaleffects.qch %%QT_DOCDIR%%/qtgraphicaleffects/graphicaleffects.html %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_bug_and_butterfly.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode10.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode11.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode12.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode13.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode14.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode15.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode16.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode17.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode18.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode19.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode20.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode21.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode22.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode4.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode5.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode6.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode7.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode8.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Blend_mode9.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_brightness1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_brightness2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_brightness3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/BrightnessContrast_contrast_graph.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_butterfly.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_color1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_color2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ColorOverlay_color3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_hue_scale.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_lightness1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_lightness2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_lightness3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_saturation1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_saturation2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Colorize_saturation3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_angle1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_angle2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_angle3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_gradient1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_gradient2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_gradient3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_horizontalOffset1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_horizontalOffset2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_horizontalOffset3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_maskSource1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ConicalGradient_maskSource2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_desaturation1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_desaturation2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Desaturate_desaturation3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_angle1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_angle2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_angle3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_length1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_length2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DirectionalBlur_length3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_displacement1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_displacement2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_displacement3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Displace_map.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow-transparentBorder.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_butterfly.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_color1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_color2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_color3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_horizontalOffset1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_horizontalOffset2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_horizontalOffset3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_radius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_radius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_radius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_spread1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_spread2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/DropShadow_spread3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_radius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_radius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_radius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_transparentBorder1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/FastBlur_transparentBorder2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma1_graph.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma2_graph.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GammaAdjust_gamma3_graph.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_deviation_graph.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_radius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_radius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_radius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_transparentBorder1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/GaussianBlur_transparentBorder2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow-transparentBorder.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_butterfly.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_color1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_color2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_color3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_radius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_radius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_radius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_spread1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_spread2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Glow_spread3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_hue1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_hue2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_hue3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_lightness1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_lightness2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_lightness3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_saturation1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_saturation2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/HueSaturation_saturation3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_butterfly.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_color1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_color2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_color3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_fast1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_fast2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_horizontalOffset1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_horizontalOffset2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_horizontalOffset3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_radius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_radius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_radius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_spread1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_spread2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/InnerShadow_spread3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_butterfly.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_default_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma2_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_gamma3_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput2_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumInput3_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput2_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_maximumOutput3_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput2_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumInput3_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput2_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LevelAdjust_minimumOutput3_curve.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_end1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_end2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_end3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_gradient1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_gradient2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_gradient3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_maskSource1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_maskSource2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_start1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_start2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/LinearGradient_start3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_mask.png %%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_radius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_radius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/MaskedBlur_radius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/OpacityMask_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/OpacityMask_mask.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Original_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Original_butterfly.png %%QT_DOCDIR%%/qtgraphicaleffects/images/Original_butterfly_black.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_angle1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_angle2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_angle3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_horizontalOffset1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_horizontalOffset2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialBlur_horizontalOffset3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_angle1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_angle2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_angle3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_gradient1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_gradient2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_gradient3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalOffset1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalOffset2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalOffset3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalRadius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_horizontalRadius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_maskSource1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RadialGradient_maskSource2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_applied.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_color1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_color2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_color3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_cornerRadius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_cornerRadius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_cornerRadius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_glowRadius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_glowRadius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_glowRadius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_spread1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_spread2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RectangularGlow_spread3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_loops1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_loops2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_loops3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_radius1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_radius2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_radius3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_transparentBorder1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/RecursiveBlur_transparentBorder2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_mask.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_spread1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_spread2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_spread3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_threshold1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_threshold2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ThresholdMask_threshold3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_bug.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_horizontalOffset1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_horizontalOffset2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_horizontalOffset3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_length1.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_length2.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ZoomBlur_length3.png %%QT_DOCDIR%%/qtgraphicaleffects/images/arrow_bc.png %%QT_DOCDIR%%/qtgraphicaleffects/images/bgrContent.png %%QT_DOCDIR%%/qtgraphicaleffects/images/btn_next.png %%QT_DOCDIR%%/qtgraphicaleffects/images/btn_prev.png %%QT_DOCDIR%%/qtgraphicaleffects/images/bullet_dn.png %%QT_DOCDIR%%/qtgraphicaleffects/images/bullet_sq.png %%QT_DOCDIR%%/qtgraphicaleffects/images/home.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ico_note.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ico_note_attention.png %%QT_DOCDIR%%/qtgraphicaleffects/images/ico_out.png %%QT_DOCDIR%%/qtgraphicaleffects/images/logo.png %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-blend-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-blend.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-brightnesscontrast-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-brightnesscontrast.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-colorize-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-colorize.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-coloroverlay-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-coloroverlay.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-conicalgradient-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-conicalgradient.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-desaturate-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-desaturate.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-directionalblur-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-directionalblur.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-displace-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-displace.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-dropshadow-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-dropshadow.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-fastblur-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-fastblur.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gammaadjust-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gammaadjust.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gaussianblur-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-gaussianblur.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-glow-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-glow.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-huesaturation-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-huesaturation.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-innershadow-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-innershadow.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-leveladjust-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-leveladjust.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-lineargradient-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-lineargradient.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-maskedblur-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-maskedblur.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-opacitymask-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-opacitymask.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialblur-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialblur.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialgradient-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-radialgradient.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-rectangularglow-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-rectangularglow.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-recursiveblur-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-recursiveblur.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-thresholdmask-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-thresholdmask.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-zoomblur-members.html %%QT_DOCDIR%%/qtgraphicaleffects/qml-qtgraphicaleffects-zoomblur.html %%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects-index.html %%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects-qmlmodule.html %%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.index %%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.qhp %%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.qhp.sha1 %%QT_DOCDIR%%/qtgraphicaleffects/qtgraphicaleffects.tags %%QT_DOCDIR%%/qtgraphicaleffects/style/offline-simple.css %%QT_DOCDIR%%/qtgraphicaleffects/style/offline.css %%QT_DOCDIR%%/qtgui.qch %%QT_DOCDIR%%/qtgui/coordsys.html %%QT_DOCDIR%%/qtgui/dnd.html %%QT_DOCDIR%%/qtgui/examples-manifest.xml %%QT_DOCDIR%%/qtgui/images/alphafill.png %%QT_DOCDIR%%/qtgui/images/analogclock-window-example.png %%QT_DOCDIR%%/qtgui/images/analogclockwindow-viewport.png %%QT_DOCDIR%%/qtgui/images/arrow_bc.png %%QT_DOCDIR%%/qtgui/images/bearings.png %%QT_DOCDIR%%/qtgui/images/bgrContent.png %%QT_DOCDIR%%/qtgui/images/brush-outline.png %%QT_DOCDIR%%/qtgui/images/brush-styles.png %%QT_DOCDIR%%/qtgui/images/btn_next.png %%QT_DOCDIR%%/qtgui/images/btn_prev.png %%QT_DOCDIR%%/qtgui/images/bullet_dn.png %%QT_DOCDIR%%/qtgui/images/bullet_sq.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-analogclock.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-line-antialias.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-line-raster.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-line.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-rect-antialias.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-rect-raster.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-rect.png %%QT_DOCDIR%%/qtgui/images/coordinatesystem-transformations.png %%QT_DOCDIR%%/qtgui/images/cursor-arrow.png %%QT_DOCDIR%%/qtgui/images/cursor-busy.png %%QT_DOCDIR%%/qtgui/images/cursor-closedhand.png %%QT_DOCDIR%%/qtgui/images/cursor-cross.png %%QT_DOCDIR%%/qtgui/images/cursor-forbidden.png %%QT_DOCDIR%%/qtgui/images/cursor-hand.png %%QT_DOCDIR%%/qtgui/images/cursor-hsplit.png %%QT_DOCDIR%%/qtgui/images/cursor-ibeam.png %%QT_DOCDIR%%/qtgui/images/cursor-openhand.png %%QT_DOCDIR%%/qtgui/images/cursor-sizeall.png %%QT_DOCDIR%%/qtgui/images/cursor-sizeb.png %%QT_DOCDIR%%/qtgui/images/cursor-sizef.png %%QT_DOCDIR%%/qtgui/images/cursor-sizeh.png %%QT_DOCDIR%%/qtgui/images/cursor-sizev.png %%QT_DOCDIR%%/qtgui/images/cursor-uparrow.png %%QT_DOCDIR%%/qtgui/images/cursor-vsplit.png %%QT_DOCDIR%%/qtgui/images/cursor-wait.png %%QT_DOCDIR%%/qtgui/images/cursor-whatsthis.png %%QT_DOCDIR%%/qtgui/images/hellovulkancubes.png %%QT_DOCDIR%%/qtgui/images/hellovulkantexture.png %%QT_DOCDIR%%/qtgui/images/hellovulkantriangle.png %%QT_DOCDIR%%/qtgui/images/hellovulkanwidget.png %%QT_DOCDIR%%/qtgui/images/hellovulkanwindow.png %%QT_DOCDIR%%/qtgui/images/home.png %%QT_DOCDIR%%/qtgui/images/hoverevents.png %%QT_DOCDIR%%/qtgui/images/ico_note.png %%QT_DOCDIR%%/qtgui/images/ico_note_attention.png %%QT_DOCDIR%%/qtgui/images/ico_out.png %%QT_DOCDIR%%/qtgui/images/icon.png %%QT_DOCDIR%%/qtgui/images/logo.png %%QT_DOCDIR%%/qtgui/images/openglwindow-example.png %%QT_DOCDIR%%/qtgui/images/paintsystem-antialiasing.png %%QT_DOCDIR%%/qtgui/images/paintsystem-core.png %%QT_DOCDIR%%/qtgui/images/paintsystem-fancygradient.png %%QT_DOCDIR%%/qtgui/images/paintsystem-gradients.png %%QT_DOCDIR%%/qtgui/images/paintsystem-movie.png %%QT_DOCDIR%%/qtgui/images/paintsystem-painterpath.png %%QT_DOCDIR%%/qtgui/images/palette.png %%QT_DOCDIR%%/qtgui/images/plaintext-layout.png %%QT_DOCDIR%%/qtgui/images/qcolor-cmyk.png %%QT_DOCDIR%%/qtgui/images/qcolor-hsv.png %%QT_DOCDIR%%/qtgui/images/qcolor-hue.png %%QT_DOCDIR%%/qtgui/images/qcolor-rgb.png %%QT_DOCDIR%%/qtgui/images/qcolor-saturation.png %%QT_DOCDIR%%/qtgui/images/qcolor-value.png %%QT_DOCDIR%%/qtgui/images/qconicalgradient.png %%QT_DOCDIR%%/qtgui/images/qgradient-conical.png %%QT_DOCDIR%%/qtgui/images/qgradient-linear.png %%QT_DOCDIR%%/qtgui/images/qgradient-radial.png %%QT_DOCDIR%%/qtgui/images/qimage-32bit_scaled.png %%QT_DOCDIR%%/qtgui/images/qimage-8bit_scaled.png %%QT_DOCDIR%%/qtgui/images/qimage-scaling.png %%QT_DOCDIR%%/qtgui/images/qlineargradient-pad.png %%QT_DOCDIR%%/qtgui/images/qlineargradient-reflect.png %%QT_DOCDIR%%/qtgui/images/qlineargradient-repeat.png %%QT_DOCDIR%%/qtgui/images/qmatrix-combinedtransformation.png %%QT_DOCDIR%%/qtgui/images/qmatrix-representation.png %%QT_DOCDIR%%/qtgui/images/qmatrix-simpletransformation.png %%QT_DOCDIR%%/qtgui/images/qpainter-affinetransformations.png %%QT_DOCDIR%%/qtgui/images/qpainter-arc.png %%QT_DOCDIR%%/qtgui/images/qpainter-basicdrawing.png %%QT_DOCDIR%%/qtgui/images/qpainter-chord.png %%QT_DOCDIR%%/qtgui/images/qpainter-clock.png %%QT_DOCDIR%%/qtgui/images/qpainter-compositiondemo.png %%QT_DOCDIR%%/qtgui/images/qpainter-compositionmode1.png %%QT_DOCDIR%%/qtgui/images/qpainter-compositionmode2.png %%QT_DOCDIR%%/qtgui/images/qpainter-concentriccircles.png %%QT_DOCDIR%%/qtgui/images/qpainter-ellipse.png %%QT_DOCDIR%%/qtgui/images/qpainter-gradients.png %%QT_DOCDIR%%/qtgui/images/qpainter-line.png %%QT_DOCDIR%%/qtgui/images/qpainter-painterpaths.png %%QT_DOCDIR%%/qtgui/images/qpainter-path.png %%QT_DOCDIR%%/qtgui/images/qpainter-pathstroking.png %%QT_DOCDIR%%/qtgui/images/qpainter-pie.png %%QT_DOCDIR%%/qtgui/images/qpainter-polygon.png %%QT_DOCDIR%%/qtgui/images/qpainter-rectangle.png %%QT_DOCDIR%%/qtgui/images/qpainter-rotation.png %%QT_DOCDIR%%/qtgui/images/qpainter-roundrect.png %%QT_DOCDIR%%/qtgui/images/qpainter-scale.png %%QT_DOCDIR%%/qtgui/images/qpainter-text-bounds.png %%QT_DOCDIR%%/qtgui/images/qpainter-text.png %%QT_DOCDIR%%/qtgui/images/qpainter-translation.png %%QT_DOCDIR%%/qtgui/images/qpainter-vectordeformation.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-addellipse.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-addpolygon.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-addrectangle.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-addtext.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-arcto.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-construction.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-cubicto.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-demo.png %%QT_DOCDIR%%/qtgui/images/qpainterpath-example.png %%QT_DOCDIR%%/qtgui/images/qpen-bevel.png %%QT_DOCDIR%%/qtgui/images/qpen-custom.png %%QT_DOCDIR%%/qtgui/images/qpen-dash.png %%QT_DOCDIR%%/qtgui/images/qpen-dashdot.png %%QT_DOCDIR%%/qtgui/images/qpen-dashdotdot.png %%QT_DOCDIR%%/qtgui/images/qpen-dashpattern.png %%QT_DOCDIR%%/qtgui/images/qpen-demo.png %%QT_DOCDIR%%/qtgui/images/qpen-dot.png %%QT_DOCDIR%%/qtgui/images/qpen-flat.png %%QT_DOCDIR%%/qtgui/images/qpen-miter.png %%QT_DOCDIR%%/qtgui/images/qpen-miterlimit.png %%QT_DOCDIR%%/qtgui/images/qpen-roundcap.png %%QT_DOCDIR%%/qtgui/images/qpen-roundjoin.png %%QT_DOCDIR%%/qtgui/images/qpen-solid.png %%QT_DOCDIR%%/qtgui/images/qpen-square.png %%QT_DOCDIR%%/qtgui/images/qpixelformat-argb32buffer.png %%QT_DOCDIR%%/qtgui/images/qradialgradient-pad.png %%QT_DOCDIR%%/qtgui/images/qradialgradient-reflect.png %%QT_DOCDIR%%/qtgui/images/qradialgradient-repeat.png %%QT_DOCDIR%%/qtgui/images/qrect-diagram-zero.png %%QT_DOCDIR%%/qtgui/images/qrectf-diagram-one.png %%QT_DOCDIR%%/qtgui/images/qrectf-diagram-three.png %%QT_DOCDIR%%/qtgui/images/qrectf-diagram-two.png %%QT_DOCDIR%%/qtgui/images/qstatustipevent-action.png %%QT_DOCDIR%%/qtgui/images/qstatustipevent-widget.png %%QT_DOCDIR%%/qtgui/images/qt-colors.png %%QT_DOCDIR%%/qtgui/images/qt-fillrule-oddeven.png %%QT_DOCDIR%%/qtgui/images/qt-fillrule-winding.png %%QT_DOCDIR%%/qtgui/images/qtabletevent-tilt.png %%QT_DOCDIR%%/qtgui/images/qtextblock-sequence.png %%QT_DOCDIR%%/qtgui/images/qtextfragment-split.png %%QT_DOCDIR%%/qtgui/images/qtextframe-style.png %%QT_DOCDIR%%/qtgui/images/qtexttableformat-cell.png %%QT_DOCDIR%%/qtgui/images/qtransform-combinedtransformation.png %%QT_DOCDIR%%/qtgui/images/qtransform-combinedtransformation2.png %%QT_DOCDIR%%/qtgui/images/qtransform-representation.png %%QT_DOCDIR%%/qtgui/images/qtransform-simpletransformation.png %%QT_DOCDIR%%/qtgui/images/richtext-document.png %%QT_DOCDIR%%/qtgui/images/rintersect.png %%QT_DOCDIR%%/qtgui/images/rsubtract.png %%QT_DOCDIR%%/qtgui/images/runion.png %%QT_DOCDIR%%/qtgui/images/rxor.png %%QT_DOCDIR%%/qtgui/images/texttable-merge.png %%QT_DOCDIR%%/qtgui/images/texttable-split.png %%QT_DOCDIR%%/qtgui/images/touchpoint-metrics.png %%QT_DOCDIR%%/qtgui/images/used-in-examples/hellovulkantexture/qt256.png %%QT_DOCDIR%%/qtgui/painting-3d.html %%QT_DOCDIR%%/qtgui/painting.html %%QT_DOCDIR%%/qtgui/paintsystem-devices.html %%QT_DOCDIR%%/qtgui/paintsystem-drawing.html %%QT_DOCDIR%%/qtgui/paintsystem-images.html %%QT_DOCDIR%%/qtgui/paintsystem.html %%QT_DOCDIR%%/qtgui/qabstractopenglfunctions-members.html %%QT_DOCDIR%%/qtgui/qabstractopenglfunctions.html %%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-members.html %%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-obsolete.html %%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-paintcontext-members.html %%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-paintcontext.html %%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-selection-members.html %%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout-selection.html %%QT_DOCDIR%%/qtgui/qabstracttextdocumentlayout.html %%QT_DOCDIR%%/qtgui/qaccessible-members.html %%QT_DOCDIR%%/qtgui/qaccessible-obsolete.html %%QT_DOCDIR%%/qtgui/qaccessible-state-members.html %%QT_DOCDIR%%/qtgui/qaccessible-state.html %%QT_DOCDIR%%/qtgui/qaccessible.html %%QT_DOCDIR%%/qtgui/qaccessibleactioninterface-members.html %%QT_DOCDIR%%/qtgui/qaccessibleactioninterface.html %%QT_DOCDIR%%/qtgui/qaccessibleeditabletextinterface-members.html %%QT_DOCDIR%%/qtgui/qaccessibleeditabletextinterface.html %%QT_DOCDIR%%/qtgui/qaccessibleevent-members.html %%QT_DOCDIR%%/qtgui/qaccessibleevent.html %%QT_DOCDIR%%/qtgui/qaccessibleinterface-members.html %%QT_DOCDIR%%/qtgui/qaccessibleinterface.html %%QT_DOCDIR%%/qtgui/qaccessibleobject-members.html %%QT_DOCDIR%%/qtgui/qaccessibleobject.html %%QT_DOCDIR%%/qtgui/qaccessibleplugin-members.html %%QT_DOCDIR%%/qtgui/qaccessibleplugin-obsolete.html %%QT_DOCDIR%%/qtgui/qaccessibleplugin.html %%QT_DOCDIR%%/qtgui/qaccessiblestatechangeevent-members.html %%QT_DOCDIR%%/qtgui/qaccessiblestatechangeevent.html %%QT_DOCDIR%%/qtgui/qaccessibletablecellinterface-members.html %%QT_DOCDIR%%/qtgui/qaccessibletablecellinterface.html %%QT_DOCDIR%%/qtgui/qaccessibletableinterface-members.html %%QT_DOCDIR%%/qtgui/qaccessibletableinterface.html %%QT_DOCDIR%%/qtgui/qaccessibletablemodelchangeevent-members.html %%QT_DOCDIR%%/qtgui/qaccessibletablemodelchangeevent.html %%QT_DOCDIR%%/qtgui/qaccessibletextcursorevent-members.html %%QT_DOCDIR%%/qtgui/qaccessibletextcursorevent.html %%QT_DOCDIR%%/qtgui/qaccessibletextinsertevent-members.html %%QT_DOCDIR%%/qtgui/qaccessibletextinsertevent.html %%QT_DOCDIR%%/qtgui/qaccessibletextinterface-members.html %%QT_DOCDIR%%/qtgui/qaccessibletextinterface.html %%QT_DOCDIR%%/qtgui/qaccessibletextremoveevent-members.html %%QT_DOCDIR%%/qtgui/qaccessibletextremoveevent.html %%QT_DOCDIR%%/qtgui/qaccessibletextselectionevent-members.html %%QT_DOCDIR%%/qtgui/qaccessibletextselectionevent.html %%QT_DOCDIR%%/qtgui/qaccessibletextupdateevent-members.html %%QT_DOCDIR%%/qtgui/qaccessibletextupdateevent.html %%QT_DOCDIR%%/qtgui/qaccessiblevaluechangeevent-members.html %%QT_DOCDIR%%/qtgui/qaccessiblevaluechangeevent.html %%QT_DOCDIR%%/qtgui/qaccessiblevalueinterface-members.html %%QT_DOCDIR%%/qtgui/qaccessiblevalueinterface.html %%QT_DOCDIR%%/qtgui/qactionevent-members.html %%QT_DOCDIR%%/qtgui/qactionevent.html %%QT_DOCDIR%%/qtgui/qbackingstore-members.html %%QT_DOCDIR%%/qtgui/qbackingstore.html %%QT_DOCDIR%%/qtgui/qbitmap-members.html %%QT_DOCDIR%%/qtgui/qbitmap-obsolete.html %%QT_DOCDIR%%/qtgui/qbitmap.html %%QT_DOCDIR%%/qtgui/qbrush-members.html %%QT_DOCDIR%%/qtgui/qbrush.html %%QT_DOCDIR%%/qtgui/qclipboard-members.html %%QT_DOCDIR%%/qtgui/qclipboard-obsolete.html %%QT_DOCDIR%%/qtgui/qclipboard.html %%QT_DOCDIR%%/qtgui/qcloseevent-members.html %%QT_DOCDIR%%/qtgui/qcloseevent.html %%QT_DOCDIR%%/qtgui/qcolor-members.html %%QT_DOCDIR%%/qtgui/qcolor-obsolete.html %%QT_DOCDIR%%/qtgui/qcolor.html %%QT_DOCDIR%%/qtgui/qconicalgradient-members.html %%QT_DOCDIR%%/qtgui/qconicalgradient.html %%QT_DOCDIR%%/qtgui/qcontextmenuevent-members.html %%QT_DOCDIR%%/qtgui/qcontextmenuevent.html %%QT_DOCDIR%%/qtgui/qcursor-members.html %%QT_DOCDIR%%/qtgui/qcursor.html %%QT_DOCDIR%%/qtgui/qdesktopservices-members.html %%QT_DOCDIR%%/qtgui/qdesktopservices-obsolete.html %%QT_DOCDIR%%/qtgui/qdesktopservices.html %%QT_DOCDIR%%/qtgui/qdoublevalidator-members.html %%QT_DOCDIR%%/qtgui/qdoublevalidator-obsolete.html %%QT_DOCDIR%%/qtgui/qdoublevalidator.html %%QT_DOCDIR%%/qtgui/qdrag-members.html %%QT_DOCDIR%%/qtgui/qdrag-obsolete.html %%QT_DOCDIR%%/qtgui/qdrag.html %%QT_DOCDIR%%/qtgui/qdragenterevent-members.html %%QT_DOCDIR%%/qtgui/qdragenterevent.html %%QT_DOCDIR%%/qtgui/qdragleaveevent-members.html %%QT_DOCDIR%%/qtgui/qdragleaveevent.html %%QT_DOCDIR%%/qtgui/qdragmoveevent-members.html %%QT_DOCDIR%%/qtgui/qdragmoveevent.html %%QT_DOCDIR%%/qtgui/qdropevent-members.html %%QT_DOCDIR%%/qtgui/qdropevent.html %%QT_DOCDIR%%/qtgui/qenterevent-members.html %%QT_DOCDIR%%/qtgui/qenterevent.html %%QT_DOCDIR%%/qtgui/qexposeevent-members.html %%QT_DOCDIR%%/qtgui/qexposeevent.html %%QT_DOCDIR%%/qtgui/qfileopenevent-members.html %%QT_DOCDIR%%/qtgui/qfileopenevent.html %%QT_DOCDIR%%/qtgui/qfocusevent-members.html %%QT_DOCDIR%%/qtgui/qfocusevent.html %%QT_DOCDIR%%/qtgui/qfont-members.html %%QT_DOCDIR%%/qtgui/qfont-obsolete.html %%QT_DOCDIR%%/qtgui/qfont.html %%QT_DOCDIR%%/qtgui/qfontdatabase-members.html %%QT_DOCDIR%%/qtgui/qfontdatabase-obsolete.html %%QT_DOCDIR%%/qtgui/qfontdatabase.html %%QT_DOCDIR%%/qtgui/qfontinfo-members.html %%QT_DOCDIR%%/qtgui/qfontinfo-obsolete.html %%QT_DOCDIR%%/qtgui/qfontinfo.html %%QT_DOCDIR%%/qtgui/qfontmetrics-members.html %%QT_DOCDIR%%/qtgui/qfontmetrics-obsolete.html %%QT_DOCDIR%%/qtgui/qfontmetrics.html %%QT_DOCDIR%%/qtgui/qfontmetricsf-members.html %%QT_DOCDIR%%/qtgui/qfontmetricsf-obsolete.html %%QT_DOCDIR%%/qtgui/qfontmetricsf.html %%QT_DOCDIR%%/qtgui/qgenericmatrix-members.html %%QT_DOCDIR%%/qtgui/qgenericmatrix.html %%QT_DOCDIR%%/qtgui/qgenericplugin-members.html %%QT_DOCDIR%%/qtgui/qgenericplugin-obsolete.html %%QT_DOCDIR%%/qtgui/qgenericplugin.html %%QT_DOCDIR%%/qtgui/qgenericpluginfactory-members.html %%QT_DOCDIR%%/qtgui/qgenericpluginfactory.html %%QT_DOCDIR%%/qtgui/qglyphrun-members.html %%QT_DOCDIR%%/qtgui/qglyphrun.html %%QT_DOCDIR%%/qtgui/qgradient-members.html %%QT_DOCDIR%%/qtgui/qgradient.html %%QT_DOCDIR%%/qtgui/qguiapplication-members.html %%QT_DOCDIR%%/qtgui/qguiapplication-obsolete.html %%QT_DOCDIR%%/qtgui/qguiapplication.html %%QT_DOCDIR%%/qtgui/qhelpevent-members.html %%QT_DOCDIR%%/qtgui/qhelpevent.html %%QT_DOCDIR%%/qtgui/qhideevent-members.html %%QT_DOCDIR%%/qtgui/qhideevent.html %%QT_DOCDIR%%/qtgui/qhoverevent-members.html %%QT_DOCDIR%%/qtgui/qhoverevent.html %%QT_DOCDIR%%/qtgui/qicon-members.html %%QT_DOCDIR%%/qtgui/qicon-obsolete.html %%QT_DOCDIR%%/qtgui/qicon.html %%QT_DOCDIR%%/qtgui/qicondragevent-members.html %%QT_DOCDIR%%/qtgui/qicondragevent.html %%QT_DOCDIR%%/qtgui/qiconengine-availablesizesargument-members.html %%QT_DOCDIR%%/qtgui/qiconengine-availablesizesargument.html %%QT_DOCDIR%%/qtgui/qiconengine-members.html %%QT_DOCDIR%%/qtgui/qiconengine-scaledpixmapargument-members.html %%QT_DOCDIR%%/qtgui/qiconengine-scaledpixmapargument.html %%QT_DOCDIR%%/qtgui/qiconengine.html %%QT_DOCDIR%%/qtgui/qiconengineplugin-members.html %%QT_DOCDIR%%/qtgui/qiconengineplugin-obsolete.html %%QT_DOCDIR%%/qtgui/qiconengineplugin.html %%QT_DOCDIR%%/qtgui/qimage-members.html %%QT_DOCDIR%%/qtgui/qimage-obsolete.html %%QT_DOCDIR%%/qtgui/qimage.html %%QT_DOCDIR%%/qtgui/qimageiohandler-members.html %%QT_DOCDIR%%/qtgui/qimageiohandler-obsolete.html %%QT_DOCDIR%%/qtgui/qimageiohandler.html %%QT_DOCDIR%%/qtgui/qimageioplugin-members.html %%QT_DOCDIR%%/qtgui/qimageioplugin-obsolete.html %%QT_DOCDIR%%/qtgui/qimageioplugin.html %%QT_DOCDIR%%/qtgui/qimagereader-members.html %%QT_DOCDIR%%/qtgui/qimagereader.html %%QT_DOCDIR%%/qtgui/qimagewriter-members.html %%QT_DOCDIR%%/qtgui/qimagewriter-obsolete.html %%QT_DOCDIR%%/qtgui/qimagewriter.html %%QT_DOCDIR%%/qtgui/qinputevent-members.html %%QT_DOCDIR%%/qtgui/qinputevent.html %%QT_DOCDIR%%/qtgui/qinputmethod-members.html %%QT_DOCDIR%%/qtgui/qinputmethod-obsolete.html %%QT_DOCDIR%%/qtgui/qinputmethod.html %%QT_DOCDIR%%/qtgui/qinputmethodevent-attribute-members.html %%QT_DOCDIR%%/qtgui/qinputmethodevent-attribute.html %%QT_DOCDIR%%/qtgui/qinputmethodevent-members.html %%QT_DOCDIR%%/qtgui/qinputmethodevent.html %%QT_DOCDIR%%/qtgui/qinputmethodqueryevent-members.html %%QT_DOCDIR%%/qtgui/qinputmethodqueryevent.html %%QT_DOCDIR%%/qtgui/qintvalidator-members.html %%QT_DOCDIR%%/qtgui/qintvalidator-obsolete.html %%QT_DOCDIR%%/qtgui/qintvalidator.html %%QT_DOCDIR%%/qtgui/qkeyevent-members.html %%QT_DOCDIR%%/qtgui/qkeyevent.html %%QT_DOCDIR%%/qtgui/qkeysequence-members.html %%QT_DOCDIR%%/qtgui/qkeysequence-obsolete.html %%QT_DOCDIR%%/qtgui/qkeysequence.html %%QT_DOCDIR%%/qtgui/qlineargradient-members.html %%QT_DOCDIR%%/qtgui/qlineargradient.html %%QT_DOCDIR%%/qtgui/qmatrix-members.html %%QT_DOCDIR%%/qtgui/qmatrix.html %%QT_DOCDIR%%/qtgui/qmatrix4x4-members.html %%QT_DOCDIR%%/qtgui/qmatrix4x4-obsolete.html %%QT_DOCDIR%%/qtgui/qmatrix4x4.html %%QT_DOCDIR%%/qtgui/qmouseevent-members.html %%QT_DOCDIR%%/qtgui/qmouseevent-obsolete.html %%QT_DOCDIR%%/qtgui/qmouseevent.html %%QT_DOCDIR%%/qtgui/qmoveevent-members.html %%QT_DOCDIR%%/qtgui/qmoveevent.html %%QT_DOCDIR%%/qtgui/qmovie-members.html %%QT_DOCDIR%%/qtgui/qmovie-obsolete.html %%QT_DOCDIR%%/qtgui/qmovie.html %%QT_DOCDIR%%/qtgui/qnativegestureevent-members.html %%QT_DOCDIR%%/qtgui/qnativegestureevent-obsolete.html %%QT_DOCDIR%%/qtgui/qnativegestureevent.html %%QT_DOCDIR%%/qtgui/qoffscreensurface-members.html %%QT_DOCDIR%%/qtgui/qoffscreensurface-obsolete.html %%QT_DOCDIR%%/qtgui/qoffscreensurface.html %%QT_DOCDIR%%/qtgui/qopenglbuffer-members.html %%QT_DOCDIR%%/qtgui/qopenglbuffer.html %%QT_DOCDIR%%/qtgui/qopenglcontext-members.html %%QT_DOCDIR%%/qtgui/qopenglcontext-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglcontext.html %%QT_DOCDIR%%/qtgui/qopenglcontextgroup-members.html %%QT_DOCDIR%%/qtgui/qopenglcontextgroup-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglcontextgroup.html %%QT_DOCDIR%%/qtgui/qopengldebuglogger-members.html %%QT_DOCDIR%%/qtgui/qopengldebuglogger-obsolete.html %%QT_DOCDIR%%/qtgui/qopengldebuglogger.html %%QT_DOCDIR%%/qtgui/qopengldebugmessage-members.html %%QT_DOCDIR%%/qtgui/qopengldebugmessage.html %%QT_DOCDIR%%/qtgui/qopenglextrafunctions-members.html %%QT_DOCDIR%%/qtgui/qopenglextrafunctions-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglextrafunctions.html %%QT_DOCDIR%%/qtgui/qopenglframebufferobject-members.html %%QT_DOCDIR%%/qtgui/qopenglframebufferobject.html %%QT_DOCDIR%%/qtgui/qopenglframebufferobjectformat-members.html %%QT_DOCDIR%%/qtgui/qopenglframebufferobjectformat.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-0-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-0.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-1-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-1.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-2-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-2.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-3-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-3.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-4-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-4.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-5-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-1-5.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-2-0-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-2-0.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-2-1-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-2-1.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-0-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-0.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-1-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-1.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-2-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-3-3-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-0-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-1-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-2-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-3-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-4-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-compatibility-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-compatibility.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-core-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-4-5-core.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-es2-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-es2.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-members.html %%QT_DOCDIR%%/qtgui/qopenglfunctions-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglfunctions.html %%QT_DOCDIR%%/qtgui/qopenglpaintdevice-members.html %%QT_DOCDIR%%/qtgui/qopenglpaintdevice.html %%QT_DOCDIR%%/qtgui/qopenglpixeltransferoptions-members.html %%QT_DOCDIR%%/qtgui/qopenglpixeltransferoptions.html %%QT_DOCDIR%%/qtgui/qopenglshader-members.html %%QT_DOCDIR%%/qtgui/qopenglshader-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglshader.html %%QT_DOCDIR%%/qtgui/qopenglshaderprogram-members.html %%QT_DOCDIR%%/qtgui/qopenglshaderprogram-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglshaderprogram.html %%QT_DOCDIR%%/qtgui/qopengltexture-members.html %%QT_DOCDIR%%/qtgui/qopengltexture-obsolete.html %%QT_DOCDIR%%/qtgui/qopengltexture.html %%QT_DOCDIR%%/qtgui/qopengltextureblitter-members.html %%QT_DOCDIR%%/qtgui/qopengltextureblitter.html %%QT_DOCDIR%%/qtgui/qopengltimemonitor-members.html %%QT_DOCDIR%%/qtgui/qopengltimemonitor-obsolete.html %%QT_DOCDIR%%/qtgui/qopengltimemonitor.html %%QT_DOCDIR%%/qtgui/qopengltimerquery-members.html %%QT_DOCDIR%%/qtgui/qopengltimerquery-obsolete.html %%QT_DOCDIR%%/qtgui/qopengltimerquery.html %%QT_DOCDIR%%/qtgui/qopenglversionprofile-members.html %%QT_DOCDIR%%/qtgui/qopenglversionprofile.html %%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject-binder-members.html %%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject-binder.html %%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject-members.html %%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglvertexarrayobject.html %%QT_DOCDIR%%/qtgui/qopenglwindow-members.html %%QT_DOCDIR%%/qtgui/qopenglwindow-obsolete.html %%QT_DOCDIR%%/qtgui/qopenglwindow.html %%QT_DOCDIR%%/qtgui/qpagedpaintdevice-margins-members.html %%QT_DOCDIR%%/qtgui/qpagedpaintdevice-margins.html %%QT_DOCDIR%%/qtgui/qpagedpaintdevice-members.html %%QT_DOCDIR%%/qtgui/qpagedpaintdevice-obsolete.html %%QT_DOCDIR%%/qtgui/qpagedpaintdevice.html %%QT_DOCDIR%%/qtgui/qpagelayout-members.html %%QT_DOCDIR%%/qtgui/qpagelayout.html %%QT_DOCDIR%%/qtgui/qpagesize-members.html %%QT_DOCDIR%%/qtgui/qpagesize.html %%QT_DOCDIR%%/qtgui/qpaintdevice-members.html %%QT_DOCDIR%%/qtgui/qpaintdevice.html %%QT_DOCDIR%%/qtgui/qpaintdevicewindow-members.html %%QT_DOCDIR%%/qtgui/qpaintdevicewindow-obsolete.html %%QT_DOCDIR%%/qtgui/qpaintdevicewindow.html %%QT_DOCDIR%%/qtgui/qpaintengine-members.html %%QT_DOCDIR%%/qtgui/qpaintengine.html %%QT_DOCDIR%%/qtgui/qpaintenginestate-members.html %%QT_DOCDIR%%/qtgui/qpaintenginestate-obsolete.html %%QT_DOCDIR%%/qtgui/qpaintenginestate.html %%QT_DOCDIR%%/qtgui/qpainter-members.html %%QT_DOCDIR%%/qtgui/qpainter-obsolete.html %%QT_DOCDIR%%/qtgui/qpainter-pixmapfragment-members.html %%QT_DOCDIR%%/qtgui/qpainter-pixmapfragment.html %%QT_DOCDIR%%/qtgui/qpainter.html %%QT_DOCDIR%%/qtgui/qpainterpath-element-members.html %%QT_DOCDIR%%/qtgui/qpainterpath-element.html %%QT_DOCDIR%%/qtgui/qpainterpath-members.html %%QT_DOCDIR%%/qtgui/qpainterpath-obsolete.html %%QT_DOCDIR%%/qtgui/qpainterpath.html %%QT_DOCDIR%%/qtgui/qpainterpathstroker-members.html %%QT_DOCDIR%%/qtgui/qpainterpathstroker.html %%QT_DOCDIR%%/qtgui/qpaintevent-members.html %%QT_DOCDIR%%/qtgui/qpaintevent.html %%QT_DOCDIR%%/qtgui/qpalette-members.html %%QT_DOCDIR%%/qtgui/qpalette-obsolete.html %%QT_DOCDIR%%/qtgui/qpalette.html %%QT_DOCDIR%%/qtgui/qpdfwriter-members.html %%QT_DOCDIR%%/qtgui/qpdfwriter-obsolete.html %%QT_DOCDIR%%/qtgui/qpdfwriter.html %%QT_DOCDIR%%/qtgui/qpen-members.html %%QT_DOCDIR%%/qtgui/qpen.html %%QT_DOCDIR%%/qtgui/qpicture-members.html %%QT_DOCDIR%%/qtgui/qpicture.html %%QT_DOCDIR%%/qtgui/qpictureformatplugin-members.html %%QT_DOCDIR%%/qtgui/qpictureformatplugin-obsolete.html %%QT_DOCDIR%%/qtgui/qpictureformatplugin.html %%QT_DOCDIR%%/qtgui/qpictureio-members.html %%QT_DOCDIR%%/qtgui/qpictureio.html %%QT_DOCDIR%%/qtgui/qpixelformat-members.html %%QT_DOCDIR%%/qtgui/qpixelformat.html %%QT_DOCDIR%%/qtgui/qpixmap-members.html %%QT_DOCDIR%%/qtgui/qpixmap-obsolete.html %%QT_DOCDIR%%/qtgui/qpixmap.html %%QT_DOCDIR%%/qtgui/qpixmapcache-key-members.html %%QT_DOCDIR%%/qtgui/qpixmapcache-key.html %%QT_DOCDIR%%/qtgui/qpixmapcache-keydata-members.html %%QT_DOCDIR%%/qtgui/qpixmapcache-keydata.html %%QT_DOCDIR%%/qtgui/qpixmapcache-members.html %%QT_DOCDIR%%/qtgui/qpixmapcache-obsolete.html %%QT_DOCDIR%%/qtgui/qpixmapcache.html %%QT_DOCDIR%%/qtgui/qplatformsurfaceevent-members.html %%QT_DOCDIR%%/qtgui/qplatformsurfaceevent.html %%QT_DOCDIR%%/qtgui/qpointingdeviceuniqueid-members.html %%QT_DOCDIR%%/qtgui/qpointingdeviceuniqueid.html %%QT_DOCDIR%%/qtgui/qpolygon-members.html %%QT_DOCDIR%%/qtgui/qpolygon.html %%QT_DOCDIR%%/qtgui/qpolygonf-members.html %%QT_DOCDIR%%/qtgui/qpolygonf.html %%QT_DOCDIR%%/qtgui/qquaternion-members.html %%QT_DOCDIR%%/qtgui/qquaternion-obsolete.html %%QT_DOCDIR%%/qtgui/qquaternion.html %%QT_DOCDIR%%/qtgui/qradialgradient-members.html %%QT_DOCDIR%%/qtgui/qradialgradient.html %%QT_DOCDIR%%/qtgui/qrasterpaintengine-members.html %%QT_DOCDIR%%/qtgui/qrasterpaintengine.html %%QT_DOCDIR%%/qtgui/qrasterwindow-members.html %%QT_DOCDIR%%/qtgui/qrasterwindow-obsolete.html %%QT_DOCDIR%%/qtgui/qrasterwindow.html %%QT_DOCDIR%%/qtgui/qrawfont-members.html %%QT_DOCDIR%%/qtgui/qrawfont.html %%QT_DOCDIR%%/qtgui/qregexpvalidator-members.html %%QT_DOCDIR%%/qtgui/qregexpvalidator-obsolete.html %%QT_DOCDIR%%/qtgui/qregexpvalidator.html %%QT_DOCDIR%%/qtgui/qregion-members.html %%QT_DOCDIR%%/qtgui/qregion-obsolete.html %%QT_DOCDIR%%/qtgui/qregion.html %%QT_DOCDIR%%/qtgui/qregularexpressionvalidator-members.html %%QT_DOCDIR%%/qtgui/qregularexpressionvalidator-obsolete.html %%QT_DOCDIR%%/qtgui/qregularexpressionvalidator.html %%QT_DOCDIR%%/qtgui/qresizeevent-members.html %%QT_DOCDIR%%/qtgui/qresizeevent.html %%QT_DOCDIR%%/qtgui/qrgba64-members.html %%QT_DOCDIR%%/qtgui/qrgba64.html %%QT_DOCDIR%%/qtgui/qscreen-members.html %%QT_DOCDIR%%/qtgui/qscreen-obsolete.html %%QT_DOCDIR%%/qtgui/qscreen.html %%QT_DOCDIR%%/qtgui/qscrollevent-members.html %%QT_DOCDIR%%/qtgui/qscrollevent.html %%QT_DOCDIR%%/qtgui/qscrollprepareevent-members.html %%QT_DOCDIR%%/qtgui/qscrollprepareevent.html %%QT_DOCDIR%%/qtgui/qsessionmanager-members.html %%QT_DOCDIR%%/qtgui/qsessionmanager-obsolete.html %%QT_DOCDIR%%/qtgui/qsessionmanager.html %%QT_DOCDIR%%/qtgui/qshortcutevent-members.html %%QT_DOCDIR%%/qtgui/qshortcutevent.html %%QT_DOCDIR%%/qtgui/qshowevent-members.html %%QT_DOCDIR%%/qtgui/qshowevent.html %%QT_DOCDIR%%/qtgui/qstandarditem-members.html %%QT_DOCDIR%%/qtgui/qstandarditem-obsolete.html %%QT_DOCDIR%%/qtgui/qstandarditem.html %%QT_DOCDIR%%/qtgui/qstandarditemmodel-members.html %%QT_DOCDIR%%/qtgui/qstandarditemmodel-obsolete.html %%QT_DOCDIR%%/qtgui/qstandarditemmodel.html %%QT_DOCDIR%%/qtgui/qstatictext-members.html %%QT_DOCDIR%%/qtgui/qstatictext.html %%QT_DOCDIR%%/qtgui/qstatustipevent-members.html %%QT_DOCDIR%%/qtgui/qstatustipevent.html %%QT_DOCDIR%%/qtgui/qstylehints-members.html %%QT_DOCDIR%%/qtgui/qstylehints-obsolete.html %%QT_DOCDIR%%/qtgui/qstylehints.html %%QT_DOCDIR%%/qtgui/qsupportedwritingsystems-members.html %%QT_DOCDIR%%/qtgui/qsupportedwritingsystems.html %%QT_DOCDIR%%/qtgui/qsurface-members.html %%QT_DOCDIR%%/qtgui/qsurface.html %%QT_DOCDIR%%/qtgui/qsurfaceformat-members.html %%QT_DOCDIR%%/qtgui/qsurfaceformat-obsolete.html %%QT_DOCDIR%%/qtgui/qsurfaceformat.html %%QT_DOCDIR%%/qtgui/qsyntaxhighlighter-members.html %%QT_DOCDIR%%/qtgui/qsyntaxhighlighter-obsolete.html %%QT_DOCDIR%%/qtgui/qsyntaxhighlighter.html %%QT_DOCDIR%%/qtgui/qt-sub-qtgui.html %%QT_DOCDIR%%/qtgui/qtabletevent-members.html %%QT_DOCDIR%%/qtgui/qtabletevent-obsolete.html %%QT_DOCDIR%%/qtgui/qtabletevent.html %%QT_DOCDIR%%/qtgui/qtextblock-iterator-members.html %%QT_DOCDIR%%/qtgui/qtextblock-iterator.html %%QT_DOCDIR%%/qtgui/qtextblock-members.html %%QT_DOCDIR%%/qtgui/qtextblock.html %%QT_DOCDIR%%/qtgui/qtextblockformat-members.html %%QT_DOCDIR%%/qtgui/qtextblockformat.html %%QT_DOCDIR%%/qtgui/qtextblockgroup-members.html %%QT_DOCDIR%%/qtgui/qtextblockgroup-obsolete.html %%QT_DOCDIR%%/qtgui/qtextblockgroup.html %%QT_DOCDIR%%/qtgui/qtextblockuserdata-members.html %%QT_DOCDIR%%/qtgui/qtextblockuserdata.html %%QT_DOCDIR%%/qtgui/qtextcharformat-members.html %%QT_DOCDIR%%/qtgui/qtextcharformat-obsolete.html %%QT_DOCDIR%%/qtgui/qtextcharformat.html %%QT_DOCDIR%%/qtgui/qtextcursor-members.html %%QT_DOCDIR%%/qtgui/qtextcursor.html %%QT_DOCDIR%%/qtgui/qtextdocument-members.html %%QT_DOCDIR%%/qtgui/qtextdocument-obsolete.html %%QT_DOCDIR%%/qtgui/qtextdocument.html %%QT_DOCDIR%%/qtgui/qtextdocumentfragment-members.html %%QT_DOCDIR%%/qtgui/qtextdocumentfragment.html %%QT_DOCDIR%%/qtgui/qtextdocumentwriter-members.html %%QT_DOCDIR%%/qtgui/qtextdocumentwriter.html %%QT_DOCDIR%%/qtgui/qtextformat-members.html %%QT_DOCDIR%%/qtgui/qtextformat.html %%QT_DOCDIR%%/qtgui/qtextfragment-members.html %%QT_DOCDIR%%/qtgui/qtextfragment.html %%QT_DOCDIR%%/qtgui/qtextframe-iterator-members.html %%QT_DOCDIR%%/qtgui/qtextframe-iterator.html %%QT_DOCDIR%%/qtgui/qtextframe-members.html %%QT_DOCDIR%%/qtgui/qtextframe-obsolete.html %%QT_DOCDIR%%/qtgui/qtextframe.html %%QT_DOCDIR%%/qtgui/qtextframeformat-members.html %%QT_DOCDIR%%/qtgui/qtextframeformat.html %%QT_DOCDIR%%/qtgui/qtextimageformat-members.html %%QT_DOCDIR%%/qtgui/qtextimageformat-obsolete.html %%QT_DOCDIR%%/qtgui/qtextimageformat.html %%QT_DOCDIR%%/qtgui/qtextinlineobject-members.html %%QT_DOCDIR%%/qtgui/qtextinlineobject.html %%QT_DOCDIR%%/qtgui/qtextitem-members.html %%QT_DOCDIR%%/qtgui/qtextitem.html %%QT_DOCDIR%%/qtgui/qtextlayout-formatrange-members.html %%QT_DOCDIR%%/qtgui/qtextlayout-formatrange.html %%QT_DOCDIR%%/qtgui/qtextlayout-members.html %%QT_DOCDIR%%/qtgui/qtextlayout-obsolete.html %%QT_DOCDIR%%/qtgui/qtextlayout.html %%QT_DOCDIR%%/qtgui/qtextlength-members.html %%QT_DOCDIR%%/qtgui/qtextlength.html %%QT_DOCDIR%%/qtgui/qtextline-members.html %%QT_DOCDIR%%/qtgui/qtextline.html %%QT_DOCDIR%%/qtgui/qtextlist-members.html %%QT_DOCDIR%%/qtgui/qtextlist-obsolete.html %%QT_DOCDIR%%/qtgui/qtextlist.html %%QT_DOCDIR%%/qtgui/qtextlistformat-members.html %%QT_DOCDIR%%/qtgui/qtextlistformat.html %%QT_DOCDIR%%/qtgui/qtextobject-members.html %%QT_DOCDIR%%/qtgui/qtextobject-obsolete.html %%QT_DOCDIR%%/qtgui/qtextobject.html %%QT_DOCDIR%%/qtgui/qtextobjectinterface-members.html %%QT_DOCDIR%%/qtgui/qtextobjectinterface.html %%QT_DOCDIR%%/qtgui/qtextoption-members.html %%QT_DOCDIR%%/qtgui/qtextoption-obsolete.html %%QT_DOCDIR%%/qtgui/qtextoption-tab-members.html %%QT_DOCDIR%%/qtgui/qtextoption-tab.html %%QT_DOCDIR%%/qtgui/qtextoption.html %%QT_DOCDIR%%/qtgui/qtexttable-members.html %%QT_DOCDIR%%/qtgui/qtexttable-obsolete.html %%QT_DOCDIR%%/qtgui/qtexttable.html %%QT_DOCDIR%%/qtgui/qtexttablecell-members.html %%QT_DOCDIR%%/qtgui/qtexttablecell.html %%QT_DOCDIR%%/qtgui/qtexttablecellformat-members.html %%QT_DOCDIR%%/qtgui/qtexttablecellformat-obsolete.html %%QT_DOCDIR%%/qtgui/qtexttablecellformat.html %%QT_DOCDIR%%/qtgui/qtexttableformat-members.html %%QT_DOCDIR%%/qtgui/qtexttableformat.html %%QT_DOCDIR%%/qtgui/qtgui-analogclock-analogclock-pro.html %%QT_DOCDIR%%/qtgui/qtgui-analogclock-example.html %%QT_DOCDIR%%/qtgui/qtgui-analogclock-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-android-native-style.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-angle-arrayboundsclamper.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-angle-murmurhash.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-angle-systeminfo.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-angle-trace-event.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-angle.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-cocoa-platform-plugin.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-dejayvu.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-freetype-bdf.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-freetype-pcf.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-freetype-zlib.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-freetype.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-grayraster.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-harfbuzz-ng.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-harfbuzz.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-iaccessible2.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-icc-srgb-color-profile.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-libjpeg.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-libpng.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-opengl-es2-headers.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-opengl-headers.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-pixman.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-smooth-scaling-algorithm.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-vera-font.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-vulkan-xml-spec.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-webgradients.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-wintab.html %%QT_DOCDIR%%/qtgui/qtgui-attribution-xcb.html -%%QT_DOCDIR%%/qtgui/qtgui-attribution-xkbcommon.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-camera-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-camera-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-example.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-hellovulkancubes-pro.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-hellovulkancubes-qrc.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-mainwindow-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-mainwindow-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-mesh-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-mesh-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-renderer-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-renderer-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-shader-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-shader-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-vulkanwindow-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkancubes-vulkanwindow-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantexture-example.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantexture-hellovulkantexture-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantexture-hellovulkantexture-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantexture-hellovulkantexture-pro.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantexture-hellovulkantexture-qrc.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantexture-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantriangle-example.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantriangle-hellovulkantriangle-pro.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantriangle-hellovulkantriangle-qrc.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkantriangle-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwidget-example.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwidget-hellovulkanwidget-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwidget-hellovulkanwidget-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwidget-hellovulkanwidget-pro.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwidget-hellovulkanwidget-qrc.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwidget-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwindow-example.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwindow-hellovulkanwindow-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwindow-hellovulkanwindow-h.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwindow-hellovulkanwindow-pro.html %%QT_DOCDIR%%/qtgui/qtgui-hellovulkanwindow-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-index.html %%QT_DOCDIR%%/qtgui/qtgui-module.html %%QT_DOCDIR%%/qtgui/qtgui-openglwindow-example.html %%QT_DOCDIR%%/qtgui/qtgui-openglwindow-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-openglwindow-openglwindow-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-openglwindow-openglwindow-h.html %%QT_DOCDIR%%/qtgui/qtgui-openglwindow-openglwindow-pro.html %%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-example.html %%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-main-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-rasterwindow-cpp.html %%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-rasterwindow-h.html %%QT_DOCDIR%%/qtgui/qtgui-rasterwindow-rasterwindow-pro.html %%QT_DOCDIR%%/qtgui/qtgui.index %%QT_DOCDIR%%/qtgui/qtgui.qhp %%QT_DOCDIR%%/qtgui/qtgui.qhp.sha1 %%QT_DOCDIR%%/qtgui/qtgui.tags %%QT_DOCDIR%%/qtgui/qtouchdevice-members.html %%QT_DOCDIR%%/qtgui/qtouchdevice.html %%QT_DOCDIR%%/qtgui/qtouchevent-members.html %%QT_DOCDIR%%/qtgui/qtouchevent-obsolete.html %%QT_DOCDIR%%/qtgui/qtouchevent-touchpoint-members.html %%QT_DOCDIR%%/qtgui/qtouchevent-touchpoint-obsolete.html %%QT_DOCDIR%%/qtgui/qtouchevent-touchpoint.html %%QT_DOCDIR%%/qtgui/qtouchevent.html %%QT_DOCDIR%%/qtgui/qtransform-members.html %%QT_DOCDIR%%/qtgui/qtransform-obsolete.html %%QT_DOCDIR%%/qtgui/qtransform.html %%QT_DOCDIR%%/qtgui/qvalidator-members.html %%QT_DOCDIR%%/qtgui/qvalidator-obsolete.html %%QT_DOCDIR%%/qtgui/qvalidator.html %%QT_DOCDIR%%/qtgui/qvector2d-members.html %%QT_DOCDIR%%/qtgui/qvector2d.html %%QT_DOCDIR%%/qtgui/qvector3d-members.html %%QT_DOCDIR%%/qtgui/qvector3d.html %%QT_DOCDIR%%/qtgui/qvector4d-members.html %%QT_DOCDIR%%/qtgui/qvector4d.html %%QT_DOCDIR%%/qtgui/qvulkanextension-members.html %%QT_DOCDIR%%/qtgui/qvulkanextension.html %%QT_DOCDIR%%/qtgui/qvulkaninfovector-members.html %%QT_DOCDIR%%/qtgui/qvulkaninfovector.html %%QT_DOCDIR%%/qtgui/qvulkaninstance-members.html %%QT_DOCDIR%%/qtgui/qvulkaninstance.html %%QT_DOCDIR%%/qtgui/qvulkanlayer-members.html %%QT_DOCDIR%%/qtgui/qvulkanlayer.html %%QT_DOCDIR%%/qtgui/qvulkanwindow-members.html %%QT_DOCDIR%%/qtgui/qvulkanwindow-obsolete.html %%QT_DOCDIR%%/qtgui/qvulkanwindow.html %%QT_DOCDIR%%/qtgui/qvulkanwindowrenderer-members.html %%QT_DOCDIR%%/qtgui/qvulkanwindowrenderer.html %%QT_DOCDIR%%/qtgui/qwhatsthisclickedevent-members.html %%QT_DOCDIR%%/qtgui/qwhatsthisclickedevent.html %%QT_DOCDIR%%/qtgui/qwheelevent-members.html %%QT_DOCDIR%%/qtgui/qwheelevent-obsolete.html %%QT_DOCDIR%%/qtgui/qwheelevent.html %%QT_DOCDIR%%/qtgui/qwindow-members.html %%QT_DOCDIR%%/qtgui/qwindow-obsolete.html %%QT_DOCDIR%%/qtgui/qwindow.html %%QT_DOCDIR%%/qtgui/qwindowstatechangeevent-members.html %%QT_DOCDIR%%/qtgui/qwindowstatechangeevent.html %%QT_DOCDIR%%/qtgui/richtext-advanced-processing.html %%QT_DOCDIR%%/qtgui/richtext-common-tasks.html %%QT_DOCDIR%%/qtgui/richtext-cursor.html %%QT_DOCDIR%%/qtgui/richtext-html-subset.html %%QT_DOCDIR%%/qtgui/richtext-layouts.html %%QT_DOCDIR%%/qtgui/richtext-processing.html %%QT_DOCDIR%%/qtgui/richtext-structure.html %%QT_DOCDIR%%/qtgui/richtext.html %%QT_DOCDIR%%/qtgui/style/offline-simple.css %%QT_DOCDIR%%/qtgui/style/offline.css %%QT_DOCDIR%%/qthelp.qch %%QT_DOCDIR%%/qthelp/examples-manifest.xml %%QT_DOCDIR%%/qthelp/examples-qthelp.html %%QT_DOCDIR%%/qthelp/helpsystem.html %%QT_DOCDIR%%/qthelp/images/arrow_bc.png %%QT_DOCDIR%%/qthelp/images/bgrContent.png %%QT_DOCDIR%%/qthelp/images/btn_next.png %%QT_DOCDIR%%/qthelp/images/btn_prev.png %%QT_DOCDIR%%/qthelp/images/bullet_dn.png %%QT_DOCDIR%%/qthelp/images/bullet_sq.png %%QT_DOCDIR%%/qthelp/images/home.png %%QT_DOCDIR%%/qthelp/images/ico_note.png %%QT_DOCDIR%%/qthelp/images/ico_note_attention.png %%QT_DOCDIR%%/qthelp/images/ico_out.png %%QT_DOCDIR%%/qthelp/images/logo.png %%QT_DOCDIR%%/qthelp/qhelpcontentitem-members.html %%QT_DOCDIR%%/qthelp/qhelpcontentitem.html %%QT_DOCDIR%%/qthelp/qhelpcontentmodel-members.html %%QT_DOCDIR%%/qthelp/qhelpcontentmodel-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpcontentmodel.html %%QT_DOCDIR%%/qthelp/qhelpcontentwidget-members.html %%QT_DOCDIR%%/qthelp/qhelpcontentwidget-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpcontentwidget.html %%QT_DOCDIR%%/qthelp/qhelpengine-members.html %%QT_DOCDIR%%/qthelp/qhelpengine-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpengine.html %%QT_DOCDIR%%/qthelp/qhelpenginecore-members.html %%QT_DOCDIR%%/qthelp/qhelpenginecore-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpenginecore.html %%QT_DOCDIR%%/qthelp/qhelpindexmodel-members.html %%QT_DOCDIR%%/qthelp/qhelpindexmodel-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpindexmodel.html %%QT_DOCDIR%%/qthelp/qhelpindexwidget-members.html %%QT_DOCDIR%%/qthelp/qhelpindexwidget-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpindexwidget.html %%QT_DOCDIR%%/qthelp/qhelpsearchengine-members.html %%QT_DOCDIR%%/qthelp/qhelpsearchengine-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpsearchengine.html %%QT_DOCDIR%%/qthelp/qhelpsearchquery-members.html %%QT_DOCDIR%%/qthelp/qhelpsearchquery.html %%QT_DOCDIR%%/qthelp/qhelpsearchquerywidget-members.html %%QT_DOCDIR%%/qthelp/qhelpsearchquerywidget-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpsearchquerywidget.html %%QT_DOCDIR%%/qthelp/qhelpsearchresult-members.html %%QT_DOCDIR%%/qthelp/qhelpsearchresult.html %%QT_DOCDIR%%/qthelp/qhelpsearchresultwidget-members.html %%QT_DOCDIR%%/qthelp/qhelpsearchresultwidget-obsolete.html %%QT_DOCDIR%%/qthelp/qhelpsearchresultwidget.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-contextsensitivehelp-pro.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-docs-wateringmachine-qhcp.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-docs-wateringmachine-qhp.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-example.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-helpbrowser-cpp.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-helpbrowser-h.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-main-cpp.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-wateringconfigdialog-cpp.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-wateringconfigdialog-h.html %%QT_DOCDIR%%/qthelp/qthelp-contextsensitivehelp-wateringconfigdialog-ui.html %%QT_DOCDIR%%/qthelp/qthelp-framework.html %%QT_DOCDIR%%/qthelp/qthelp-index.html %%QT_DOCDIR%%/qthelp/qthelp-module.html %%QT_DOCDIR%%/qthelp/qthelp.index %%QT_DOCDIR%%/qthelp/qthelp.qhp %%QT_DOCDIR%%/qthelp/qthelp.qhp.sha1 %%QT_DOCDIR%%/qthelp/qthelpproject.html %%QT_DOCDIR%%/qthelp/style/offline-simple.css %%QT_DOCDIR%%/qthelp/style/offline.css %%QT_DOCDIR%%/qtimageformats.qch %%QT_DOCDIR%%/qtimageformats/images/arrow_bc.png %%QT_DOCDIR%%/qtimageformats/images/bgrContent.png %%QT_DOCDIR%%/qtimageformats/images/btn_next.png %%QT_DOCDIR%%/qtimageformats/images/btn_prev.png %%QT_DOCDIR%%/qtimageformats/images/bullet_dn.png %%QT_DOCDIR%%/qtimageformats/images/bullet_sq.png %%QT_DOCDIR%%/qtimageformats/images/home.png %%QT_DOCDIR%%/qtimageformats/images/ico_note.png %%QT_DOCDIR%%/qtimageformats/images/ico_note_attention.png %%QT_DOCDIR%%/qtimageformats/images/ico_out.png %%QT_DOCDIR%%/qtimageformats/images/logo.png %%QT_DOCDIR%%/qtimageformats/qtimageformats-attribution-libtiff.html %%QT_DOCDIR%%/qtimageformats/qtimageformats-attribution-libwebp.html %%QT_DOCDIR%%/qtimageformats/qtimageformats-index.html %%QT_DOCDIR%%/qtimageformats/qtimageformats.index %%QT_DOCDIR%%/qtimageformats/qtimageformats.qhp %%QT_DOCDIR%%/qtimageformats/qtimageformats.qhp.sha1 %%QT_DOCDIR%%/qtimageformats/style/offline-simple.css %%QT_DOCDIR%%/qtimageformats/style/offline.css %%QT_DOCDIR%%/qtlabscalendar.qch %%QT_DOCDIR%%/qtlabscalendar/images/arrow_bc.png %%QT_DOCDIR%%/qtlabscalendar/images/bgrContent.png %%QT_DOCDIR%%/qtlabscalendar/images/btn_next.png %%QT_DOCDIR%%/qtlabscalendar/images/btn_prev.png %%QT_DOCDIR%%/qtlabscalendar/images/bullet_dn.png %%QT_DOCDIR%%/qtlabscalendar/images/bullet_sq.png %%QT_DOCDIR%%/qtlabscalendar/images/home.png %%QT_DOCDIR%%/qtlabscalendar/images/ico_note.png %%QT_DOCDIR%%/qtlabscalendar/images/ico_note_attention.png %%QT_DOCDIR%%/qtlabscalendar/images/ico_out.png %%QT_DOCDIR%%/qtlabscalendar/images/logo.png %%QT_DOCDIR%%/qtlabscalendar/images/qtlabscalendar-dayofweekrow-layout.png %%QT_DOCDIR%%/qtlabscalendar/images/qtlabscalendar-dayofweekrow.png %%QT_DOCDIR%%/qtlabscalendar/images/qtlabscalendar-monthgrid-layout.png %%QT_DOCDIR%%/qtlabscalendar/images/qtlabscalendar-monthgrid.png %%QT_DOCDIR%%/qtlabscalendar/images/qtlabscalendar-weeknumbercolumn-layout.png %%QT_DOCDIR%%/qtlabscalendar/images/qtlabscalendar-weeknumbercolumn.png %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-calendar-members.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-calendar.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-calendarmodel-members.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-calendarmodel.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-dayofweekrow-members.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-dayofweekrow.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-monthgrid-members.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-monthgrid.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-weeknumbercolumn-members.html %%QT_DOCDIR%%/qtlabscalendar/qml-qt-labs-calendar-weeknumbercolumn.html %%QT_DOCDIR%%/qtlabscalendar/qt-labs-calendar-qmlmodule.html %%QT_DOCDIR%%/qtlabscalendar/qtlabscalendar-index.html %%QT_DOCDIR%%/qtlabscalendar/qtlabscalendar.index %%QT_DOCDIR%%/qtlabscalendar/qtlabscalendar.qhp %%QT_DOCDIR%%/qtlabscalendar/qtlabscalendar.qhp.sha1 %%QT_DOCDIR%%/qtlabscalendar/qtlabscalendar.tags %%QT_DOCDIR%%/qtlabscalendar/style/offline-simple.css %%QT_DOCDIR%%/qtlabscalendar/style/offline.css %%QT_DOCDIR%%/qtlabsplatform.qch %%QT_DOCDIR%%/qtlabsplatform/images/arrow_bc.png %%QT_DOCDIR%%/qtlabsplatform/images/bgrContent.png %%QT_DOCDIR%%/qtlabsplatform/images/btn_next.png %%QT_DOCDIR%%/qtlabsplatform/images/btn_prev.png %%QT_DOCDIR%%/qtlabsplatform/images/bullet_dn.png %%QT_DOCDIR%%/qtlabsplatform/images/bullet_sq.png %%QT_DOCDIR%%/qtlabsplatform/images/home.png %%QT_DOCDIR%%/qtlabsplatform/images/ico_note.png %%QT_DOCDIR%%/qtlabsplatform/images/ico_note_attention.png %%QT_DOCDIR%%/qtlabsplatform/images/ico_out.png %%QT_DOCDIR%%/qtlabsplatform/images/logo.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-colordialog-gtk.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-filedialog-gtk.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-folderdialog-gtk.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-fontdialog-gtk.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-menu.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-menubar.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-messagedialog-android.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-messagedialog-informative-android.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-systemtrayicon-menu.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-systemtrayicon-message.png %%QT_DOCDIR%%/qtlabsplatform/images/qtlabsplatform-systemtrayicon.png %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-colordialog-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-colordialog.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-dialog-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-dialog.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-filedialog-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-filedialog.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-folderdialog-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-folderdialog.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-fontdialog-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-fontdialog.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menu-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menu-obsolete.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menu.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menubar-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menubar.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menuitem-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menuitem-obsolete.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menuitem.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menuitemgroup-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menuitemgroup.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menuseparator-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-menuseparator.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-messagedialog-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-messagedialog.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-standardpaths-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-standardpaths.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-systemtrayicon-members.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-systemtrayicon-obsolete.html %%QT_DOCDIR%%/qtlabsplatform/qml-qt-labs-platform-systemtrayicon.html %%QT_DOCDIR%%/qtlabsplatform/qt-labs-platform-qmlmodule.html %%QT_DOCDIR%%/qtlabsplatform/qtlabsplatform-index.html %%QT_DOCDIR%%/qtlabsplatform/qtlabsplatform.index %%QT_DOCDIR%%/qtlabsplatform/qtlabsplatform.qhp %%QT_DOCDIR%%/qtlabsplatform/qtlabsplatform.qhp.sha1 %%QT_DOCDIR%%/qtlabsplatform/qtlabsplatform.tags %%QT_DOCDIR%%/qtlabsplatform/style/offline-simple.css %%QT_DOCDIR%%/qtlabsplatform/style/offline.css %%QT_DOCDIR%%/qtlinguist.qch %%QT_DOCDIR%%/qtlinguist/examples-linguist.html %%QT_DOCDIR%%/qtlinguist/examples-manifest.xml %%QT_DOCDIR%%/qtlinguist/images/arrow_bc.png %%QT_DOCDIR%%/qtlinguist/images/bgrContent.png %%QT_DOCDIR%%/qtlinguist/images/btn_next.png %%QT_DOCDIR%%/qtlinguist/images/btn_prev.png %%QT_DOCDIR%%/qtlinguist/images/bullet_dn.png %%QT_DOCDIR%%/qtlinguist/images/bullet_sq.png %%QT_DOCDIR%%/qtlinguist/images/home.png %%QT_DOCDIR%%/qtlinguist/images/ico_note.png %%QT_DOCDIR%%/qtlinguist/images/ico_note_attention.png %%QT_DOCDIR%%/qtlinguist/images/ico_out.png %%QT_DOCDIR%%/qtlinguist/images/linguist-arrowpad_en.png %%QT_DOCDIR%%/qtlinguist/images/linguist-arrowpad_fr.png %%QT_DOCDIR%%/qtlinguist/images/linguist-arrowpad_nl.png %%QT_DOCDIR%%/qtlinguist/images/linguist-batchtranslation.png %%QT_DOCDIR%%/qtlinguist/images/linguist-check-empty.png %%QT_DOCDIR%%/qtlinguist/images/linguist-check-obsolete.png %%QT_DOCDIR%%/qtlinguist/images/linguist-check-off.png %%QT_DOCDIR%%/qtlinguist/images/linguist-check-on.png %%QT_DOCDIR%%/qtlinguist/images/linguist-check-warning.png %%QT_DOCDIR%%/qtlinguist/images/linguist-danger.png %%QT_DOCDIR%%/qtlinguist/images/linguist-doneandnext.png %%QT_DOCDIR%%/qtlinguist/images/linguist-hellotr_en.png %%QT_DOCDIR%%/qtlinguist/images/linguist-hellotr_la.png %%QT_DOCDIR%%/qtlinguist/images/linguist-linguist.png %%QT_DOCDIR%%/qtlinguist/images/linguist-linguist_2.png %%QT_DOCDIR%%/qtlinguist/images/linguist-phrasebookdialog.png %%QT_DOCDIR%%/qtlinguist/images/linguist-translationfilesettings.png %%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_10_en.png %%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_10_pt_bad.png %%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_10_pt_good.png %%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_11_en.png %%QT_DOCDIR%%/qtlinguist/images/linguist-trollprint_11_pt.png %%QT_DOCDIR%%/qtlinguist/images/logo.png %%QT_DOCDIR%%/qtlinguist/linguist-id-based-i18n.html %%QT_DOCDIR%%/qtlinguist/linguist-manager.html %%QT_DOCDIR%%/qtlinguist/linguist-overview.html %%QT_DOCDIR%%/qtlinguist/linguist-programmers.html %%QT_DOCDIR%%/qtlinguist/linguist-translators.html %%QT_DOCDIR%%/qtlinguist/linguist-ts-file-format.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-arrowpad-cpp.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-arrowpad-h.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-arrowpad-pro.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-example.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-main-cpp.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-mainwindow-cpp.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-arrowpad-mainwindow-h.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-hellotr-example.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-hellotr-hellotr-pro.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-hellotr-main-cpp.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-index.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-example.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-main-cpp.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-mainwindow-cpp.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-mainwindow-h.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-printpanel-cpp.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-printpanel-h.html %%QT_DOCDIR%%/qtlinguist/qtlinguist-trollprint-trollprint-pro.html %%QT_DOCDIR%%/qtlinguist/qtlinguist.index %%QT_DOCDIR%%/qtlinguist/qtlinguist.qhp %%QT_DOCDIR%%/qtlinguist/qtlinguist.qhp.sha1 %%QT_DOCDIR%%/qtlinguist/style/offline-simple.css %%QT_DOCDIR%%/qtlinguist/style/offline.css %%QT_DOCDIR%%/qtlocation.qch %%QT_DOCDIR%%/qtlocation/examples-manifest.xml %%QT_DOCDIR%%/qtlocation/images/api-mapcircle.png %%QT_DOCDIR%%/qtlocation/images/api-mapitemgroup.png %%QT_DOCDIR%%/qtlocation/images/api-mappolygon.png %%QT_DOCDIR%%/qtlocation/images/api-mappolyline.png %%QT_DOCDIR%%/qtlocation/images/api-mapquickitem-anchor.png %%QT_DOCDIR%%/qtlocation/images/api-mapquickitem.png %%QT_DOCDIR%%/qtlocation/images/api-maprectangle.png %%QT_DOCDIR%%/qtlocation/images/arrow_bc.png %%QT_DOCDIR%%/qtlocation/images/bgrContent.png %%QT_DOCDIR%%/qtlocation/images/btn_next.png %%QT_DOCDIR%%/qtlocation/images/btn_prev.png %%QT_DOCDIR%%/qtlocation/images/bullet_dn.png %%QT_DOCDIR%%/qtlocation/images/bullet_sq.png %%QT_DOCDIR%%/qtlocation/images/home.png %%QT_DOCDIR%%/qtlocation/images/ico_note.png %%QT_DOCDIR%%/qtlocation/images/ico_note_attention.png %%QT_DOCDIR%%/qtlocation/images/ico_out.png %%QT_DOCDIR%%/qtlocation/images/logo.png %%QT_DOCDIR%%/qtlocation/images/mapviewer.png %%QT_DOCDIR%%/qtlocation/images/minimal_map.png %%QT_DOCDIR%%/qtlocation/images/places.png %%QT_DOCDIR%%/qtlocation/images/places_list.png %%QT_DOCDIR%%/qtlocation/images/places_map.png %%QT_DOCDIR%%/qtlocation/images/planespotter.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/mapviewer/resources/icon.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/mapviewer/resources/marker.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/mapviewer/resources/scale.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/mapviewer/resources/scale_end.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/categories.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/left.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/marker.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/right.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/scale.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/scale_end.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/search.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places/resources/star.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places_list/marker.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/places_map/marker.png %%QT_DOCDIR%%/qtlocation/images/used-in-examples/planespotter/airplane.png %%QT_DOCDIR%%/qtlocation/location-cpp-qml.html %%QT_DOCDIR%%/qtlocation/location-maps-cpp.html %%QT_DOCDIR%%/qtlocation/location-maps-qml.html %%QT_DOCDIR%%/qtlocation/location-places-backend.html %%QT_DOCDIR%%/qtlocation/location-places-cpp.html %%QT_DOCDIR%%/qtlocation/location-places-qml.html %%QT_DOCDIR%%/qtlocation/location-plugin-esri.html %%QT_DOCDIR%%/qtlocation/location-plugin-here.html %%QT_DOCDIR%%/qtlocation/location-plugin-itemsoverlay.html %%QT_DOCDIR%%/qtlocation/location-plugin-mapbox.html %%QT_DOCDIR%%/qtlocation/location-plugin-mapboxgl.html %%QT_DOCDIR%%/qtlocation/location-plugin-osm.html %%QT_DOCDIR%%/qtlocation/qgeocodereply-members.html %%QT_DOCDIR%%/qtlocation/qgeocodereply-obsolete.html %%QT_DOCDIR%%/qtlocation/qgeocodereply.html %%QT_DOCDIR%%/qtlocation/qgeocodingmanager-members.html %%QT_DOCDIR%%/qtlocation/qgeocodingmanager-obsolete.html %%QT_DOCDIR%%/qtlocation/qgeocodingmanager.html %%QT_DOCDIR%%/qtlocation/qgeocodingmanagerengine-members.html %%QT_DOCDIR%%/qtlocation/qgeocodingmanagerengine-obsolete.html %%QT_DOCDIR%%/qtlocation/qgeocodingmanagerengine.html %%QT_DOCDIR%%/qtlocation/qgeomaneuver-members.html %%QT_DOCDIR%%/qtlocation/qgeomaneuver.html %%QT_DOCDIR%%/qtlocation/qgeoroute-members.html %%QT_DOCDIR%%/qtlocation/qgeoroute.html %%QT_DOCDIR%%/qtlocation/qgeorouteleg-members.html %%QT_DOCDIR%%/qtlocation/qgeorouteleg.html %%QT_DOCDIR%%/qtlocation/qgeoroutereply-members.html %%QT_DOCDIR%%/qtlocation/qgeoroutereply-obsolete.html %%QT_DOCDIR%%/qtlocation/qgeoroutereply.html %%QT_DOCDIR%%/qtlocation/qgeorouterequest-members.html %%QT_DOCDIR%%/qtlocation/qgeorouterequest.html %%QT_DOCDIR%%/qtlocation/qgeoroutesegment-members.html %%QT_DOCDIR%%/qtlocation/qgeoroutesegment.html %%QT_DOCDIR%%/qtlocation/qgeoroutingmanager-members.html %%QT_DOCDIR%%/qtlocation/qgeoroutingmanager-obsolete.html %%QT_DOCDIR%%/qtlocation/qgeoroutingmanager.html %%QT_DOCDIR%%/qtlocation/qgeoroutingmanagerengine-members.html %%QT_DOCDIR%%/qtlocation/qgeoroutingmanagerengine-obsolete.html %%QT_DOCDIR%%/qtlocation/qgeoroutingmanagerengine.html %%QT_DOCDIR%%/qtlocation/qgeoserviceprovider-members.html %%QT_DOCDIR%%/qtlocation/qgeoserviceprovider-obsolete.html %%QT_DOCDIR%%/qtlocation/qgeoserviceprovider.html %%QT_DOCDIR%%/qtlocation/qgeoserviceproviderfactory-members.html %%QT_DOCDIR%%/qtlocation/qgeoserviceproviderfactory.html %%QT_DOCDIR%%/qtlocation/qgeoserviceproviderfactoryv2-members.html %%QT_DOCDIR%%/qtlocation/qgeoserviceproviderfactoryv2.html %%QT_DOCDIR%%/qtlocation/qlocation.html %%QT_DOCDIR%%/qtlocation/qml-location5-maps.html %%QT_DOCDIR%%/qtlocation/qml-mapcircleobject-members.html %%QT_DOCDIR%%/qtlocation/qml-mapcircleobject.html %%QT_DOCDIR%%/qtlocation/qml-mapiconobject-members.html %%QT_DOCDIR%%/qtlocation/qml-mapiconobject.html %%QT_DOCDIR%%/qtlocation/qml-mapobjectview-members.html %%QT_DOCDIR%%/qtlocation/qml-mapobjectview.html %%QT_DOCDIR%%/qtlocation/qml-mappolygonobject-members.html %%QT_DOCDIR%%/qtlocation/qml-mappolygonobject.html %%QT_DOCDIR%%/qtlocation/qml-mappolylineobject-members.html %%QT_DOCDIR%%/qtlocation/qml-mappolylineobject.html %%QT_DOCDIR%%/qtlocation/qml-maprouteobject-members.html %%QT_DOCDIR%%/qtlocation/qml-maprouteobject.html %%QT_DOCDIR%%/qtlocation/qml-navigator-members.html %%QT_DOCDIR%%/qtlocation/qml-navigator.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-cameracapabilities-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-cameracapabilities.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-category-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-category.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-categorymodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-categorymodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetail-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetail.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetails-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-contactdetails.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-dynamicparameter-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-dynamicparameter.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-editorialmodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-editorialmodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-extendedattributes-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-extendedattributes.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-geocodemodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-geocodemodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-icon-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-icon.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-imagemodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-imagemodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-map-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-map.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapcircle-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapcircle.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapcopyrightnotice-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapcopyrightnotice.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapgesturearea-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapgesturearea.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapitemgroup-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapitemgroup.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapitemview-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapitemview.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapparameter-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapparameter.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappinchevent-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappinchevent.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolygon-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolygon.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolyline-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mappolyline.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapquickitem-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-mapquickitem.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-maprectangle-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-maprectangle.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-maproute-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-maproute.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-maptype-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-maptype.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-place-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-place.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-placeattribute-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-placeattribute.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchmodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchmodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchsuggestionmodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-placesearchsuggestionmodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-plugin-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-plugin.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-pluginparameter-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-pluginparameter.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-ratings-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-ratings.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-reviewmodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-reviewmodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-route-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-route.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routeleg-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routeleg.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemaneuver-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemaneuver.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemodel-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routemodel.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routequery-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routequery.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routesegment-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-routesegment.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-supplier-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-supplier.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-user-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-user.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-waypoint-members.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation-waypoint.html %%QT_DOCDIR%%/qtlocation/qml-qtlocation5-maps.html %%QT_DOCDIR%%/qtlocation/qplace-members.html %%QT_DOCDIR%%/qtlocation/qplace.html %%QT_DOCDIR%%/qtlocation/qplaceattribute-members.html %%QT_DOCDIR%%/qtlocation/qplaceattribute.html %%QT_DOCDIR%%/qtlocation/qplacecategory-members.html %%QT_DOCDIR%%/qtlocation/qplacecategory.html %%QT_DOCDIR%%/qtlocation/qplacecontactdetail-members.html %%QT_DOCDIR%%/qtlocation/qplacecontactdetail.html %%QT_DOCDIR%%/qtlocation/qplacecontent-members.html %%QT_DOCDIR%%/qtlocation/qplacecontent.html %%QT_DOCDIR%%/qtlocation/qplacecontentreply-members.html %%QT_DOCDIR%%/qtlocation/qplacecontentreply-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacecontentreply.html %%QT_DOCDIR%%/qtlocation/qplacecontentrequest-members.html %%QT_DOCDIR%%/qtlocation/qplacecontentrequest.html %%QT_DOCDIR%%/qtlocation/qplacedetailsreply-members.html %%QT_DOCDIR%%/qtlocation/qplacedetailsreply-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacedetailsreply.html %%QT_DOCDIR%%/qtlocation/qplaceeditorial-members.html %%QT_DOCDIR%%/qtlocation/qplaceeditorial.html %%QT_DOCDIR%%/qtlocation/qplaceicon-members.html %%QT_DOCDIR%%/qtlocation/qplaceicon.html %%QT_DOCDIR%%/qtlocation/qplaceidreply-members.html %%QT_DOCDIR%%/qtlocation/qplaceidreply-obsolete.html %%QT_DOCDIR%%/qtlocation/qplaceidreply.html %%QT_DOCDIR%%/qtlocation/qplaceimage-members.html %%QT_DOCDIR%%/qtlocation/qplaceimage.html %%QT_DOCDIR%%/qtlocation/qplacemanager-members.html %%QT_DOCDIR%%/qtlocation/qplacemanager-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacemanager.html %%QT_DOCDIR%%/qtlocation/qplacemanagerengine-members.html %%QT_DOCDIR%%/qtlocation/qplacemanagerengine-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacemanagerengine.html %%QT_DOCDIR%%/qtlocation/qplacematchreply-members.html %%QT_DOCDIR%%/qtlocation/qplacematchreply-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacematchreply.html %%QT_DOCDIR%%/qtlocation/qplacematchrequest-members.html %%QT_DOCDIR%%/qtlocation/qplacematchrequest.html %%QT_DOCDIR%%/qtlocation/qplaceproposedsearchresult-members.html %%QT_DOCDIR%%/qtlocation/qplaceproposedsearchresult.html %%QT_DOCDIR%%/qtlocation/qplaceratings-members.html %%QT_DOCDIR%%/qtlocation/qplaceratings.html %%QT_DOCDIR%%/qtlocation/qplacereply-members.html %%QT_DOCDIR%%/qtlocation/qplacereply-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacereply.html %%QT_DOCDIR%%/qtlocation/qplaceresult-members.html %%QT_DOCDIR%%/qtlocation/qplaceresult.html %%QT_DOCDIR%%/qtlocation/qplacereview-members.html %%QT_DOCDIR%%/qtlocation/qplacereview.html %%QT_DOCDIR%%/qtlocation/qplacesearchreply-members.html %%QT_DOCDIR%%/qtlocation/qplacesearchreply-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacesearchreply.html %%QT_DOCDIR%%/qtlocation/qplacesearchrequest-members.html %%QT_DOCDIR%%/qtlocation/qplacesearchrequest.html %%QT_DOCDIR%%/qtlocation/qplacesearchresult-members.html %%QT_DOCDIR%%/qtlocation/qplacesearchresult.html %%QT_DOCDIR%%/qtlocation/qplacesearchsuggestionreply-members.html %%QT_DOCDIR%%/qtlocation/qplacesearchsuggestionreply-obsolete.html %%QT_DOCDIR%%/qtlocation/qplacesearchsuggestionreply.html %%QT_DOCDIR%%/qtlocation/qplacesupplier-members.html %%QT_DOCDIR%%/qtlocation/qplacesupplier.html %%QT_DOCDIR%%/qtlocation/qplaceuser-members.html %%QT_DOCDIR%%/qtlocation/qplaceuser.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-clip2tri.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-clipper.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-earcut.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-boost.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-css-color-parser.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-earcut.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-geojson.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-geojsonvt.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-geometry.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-kdbush.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-libcxx.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-nunicode.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-parsedate.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-polylabel.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-protozero.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-rapidjson.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-shelfpack.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-supercluster.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-tao-tuple.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-unique-resource.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-variant.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-vectortile.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl-wagyu.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-mapboxgl.html %%QT_DOCDIR%%/qtlocation/qtlocation-attribution-poly2tri.html %%QT_DOCDIR%%/qtlocation/qtlocation-changes.html %%QT_DOCDIR%%/qtlocation/qtlocation-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-examples.html %%QT_DOCDIR%%/qtlocation/qtlocation-geoservices.html %%QT_DOCDIR%%/qtlocation/qtlocation-index.html %%QT_DOCDIR%%/qtlocation/qtlocation-itemview-transitions-example.html %%QT_DOCDIR%%/qtlocation/qtlocation-itemview-transitions-itemview-transitions-pro.html %%QT_DOCDIR%%/qtlocation/qtlocation-itemview-transitions-main-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-itemview-transitions-main-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-itemview-transitions-oslolistmodel-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-example.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-geocode-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-geocodeform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-locale-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-localeform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-message-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-messageform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-reversegeocode-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-reversegeocodeform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routeaddress-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routeaddressform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routecoordinate-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routecoordinateform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routelist-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routelistdelegate-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-forms-routelistheader-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-helper-js.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-main-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-circleitem-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-imageitem-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-mapcomponent-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-mapsliders-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-marker-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-minimap-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-polygonitem-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-polylineitem-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-map-rectangleitem-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-mapviewer-pro.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-mapviewer-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-mapviewer-qrc.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-itempopupmenu-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-mainmenu-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-mappopupmenu-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-mapviewer-menus-markerpopupmenu-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-example.html %%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-main-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-main-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-minimal-map-pro.html %%QT_DOCDIR%%/qtlocation/qtlocation-minimal-map-qml-qrc.html %%QT_DOCDIR%%/qtlocation/qtlocation-module.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-example.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-message-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-messageform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-placedetails-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-placedetailsform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingbox-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingboxform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingcircle-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchboundingcircleform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchcenter-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchcenterform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchoptions-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-forms-searchoptionsform-ui-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-helper-js.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-items-mainmenu-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-items-mapcomponent-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-items-searchbar-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-list-example.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-list-main-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-list-marker-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-list-places-list-pro.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-list-places-list-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-list-places-list-qrc.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-main-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-map-example.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-map-main-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-map-places-map-pro.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-map-places-map-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-map-places-map-qrc.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-places-pro.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-places-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-places-qrc.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-categorydelegate-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-categoryview-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-editorialdelegate-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-editorialpage-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-editorialview-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-imageview-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-ratingview-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-reviewdelegate-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-reviewpage-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-reviewview-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-searchresultdelegate-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-searchresultview-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-places-views-suggestionview-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-example.html %%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-main-cpp.html %%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-plane-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-planespotter-pro.html %%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-planespotter-qml.html %%QT_DOCDIR%%/qtlocation/qtlocation-planespotter-qml-qrc.html %%QT_DOCDIR%%/qtlocation/qtlocation-qmlmodule.html %%QT_DOCDIR%%/qtlocation/qtlocation.index %%QT_DOCDIR%%/qtlocation/qtlocation.qhp %%QT_DOCDIR%%/qtlocation/qtlocation.qhp.sha1 %%QT_DOCDIR%%/qtlocation/qtlocation.tags %%QT_DOCDIR%%/qtlocation/style/offline-simple.css %%QT_DOCDIR%%/qtlocation/style/offline.css %%QT_DOCDIR%%/qtmacextras.qch %%QT_DOCDIR%%/qtmacextras/examples-manifest.xml %%QT_DOCDIR%%/qtmacextras/examples-qtmacextras.html %%QT_DOCDIR%%/qtmacextras/images/arrow_bc.png %%QT_DOCDIR%%/qtmacextras/images/bgrContent.png %%QT_DOCDIR%%/qtmacextras/images/btn_next.png %%QT_DOCDIR%%/qtmacextras/images/btn_prev.png %%QT_DOCDIR%%/qtmacextras/images/bullet_dn.png %%QT_DOCDIR%%/qtmacextras/images/bullet_sq.png %%QT_DOCDIR%%/qtmacextras/images/home.png %%QT_DOCDIR%%/qtmacextras/images/ico_note.png %%QT_DOCDIR%%/qtmacextras/images/ico_note_attention.png %%QT_DOCDIR%%/qtmacextras/images/ico_out.png %%QT_DOCDIR%%/qtmacextras/images/logo.png %%QT_DOCDIR%%/qtmacextras/images/used-in-examples/macfunctions/qtlogo.png %%QT_DOCDIR%%/qtmacextras/qmacpasteboardmime-members.html %%QT_DOCDIR%%/qtmacextras/qmacpasteboardmime.html %%QT_DOCDIR%%/qtmacextras/qmactoolbar-members.html %%QT_DOCDIR%%/qtmacextras/qmactoolbar-obsolete.html %%QT_DOCDIR%%/qtmacextras/qmactoolbar.html %%QT_DOCDIR%%/qtmacextras/qmactoolbaritem-members.html %%QT_DOCDIR%%/qtmacextras/qmactoolbaritem-obsolete.html %%QT_DOCDIR%%/qtmacextras/qmactoolbaritem.html %%QT_DOCDIR%%/qtmacextras/qtmac-obsolete.html %%QT_DOCDIR%%/qtmacextras/qtmac.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-embeddedqwindow-pro.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-example.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-window-cpp.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-embeddedqwindow-window-h.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-index.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-example.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-macfunctions-pro.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-macfunctions-qrc.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-macfunctions-main-cpp.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-macpasteboardmime-example.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-macpasteboardmime-macpasteboardmime-pro.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-macpasteboardmime-main-cpp.html %%QT_DOCDIR%%/qtmacextras/qtmacextras-module.html %%QT_DOCDIR%%/qtmacextras/qtmacextras.index %%QT_DOCDIR%%/qtmacextras/qtmacextras.qhp %%QT_DOCDIR%%/qtmacextras/qtmacextras.qhp.sha1 %%QT_DOCDIR%%/qtmacextras/style/offline-simple.css %%QT_DOCDIR%%/qtmacextras/style/offline.css %%QT_DOCDIR%%/qtmultimedia.qch %%QT_DOCDIR%%/qtmultimedia/audiooverview.html %%QT_DOCDIR%%/qtmultimedia/cameraoverview.html %%QT_DOCDIR%%/qtmultimedia/changes.html %%QT_DOCDIR%%/qtmultimedia/examples-manifest.xml %%QT_DOCDIR%%/qtmultimedia/images/arrow_bc.png %%QT_DOCDIR%%/qtmultimedia/images/audiodevices.png %%QT_DOCDIR%%/qtmultimedia/images/audioinput-example.png %%QT_DOCDIR%%/qtmultimedia/images/audiooutput-example.png %%QT_DOCDIR%%/qtmultimedia/images/audiorecorder.png %%QT_DOCDIR%%/qtmultimedia/images/bgrContent.png %%QT_DOCDIR%%/qtmultimedia/images/btn_next.png %%QT_DOCDIR%%/qtmultimedia/images/btn_prev.png %%QT_DOCDIR%%/qtmultimedia/images/bullet_dn.png %%QT_DOCDIR%%/qtmultimedia/images/bullet_sq.png %%QT_DOCDIR%%/qtmultimedia/images/camera-example.png %%QT_DOCDIR%%/qtmultimedia/images/declarative-radio-example.png %%QT_DOCDIR%%/qtmultimedia/images/home.png %%QT_DOCDIR%%/qtmultimedia/images/ico_note.png %%QT_DOCDIR%%/qtmultimedia/images/ico_note_attention.png %%QT_DOCDIR%%/qtmultimedia/images/ico_out.png %%QT_DOCDIR%%/qtmultimedia/images/logo.png %%QT_DOCDIR%%/qtmultimedia/images/mediaplayerex.jpg %%QT_DOCDIR%%/qtmultimedia/images/qml-camera.png %%QT_DOCDIR%%/qtmultimedia/images/qmlvideo-menu.jpg %%QT_DOCDIR%%/qtmultimedia/images/qmlvideo-overlay.jpg %%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-camera-glow.jpg %%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-camera-wobble.jpg %%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-effects-menu.jpg %%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-video-edgedetection.jpg %%QT_DOCDIR%%/qtmultimedia/images/qmlvideofx-video-pagecurl.jpg %%QT_DOCDIR%%/qtmultimedia/images/radio-example.png %%QT_DOCDIR%%/qtmultimedia/images/spectrum-demo.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_auto_mode.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_camera_setting.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_auto.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_fill.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_off.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_flash_redeye.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_cloudy.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_flourescent.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_incandescent.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/camera_white_balance_sunny.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/declarative-camera/images/toolbutton.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/spectrum/app/images/record.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/spectrum/app/images/settings.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideo/images/folder.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideo/images/leaves.jpg %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideo/images/up.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideo/qmlvideo.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Dropdown_arrows.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Slider_bar.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Slider_handle.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Triangle_Top.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/Triangle_bottom.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/icon_BackArrow.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/icon_Folder.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/icon_Menu.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/images/qt-logo.png %%QT_DOCDIR%%/qtmultimedia/images/used-in-examples/multimedia/video/qmlvideofx/qmlvideofx.png %%QT_DOCDIR%%/qtmultimedia/images/video-qml-paint-rate.png %%QT_DOCDIR%%/qtmultimedia/images/video-videographicsitem.png %%QT_DOCDIR%%/qtmultimedia/images/video-videowidget.png %%QT_DOCDIR%%/qtmultimedia/multimedia-examples.html %%QT_DOCDIR%%/qtmultimedia/multimediabackend.html %%QT_DOCDIR%%/qtmultimedia/multimediaoverview.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudiodeviceinfo-members.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudiodeviceinfo-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudiodeviceinfo.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudioinput-members.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudioinput-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudioinput.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudiooutput-members.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudiooutput-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qabstractaudiooutput.html %%QT_DOCDIR%%/qtmultimedia/qabstractplanarvideobuffer-members.html %%QT_DOCDIR%%/qtmultimedia/qabstractplanarvideobuffer.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideobuffer-members.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideobuffer.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideofilter-members.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideofilter-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideofilter.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideosurface-members.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideosurface-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qabstractvideosurface.html %%QT_DOCDIR%%/qtmultimedia/qaudio.html %%QT_DOCDIR%%/qtmultimedia/qaudiobuffer-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiobuffer-stereoframe-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiobuffer-stereoframe.html %%QT_DOCDIR%%/qtmultimedia/qaudiobuffer.html %%QT_DOCDIR%%/qtmultimedia/qaudiodecoder-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiodecoder-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudiodecoder.html %%QT_DOCDIR%%/qtmultimedia/qaudiodecodercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiodecodercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudiodecodercontrol.html %%QT_DOCDIR%%/qtmultimedia/qaudiodeviceinfo-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiodeviceinfo.html %%QT_DOCDIR%%/qtmultimedia/qaudioencodersettings-members.html %%QT_DOCDIR%%/qtmultimedia/qaudioencodersettings.html %%QT_DOCDIR%%/qtmultimedia/qaudioencodersettingscontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qaudioencodersettingscontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudioencodersettingscontrol.html %%QT_DOCDIR%%/qtmultimedia/qaudioformat-members.html %%QT_DOCDIR%%/qtmultimedia/qaudioformat.html %%QT_DOCDIR%%/qtmultimedia/qaudioinput-members.html %%QT_DOCDIR%%/qtmultimedia/qaudioinput-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudioinput.html %%QT_DOCDIR%%/qtmultimedia/qaudioinputselectorcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qaudioinputselectorcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudioinputselectorcontrol.html %%QT_DOCDIR%%/qtmultimedia/qaudiooutput-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiooutput-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudiooutput.html %%QT_DOCDIR%%/qtmultimedia/qaudiooutputselectorcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiooutputselectorcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudiooutputselectorcontrol.html %%QT_DOCDIR%%/qtmultimedia/qaudioprobe-members.html %%QT_DOCDIR%%/qtmultimedia/qaudioprobe-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudioprobe.html %%QT_DOCDIR%%/qtmultimedia/qaudiorecorder-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiorecorder-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudiorecorder.html %%QT_DOCDIR%%/qtmultimedia/qaudiorolecontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiorolecontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudiorolecontrol.html %%QT_DOCDIR%%/qtmultimedia/qaudiosystemplugin-members.html %%QT_DOCDIR%%/qtmultimedia/qaudiosystemplugin-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qaudiosystemplugin.html %%QT_DOCDIR%%/qtmultimedia/qcamera-frameraterange-members.html %%QT_DOCDIR%%/qtmultimedia/qcamera-frameraterange.html %%QT_DOCDIR%%/qtmultimedia/qcamera-members.html %%QT_DOCDIR%%/qtmultimedia/qcamera-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcamera.html %%QT_DOCDIR%%/qtmultimedia/qcameracapturebufferformatcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameracapturebufferformatcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameracapturebufferformatcontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameracapturedestinationcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameracapturedestinationcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameracapturedestinationcontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameracontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameracontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameracontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameraexposure-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraexposure-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraexposure.html %%QT_DOCDIR%%/qtmultimedia/qcameraexposurecontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraexposurecontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraexposurecontrol.html %%QT_DOCDIR%%/qtmultimedia/qcamerafeedbackcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcamerafeedbackcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcamerafeedbackcontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameraflashcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraflashcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraflashcontrol.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocus-members.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocus-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocus.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocuscontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocuscontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocuscontrol.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocuszone-members.html %%QT_DOCDIR%%/qtmultimedia/qcamerafocuszone.html %%QT_DOCDIR%%/qtmultimedia/qcameraimagecapture-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraimagecapture-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraimagecapture.html %%QT_DOCDIR%%/qtmultimedia/qcameraimagecapturecontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraimagecapturecontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraimagecapturecontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessing-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessing-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessing.html %%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessingcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessingcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraimageprocessingcontrol.html %%QT_DOCDIR%%/qtmultimedia/qcamerainfo-members.html %%QT_DOCDIR%%/qtmultimedia/qcamerainfo.html %%QT_DOCDIR%%/qtmultimedia/qcamerainfocontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcamerainfocontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcamerainfocontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameralockscontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameralockscontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameralockscontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfinder-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfinder-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfinder.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettings-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettings.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol2-members.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol2-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcameraviewfindersettingscontrol2.html %%QT_DOCDIR%%/qtmultimedia/qcamerazoomcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcamerazoomcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcamerazoomcontrol.html %%QT_DOCDIR%%/qtmultimedia/qcustomaudiorolecontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qcustomaudiorolecontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qcustomaudiorolecontrol.html %%QT_DOCDIR%%/qtmultimedia/qgraphicsvideoitem-members.html %%QT_DOCDIR%%/qtmultimedia/qgraphicsvideoitem-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qgraphicsvideoitem.html %%QT_DOCDIR%%/qtmultimedia/qgstutils-camerainfo-members.html %%QT_DOCDIR%%/qtmultimedia/qgstutils-camerainfo.html %%QT_DOCDIR%%/qtmultimedia/qgstutils-sub-qtmultimedia.html %%QT_DOCDIR%%/qtmultimedia/qimageencodercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qimageencodercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qimageencodercontrol.html %%QT_DOCDIR%%/qtmultimedia/qimageencodersettings-members.html %%QT_DOCDIR%%/qtmultimedia/qimageencodersettings.html %%QT_DOCDIR%%/qtmultimedia/qmediaaudioprobecontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaaudioprobecontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaaudioprobecontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediaavailabilitycontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaavailabilitycontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaavailabilitycontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediabindableinterface-members.html %%QT_DOCDIR%%/qtmultimedia/qmediabindableinterface.html %%QT_DOCDIR%%/qtmultimedia/qmediacontainercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediacontainercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediacontainercontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediacontent-members.html %%QT_DOCDIR%%/qtmultimedia/qmediacontent.html %%QT_DOCDIR%%/qtmultimedia/qmediacontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediacontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediacontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediagaplessplaybackcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediagaplessplaybackcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediagaplessplaybackcontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediametadata.html %%QT_DOCDIR%%/qtmultimedia/qmedianetworkaccesscontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmedianetworkaccesscontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmedianetworkaccesscontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediaobject-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaobject-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaobject.html %%QT_DOCDIR%%/qtmultimedia/qmediaplayer-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaplayer-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaplayer.html %%QT_DOCDIR%%/qtmultimedia/qmediaplayercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaplayercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaplayercontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediaplaylist-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaplaylist-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaplaylist.html %%QT_DOCDIR%%/qtmultimedia/qmediarecorder-members.html %%QT_DOCDIR%%/qtmultimedia/qmediarecorder-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediarecorder.html %%QT_DOCDIR%%/qtmultimedia/qmediarecordercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediarecordercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediarecordercontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediaresource-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaresource.html %%QT_DOCDIR%%/qtmultimedia/qmediaservice-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaservice-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaservice.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicecamerainfointerface-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicecamerainfointerface.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicedefaultdeviceinterface-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicedefaultdeviceinterface.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicefeaturesinterface-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicefeaturesinterface.html %%QT_DOCDIR%%/qtmultimedia/qmediaserviceproviderplugin-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaserviceproviderplugin-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediaserviceproviderplugin.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicesupporteddevicesinterface-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicesupporteddevicesinterface.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicesupportedformatsinterface-members.html %%QT_DOCDIR%%/qtmultimedia/qmediaservicesupportedformatsinterface.html %%QT_DOCDIR%%/qtmultimedia/qmediastreamscontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediastreamscontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediastreamscontrol.html %%QT_DOCDIR%%/qtmultimedia/qmediatimeinterval-members.html %%QT_DOCDIR%%/qtmultimedia/qmediatimeinterval.html %%QT_DOCDIR%%/qtmultimedia/qmediatimerange-members.html %%QT_DOCDIR%%/qtmultimedia/qmediatimerange.html %%QT_DOCDIR%%/qtmultimedia/qmediavideoprobecontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmediavideoprobecontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmediavideoprobecontrol.html %%QT_DOCDIR%%/qtmultimedia/qmetadatareadercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmetadatareadercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmetadatareadercontrol.html %%QT_DOCDIR%%/qtmultimedia/qmetadatawritercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qmetadatawritercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qmetadatawritercontrol.html %%QT_DOCDIR%%/qtmultimedia/qml-multimedia.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodelinverse-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodelinverse.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodellinear-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-attenuationmodellinear.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiocategory-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiocategory.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audioengine-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audioengine.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiolistener-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiolistener.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiosample-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-audiosample.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-playvariation-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-playvariation.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-sound-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-sound.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-soundinstance-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtaudioengine-soundinstance.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-audio-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-audio.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camera-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camera.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameracapture-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameracapture.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraexposure-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraexposure.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraflash-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraflash.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerafocus-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerafocus.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraimageprocessing-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-cameraimageprocessing.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerarecorder-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-camerarecorder.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-mediaplayer-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-mediaplayer.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlist-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlist.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlistitem-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-playlistitem.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-qtmultimedia-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-qtmultimedia.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radio-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radio.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radiodata-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-radiodata.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-soundeffect-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-soundeffect.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-torch-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-torch.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-video-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-video.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-videooutput-members.html %%QT_DOCDIR%%/qtmultimedia/qml-qtmultimedia-videooutput.html %%QT_DOCDIR%%/qtmultimedia/qmultimedia.html %%QT_DOCDIR%%/qtmultimedia/qradiodata-members.html %%QT_DOCDIR%%/qtmultimedia/qradiodata-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qradiodata.html %%QT_DOCDIR%%/qtmultimedia/qradiodatacontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qradiodatacontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qradiodatacontrol.html %%QT_DOCDIR%%/qtmultimedia/qradiotuner-members.html %%QT_DOCDIR%%/qtmultimedia/qradiotuner-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qradiotuner.html %%QT_DOCDIR%%/qtmultimedia/qradiotunercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qradiotunercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qradiotunercontrol.html %%QT_DOCDIR%%/qtmultimedia/qsound-members.html %%QT_DOCDIR%%/qtmultimedia/qsound-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qsound.html %%QT_DOCDIR%%/qtmultimedia/qsoundeffect-members.html %%QT_DOCDIR%%/qtmultimedia/qsoundeffect-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qsoundeffect.html %%QT_DOCDIR%%/qtmultimedia/qtaudioengine-qmlmodule.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-index.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-ios.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-module.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-modules.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevices-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevices-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevices-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-audiodevicesbase-ui.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiodevices-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-audioengine-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-qml-audioengine-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-qml-audioengine-qmlproject.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioengine-qml-content-myaudioengine-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-audioinput-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-audioinput-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-audioinput-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audioinput-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-audiooutput-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-audiooutput-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-audiooutput-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiooutput-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiolevel-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiolevel-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-audiorecorder-ui.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-audiorecorder-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-camerabutton-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-cameralistbutton-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-cameralistpopup-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-camerapropertybutton-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-camerapropertypopup-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-qmlproject.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-declarative-camera-qrc.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-focusbutton-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-photocapturecontrols-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-photopreview-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-popup-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-qmlcamera-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-videocapturecontrols-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-videopreview-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-camera-zoomcontrol-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-button-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-declarative-radio-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-declarative-radio-qrc.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-declarative-radio-view-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-array-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-def-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-dynarray-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-wrapper-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftreal-wrapper-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealfixlen-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealfixlenparam-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealpassdirect-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealpassinverse-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealselect-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-fftrealusetrigo-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-oscsincos-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-clockcyclecounter-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-clockcyclecounter-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-def-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-fnc-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-int64-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-stopwatch-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-stopwatch-stopwatch-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-test-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-test-fnc-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-test-settings-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testaccuracy-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testhelperfixlen-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testhelpernormal-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testspeed-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-3rdparty-fftreal-testwhitenoisegen-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-app-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-engine-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-engine-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-frequencyspectrum-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-frequencyspectrum-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-levelmeter-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-levelmeter-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-mainwidget-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-mainwidget-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-progressbar-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-progressbar-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-settingsdialog-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-settingsdialog-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrograph-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrograph-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrum-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrum-qrc.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrumanalyser-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-spectrumanalyser-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegenerator-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegenerator-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegeneratordialog-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-tonegeneratordialog-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-utils-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-utils-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-waveform-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-waveform-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-wavfile-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-app-wavfile-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-spectrum-spectrum-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-button-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerabasic-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameradrag-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameradummy-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerafullscreen-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerafullscreeninverted-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraitem-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameramove-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraoverlay-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraresize-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-camerarotate-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-cameraspin-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-content-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-errordialog-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-filebrowser-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-main-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scene-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenebasic-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenedrag-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenefullscreen-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenefullscreeninverted-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenemove-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenemulti-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-sceneoverlay-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-sceneresize-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenerotate-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-sceneselectionpanel-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-scenespin-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-seekcontrol-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videobasic-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videodrag-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videodummy-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videofillmode-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videofullscreen-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videofullscreeninverted-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoitem-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videometadata-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videomove-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videooverlay-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoplaybackrate-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoresize-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videorotate-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videoseek-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qml-qmlvideo-videospin-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qmlvideo-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qmlvideo-qrc.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-qmlvideo-svg.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideo-trace-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-filereader-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-filereader-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-button-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-content-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentcamera-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentimage-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentvideo-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-curtain-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-divider-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effect-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectbillboard-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectblackandwhite-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectemboss-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectgaussianblur-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectglow-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectisolate-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectmagnify-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpagecurl-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpassthrough-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpixelate-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectposterize-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectripple-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectselectionlist-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsepia-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsharpen-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectshockwave-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsobeledgedetection1-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effecttiltshift-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effecttoon-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectvignette-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectwarhol-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectwobble-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-filebrowser-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-fileopen-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-hintedmousearea-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-main-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-parameterpanel-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-slider-qml.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlapplicationviewer-qmlapplicationviewer-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlapplicationviewer-qmlapplicationviewer-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-qrc.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-svg.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimedia-video-qmlvideofx-trace-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-qrc.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-camera-ui.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-images-shutter-svg.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-imagesettings-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-imagesettings-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-imagesettings-ui.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-videosettings-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-videosettings-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-camera-videosettings-ui.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-histogramwidget-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-histogramwidget-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-player-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-player-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-player-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playercontrols-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playercontrols-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playlistmodel-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-playlistmodel-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-videowidget-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-player-videowidget-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-videographicsitem-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-videoplayer-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videographicsitem-videoplayer-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-example.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-main-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-videoplayer-cpp.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-videoplayer-h.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-multimediawidgets-videowidget-videowidget-pro.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-qmlmodule.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia-windows.html %%QT_DOCDIR%%/qtmultimedia/qtmultimedia.index %%QT_DOCDIR%%/qtmultimedia/qtmultimedia.qhp %%QT_DOCDIR%%/qtmultimedia/qtmultimedia.qhp.sha1 %%QT_DOCDIR%%/qtmultimedia/qtmultimediawidgets-index.html %%QT_DOCDIR%%/qtmultimedia/qtmultimediawidgets-module.html %%QT_DOCDIR%%/qtmultimedia/qvideodeviceselectorcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qvideodeviceselectorcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qvideodeviceselectorcontrol.html %%QT_DOCDIR%%/qtmultimedia/qvideoencodersettings-members.html %%QT_DOCDIR%%/qtmultimedia/qvideoencodersettings.html %%QT_DOCDIR%%/qtmultimedia/qvideoencodersettingscontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qvideoencodersettingscontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qvideoencodersettingscontrol.html %%QT_DOCDIR%%/qtmultimedia/qvideofilterrunnable-members.html %%QT_DOCDIR%%/qtmultimedia/qvideofilterrunnable.html %%QT_DOCDIR%%/qtmultimedia/qvideoframe-members.html %%QT_DOCDIR%%/qtmultimedia/qvideoframe.html %%QT_DOCDIR%%/qtmultimedia/qvideoprobe-members.html %%QT_DOCDIR%%/qtmultimedia/qvideoprobe-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qvideoprobe.html %%QT_DOCDIR%%/qtmultimedia/qvideorenderercontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qvideorenderercontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qvideorenderercontrol.html %%QT_DOCDIR%%/qtmultimedia/qvideosurfaceformat-members.html %%QT_DOCDIR%%/qtmultimedia/qvideosurfaceformat.html %%QT_DOCDIR%%/qtmultimedia/qvideowidget-members.html %%QT_DOCDIR%%/qtmultimedia/qvideowidget-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qvideowidget.html %%QT_DOCDIR%%/qtmultimedia/qvideowidgetcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qvideowidgetcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qvideowidgetcontrol.html %%QT_DOCDIR%%/qtmultimedia/qvideowindowcontrol-members.html %%QT_DOCDIR%%/qtmultimedia/qvideowindowcontrol-obsolete.html %%QT_DOCDIR%%/qtmultimedia/qvideowindowcontrol.html %%QT_DOCDIR%%/qtmultimedia/radiooverview.html %%QT_DOCDIR%%/qtmultimedia/style/offline-simple.css %%QT_DOCDIR%%/qtmultimedia/style/offline.css %%QT_DOCDIR%%/qtmultimedia/videooverview.html %%QT_DOCDIR%%/qtnetwork.qch %%QT_DOCDIR%%/qtnetwork/bearer-management.html %%QT_DOCDIR%%/qtnetwork/examples-manifest.xml %%QT_DOCDIR%%/qtnetwork/examples-network.html %%QT_DOCDIR%%/qtnetwork/images/arrow_bc.png %%QT_DOCDIR%%/qtnetwork/images/bgrContent.png %%QT_DOCDIR%%/qtnetwork/images/blockingfortuneclient-example.png %%QT_DOCDIR%%/qtnetwork/images/broadcastreceiver-example.png %%QT_DOCDIR%%/qtnetwork/images/broadcastsender-example.png %%QT_DOCDIR%%/qtnetwork/images/btn_next.png %%QT_DOCDIR%%/qtnetwork/images/btn_prev.png %%QT_DOCDIR%%/qtnetwork/images/bullet_dn.png %%QT_DOCDIR%%/qtnetwork/images/bullet_sq.png %%QT_DOCDIR%%/qtnetwork/images/fortuneclient-example.png %%QT_DOCDIR%%/qtnetwork/images/fortuneserver-example.png %%QT_DOCDIR%%/qtnetwork/images/googlesuggest-example.png %%QT_DOCDIR%%/qtnetwork/images/home.png %%QT_DOCDIR%%/qtnetwork/images/http-example.png %%QT_DOCDIR%%/qtnetwork/images/ico_note.png %%QT_DOCDIR%%/qtnetwork/images/ico_note_attention.png %%QT_DOCDIR%%/qtnetwork/images/ico_out.png %%QT_DOCDIR%%/qtnetwork/images/logo.png %%QT_DOCDIR%%/qtnetwork/images/loopback-example.png %%QT_DOCDIR%%/qtnetwork/images/multicastreceiver-example.png %%QT_DOCDIR%%/qtnetwork/images/multicastsender-example.png %%QT_DOCDIR%%/qtnetwork/images/network-chat-example.png %%QT_DOCDIR%%/qtnetwork/images/network-examples.png %%QT_DOCDIR%%/qtnetwork/images/roaming-states.png %%QT_DOCDIR%%/qtnetwork/images/securesocketclient.png %%QT_DOCDIR%%/qtnetwork/images/securesocketclient2.png %%QT_DOCDIR%%/qtnetwork/images/secureudpclient-example.png %%QT_DOCDIR%%/qtnetwork/images/secureudpserver-example.png %%QT_DOCDIR%%/qtnetwork/images/tcpstream.png %%QT_DOCDIR%%/qtnetwork/images/threadedfortuneserver-example.png %%QT_DOCDIR%%/qtnetwork/images/torrent-example.png %%QT_DOCDIR%%/qtnetwork/images/udppackets.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/securesocketclient/encrypted.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/1downarrow.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/1uparrow.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/bottom.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/edit_add.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/edit_remove.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/exit.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/peertopeer.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/player_pause.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/player_play.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/player_stop.png %%QT_DOCDIR%%/qtnetwork/images/used-in-examples/torrent/icons/stop.png %%QT_DOCDIR%%/qtnetwork/network.html %%QT_DOCDIR%%/qtnetwork/qabstractnetworkcache-members.html %%QT_DOCDIR%%/qtnetwork/qabstractnetworkcache-obsolete.html %%QT_DOCDIR%%/qtnetwork/qabstractnetworkcache.html %%QT_DOCDIR%%/qtnetwork/qabstractsocket-members.html %%QT_DOCDIR%%/qtnetwork/qabstractsocket-obsolete.html %%QT_DOCDIR%%/qtnetwork/qabstractsocket.html %%QT_DOCDIR%%/qtnetwork/qauthenticator-members.html %%QT_DOCDIR%%/qtnetwork/qauthenticator.html %%QT_DOCDIR%%/qtnetwork/qdnsdomainnamerecord-members.html %%QT_DOCDIR%%/qtnetwork/qdnsdomainnamerecord.html %%QT_DOCDIR%%/qtnetwork/qdnshostaddressrecord-members.html %%QT_DOCDIR%%/qtnetwork/qdnshostaddressrecord.html %%QT_DOCDIR%%/qtnetwork/qdnslookup-members.html %%QT_DOCDIR%%/qtnetwork/qdnslookup-obsolete.html %%QT_DOCDIR%%/qtnetwork/qdnslookup.html %%QT_DOCDIR%%/qtnetwork/qdnsmailexchangerecord-members.html %%QT_DOCDIR%%/qtnetwork/qdnsmailexchangerecord.html %%QT_DOCDIR%%/qtnetwork/qdnsservicerecord-members.html %%QT_DOCDIR%%/qtnetwork/qdnsservicerecord.html %%QT_DOCDIR%%/qtnetwork/qdnstextrecord-members.html %%QT_DOCDIR%%/qtnetwork/qdnstextrecord.html %%QT_DOCDIR%%/qtnetwork/qdtls-members.html %%QT_DOCDIR%%/qtnetwork/qdtls-obsolete.html %%QT_DOCDIR%%/qtnetwork/qdtls.html %%QT_DOCDIR%%/qtnetwork/qdtlsclientverifier-generatorparameters-members.html %%QT_DOCDIR%%/qtnetwork/qdtlsclientverifier-generatorparameters.html %%QT_DOCDIR%%/qtnetwork/qdtlsclientverifier-members.html %%QT_DOCDIR%%/qtnetwork/qdtlsclientverifier-obsolete.html %%QT_DOCDIR%%/qtnetwork/qdtlsclientverifier.html %%QT_DOCDIR%%/qtnetwork/qhostaddress-members.html %%QT_DOCDIR%%/qtnetwork/qhostaddress.html %%QT_DOCDIR%%/qtnetwork/qhostinfo-members.html %%QT_DOCDIR%%/qtnetwork/qhostinfo.html %%QT_DOCDIR%%/qtnetwork/qhstspolicy-members.html %%QT_DOCDIR%%/qtnetwork/qhstspolicy.html %%QT_DOCDIR%%/qtnetwork/qhttpmultipart-members.html %%QT_DOCDIR%%/qtnetwork/qhttpmultipart-obsolete.html %%QT_DOCDIR%%/qtnetwork/qhttpmultipart.html %%QT_DOCDIR%%/qtnetwork/qhttppart-members.html %%QT_DOCDIR%%/qtnetwork/qhttppart.html %%QT_DOCDIR%%/qtnetwork/qlocalserver-members.html %%QT_DOCDIR%%/qtnetwork/qlocalserver-obsolete.html %%QT_DOCDIR%%/qtnetwork/qlocalserver.html %%QT_DOCDIR%%/qtnetwork/qlocalsocket-members.html %%QT_DOCDIR%%/qtnetwork/qlocalsocket-obsolete.html %%QT_DOCDIR%%/qtnetwork/qlocalsocket.html %%QT_DOCDIR%%/qtnetwork/qnetworkaccessmanager-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkaccessmanager-obsolete.html %%QT_DOCDIR%%/qtnetwork/qnetworkaccessmanager.html %%QT_DOCDIR%%/qtnetwork/qnetworkaddressentry-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkaddressentry.html %%QT_DOCDIR%%/qtnetwork/qnetworkcachemetadata-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkcachemetadata.html %%QT_DOCDIR%%/qtnetwork/qnetworkconfiguration-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkconfiguration.html %%QT_DOCDIR%%/qtnetwork/qnetworkconfigurationmanager-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkconfigurationmanager-obsolete.html %%QT_DOCDIR%%/qtnetwork/qnetworkconfigurationmanager.html %%QT_DOCDIR%%/qtnetwork/qnetworkcookie-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkcookie.html %%QT_DOCDIR%%/qtnetwork/qnetworkcookiejar-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkcookiejar-obsolete.html %%QT_DOCDIR%%/qtnetwork/qnetworkcookiejar.html %%QT_DOCDIR%%/qtnetwork/qnetworkdatagram-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkdatagram.html %%QT_DOCDIR%%/qtnetwork/qnetworkdiskcache-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkdiskcache-obsolete.html %%QT_DOCDIR%%/qtnetwork/qnetworkdiskcache.html %%QT_DOCDIR%%/qtnetwork/qnetworkinterface-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkinterface.html %%QT_DOCDIR%%/qtnetwork/qnetworkproxy-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkproxy.html %%QT_DOCDIR%%/qtnetwork/qnetworkproxyfactory-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkproxyfactory.html %%QT_DOCDIR%%/qtnetwork/qnetworkproxyquery-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkproxyquery-obsolete.html %%QT_DOCDIR%%/qtnetwork/qnetworkproxyquery.html %%QT_DOCDIR%%/qtnetwork/qnetworkreply-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkreply-obsolete.html %%QT_DOCDIR%%/qtnetwork/qnetworkreply.html %%QT_DOCDIR%%/qtnetwork/qnetworkrequest-members.html %%QT_DOCDIR%%/qtnetwork/qnetworkrequest.html %%QT_DOCDIR%%/qtnetwork/qnetworksession-members.html %%QT_DOCDIR%%/qtnetwork/qnetworksession-obsolete.html %%QT_DOCDIR%%/qtnetwork/qnetworksession.html %%QT_DOCDIR%%/qtnetwork/qpassworddigestor.html %%QT_DOCDIR%%/qtnetwork/qsctpserver-members.html %%QT_DOCDIR%%/qtnetwork/qsctpserver-obsolete.html %%QT_DOCDIR%%/qtnetwork/qsctpserver.html %%QT_DOCDIR%%/qtnetwork/qsctpsocket-members.html %%QT_DOCDIR%%/qtnetwork/qsctpsocket-obsolete.html %%QT_DOCDIR%%/qtnetwork/qsctpsocket.html %%QT_DOCDIR%%/qtnetwork/qssl-obsolete.html %%QT_DOCDIR%%/qtnetwork/qssl.html %%QT_DOCDIR%%/qtnetwork/qsslcertificate-members.html %%QT_DOCDIR%%/qtnetwork/qsslcertificate-obsolete.html %%QT_DOCDIR%%/qtnetwork/qsslcertificate.html %%QT_DOCDIR%%/qtnetwork/qsslcertificateextension-members.html %%QT_DOCDIR%%/qtnetwork/qsslcertificateextension.html %%QT_DOCDIR%%/qtnetwork/qsslcipher-members.html %%QT_DOCDIR%%/qtnetwork/qsslcipher.html %%QT_DOCDIR%%/qtnetwork/qsslconfiguration-members.html %%QT_DOCDIR%%/qtnetwork/qsslconfiguration.html %%QT_DOCDIR%%/qtnetwork/qssldiffiehellmanparameters-members.html %%QT_DOCDIR%%/qtnetwork/qssldiffiehellmanparameters.html %%QT_DOCDIR%%/qtnetwork/qsslellipticcurve-members.html %%QT_DOCDIR%%/qtnetwork/qsslellipticcurve.html %%QT_DOCDIR%%/qtnetwork/qsslerror-members.html %%QT_DOCDIR%%/qtnetwork/qsslerror.html %%QT_DOCDIR%%/qtnetwork/qsslkey-members.html %%QT_DOCDIR%%/qtnetwork/qsslkey.html %%QT_DOCDIR%%/qtnetwork/qsslpresharedkeyauthenticator-members.html %%QT_DOCDIR%%/qtnetwork/qsslpresharedkeyauthenticator.html %%QT_DOCDIR%%/qtnetwork/qsslsocket-members.html %%QT_DOCDIR%%/qtnetwork/qsslsocket-obsolete.html %%QT_DOCDIR%%/qtnetwork/qsslsocket.html %%QT_DOCDIR%%/qtnetwork/qtcpserver-members.html %%QT_DOCDIR%%/qtnetwork/qtcpserver-obsolete.html %%QT_DOCDIR%%/qtnetwork/qtcpserver.html %%QT_DOCDIR%%/qtnetwork/qtcpsocket-members.html %%QT_DOCDIR%%/qtnetwork/qtcpsocket-obsolete.html %%QT_DOCDIR%%/qtnetwork/qtcpsocket.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-blockingclient-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-blockingclient-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-blockingfortuneclient-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-fortunethread-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-fortunethread-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-blockingfortuneclient-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-broadcastreceiver-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-receiver-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastreceiver-receiver-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-broadcastsender-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-sender-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-broadcastsender-sender-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-download-download-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-download-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-download-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-downloadmanager-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-downloadmanager-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-downloadmanager-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-textprogressbar-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-downloadmanager-textprogressbar-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-client-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-client-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-fortuneclient-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneclient-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-fortuneserver-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-server-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-fortuneserver-server-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-googlesuggest-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-googlesuggest-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-googlesuggest-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-searchbox-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-googlesuggest-searchbox-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-http-authenticationdialog-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-http-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-http-http-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-http-httpwindow-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-http-httpwindow-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-http-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-index.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-dialog-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-dialog-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-loopback-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-loopback-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-module.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-multicastreceiver-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-receiver-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastreceiver-receiver-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-multicastsender-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-sender-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-multicastsender-sender-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-chatdialog-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-chatdialog-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-chatdialog-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-client-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-client-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-connection-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-connection-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-network-chat-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-peermanager-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-peermanager-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-server-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-network-chat-server-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-programming.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-certificateinfo-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-certificateinfo-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-certificateinfo-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-securesocketclient-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-securesocketclient-qrc.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslclient-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslclient-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslclient-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-securesocketclient-sslerrors-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-addressdialog-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-addressdialog-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-addressdialog-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-association-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-association-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-mainwindow-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-mainwindow-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-mainwindow-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpclient-secureudpclient-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-mainwindow-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-mainwindow-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-mainwindow-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-nicselector-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-nicselector-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-nicselector-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-secureudpserver-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-server-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-secureudpserver-server-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-dialog-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-dialog-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortuneserver-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortuneserver-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortunethread-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-fortunethread-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-threadedfortuneserver-threadedfortuneserver-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-addtorrentdialog-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-addtorrentdialog-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-bencodeparser-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-bencodeparser-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-connectionmanager-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-connectionmanager-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-example.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-filemanager-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-filemanager-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-forms-addtorrentform-ui.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-icons-qrc.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-main-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-mainwindow-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-mainwindow-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-metainfo-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-metainfo-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-peerwireclient-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-peerwireclient-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-ratecontroller-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-ratecontroller-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrent-pro.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentclient-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentclient-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentserver-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-torrentserver-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-trackerclient-cpp.html %%QT_DOCDIR%%/qtnetwork/qtnetwork-torrent-trackerclient-h.html %%QT_DOCDIR%%/qtnetwork/qtnetwork.index %%QT_DOCDIR%%/qtnetwork/qtnetwork.qhp %%QT_DOCDIR%%/qtnetwork/qtnetwork.qhp.sha1 %%QT_DOCDIR%%/qtnetwork/qtnetwork.tags %%QT_DOCDIR%%/qtnetwork/qudpsocket-members.html %%QT_DOCDIR%%/qtnetwork/qudpsocket-obsolete.html %%QT_DOCDIR%%/qtnetwork/qudpsocket.html %%QT_DOCDIR%%/qtnetwork/ssl.html %%QT_DOCDIR%%/qtnetwork/style/offline-simple.css %%QT_DOCDIR%%/qtnetwork/style/offline.css %%QT_DOCDIR%%/qtnfc.qch %%QT_DOCDIR%%/qtnfc/examples-manifest.xml %%QT_DOCDIR%%/qtnfc/images/annotatedurl.png %%QT_DOCDIR%%/qtnfc/images/annotatedurl2.png %%QT_DOCDIR%%/qtnfc/images/arrow_bc.png %%QT_DOCDIR%%/qtnfc/images/bgrContent.png %%QT_DOCDIR%%/qtnfc/images/btn_next.png %%QT_DOCDIR%%/qtnfc/images/btn_prev.png %%QT_DOCDIR%%/qtnfc/images/bullet_dn.png %%QT_DOCDIR%%/qtnfc/images/bullet_sq.png %%QT_DOCDIR%%/qtnfc/images/corkboard.png %%QT_DOCDIR%%/qtnfc/images/home.png %%QT_DOCDIR%%/qtnfc/images/ico_note.png %%QT_DOCDIR%%/qtnfc/images/ico_note_attention.png %%QT_DOCDIR%%/qtnfc/images/ico_out.png %%QT_DOCDIR%%/qtnfc/images/logo.png %%QT_DOCDIR%%/qtnfc/images/ndefeditor.png %%QT_DOCDIR%%/qtnfc/images/qml-poster-example.png %%QT_DOCDIR%%/qtnfc/images/used-in-examples/corkboard/NfcFlag.png %%QT_DOCDIR%%/qtnfc/images/used-in-examples/corkboard/cork.jpg %%QT_DOCDIR%%/qtnfc/images/used-in-examples/corkboard/icon.png %%QT_DOCDIR%%/qtnfc/images/used-in-examples/corkboard/note-yellow.png %%QT_DOCDIR%%/qtnfc/images/used-in-examples/corkboard/tack.png %%QT_DOCDIR%%/qtnfc/nfc-android.html %%QT_DOCDIR%%/qtnfc/nfc-examples.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeffilter-members.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeffilter.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefmimerecord-members.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefmimerecord.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefrecord-members.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefrecord.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeftextrecord-members.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndeftextrecord.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefurirecord-members.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-ndefurirecord.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-nearfield-members.html %%QT_DOCDIR%%/qtnfc/qml-qtnfc-nearfield.html %%QT_DOCDIR%%/qtnfc/qndeffilter-members.html %%QT_DOCDIR%%/qtnfc/qndeffilter-record-members.html %%QT_DOCDIR%%/qtnfc/qndeffilter-record.html %%QT_DOCDIR%%/qtnfc/qndeffilter.html %%QT_DOCDIR%%/qtnfc/qndefmessage-members.html %%QT_DOCDIR%%/qtnfc/qndefmessage.html %%QT_DOCDIR%%/qtnfc/qndefnfcsmartposterrecord-members.html %%QT_DOCDIR%%/qtnfc/qndefnfcsmartposterrecord.html %%QT_DOCDIR%%/qtnfc/qndefnfctextrecord-members.html %%QT_DOCDIR%%/qtnfc/qndefnfctextrecord.html %%QT_DOCDIR%%/qtnfc/qndefnfcurirecord-members.html %%QT_DOCDIR%%/qtnfc/qndefnfcurirecord.html %%QT_DOCDIR%%/qtnfc/qndefrecord-members.html %%QT_DOCDIR%%/qtnfc/qndefrecord.html %%QT_DOCDIR%%/qtnfc/qnearfieldmanager-members.html %%QT_DOCDIR%%/qtnfc/qnearfieldmanager-obsolete.html %%QT_DOCDIR%%/qtnfc/qnearfieldmanager.html %%QT_DOCDIR%%/qtnfc/qnearfieldsharemanager-members.html %%QT_DOCDIR%%/qtnfc/qnearfieldsharemanager-obsolete.html %%QT_DOCDIR%%/qtnfc/qnearfieldsharemanager.html %%QT_DOCDIR%%/qtnfc/qnearfieldsharetarget-members.html %%QT_DOCDIR%%/qtnfc/qnearfieldsharetarget-obsolete.html %%QT_DOCDIR%%/qtnfc/qnearfieldsharetarget.html %%QT_DOCDIR%%/qtnfc/qnearfieldtarget-members.html %%QT_DOCDIR%%/qtnfc/qnearfieldtarget-obsolete.html %%QT_DOCDIR%%/qtnfc/qnearfieldtarget-requestid-members.html %%QT_DOCDIR%%/qtnfc/qnearfieldtarget-requestid.html %%QT_DOCDIR%%/qtnfc/qnearfieldtarget-requestidprivate-members.html %%QT_DOCDIR%%/qtnfc/qnearfieldtarget-requestidprivate.html %%QT_DOCDIR%%/qtnfc/qnearfieldtarget.html %%QT_DOCDIR%%/qtnfc/qqmlndefrecord-members.html %%QT_DOCDIR%%/qtnfc/qqmlndefrecord-obsolete.html %%QT_DOCDIR%%/qtnfc/qqmlndefrecord.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-annotatedurl-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-annotatedurl-h.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-annotatedurl-pro.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-example.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-main-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-mainwindow-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-mainwindow-h.html %%QT_DOCDIR%%/qtnfc/qtnfc-annotatedurl-mainwindow-ui.html %%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-android-androidmanifest-xml.html %%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-corkboard-pro.html %%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-corkboard-qrc.html %%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-corkboards-qml.html %%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-example.html %%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-main-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-corkboard-mode-qml.html %%QT_DOCDIR%%/qtnfc/qtnfc-index.html %%QT_DOCDIR%%/qtnfc/qtnfc-module.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-example.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-main-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mainwindow-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mainwindow-h.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mainwindow-ui.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mimeimagerecordeditor-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mimeimagerecordeditor-h.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-mimeimagerecordeditor-ui.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-ndefeditor-pro.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-textrecordeditor-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-textrecordeditor-h.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-textrecordeditor-ui.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-urirecordeditor-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-urirecordeditor-h.html %%QT_DOCDIR%%/qtnfc/qtnfc-ndefeditor-urirecordeditor-ui.html %%QT_DOCDIR%%/qtnfc/qtnfc-overview.html %%QT_DOCDIR%%/qtnfc/qtnfc-poster-example.html %%QT_DOCDIR%%/qtnfc/qtnfc-poster-poster-pro.html %%QT_DOCDIR%%/qtnfc/qtnfc-poster-poster-qml.html %%QT_DOCDIR%%/qtnfc/qtnfc-poster-poster-qrc.html %%QT_DOCDIR%%/qtnfc/qtnfc-poster-qmlposter-cpp.html %%QT_DOCDIR%%/qtnfc/qtnfc-qmlmodule.html %%QT_DOCDIR%%/qtnfc/qtnfc.index %%QT_DOCDIR%%/qtnfc/qtnfc.qhp %%QT_DOCDIR%%/qtnfc/qtnfc.qhp.sha1 %%QT_DOCDIR%%/qtnfc/qtnfc.tags %%QT_DOCDIR%%/qtnfc/style/offline-simple.css %%QT_DOCDIR%%/qtnfc/style/offline.css %%QT_DOCDIR%%/qtopengl.qch %%QT_DOCDIR%%/qtopengl/examples-manifest.xml %%QT_DOCDIR%%/qtopengl/examples-widgets-opengl.html %%QT_DOCDIR%%/qtopengl/images/2dpainting-example.png %%QT_DOCDIR%%/qtopengl/images/arrow_bc.png %%QT_DOCDIR%%/qtopengl/images/bgrContent.png %%QT_DOCDIR%%/qtopengl/images/btn_next.png %%QT_DOCDIR%%/qtopengl/images/btn_prev.png %%QT_DOCDIR%%/qtopengl/images/bullet_dn.png %%QT_DOCDIR%%/qtopengl/images/bullet_sq.png %%QT_DOCDIR%%/qtopengl/images/cube.png %%QT_DOCDIR%%/qtopengl/images/cube_faces.png %%QT_DOCDIR%%/qtopengl/images/hellogl2-example.png %%QT_DOCDIR%%/qtopengl/images/hellogles3-example.png %%QT_DOCDIR%%/qtopengl/images/home.png %%QT_DOCDIR%%/qtopengl/images/ico_note.png %%QT_DOCDIR%%/qtopengl/images/ico_note_attention.png %%QT_DOCDIR%%/qtopengl/images/ico_out.png %%QT_DOCDIR%%/qtopengl/images/logo.png %%QT_DOCDIR%%/qtopengl/images/opengl-examples.png %%QT_DOCDIR%%/qtopengl/images/textures-example.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/cube/cube.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/hellogles3/qtlogo.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side1.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side2.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side3.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side4.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side5.png %%QT_DOCDIR%%/qtopengl/images/used-in-examples/textures/images/side6.png %%QT_DOCDIR%%/qtopengl/qgl.html %%QT_DOCDIR%%/qtopengl/qglbuffer-members.html %%QT_DOCDIR%%/qtopengl/qglbuffer.html %%QT_DOCDIR%%/qtopengl/qglcolormap-members.html %%QT_DOCDIR%%/qtopengl/qglcolormap.html %%QT_DOCDIR%%/qtopengl/qglcontext-members.html %%QT_DOCDIR%%/qtopengl/qglcontext-obsolete.html %%QT_DOCDIR%%/qtopengl/qglcontext.html %%QT_DOCDIR%%/qtopengl/qglformat-members.html %%QT_DOCDIR%%/qtopengl/qglformat.html %%QT_DOCDIR%%/qtopengl/qglframebufferobject-members.html %%QT_DOCDIR%%/qtopengl/qglframebufferobject.html %%QT_DOCDIR%%/qtopengl/qglframebufferobjectformat-members.html %%QT_DOCDIR%%/qtopengl/qglframebufferobjectformat.html %%QT_DOCDIR%%/qtopengl/qglfunctions-members.html %%QT_DOCDIR%%/qtopengl/qglfunctions.html %%QT_DOCDIR%%/qtopengl/qglpixelbuffer-members.html %%QT_DOCDIR%%/qtopengl/qglpixelbuffer.html %%QT_DOCDIR%%/qtopengl/qglshader-members.html %%QT_DOCDIR%%/qtopengl/qglshader-obsolete.html %%QT_DOCDIR%%/qtopengl/qglshader.html %%QT_DOCDIR%%/qtopengl/qglshaderprogram-members.html %%QT_DOCDIR%%/qtopengl/qglshaderprogram-obsolete.html %%QT_DOCDIR%%/qtopengl/qglshaderprogram.html %%QT_DOCDIR%%/qtopengl/qglwidget-members.html %%QT_DOCDIR%%/qtopengl/qglwidget-obsolete.html %%QT_DOCDIR%%/qtopengl/qglwidget.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-2dpainting-pro.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-example.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-glwidget-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-glwidget-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-helper-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-helper-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-main-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-widget-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-widget-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-window-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-2dpainting-window-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-cube-pro.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-example.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-fshader-glsl.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-geometryengine-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-geometryengine-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-main-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-mainwidget-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-mainwidget-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-shaders-qrc.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-textures-qrc.html %%QT_DOCDIR%%/qtopengl/qtopengl-cube-vshader-glsl.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-example.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-glwidget-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-glwidget-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-hellogl2-pro.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-logo-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-logo-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-main-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-mainwindow-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-mainwindow-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-window-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogl2-window-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogles3-example.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogles3-glwindow-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogles3-glwindow-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogles3-hellogles3-pro.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogles3-hellogles3-qrc.html %%QT_DOCDIR%%/qtopengl/qtopengl-hellogles3-main-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-index.html %%QT_DOCDIR%%/qtopengl/qtopengl-module.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-example.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-glwidget-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-glwidget-h.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-main-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-textures-pro.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-textures-qrc.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-window-cpp.html %%QT_DOCDIR%%/qtopengl/qtopengl-textures-window-h.html %%QT_DOCDIR%%/qtopengl/qtopengl.index %%QT_DOCDIR%%/qtopengl/qtopengl.qhp %%QT_DOCDIR%%/qtopengl/qtopengl.qhp.sha1 %%QT_DOCDIR%%/qtopengl/style/offline-simple.css %%QT_DOCDIR%%/qtopengl/style/offline.css %%QT_DOCDIR%%/qtplatformheaders.qch %%QT_DOCDIR%%/qtplatformheaders/images/arrow_bc.png %%QT_DOCDIR%%/qtplatformheaders/images/bgrContent.png %%QT_DOCDIR%%/qtplatformheaders/images/btn_next.png %%QT_DOCDIR%%/qtplatformheaders/images/btn_prev.png %%QT_DOCDIR%%/qtplatformheaders/images/bullet_dn.png %%QT_DOCDIR%%/qtplatformheaders/images/bullet_sq.png %%QT_DOCDIR%%/qtplatformheaders/images/home.png %%QT_DOCDIR%%/qtplatformheaders/images/ico_note.png %%QT_DOCDIR%%/qtplatformheaders/images/ico_note_attention.png %%QT_DOCDIR%%/qtplatformheaders/images/ico_out.png %%QT_DOCDIR%%/qtplatformheaders/images/logo.png %%QT_DOCDIR%%/qtplatformheaders/qcocoanativecontext-members.html %%QT_DOCDIR%%/qtplatformheaders/qcocoanativecontext.html %%QT_DOCDIR%%/qtplatformheaders/qcocoawindowfunctions-members.html %%QT_DOCDIR%%/qtplatformheaders/qcocoawindowfunctions.html %%QT_DOCDIR%%/qtplatformheaders/qeglfsfunctions-members.html %%QT_DOCDIR%%/qtplatformheaders/qeglfsfunctions.html %%QT_DOCDIR%%/qtplatformheaders/qeglnativecontext-members.html %%QT_DOCDIR%%/qtplatformheaders/qeglnativecontext.html %%QT_DOCDIR%%/qtplatformheaders/qglxnativecontext-members.html %%QT_DOCDIR%%/qtplatformheaders/qglxnativecontext.html %%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders-index.html %%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders-module.html %%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders.index %%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders.qhp %%QT_DOCDIR%%/qtplatformheaders/qtplatformheaders.qhp.sha1 %%QT_DOCDIR%%/qtplatformheaders/qwglnativecontext-members.html %%QT_DOCDIR%%/qtplatformheaders/qwglnativecontext.html %%QT_DOCDIR%%/qtplatformheaders/qwindowswindowfunctions-members.html %%QT_DOCDIR%%/qtplatformheaders/qwindowswindowfunctions.html %%QT_DOCDIR%%/qtplatformheaders/qxcbwindowfunctions-members.html %%QT_DOCDIR%%/qtplatformheaders/qxcbwindowfunctions.html %%QT_DOCDIR%%/qtplatformheaders/style/offline-simple.css %%QT_DOCDIR%%/qtplatformheaders/style/offline.css %%QT_DOCDIR%%/qtpositioning.qch %%QT_DOCDIR%%/qtpositioning/examples-manifest.xml %%QT_DOCDIR%%/qtpositioning/images/arrow_bc.png %%QT_DOCDIR%%/qtpositioning/images/bgrContent.png %%QT_DOCDIR%%/qtpositioning/images/btn_next.png %%QT_DOCDIR%%/qtpositioning/images/btn_prev.png %%QT_DOCDIR%%/qtpositioning/images/bullet_dn.png %%QT_DOCDIR%%/qtpositioning/images/bullet_sq.png %%QT_DOCDIR%%/qtpositioning/images/example-satelliteinfo.png %%QT_DOCDIR%%/qtpositioning/images/example-weatherinfo.png %%QT_DOCDIR%%/qtpositioning/images/home.png %%QT_DOCDIR%%/qtpositioning/images/ico_note.png %%QT_DOCDIR%%/qtpositioning/images/ico_note_attention.png %%QT_DOCDIR%%/qtpositioning/images/ico_out.png %%QT_DOCDIR%%/qtpositioning/images/logo.png %%QT_DOCDIR%%/qtpositioning/images/qml-flickr-1.jpg %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/gloss.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/lineedit.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/moon.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/quit.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/star.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/stripes.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/sun.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/titlebar.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/geoflickr/flickrmobile/images/toolbutton.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-few-clouds.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-fog.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-haze.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-icy.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-overcast.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-showers.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-sleet.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-snow.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-storm.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-sunny-very-few-clouds.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-sunny.png %%QT_DOCDIR%%/qtpositioning/images/used-in-examples/weatherinfo/icons/weather-thundershower.png %%QT_DOCDIR%%/qtpositioning/location-positioning-cpp.html %%QT_DOCDIR%%/qtpositioning/location-positioning-qml.html %%QT_DOCDIR%%/qtpositioning/positioning-cpp-qml.html %%QT_DOCDIR%%/qtpositioning/qgeoaddress-members.html %%QT_DOCDIR%%/qtpositioning/qgeoaddress.html %%QT_DOCDIR%%/qtpositioning/qgeoareamonitorinfo-members.html %%QT_DOCDIR%%/qtpositioning/qgeoareamonitorinfo.html %%QT_DOCDIR%%/qtpositioning/qgeoareamonitorsource-members.html %%QT_DOCDIR%%/qtpositioning/qgeoareamonitorsource-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeoareamonitorsource.html %%QT_DOCDIR%%/qtpositioning/qgeocircle-members.html %%QT_DOCDIR%%/qtpositioning/qgeocircle-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeocircle.html %%QT_DOCDIR%%/qtpositioning/qgeocoordinate-members.html %%QT_DOCDIR%%/qtpositioning/qgeocoordinate.html %%QT_DOCDIR%%/qtpositioning/qgeolocation-members.html %%QT_DOCDIR%%/qtpositioning/qgeolocation.html %%QT_DOCDIR%%/qtpositioning/qgeopath-members.html %%QT_DOCDIR%%/qtpositioning/qgeopath-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeopath.html %%QT_DOCDIR%%/qtpositioning/qgeopolygon-members.html %%QT_DOCDIR%%/qtpositioning/qgeopolygon-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeopolygon.html %%QT_DOCDIR%%/qtpositioning/qgeopositioninfo-members.html %%QT_DOCDIR%%/qtpositioning/qgeopositioninfo.html %%QT_DOCDIR%%/qtpositioning/qgeopositioninfosource-members.html %%QT_DOCDIR%%/qtpositioning/qgeopositioninfosource-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeopositioninfosource.html %%QT_DOCDIR%%/qtpositioning/qgeopositioninfosourcefactory-members.html %%QT_DOCDIR%%/qtpositioning/qgeopositioninfosourcefactory.html %%QT_DOCDIR%%/qtpositioning/qgeorectangle-members.html %%QT_DOCDIR%%/qtpositioning/qgeorectangle-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeorectangle.html %%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfo-members.html %%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfo.html %%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfosource-members.html %%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfosource-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeosatelliteinfosource.html %%QT_DOCDIR%%/qtpositioning/qgeoshape-members.html %%QT_DOCDIR%%/qtpositioning/qgeoshape-obsolete.html %%QT_DOCDIR%%/qtpositioning/qgeoshape.html %%QT_DOCDIR%%/qtpositioning/qml-coordinate.html %%QT_DOCDIR%%/qtpositioning/qml-geocircle.html %%QT_DOCDIR%%/qtpositioning/qml-geopath.html %%QT_DOCDIR%%/qtpositioning/qml-geopolygon.html %%QT_DOCDIR%%/qtpositioning/qml-georectangle.html %%QT_DOCDIR%%/qtpositioning/qml-geoshape.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-address-members.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-address.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-coordinateanimation-members.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-coordinateanimation.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-location-members.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-location.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-position-members.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-position.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-positionsource-members.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-positionsource.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-qtpositioning-members.html %%QT_DOCDIR%%/qtpositioning/qml-qtpositioning-qtpositioning.html %%QT_DOCDIR%%/qtpositioning/qnmeapositioninfosource-members.html %%QT_DOCDIR%%/qtpositioning/qnmeapositioninfosource-obsolete.html %%QT_DOCDIR%%/qtpositioning/qnmeapositioninfosource.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-attribution-weatherinfo-tango-icons.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-attribution-weatherinfo-tango-weather-pack.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-examples.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-example.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickr-90-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickr-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickr-qrc.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-progress-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-restmodel-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-scrollbar-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrcommon-slider-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-button-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-geotab-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-griddelegate-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-imagedetails-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-listdelegate-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-titlebar-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-flickrmobile-toolbar-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-geoflickr-pro.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-geoflickr-qmlproject.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-geoflickr-qmllocationflickr-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-index.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-clientapplication-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-clientapplication-h.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-example.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfile-qrc.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfilepositionsource-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfilepositionsource-h.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-logfilepositionsource-pro.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-logfilepositionsource-main-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-module.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-plugins.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-qmlmodule.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-example.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-main-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satelliteinfo-pro.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satelliteinfo-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satelliteinfo-qrc.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satellitemodel-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-satelliteinfo-satellitemodel-h.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-appmodel-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-appmodel-h.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-components-bigforecasticon-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-components-forecasticon-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-components-weathericon-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-example.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-main-cpp.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-weatherinfo-pro.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-weatherinfo-qml.html %%QT_DOCDIR%%/qtpositioning/qtpositioning-weatherinfo-weatherinfo-qrc.html %%QT_DOCDIR%%/qtpositioning/qtpositioning.index %%QT_DOCDIR%%/qtpositioning/qtpositioning.qhp %%QT_DOCDIR%%/qtpositioning/qtpositioning.qhp.sha1 %%QT_DOCDIR%%/qtpositioning/qtpositioning.tags %%QT_DOCDIR%%/qtpositioning/style/offline-simple.css %%QT_DOCDIR%%/qtpositioning/style/offline.css %%QT_DOCDIR%%/qtprintsupport.qch %%QT_DOCDIR%%/qtprintsupport/images/arrow_bc.png %%QT_DOCDIR%%/qtprintsupport/images/bgrContent.png %%QT_DOCDIR%%/qtprintsupport/images/btn_next.png %%QT_DOCDIR%%/qtprintsupport/images/btn_prev.png %%QT_DOCDIR%%/qtprintsupport/images/bullet_dn.png %%QT_DOCDIR%%/qtprintsupport/images/bullet_sq.png %%QT_DOCDIR%%/qtprintsupport/images/home.png %%QT_DOCDIR%%/qtprintsupport/images/ico_note.png %%QT_DOCDIR%%/qtprintsupport/images/ico_note_attention.png %%QT_DOCDIR%%/qtprintsupport/images/ico_out.png %%QT_DOCDIR%%/qtprintsupport/images/logo.png %%QT_DOCDIR%%/qtprintsupport/images/plastique-printdialog-properties.png %%QT_DOCDIR%%/qtprintsupport/images/plastique-printdialog.png %%QT_DOCDIR%%/qtprintsupport/images/printer-rects.png %%QT_DOCDIR%%/qtprintsupport/pdf-licensing.html %%QT_DOCDIR%%/qtprintsupport/printing.html %%QT_DOCDIR%%/qtprintsupport/qabstractprintdialog-members.html %%QT_DOCDIR%%/qtprintsupport/qabstractprintdialog-obsolete.html %%QT_DOCDIR%%/qtprintsupport/qabstractprintdialog.html %%QT_DOCDIR%%/qtprintsupport/qpagesetupdialog-members.html %%QT_DOCDIR%%/qtprintsupport/qpagesetupdialog-obsolete.html %%QT_DOCDIR%%/qtprintsupport/qpagesetupdialog.html %%QT_DOCDIR%%/qtprintsupport/qprintdialog-members.html %%QT_DOCDIR%%/qtprintsupport/qprintdialog-obsolete.html %%QT_DOCDIR%%/qtprintsupport/qprintdialog.html %%QT_DOCDIR%%/qtprintsupport/qprintengine-members.html %%QT_DOCDIR%%/qtprintsupport/qprintengine.html %%QT_DOCDIR%%/qtprintsupport/qprinter-members.html %%QT_DOCDIR%%/qtprintsupport/qprinter-obsolete.html %%QT_DOCDIR%%/qtprintsupport/qprinter.html %%QT_DOCDIR%%/qtprintsupport/qprinterinfo-members.html %%QT_DOCDIR%%/qtprintsupport/qprinterinfo-obsolete.html %%QT_DOCDIR%%/qtprintsupport/qprinterinfo.html %%QT_DOCDIR%%/qtprintsupport/qprintpreviewdialog-members.html %%QT_DOCDIR%%/qtprintsupport/qprintpreviewdialog-obsolete.html %%QT_DOCDIR%%/qtprintsupport/qprintpreviewdialog.html %%QT_DOCDIR%%/qtprintsupport/qprintpreviewwidget-members.html %%QT_DOCDIR%%/qtprintsupport/qprintpreviewwidget-obsolete.html %%QT_DOCDIR%%/qtprintsupport/qprintpreviewwidget.html %%QT_DOCDIR%%/qtprintsupport/qtprintsupport-index.html %%QT_DOCDIR%%/qtprintsupport/qtprintsupport-module.html %%QT_DOCDIR%%/qtprintsupport/qtprintsupport.index %%QT_DOCDIR%%/qtprintsupport/qtprintsupport.qhp %%QT_DOCDIR%%/qtprintsupport/qtprintsupport.qhp.sha1 %%QT_DOCDIR%%/qtprintsupport/qtprintsupport.tags %%QT_DOCDIR%%/qtprintsupport/style/offline-simple.css %%QT_DOCDIR%%/qtprintsupport/style/offline.css %%QT_DOCDIR%%/qtqml.qch %%QT_DOCDIR%%/qtqml/examples-manifest.xml %%QT_DOCDIR%%/qtqml/images/arrow_bc.png %%QT_DOCDIR%%/qtqml/images/bgrContent.png %%QT_DOCDIR%%/qtqml/images/btn_next.png %%QT_DOCDIR%%/qtqml/images/btn_prev.png %%QT_DOCDIR%%/qtqml/images/bullet_dn.png %%QT_DOCDIR%%/qtqml/images/bullet_sq.png %%QT_DOCDIR%%/qtqml/images/button-types.png %%QT_DOCDIR%%/qtqml/images/cpp-qml-integration-flowchart.png %%QT_DOCDIR%%/qtqml/images/cppintegration-ex.png %%QT_DOCDIR%%/qtqml/images/declarative-rect_tint.png %%QT_DOCDIR%%/qtqml/images/documents-definetypes-attributes.png %%QT_DOCDIR%%/qtqml/images/documents-definetypes-simple.png %%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter1.png %%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter2.png %%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter3.png %%QT_DOCDIR%%/qtqml/images/extending-tutorial-chapter5.png %%QT_DOCDIR%%/qtqml/images/home.png %%QT_DOCDIR%%/qtqml/images/ico_note.png %%QT_DOCDIR%%/qtqml/images/ico_note_attention.png %%QT_DOCDIR%%/qtqml/images/ico_out.png %%QT_DOCDIR%%/qtqml/images/listmodel-nested.png %%QT_DOCDIR%%/qtqml/images/listmodel.png %%QT_DOCDIR%%/qtqml/images/logo.png %%QT_DOCDIR%%/qtqml/images/objectmodel.png %%QT_DOCDIR%%/qtqml/images/qml-dynamicscene-example.png %%QT_DOCDIR%%/qtqml/images/qml-i18n-example.png %%QT_DOCDIR%%/qtqml/images/qml-plugins-example.png %%QT_DOCDIR%%/qtqml/images/qml-xmlhttprequest-example.png %%QT_DOCDIR%%/qtqml/images/qtqml-syntax-basics-object-declaration.png %%QT_DOCDIR%%/qtqml/images/statemachine-button-history.png %%QT_DOCDIR%%/qtqml/images/statemachine-button-nested.png %%QT_DOCDIR%%/qtqml/images/statemachine-button.png %%QT_DOCDIR%%/qtqml/images/statemachine-finished.png %%QT_DOCDIR%%/qtqml/images/statemachine-nonparallel.png %%QT_DOCDIR%%/qtqml/images/statemachine-parallel.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/dynamicscene/content/images/face-smile.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/dynamicscene/content/images/moon.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/dynamicscene/content/images/rabbit_brown.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/dynamicscene/content/images/rabbit_bw.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/dynamicscene/content/images/star.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/dynamicscene/content/images/sun.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/dynamicscene/content/images/tree_s.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/qmlextensionplugins/imports/TimeExample/center.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/qmlextensionplugins/imports/TimeExample/clock.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/qmlextensionplugins/imports/TimeExample/hour.png %%QT_DOCDIR%%/qtqml/images/used-in-examples/qmlextensionplugins/imports/TimeExample/minute.png %%QT_DOCDIR%%/qtqml/qjsengine-members.html %%QT_DOCDIR%%/qtqml/qjsengine-obsolete.html %%QT_DOCDIR%%/qtqml/qjsengine.html %%QT_DOCDIR%%/qtqml/qjsvalue-members.html %%QT_DOCDIR%%/qtqml/qjsvalue-obsolete.html %%QT_DOCDIR%%/qtqml/qjsvalue.html %%QT_DOCDIR%%/qtqml/qjsvalueiterator-members.html %%QT_DOCDIR%%/qtqml/qjsvalueiterator.html %%QT_DOCDIR%%/qtqml/qml-bool.html %%QT_DOCDIR%%/qtqml/qml-date.html %%QT_DOCDIR%%/qtqml/qml-double.html %%QT_DOCDIR%%/qtqml/qml-enumeration.html %%QT_DOCDIR%%/qtqml/qml-int.html %%QT_DOCDIR%%/qtqml/qml-list.html %%QT_DOCDIR%%/qtqml/qml-package-members.html %%QT_DOCDIR%%/qtqml/qml-package.html %%QT_DOCDIR%%/qtqml/qml-point.html %%QT_DOCDIR%%/qtqml/qml-qt-labs-qmlmodels-delegatechoice-members.html %%QT_DOCDIR%%/qtqml/qml-qt-labs-qmlmodels-delegatechoice.html %%QT_DOCDIR%%/qtqml/qml-qt-labs-qmlmodels-delegatechooser-members.html %%QT_DOCDIR%%/qtqml/qml-qt-labs-qmlmodels-delegatechooser.html %%QT_DOCDIR%%/qtqml/qml-qtqml-binding-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-binding.html %%QT_DOCDIR%%/qtqml/qml-qtqml-component-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-component.html %%QT_DOCDIR%%/qtqml/qml-qtqml-connections-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-connections.html %%QT_DOCDIR%%/qtqml/qml-qtqml-date-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-date.html %%QT_DOCDIR%%/qtqml/qml-qtqml-instantiator-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-instantiator.html %%QT_DOCDIR%%/qtqml/qml-qtqml-locale-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-locale.html %%QT_DOCDIR%%/qtqml/qml-qtqml-loggingcategory-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-loggingcategory.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodel-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodel.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodelgroup-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-delegatemodelgroup.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-itemselectionmodel-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-itemselectionmodel.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-listelement-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-listelement.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-listmodel-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-listmodel.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-objectmodel-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-models-objectmodel.html %%QT_DOCDIR%%/qtqml/qml-qtqml-number-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-number.html %%QT_DOCDIR%%/qtqml/qml-qtqml-qt-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-qt.html %%QT_DOCDIR%%/qtqml/qml-qtqml-qtobject-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-qtobject.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-finalstate-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-finalstate.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-historystate-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-historystate.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstractstate-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstractstate.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstracttransition-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qabstracttransition.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qsignaltransition-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-qsignaltransition.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-signaltransition-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-signaltransition.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-state-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-state.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-statemachine-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-statemachine.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-timeouttransition-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-statemachine-timeouttransition.html %%QT_DOCDIR%%/qtqml/qml-qtqml-string-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-string.html %%QT_DOCDIR%%/qtqml/qml-qtqml-timer-members.html %%QT_DOCDIR%%/qtqml/qml-qtqml-timer.html %%QT_DOCDIR%%/qtqml/qml-real.html %%QT_DOCDIR%%/qtqml/qml-rect.html %%QT_DOCDIR%%/qtqml/qml-size.html %%QT_DOCDIR%%/qtqml/qml-string.html %%QT_DOCDIR%%/qtqml/qml-url.html %%QT_DOCDIR%%/qtqml/qml-var.html %%QT_DOCDIR%%/qtqml/qml-variant.html %%QT_DOCDIR%%/qtqml/qml-workerscript-members.html %%QT_DOCDIR%%/qtqml/qml-workerscript.html %%QT_DOCDIR%%/qtqml/qmlextendingexamples.html %%QT_DOCDIR%%/qtqml/qmlreference.html %%QT_DOCDIR%%/qtqml/qmlstatemachine.html %%QT_DOCDIR%%/qtqml/qmodelindex-and-related-classes-in-qml.html %%QT_DOCDIR%%/qtqml/qqmlabstracturlinterceptor-members.html %%QT_DOCDIR%%/qtqml/qqmlabstracturlinterceptor.html %%QT_DOCDIR%%/qtqml/qqmlapplicationengine-members.html %%QT_DOCDIR%%/qtqml/qqmlapplicationengine-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlapplicationengine.html %%QT_DOCDIR%%/qtqml/qqmlcomponent-members.html %%QT_DOCDIR%%/qtqml/qqmlcomponent-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlcomponent.html %%QT_DOCDIR%%/qtqml/qqmlcontext-members.html %%QT_DOCDIR%%/qtqml/qqmlcontext-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlcontext-propertypair-members.html %%QT_DOCDIR%%/qtqml/qqmlcontext-propertypair.html %%QT_DOCDIR%%/qtqml/qqmlcontext.html %%QT_DOCDIR%%/qtqml/qqmlengine-members.html %%QT_DOCDIR%%/qtqml/qqmlengine-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlengine.html %%QT_DOCDIR%%/qtqml/qqmlerror-members.html %%QT_DOCDIR%%/qtqml/qqmlerror.html %%QT_DOCDIR%%/qtqml/qqmlexpression-members.html %%QT_DOCDIR%%/qtqml/qqmlexpression-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlexpression.html %%QT_DOCDIR%%/qtqml/qqmlextensionplugin-members.html %%QT_DOCDIR%%/qtqml/qqmlextensionplugin-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlextensionplugin.html %%QT_DOCDIR%%/qtqml/qqmlfileselector-members.html %%QT_DOCDIR%%/qtqml/qqmlfileselector-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlfileselector.html %%QT_DOCDIR%%/qtqml/qqmlimageproviderbase-members.html %%QT_DOCDIR%%/qtqml/qqmlimageproviderbase.html %%QT_DOCDIR%%/qtqml/qqmlincubationcontroller-members.html %%QT_DOCDIR%%/qtqml/qqmlincubationcontroller.html %%QT_DOCDIR%%/qtqml/qqmlincubator-members.html %%QT_DOCDIR%%/qtqml/qqmlincubator.html %%QT_DOCDIR%%/qtqml/qqmllistproperty-members.html %%QT_DOCDIR%%/qtqml/qqmllistproperty.html %%QT_DOCDIR%%/qtqml/qqmllistreference-members.html %%QT_DOCDIR%%/qtqml/qqmllistreference.html %%QT_DOCDIR%%/qtqml/qqmlnetworkaccessmanagerfactory-members.html %%QT_DOCDIR%%/qtqml/qqmlnetworkaccessmanagerfactory.html %%QT_DOCDIR%%/qtqml/qqmlparserstatus-members.html %%QT_DOCDIR%%/qtqml/qqmlparserstatus.html %%QT_DOCDIR%%/qtqml/qqmlproperty-members.html %%QT_DOCDIR%%/qtqml/qqmlproperty.html %%QT_DOCDIR%%/qtqml/qqmlpropertymap-members.html %%QT_DOCDIR%%/qtqml/qqmlpropertymap-obsolete.html %%QT_DOCDIR%%/qtqml/qqmlpropertymap.html %%QT_DOCDIR%%/qtqml/qqmlpropertyvaluesource-members.html %%QT_DOCDIR%%/qtqml/qqmlpropertyvaluesource.html %%QT_DOCDIR%%/qtqml/qqmlscriptstring-members.html %%QT_DOCDIR%%/qtqml/qqmlscriptstring.html %%QT_DOCDIR%%/qtqml/qt-labs-qmlmodels-qmlmodule.html %%QT_DOCDIR%%/qtqml/qtjavascript.html %%QT_DOCDIR%%/qtqml/qtqml-attribution-masm.html %%QT_DOCDIR%%/qtqml/qtqml-cppclasses-topic.html %%QT_DOCDIR%%/qtqml/qtqml-cppintegration-contextproperties.html %%QT_DOCDIR%%/qtqml/qtqml-cppintegration-data.html %%QT_DOCDIR%%/qtqml/qtqml-cppintegration-definetypes.html %%QT_DOCDIR%%/qtqml/qtqml-cppintegration-exposecppattributes.html %%QT_DOCDIR%%/qtqml/qtqml-cppintegration-interactqmlfromcpp.html %%QT_DOCDIR%%/qtqml/qtqml-cppintegration-overview.html %%QT_DOCDIR%%/qtqml/qtqml-cppintegration-topic.html %%QT_DOCDIR%%/qtqml/qtqml-documents-definetypes.html %%QT_DOCDIR%%/qtqml/qtqml-documents-networktransparency.html %%QT_DOCDIR%%/qtqml/qtqml-documents-scope.html %%QT_DOCDIR%%/qtqml/qtqml-documents-structure.html %%QT_DOCDIR%%/qtqml/qtqml-documents-topic.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-button-qml.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-genericsceneitem-qml.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-itemcreation-js.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-paletteitem-qml.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-perspectiveitem-qml.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-content-sun-qml.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-dynamicscene-qml.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-dynamicscene-qmlproject.html %%QT_DOCDIR%%/qtqml/qtqml-dynamicscene-example.html %%QT_DOCDIR%%/qtqml/qtqml-index.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-dynamicobjectcreation.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-expressions.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-functionlist.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-hostenvironment.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-imports.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-qmlglobalobject.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-resources.html %%QT_DOCDIR%%/qtqml/qtqml-javascript-topic.html %%QT_DOCDIR%%/qtqml/qtqml-models-qmlmodule.html %%QT_DOCDIR%%/qtqml/qtqml-module.html %%QT_DOCDIR%%/qtqml/qtqml-modules-cppplugins.html %%QT_DOCDIR%%/qtqml/qtqml-modules-identifiedmodules.html %%QT_DOCDIR%%/qtqml/qtqml-modules-legacymodules.html %%QT_DOCDIR%%/qtqml/qtqml-modules-qmldir.html %%QT_DOCDIR%%/qtqml/qtqml-modules-topic.html %%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-example.html %%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-networkaccessmanagerfactory-pro.html %%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-networkaccessmanagerfactory-qmlproject.html %%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-networkaccessmanagerfactory-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-networkaccessmanagerfactory-view-qml.html %%QT_DOCDIR%%/qtqml/qtqml-qml-i18n-example.html %%QT_DOCDIR%%/qtqml/qtqml-qml-i18n-qml-i18n-qml.html %%QT_DOCDIR%%/qtqml/qtqml-qml-i18n-qml-i18n-qmlproject.html %%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-example.html %%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-imports-timeexample-clock-qml.html %%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-imports-timeexample-qmldir.html %%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-plugin-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-plugins-qml.html %%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-plugins-qmlproject.html %%QT_DOCDIR%%/qtqml/qtqml-qmlextensionplugins-qmlextensionplugins-pro.html %%QT_DOCDIR%%/qtqml/qtqml-qmlmodule.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-adding-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-adding-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-adding-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-attached-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-attached-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-attached-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-binding-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-binding-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-happybirthdaysong-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-happybirthdaysong-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-binding-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-coercion-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-coercion-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-coercion-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-default-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-default-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-default-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-extended-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-extended-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-lineedit-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-lineedit-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-extended-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-grouped-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-grouped-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-grouped-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-methods-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-methods-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-methods-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-properties-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-properties-properties-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-signal-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-signal-signal-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-birthdayparty-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-birthdayparty-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-example-qml.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-example.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-happybirthdaysong-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-happybirthdaysong-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-person-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-person-h.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-valuesource-pro.html %%QT_DOCDIR%%/qtqml/qtqml-referenceexamples-valuesource-valuesource-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-statemachine-qmlmodule.html %%QT_DOCDIR%%/qtqml/qtqml-syntax-basics.html %%QT_DOCDIR%%/qtqml/qtqml-syntax-directoryimports.html %%QT_DOCDIR%%/qtqml/qtqml-syntax-imports.html %%QT_DOCDIR%%/qtqml/qtqml-syntax-objectattributes.html %%QT_DOCDIR%%/qtqml/qtqml-syntax-propertybinding.html %%QT_DOCDIR%%/qtqml/qtqml-syntax-signals.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-app-qml.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-chapter1-basics-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-chapter1-basics-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-piechart-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter1-basics-piechart-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-app-qml.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-chapter2-methods-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-chapter2-methods-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-piechart-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter2-methods-piechart-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-app-qml.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-chapter3-bindings-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-chapter3-bindings-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-piechart-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter3-bindings-piechart-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-app-qml.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-chapter4-custompropertytypes-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-chapter4-custompropertytypes-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-piechart-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-piechart-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-pieslice-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter4-custompropertytypes-pieslice-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-app-qml.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-chapter5-listproperties-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-chapter5-listproperties-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-piechart-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-piechart-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-pieslice-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter5-listproperties-pieslice-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-app-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-app-qml.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-app-qrc.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-chapter6-plugins-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-chartsplugin-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-chartsplugin-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-import-pro.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-piechart-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-piechart-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-pieslice-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-pieslice-h.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-chapter6-plugins-import-qmldir.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-example.html %%QT_DOCDIR%%/qtqml/qtqml-tutorials-extending-qml-extending-qml-pro.html %%QT_DOCDIR%%/qtqml/qtqml-typesystem-basictypes.html %%QT_DOCDIR%%/qtqml/qtqml-typesystem-objecttypes.html %%QT_DOCDIR%%/qtqml/qtqml-typesystem-topic.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-data-xml.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-example.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-get-qml.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-getform-ui-qml.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-main-cpp.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-methods-js.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-pro.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-qml.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-qmlproject.html %%QT_DOCDIR%%/qtqml/qtqml-xmlhttprequest-xmlhttprequest-qrc.html %%QT_DOCDIR%%/qtqml/qtqml.html %%QT_DOCDIR%%/qtqml/qtqml.index %%QT_DOCDIR%%/qtqml/qtqml.qhp %%QT_DOCDIR%%/qtqml/qtqml.qhp.sha1 %%QT_DOCDIR%%/qtqml/qtqml.tags %%QT_DOCDIR%%/qtqml/style/offline-simple.css %%QT_DOCDIR%%/qtqml/style/offline.css %%QT_DOCDIR%%/qtqmltest.qch %%QT_DOCDIR%%/qtqmltest/images/arrow_bc.png %%QT_DOCDIR%%/qtqmltest/images/bgrContent.png %%QT_DOCDIR%%/qtqmltest/images/btn_next.png %%QT_DOCDIR%%/qtqmltest/images/btn_prev.png %%QT_DOCDIR%%/qtqmltest/images/bullet_dn.png %%QT_DOCDIR%%/qtqmltest/images/bullet_sq.png %%QT_DOCDIR%%/qtqmltest/images/home.png %%QT_DOCDIR%%/qtqmltest/images/ico_note.png %%QT_DOCDIR%%/qtqmltest/images/ico_note_attention.png %%QT_DOCDIR%%/qtqmltest/images/ico_out.png %%QT_DOCDIR%%/qtqmltest/images/logo.png %%QT_DOCDIR%%/qtqmltest/qtqmltest.index %%QT_DOCDIR%%/qtqmltest/qtqmltest.qhp %%QT_DOCDIR%%/qtqmltest/qtqmltest.qhp.sha1 %%QT_DOCDIR%%/qtqmltest/qtqmltest.tags %%QT_DOCDIR%%/qtqmltest/qtquicktest-index.html %%QT_DOCDIR%%/qtqmltest/style/offline-simple.css %%QT_DOCDIR%%/qtqmltest/style/offline.css %%QT_DOCDIR%%/qtquick.qch %%QT_DOCDIR%%/qtquick/examples-manifest.xml %%QT_DOCDIR%%/qtquick/images/3d-rotation-axis.png %%QT_DOCDIR%%/qtquick/images/9BcAYDlpuT8.jpg %%QT_DOCDIR%%/qtquick/images/ListViewHorizontal.png %%QT_DOCDIR%%/qtquick/images/anchor_ordering.png %%QT_DOCDIR%%/qtquick/images/anchor_ordering_bad.png %%QT_DOCDIR%%/qtquick/images/anchorchanges.png %%QT_DOCDIR%%/qtquick/images/animatedimageitem.gif %%QT_DOCDIR%%/qtquick/images/animatedsprite-loading-frames.png %%QT_DOCDIR%%/qtquick/images/animatedsprite-loading-interpolated.gif %%QT_DOCDIR%%/qtquick/images/animatedsprite-loading.gif %%QT_DOCDIR%%/qtquick/images/animatedsprite-loading.png %%QT_DOCDIR%%/qtquick/images/arrow_bc.png %%QT_DOCDIR%%/qtquick/images/axisrotation.png %%QT_DOCDIR%%/qtquick/images/bgrContent.png %%QT_DOCDIR%%/qtquick/images/btn_next.png %%QT_DOCDIR%%/qtquick/images/btn_prev.png %%QT_DOCDIR%%/qtquick/images/bullet_dn.png %%QT_DOCDIR%%/qtquick/images/bullet_sq.png %%QT_DOCDIR%%/qtquick/images/columnlayout.png %%QT_DOCDIR%%/qtquick/images/custom-geometry-example.png %%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial1.png %%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial2.png %%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial3.png %%QT_DOCDIR%%/qtquick/images/declarative-adv-tutorial4.gif %%QT_DOCDIR%%/qtquick/images/declarative-anchors_example.png %%QT_DOCDIR%%/qtquick/images/declarative-anchors_example2.png %%QT_DOCDIR%%/qtquick/images/declarative-arcdirection.png %%QT_DOCDIR%%/qtquick/images/declarative-arcradius.png %%QT_DOCDIR%%/qtquick/images/declarative-arcrotation.png %%QT_DOCDIR%%/qtquick/images/declarative-colors.png %%QT_DOCDIR%%/qtquick/images/declarative-gridmesh.png %%QT_DOCDIR%%/qtquick/images/declarative-item_opacity1.png %%QT_DOCDIR%%/qtquick/images/declarative-item_opacity2.png %%QT_DOCDIR%%/qtquick/images/declarative-item_stacking1.png %%QT_DOCDIR%%/qtquick/images/declarative-item_stacking2.png %%QT_DOCDIR%%/qtquick/images/declarative-item_stacking3.png %%QT_DOCDIR%%/qtquick/images/declarative-item_stacking4.png %%QT_DOCDIR%%/qtquick/images/declarative-largearc.png %%QT_DOCDIR%%/qtquick/images/declarative-nopercent.png %%QT_DOCDIR%%/qtquick/images/declarative-patharc.png %%QT_DOCDIR%%/qtquick/images/declarative-pathattribute.png %%QT_DOCDIR%%/qtquick/images/declarative-pathcubic.png %%QT_DOCDIR%%/qtquick/images/declarative-pathcurve.png %%QT_DOCDIR%%/qtquick/images/declarative-pathquad.png %%QT_DOCDIR%%/qtquick/images/declarative-pathsvg.png %%QT_DOCDIR%%/qtquick/images/declarative-percent.png %%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus1.png %%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus2.png %%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus3.png %%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus4.png %%QT_DOCDIR%%/qtquick/images/declarative-qmlfocus5.png %%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-preserveaspectcrop.png %%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-preserveaspectfit.png %%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-stretch.png %%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-tile.png %%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-tilehorizontally.png %%QT_DOCDIR%%/qtquick/images/declarative-qtlogo-tilevertically.png %%QT_DOCDIR%%/qtquick/images/declarative-qtlogo.png %%QT_DOCDIR%%/qtquick/images/declarative-rect.png %%QT_DOCDIR%%/qtquick/images/declarative-rect_gradient.png %%QT_DOCDIR%%/qtquick/images/declarative-rotation.png %%QT_DOCDIR%%/qtquick/images/declarative-samegame.png %%QT_DOCDIR%%/qtquick/images/declarative-scale.png %%QT_DOCDIR%%/qtquick/images/declarative-scalegrid.png %%QT_DOCDIR%%/qtquick/images/declarative-shadereffectitem.png %%QT_DOCDIR%%/qtquick/images/declarative-shadereffectsource.png %%QT_DOCDIR%%/qtquick/images/declarative-text.png %%QT_DOCDIR%%/qtquick/images/declarative-textballoons_example.png %%QT_DOCDIR%%/qtquick/images/declarative-textedit.gif %%QT_DOCDIR%%/qtquick/images/declarative-textformat.png %%QT_DOCDIR%%/qtquick/images/declarative-textstyle.png %%QT_DOCDIR%%/qtquick/images/declarative-transformorigin.png %%QT_DOCDIR%%/qtquick/images/declarative-tutorial1.png %%QT_DOCDIR%%/qtquick/images/declarative-tutorial2.png %%QT_DOCDIR%%/qtquick/images/declarative-tutorial3_animation.gif %%QT_DOCDIR%%/qtquick/images/edge1.png %%QT_DOCDIR%%/qtquick/images/edge2.png %%QT_DOCDIR%%/qtquick/images/edge3.png %%QT_DOCDIR%%/qtquick/images/edge4.png %%QT_DOCDIR%%/qtquick/images/edges_qml.png %%QT_DOCDIR%%/qtquick/images/flickable-contentXY-bottom-left.png %%QT_DOCDIR%%/qtquick/images/flickable-contentXY-bottom-right.png %%QT_DOCDIR%%/qtquick/images/flickable-contentXY-resting.png %%QT_DOCDIR%%/qtquick/images/flickable-contentXY-top-left.png %%QT_DOCDIR%%/qtquick/images/flickable-contentXY-top-right.png %%QT_DOCDIR%%/qtquick/images/flickable-rebound.gif %%QT_DOCDIR%%/qtquick/images/flickable.gif %%QT_DOCDIR%%/qtquick/images/flipable.gif %%QT_DOCDIR%%/qtquick/images/fuzzydot.png %%QT_DOCDIR%%/qtquick/images/gameoflife.png %%QT_DOCDIR%%/qtquick/images/glowdot.png %%QT_DOCDIR%%/qtquick/images/graph-example.jpg %%QT_DOCDIR%%/qtquick/images/gridLayout_aligncenter.png %%QT_DOCDIR%%/qtquick/images/gridLayout_aligntop.png %%QT_DOCDIR%%/qtquick/images/gridLayout_aligntopleft.png %%QT_DOCDIR%%/qtquick/images/gridLayout_example.png %%QT_DOCDIR%%/qtquick/images/gridlayout.png %%QT_DOCDIR%%/qtquick/images/gridview-highlight.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-ltr-btt.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-ltr-ttb.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-rtl-btt.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-lefttoright-rtl-ttb.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-ltr-btt.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-ltr-ttb.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-rtl-btt.png %%QT_DOCDIR%%/qtquick/images/gridview-layout-toptobottom-rtl-ttb.png %%QT_DOCDIR%%/qtquick/images/gridview-simple.png %%QT_DOCDIR%%/qtquick/images/home.png %%QT_DOCDIR%%/qtquick/images/horizontalpositioner_example.png %%QT_DOCDIR%%/qtquick/images/ico_note.png %%QT_DOCDIR%%/qtquick/images/ico_note_attention.png %%QT_DOCDIR%%/qtquick/images/ico_out.png %%QT_DOCDIR%%/qtquick/images/imageprovider.png %%QT_DOCDIR%%/qtquick/images/layoutmirroring.png %%QT_DOCDIR%%/qtquick/images/listview-decorations.png %%QT_DOCDIR%%/qtquick/images/listview-highlight.png %%QT_DOCDIR%%/qtquick/images/listview-layout-bottomtotop.png %%QT_DOCDIR%%/qtquick/images/listview-layout-lefttoright.png %%QT_DOCDIR%%/qtquick/images/listview-layout-righttoleft.png %%QT_DOCDIR%%/qtquick/images/listview-layout-toptobottom.png %%QT_DOCDIR%%/qtquick/images/listview-section.png %%QT_DOCDIR%%/qtquick/images/listview-setup.png %%QT_DOCDIR%%/qtquick/images/listview-simple.png %%QT_DOCDIR%%/qtquick/images/logo.png %%QT_DOCDIR%%/qtquick/images/manual-layout.png %%QT_DOCDIR%%/qtquick/images/margins_qml.png %%QT_DOCDIR%%/qtquick/images/modelview-overview.png %%QT_DOCDIR%%/qtquick/images/openglunderqml-example.jpg %%QT_DOCDIR%%/qtquick/images/parentchange.png +%%QT_DOCDIR%%/qtquick/images/pathitem-code-example.png %%QT_DOCDIR%%/qtquick/images/pathview.gif %%QT_DOCDIR%%/qtquick/images/pointerHandlerMargin.png %%QT_DOCDIR%%/qtquick/images/positioner-example.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inback.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inbounce.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-incirc.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-incubic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inelastic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inexpo.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutback.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutbounce.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutcirc.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutcubic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutelastic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutexpo.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutquad.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutquart.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutquint.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inoutsine.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inquad.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inquart.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-inquint.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-insine.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-linear.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outback.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outbounce.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outcirc.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outcubic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outelastic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outexpo.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinback.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinbounce.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outincirc.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outincubic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinelastic.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinexpo.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinquad.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinquart.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinquint.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outinsine.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outquad.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outquart.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outquint.png %%QT_DOCDIR%%/qtquick/images/qeasingcurve-outsine.png %%QT_DOCDIR%%/qtquick/images/qml-abstractitemmodel-example.png %%QT_DOCDIR%%/qtquick/images/qml-affectors-example.png %%QT_DOCDIR%%/qtquick/images/qml-animations-example.png %%QT_DOCDIR%%/qtquick/images/qml-blending-layered.png %%QT_DOCDIR%%/qtquick/images/qml-blending-nonlayered.png %%QT_DOCDIR%%/qtquick/images/qml-borderimage-normal-image.png %%QT_DOCDIR%%/qtquick/images/qml-borderimage-scaled.png %%QT_DOCDIR%%/qtquick/images/qml-borderimage-tiled.png %%QT_DOCDIR%%/qtquick/images/qml-canvas-example.png %%QT_DOCDIR%%/qtquick/images/qml-column.png %%QT_DOCDIR%%/qtquick/images/qml-customparticle-example.png %%QT_DOCDIR%%/qtquick/images/qml-dialcontrol-example.png %%QT_DOCDIR%%/qtquick/images/qml-dnd2-example.png %%QT_DOCDIR%%/qtquick/images/qml-draganddrop-example.png %%QT_DOCDIR%%/qtquick/images/qml-emitters-example.png %%QT_DOCDIR%%/qtquick/images/qml-flipable-example.png %%QT_DOCDIR%%/qtquick/images/qml-flow-snippet.png %%QT_DOCDIR%%/qtquick/images/qml-flow-text1.png %%QT_DOCDIR%%/qtquick/images/qml-flow-text2.png %%QT_DOCDIR%%/qtquick/images/qml-gradient.png %%QT_DOCDIR%%/qtquick/images/qml-grid-no-spacing.png %%QT_DOCDIR%%/qtquick/images/qml-grid-spacing.png %%QT_DOCDIR%%/qtquick/images/qml-imageelements-example.png %%QT_DOCDIR%%/qtquick/images/qml-imageparticle-example.png %%QT_DOCDIR%%/qtquick/images/qml-imageprovider-example.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-arc.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-arcTo.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-bezierCurveTo.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-clip-complex.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-context.gif %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-lineDash.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-math-rotate.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-math.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-rotate.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-scale.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-scalex.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-scaley.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-skewx.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-skewy.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-startAngle.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-translate.png %%QT_DOCDIR%%/qtquick/images/qml-item-canvas-translatey.png %%QT_DOCDIR%%/qtquick/images/qml-keyinteraction-example.png %%QT_DOCDIR%%/qtquick/images/qml-listview-sections-example.png %%QT_DOCDIR%%/qtquick/images/qml-localstorage-example.png %%QT_DOCDIR%%/qtquick/images/qml-modelviews-example.png %%QT_DOCDIR%%/qtquick/images/qml-mousearea-example.png %%QT_DOCDIR%%/qtquick/images/qml-mousearea-snippet.png %%QT_DOCDIR%%/qtquick/images/qml-objectlistmodel-example.png %%QT_DOCDIR%%/qtquick/images/qml-positioners-example.png %%QT_DOCDIR%%/qtquick/images/qml-righttoleft-example.png %%QT_DOCDIR%%/qtquick/images/qml-row.png %%QT_DOCDIR%%/qtquick/images/qml-scrollbar-example.png %%QT_DOCDIR%%/qtquick/images/qml-shadereffect-layereffect.png %%QT_DOCDIR%%/qtquick/images/qml-shadereffect-nolayereffect.png %%QT_DOCDIR%%/qtquick/images/qml-shadereffect-opacitymask.png %%QT_DOCDIR%%/qtquick/images/qml-shadereffects-example.png %%QT_DOCDIR%%/qtquick/images/qml-shapes-example.png %%QT_DOCDIR%%/qtquick/images/qml-stringlistmodel-example.png %%QT_DOCDIR%%/qtquick/images/qml-system-example.png %%QT_DOCDIR%%/qtquick/images/qml-tabwidget-example.png %%QT_DOCDIR%%/qtquick/images/qml-text-example.png %%QT_DOCDIR%%/qtquick/images/qml-threading-example.png %%QT_DOCDIR%%/qtquick/images/qml-touchinteraction-example.png %%QT_DOCDIR%%/qtquick/images/qml-window-example.png %%QT_DOCDIR%%/qtquick/images/qt-pixelator.png %%QT_DOCDIR%%/qtquick/images/qtlabs-wavefrontmesh.png %%QT_DOCDIR%%/qtquick/images/qtquickcontrols2-gallery-welcome.png %%QT_DOCDIR%%/qtquick/images/qtquicklayouts-example-layouts.png %%QT_DOCDIR%%/qtquick/images/qtquickwidgets-example.png %%QT_DOCDIR%%/qtquick/images/rect-color.png %%QT_DOCDIR%%/qtquick/images/rendercontrol-example.jpg %%QT_DOCDIR%%/qtquick/images/repeater-index.png %%QT_DOCDIR%%/qtquick/images/repeater-modeldata.png %%QT_DOCDIR%%/qtquick/images/repeater-simple.png %%QT_DOCDIR%%/qtquick/images/repeater.png %%QT_DOCDIR%%/qtquick/images/rowlayout-minimum.png %%QT_DOCDIR%%/qtquick/images/rowlayout.png %%QT_DOCDIR%%/qtquick/images/screen-and-window-dimensions.jpg %%QT_DOCDIR%%/qtquick/images/sg-renderloop-singlethreaded.jpg %%QT_DOCDIR%%/qtquick/images/sg-renderloop-threaded.jpg +%%QT_DOCDIR%%/qtquick/images/shape-radial-gradient.png %%QT_DOCDIR%%/qtquick/images/simplematerial-example.jpg %%QT_DOCDIR%%/qtquick/images/spritecutting.png %%QT_DOCDIR%%/qtquick/images/spriteenginegraph.png %%QT_DOCDIR%%/qtquick/images/star.png %%QT_DOCDIR%%/qtquick/images/textureinsgnode-example.jpg %%QT_DOCDIR%%/qtquick/images/textureinthread-example.jpg %%QT_DOCDIR%%/qtquick/images/touchpoint-metrics.png %%QT_DOCDIR%%/qtquick/images/touchpoints-pinchhandler.png %%QT_DOCDIR%%/qtquick/images/translate.png %%QT_DOCDIR%%/qtquick/images/twotextureproviders-example.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/animation/basics/images/face-smile.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/animation/basics/images/moon.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/animation/basics/images/shadow.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/animation/basics/images/star.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/animation/basics/images/sun.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/animation/states/qt-logo.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/canvas/contents/qt-logo.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/canvas/squircle/squircle.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/dialcontrol/content/background.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/dialcontrol/content/needle.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/dialcontrol/content/needle_shadow.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/dialcontrol/content/overlay.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/dialcontrol/content/quit.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/flipable/content/5_heart.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/flipable/content/9_club.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/flipable/content/back.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/customitems/scrollbar/pics/niagara_falls.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/BearSheet.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/Uniflow_steam_engine.gif %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/arrow.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/bw.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/colors.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/qt-logo.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/shadow.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/imageelements/content/speaker.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/keyinteraction/focus/Core/images/arrow.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/keyinteraction/focus/Core/images/qt-logo.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/shadereffects/content/face-smile.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/shadereffects/content/qt-logo.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/tableview/pixelator/qt.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/imgtag/images/face-sad.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/imgtag/images/face-smile-big.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/imgtag/images/face-smile.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/imgtag/images/heart200.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/imgtag/images/qtlogo.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/imgtag/images/starfish_2.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/textselection/pics/endHandle.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/text/textselection/pics/startHandle.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/flickable/content/cork.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/flickable/content/note-yellow.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/flickable/content/tack.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/Bear0.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/Bear1.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/Bear2.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/Bear3.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/BearB.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/blur-circle.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/blur-circle3.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/heart-blur.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/multipointtouch/content/title.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/touchinteraction/pincharea/qt-logo.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/gridview/pics/AddressBook_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/gridview/pics/AudioPlayer_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/gridview/pics/Camera_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/gridview/pics/DateBook_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/gridview/pics/EMail_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/gridview/pics/TodoList_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/gridview/pics/VideoPlayer_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/arrow-down.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/arrow-up.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/fruit-salad.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/hamburger.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/lemonade.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/list-delete.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/minus-sign.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/moreDown.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/moreUp.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/pancakes.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/plus-sign.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/listview/content/pics/vegetable-soup.jpg %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/pathview/pics/AddressBook_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/pathview/pics/AudioPlayer_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/pathview/pics/Camera_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/pathview/pics/DateBook_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/pathview/pics/EMail_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/pathview/pics/TodoList_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/views/pathview/pics/VideoPlayer_48.png %%QT_DOCDIR%%/qtquick/images/used-in-examples/window/resources/icon64.png %%QT_DOCDIR%%/qtquick/images/verticalpositioner_example.png %%QT_DOCDIR%%/qtquick/images/verticalpositioner_transition.gif %%QT_DOCDIR%%/qtquick/images/viewtransitions-basic.gif %%QT_DOCDIR%%/qtquick/images/viewtransitions-delayedbyindex.gif %%QT_DOCDIR%%/qtquick/images/viewtransitions-intermediatemove.gif %%QT_DOCDIR%%/qtquick/images/viewtransitions-interruptedbad.gif %%QT_DOCDIR%%/qtquick/images/viewtransitions-interruptedgood.gif %%QT_DOCDIR%%/qtquick/images/viewtransitions-pathanim.gif %%QT_DOCDIR%%/qtquick/images/viewtransitions-scriptactionbad.gif %%QT_DOCDIR%%/qtquick/images/visual-coordinates-example.png %%QT_DOCDIR%%/qtquick/images/visual-parent-example.png %%QT_DOCDIR%%/qtquick/images/visual-parent-example2.png %%QT_DOCDIR%%/qtquick/images/visualcanvas_list.png %%QT_DOCDIR%%/qtquick/images/visualcanvas_overlap.png %%QT_DOCDIR%%/qtquick/images/visualize-batches.png %%QT_DOCDIR%%/qtquick/images/visualize-clip.png %%QT_DOCDIR%%/qtquick/images/visualize-original.png %%QT_DOCDIR%%/qtquick/images/visualize-overdraw-1.png %%QT_DOCDIR%%/qtquick/images/visualize-overdraw-2.png +%%QT_DOCDIR%%/qtquick/images/visualpath-code-example.png %%QT_DOCDIR%%/qtquick/qml-advtutorial.html %%QT_DOCDIR%%/qtquick/qml-color.html %%QT_DOCDIR%%/qtquick/qml-dynamicview-tutorial.html %%QT_DOCDIR%%/qtquick/qml-font.html %%QT_DOCDIR%%/qtquick/qml-matrix4x4.html %%QT_DOCDIR%%/qtquick/qml-qt-labs-folderlistmodel-folderlistmodel-members.html %%QT_DOCDIR%%/qtquick/qml-qt-labs-folderlistmodel-folderlistmodel.html %%QT_DOCDIR%%/qtquick/qml-qt-labs-settings-settings-members.html %%QT_DOCDIR%%/qtquick/qml-qt-labs-settings-settings.html %%QT_DOCDIR%%/qtquick/qml-qt-labs-wavefrontmesh-wavefrontmesh-members.html %%QT_DOCDIR%%/qtquick/qml-qt-labs-wavefrontmesh-wavefrontmesh.html %%QT_DOCDIR%%/qtquick/qml-qtquick-accessible-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-accessible.html %%QT_DOCDIR%%/qtquick/qml-qtquick-anchoranimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-anchoranimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-anchorchanges-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-anchorchanges.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animatedimage-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animatedimage.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animatedsprite-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animatedsprite.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animationcontroller-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animationcontroller.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-animator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-behavior-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-behavior.html %%QT_DOCDIR%%/qtquick/qml-qtquick-borderimage-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-borderimage.html %%QT_DOCDIR%%/qtquick/qml-qtquick-borderimagemesh-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-borderimagemesh.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvas-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvas-obsolete.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvas.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvasgradient-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvasgradient.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvasimagedata-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvasimagedata.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvaspixelarray-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-canvaspixelarray.html %%QT_DOCDIR%%/qtquick/qml-qtquick-coloranimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-coloranimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-column-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-column.html %%QT_DOCDIR%%/qtquick/qml-qtquick-context2d-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-context2d.html %%QT_DOCDIR%%/qtquick/qml-qtquick-doublevalidator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-doublevalidator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-drag-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-drag.html %%QT_DOCDIR%%/qtquick/qml-qtquick-dragevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-dragevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-draghandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-draghandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-droparea-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-droparea.html %%QT_DOCDIR%%/qtquick/qml-qtquick-enterkey-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-enterkey.html %%QT_DOCDIR%%/qtquick/qml-qtquick-eventpoint-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-eventpoint.html %%QT_DOCDIR%%/qtquick/qml-qtquick-eventtouchpoint-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-eventtouchpoint.html %%QT_DOCDIR%%/qtquick/qml-qtquick-flickable-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-flickable.html %%QT_DOCDIR%%/qtquick/qml-qtquick-flipable-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-flipable.html %%QT_DOCDIR%%/qtquick/qml-qtquick-flow-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-flow.html %%QT_DOCDIR%%/qtquick/qml-qtquick-focusscope-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-focusscope.html %%QT_DOCDIR%%/qtquick/qml-qtquick-fontloader-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-fontloader.html %%QT_DOCDIR%%/qtquick/qml-qtquick-fontmetrics-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-fontmetrics.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gestureevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gestureevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gradient-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gradient.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gradientstop-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gradientstop.html %%QT_DOCDIR%%/qtquick/qml-qtquick-graphicsinfo-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-graphicsinfo.html %%QT_DOCDIR%%/qtquick/qml-qtquick-grid-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-grid.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gridmesh-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gridmesh.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gridview-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-gridview.html %%QT_DOCDIR%%/qtquick/qml-qtquick-handlerpoint-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-handlerpoint.html %%QT_DOCDIR%%/qtquick/qml-qtquick-hoverhandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-hoverhandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-image-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-image.html %%QT_DOCDIR%%/qtquick/qml-qtquick-intvalidator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-intvalidator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-item-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-item.html %%QT_DOCDIR%%/qtquick/qml-qtquick-itemgrabresult-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-itemgrabresult.html %%QT_DOCDIR%%/qtquick/qml-qtquick-keyevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-keyevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-keynavigation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-keynavigation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-keys-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-keys.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layoutmirroring-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layoutmirroring.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-columnlayout-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-columnlayout.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-gridlayout-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-gridlayout.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-layout-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-layout.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-rowlayout-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-rowlayout.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-stacklayout-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-layouts-stacklayout.html %%QT_DOCDIR%%/qtquick/qml-qtquick-listview-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-listview.html %%QT_DOCDIR%%/qtquick/qml-qtquick-loader-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-loader.html %%QT_DOCDIR%%/qtquick/qml-qtquick-matrix4x4-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-matrix4x4.html %%QT_DOCDIR%%/qtquick/qml-qtquick-mousearea-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-mousearea.html %%QT_DOCDIR%%/qtquick/qml-qtquick-mouseevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-mouseevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-multipointhandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-multipointhandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-multipointtoucharea-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-multipointtoucharea.html %%QT_DOCDIR%%/qtquick/qml-qtquick-numberanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-numberanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-opacityanimator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-opacityanimator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-openglinfo-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-openglinfo.html %%QT_DOCDIR%%/qtquick/qml-qtquick-parallelanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-parallelanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-parentanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-parentanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-parentchange-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-parentchange.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-affector-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-affector.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-age-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-age.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-angledirection-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-angledirection.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-attractor-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-attractor.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-cumulativedirection-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-cumulativedirection.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-customparticle-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-customparticle.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-direction-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-direction.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-ellipseshape-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-ellipseshape.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-emitter-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-emitter.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-friction-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-friction.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-gravity-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-gravity-obsolete.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-gravity.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-groupgoal-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-groupgoal.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-imageparticle-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-imageparticle.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-itemparticle-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-itemparticle.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-lineshape-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-lineshape.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-maskshape-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-maskshape.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particle-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particle.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlegroup-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlegroup.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlepainter-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlepainter.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlesystem-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-particlesystem.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-pointdirection-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-pointdirection.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-rectangleshape-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-rectangleshape.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-shape-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-shape.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-spritegoal-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-spritegoal.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-targetdirection-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-targetdirection.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-trailemitter-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-trailemitter.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-turbulence-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-turbulence.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-wander-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-particles-wander.html %%QT_DOCDIR%%/qtquick/qml-qtquick-path-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-path.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathanglearc-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathanglearc.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-patharc-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-patharc.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathattribute-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathattribute.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathcubic-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathcubic.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathcurve-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathcurve.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathelement-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathelement.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathinterpolator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathinterpolator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathline-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathline.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathmove-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathmove.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathpercent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathpercent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathquad-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathquad.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathsvg-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathsvg.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathview-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pathview.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pauseanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pauseanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pincharea-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pincharea.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pinchevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pinchevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pinchhandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pinchhandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerdevice-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerdevice.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerdevicehandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerdevicehandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerhandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointerhandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointhandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-pointhandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-positioner-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-positioner.html %%QT_DOCDIR%%/qtquick/qml-qtquick-propertyaction-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-propertyaction.html %%QT_DOCDIR%%/qtquick/qml-qtquick-propertyanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-propertyanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-propertychanges-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-propertychanges.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rectangle-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rectangle.html %%QT_DOCDIR%%/qtquick/qml-qtquick-regexpvalidator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-regexpvalidator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-repeater-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-repeater.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rotation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rotation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-rotationanimator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-row-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-row.html %%QT_DOCDIR%%/qtquick/qml-qtquick-scale-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-scale.html %%QT_DOCDIR%%/qtquick/qml-qtquick-scaleanimator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-scaleanimator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-scriptaction-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-scriptaction.html %%QT_DOCDIR%%/qtquick/qml-qtquick-sequentialanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-sequentialanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffect-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffect.html %%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffectsource-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-shadereffectsource.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-conicalgradient-members.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-conicalgradient.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-lineargradient-members.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-lineargradient.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-radialgradient-members.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-radialgradient.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-shape-members.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-shape.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-shapegradient-members.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-shapegradient.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-shapepath-members.html +%%QT_DOCDIR%%/qtquick/qml-qtquick-shapes-shapepath.html %%QT_DOCDIR%%/qtquick/qml-qtquick-shortcut-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-shortcut.html %%QT_DOCDIR%%/qtquick/qml-qtquick-singlepointhandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-singlepointhandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-smoothedanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-smoothedanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-springanimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-springanimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-sprite-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-sprite.html %%QT_DOCDIR%%/qtquick/qml-qtquick-spritesequence-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-spritesequence.html %%QT_DOCDIR%%/qtquick/qml-qtquick-state-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-state.html %%QT_DOCDIR%%/qtquick/qml-qtquick-statechangescript-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-statechangescript.html %%QT_DOCDIR%%/qtquick/qml-qtquick-stategroup-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-stategroup.html %%QT_DOCDIR%%/qtquick/qml-qtquick-systempalette-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-systempalette.html %%QT_DOCDIR%%/qtquick/qml-qtquick-tableview-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-tableview.html %%QT_DOCDIR%%/qtquick/qml-qtquick-taphandler-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-taphandler.html %%QT_DOCDIR%%/qtquick/qml-qtquick-text-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-text-obsolete.html %%QT_DOCDIR%%/qtquick/qml-qtquick-text.html %%QT_DOCDIR%%/qtquick/qml-qtquick-textedit-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-textedit.html %%QT_DOCDIR%%/qtquick/qml-qtquick-textinput-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-textinput.html %%QT_DOCDIR%%/qtquick/qml-qtquick-textmetrics-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-textmetrics.html %%QT_DOCDIR%%/qtquick/qml-qtquick-touchpoint-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-touchpoint-obsolete.html %%QT_DOCDIR%%/qtquick/qml-qtquick-touchpoint.html %%QT_DOCDIR%%/qtquick/qml-qtquick-transform-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-transform.html %%QT_DOCDIR%%/qtquick/qml-qtquick-transition-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-transition.html %%QT_DOCDIR%%/qtquick/qml-qtquick-translate-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-translate.html %%QT_DOCDIR%%/qtquick/qml-qtquick-uniformanimator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-uniformanimator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-vector3danimation-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-vector3danimation.html %%QT_DOCDIR%%/qtquick/qml-qtquick-viewtransition-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-viewtransition.html %%QT_DOCDIR%%/qtquick/qml-qtquick-wheelevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-wheelevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-window-closeevent-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-window-closeevent.html %%QT_DOCDIR%%/qtquick/qml-qtquick-window-screen-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-window-screen-obsolete.html %%QT_DOCDIR%%/qtquick/qml-qtquick-window-screen.html %%QT_DOCDIR%%/qtquick/qml-qtquick-window-window-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-window-window.html %%QT_DOCDIR%%/qtquick/qml-qtquick-xanimator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-xanimator.html %%QT_DOCDIR%%/qtquick/qml-qtquick-yanimator-members.html %%QT_DOCDIR%%/qtquick/qml-qtquick-yanimator.html %%QT_DOCDIR%%/qtquick/qml-qttest-signalspy-members.html %%QT_DOCDIR%%/qtquick/qml-qttest-signalspy.html %%QT_DOCDIR%%/qtquick/qml-qttest-testcase-members.html %%QT_DOCDIR%%/qtquick/qml-qttest-testcase.html %%QT_DOCDIR%%/qtquick/qml-qttest-toucheventsequence-members.html %%QT_DOCDIR%%/qtquick/qml-qttest-toucheventsequence.html %%QT_DOCDIR%%/qtquick/qml-quaternion.html %%QT_DOCDIR%%/qtquick/qml-tutorial.html %%QT_DOCDIR%%/qtquick/qml-tutorial1.html %%QT_DOCDIR%%/qtquick/qml-tutorial2.html %%QT_DOCDIR%%/qtquick/qml-tutorial3.html %%QT_DOCDIR%%/qtquick/qml-vector2d.html %%QT_DOCDIR%%/qtquick/qml-vector3d.html %%QT_DOCDIR%%/qtquick/qml-vector4d.html %%QT_DOCDIR%%/qtquick/qmlexampletoggleswitch.html %%QT_DOCDIR%%/qtquick/qquickasyncimageprovider-members.html %%QT_DOCDIR%%/qtquick/qquickasyncimageprovider.html %%QT_DOCDIR%%/qtquick/qquickframebufferobject-members.html %%QT_DOCDIR%%/qtquick/qquickframebufferobject-obsolete.html %%QT_DOCDIR%%/qtquick/qquickframebufferobject-renderer-members.html %%QT_DOCDIR%%/qtquick/qquickframebufferobject-renderer.html %%QT_DOCDIR%%/qtquick/qquickframebufferobject.html %%QT_DOCDIR%%/qtquick/qquickimageprovider-members.html %%QT_DOCDIR%%/qtquick/qquickimageprovider.html %%QT_DOCDIR%%/qtquick/qquickimageresponse-members.html %%QT_DOCDIR%%/qtquick/qquickimageresponse-obsolete.html %%QT_DOCDIR%%/qtquick/qquickimageresponse.html %%QT_DOCDIR%%/qtquick/qquickitem-itemchangedata-members.html %%QT_DOCDIR%%/qtquick/qquickitem-itemchangedata.html %%QT_DOCDIR%%/qtquick/qquickitem-members.html %%QT_DOCDIR%%/qtquick/qquickitem-obsolete.html %%QT_DOCDIR%%/qtquick/qquickitem-updatepaintnodedata-members.html %%QT_DOCDIR%%/qtquick/qquickitem-updatepaintnodedata.html %%QT_DOCDIR%%/qtquick/qquickitem.html %%QT_DOCDIR%%/qtquick/qquickitemgrabresult-members.html %%QT_DOCDIR%%/qtquick/qquickitemgrabresult-obsolete.html %%QT_DOCDIR%%/qtquick/qquickitemgrabresult.html %%QT_DOCDIR%%/qtquick/qquickpainteditem-members.html %%QT_DOCDIR%%/qtquick/qquickpainteditem-obsolete.html %%QT_DOCDIR%%/qtquick/qquickpainteditem.html %%QT_DOCDIR%%/qtquick/qquickrendercontrol-members.html %%QT_DOCDIR%%/qtquick/qquickrendercontrol-obsolete.html %%QT_DOCDIR%%/qtquick/qquickrendercontrol.html %%QT_DOCDIR%%/qtquick/qquicktextdocument-members.html %%QT_DOCDIR%%/qtquick/qquicktextdocument-obsolete.html %%QT_DOCDIR%%/qtquick/qquicktextdocument.html %%QT_DOCDIR%%/qtquick/qquicktexturefactory-members.html %%QT_DOCDIR%%/qtquick/qquicktexturefactory-obsolete.html %%QT_DOCDIR%%/qtquick/qquicktexturefactory.html %%QT_DOCDIR%%/qtquick/qquickview-members.html %%QT_DOCDIR%%/qtquick/qquickview-obsolete.html %%QT_DOCDIR%%/qtquick/qquickview.html %%QT_DOCDIR%%/qtquick/qquickwidget-members.html %%QT_DOCDIR%%/qtquick/qquickwidget-obsolete.html %%QT_DOCDIR%%/qtquick/qquickwidget.html %%QT_DOCDIR%%/qtquick/qquickwindow-members.html %%QT_DOCDIR%%/qtquick/qquickwindow-obsolete.html %%QT_DOCDIR%%/qtquick/qquickwindow.html %%QT_DOCDIR%%/qtquick/qsgabstractrenderer-members.html %%QT_DOCDIR%%/qtquick/qsgabstractrenderer-obsolete.html %%QT_DOCDIR%%/qtquick/qsgabstractrenderer.html %%QT_DOCDIR%%/qtquick/qsgbasicgeometrynode-members.html %%QT_DOCDIR%%/qtquick/qsgbasicgeometrynode.html %%QT_DOCDIR%%/qtquick/qsgclipnode-members.html %%QT_DOCDIR%%/qtquick/qsgclipnode.html %%QT_DOCDIR%%/qtquick/qsgdynamictexture-members.html %%QT_DOCDIR%%/qtquick/qsgdynamictexture-obsolete.html %%QT_DOCDIR%%/qtquick/qsgdynamictexture.html %%QT_DOCDIR%%/qtquick/qsgengine-members.html %%QT_DOCDIR%%/qtquick/qsgengine-obsolete.html %%QT_DOCDIR%%/qtquick/qsgengine.html %%QT_DOCDIR%%/qtquick/qsgflatcolormaterial-members.html %%QT_DOCDIR%%/qtquick/qsgflatcolormaterial.html %%QT_DOCDIR%%/qtquick/qsggeometry-attribute-members.html %%QT_DOCDIR%%/qtquick/qsggeometry-attribute.html %%QT_DOCDIR%%/qtquick/qsggeometry-attributeset-members.html %%QT_DOCDIR%%/qtquick/qsggeometry-attributeset.html %%QT_DOCDIR%%/qtquick/qsggeometry-coloredpoint2d-members.html %%QT_DOCDIR%%/qtquick/qsggeometry-coloredpoint2d.html %%QT_DOCDIR%%/qtquick/qsggeometry-members.html %%QT_DOCDIR%%/qtquick/qsggeometry-point2d-members.html %%QT_DOCDIR%%/qtquick/qsggeometry-point2d.html %%QT_DOCDIR%%/qtquick/qsggeometry-texturedpoint2d-members.html %%QT_DOCDIR%%/qtquick/qsggeometry-texturedpoint2d.html %%QT_DOCDIR%%/qtquick/qsggeometry.html %%QT_DOCDIR%%/qtquick/qsggeometrynode-members.html %%QT_DOCDIR%%/qtquick/qsggeometrynode.html %%QT_DOCDIR%%/qtquick/qsgimagenode-members.html %%QT_DOCDIR%%/qtquick/qsgimagenode.html %%QT_DOCDIR%%/qtquick/qsgmaterial-members.html %%QT_DOCDIR%%/qtquick/qsgmaterial.html %%QT_DOCDIR%%/qtquick/qsgmaterialshader-members.html %%QT_DOCDIR%%/qtquick/qsgmaterialshader-renderstate-members.html %%QT_DOCDIR%%/qtquick/qsgmaterialshader-renderstate.html %%QT_DOCDIR%%/qtquick/qsgmaterialshader.html %%QT_DOCDIR%%/qtquick/qsgmaterialtype.html %%QT_DOCDIR%%/qtquick/qsgnode-members.html %%QT_DOCDIR%%/qtquick/qsgnode.html %%QT_DOCDIR%%/qtquick/qsgopacitynode-members.html %%QT_DOCDIR%%/qtquick/qsgopacitynode.html %%QT_DOCDIR%%/qtquick/qsgopaquetexturematerial-members.html %%QT_DOCDIR%%/qtquick/qsgopaquetexturematerial.html %%QT_DOCDIR%%/qtquick/qsgrectanglenode-members.html %%QT_DOCDIR%%/qtquick/qsgrectanglenode.html %%QT_DOCDIR%%/qtquick/qsgrendererinterface-members.html %%QT_DOCDIR%%/qtquick/qsgrendererinterface.html %%QT_DOCDIR%%/qtquick/qsgrendernode-members.html %%QT_DOCDIR%%/qtquick/qsgrendernode-renderstate-members.html %%QT_DOCDIR%%/qtquick/qsgrendernode-renderstate.html %%QT_DOCDIR%%/qtquick/qsgrendernode.html %%QT_DOCDIR%%/qtquick/qsgsimplematerial-members.html %%QT_DOCDIR%%/qtquick/qsgsimplematerial.html %%QT_DOCDIR%%/qtquick/qsgsimplematerialshader-members.html %%QT_DOCDIR%%/qtquick/qsgsimplematerialshader.html %%QT_DOCDIR%%/qtquick/qsgsimplerectnode-members.html %%QT_DOCDIR%%/qtquick/qsgsimplerectnode.html %%QT_DOCDIR%%/qtquick/qsgsimpletexturenode-members.html %%QT_DOCDIR%%/qtquick/qsgsimpletexturenode.html %%QT_DOCDIR%%/qtquick/qsgtexture-members.html %%QT_DOCDIR%%/qtquick/qsgtexture-obsolete.html %%QT_DOCDIR%%/qtquick/qsgtexture.html %%QT_DOCDIR%%/qtquick/qsgtexturematerial-members.html %%QT_DOCDIR%%/qtquick/qsgtexturematerial.html %%QT_DOCDIR%%/qtquick/qsgtextureprovider-members.html %%QT_DOCDIR%%/qtquick/qsgtextureprovider-obsolete.html %%QT_DOCDIR%%/qtquick/qsgtextureprovider.html %%QT_DOCDIR%%/qtquick/qsgtransformnode-members.html %%QT_DOCDIR%%/qtquick/qsgtransformnode.html %%QT_DOCDIR%%/qtquick/qsgvertexcolormaterial-members.html %%QT_DOCDIR%%/qtquick/qsgvertexcolormaterial.html %%QT_DOCDIR%%/qtquick/qt-labs-folderlistmodel-qmlmodule.html %%QT_DOCDIR%%/qtquick/qt-labs-qmlmodels-qmlmodule.html %%QT_DOCDIR%%/qtquick/qt-labs-settings-qmlmodule.html %%QT_DOCDIR%%/qtquick/qt-labs-sharedimage-qmlmodule.html %%QT_DOCDIR%%/qtquick/qt-labs-wavefrontmesh-qmlmodule.html %%QT_DOCDIR%%/qtquick/qtquick-animation-animation-pro.html %%QT_DOCDIR%%/qtquick/qtquick-animation-animation-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-animation-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-animation-animation-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-animation-basics-animators-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-basics-color-animation-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-basics-property-animation-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-behavior-example-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-siderect-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-tvtennis-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-behaviors-wigglytext-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-easing-easing-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-example.html %%QT_DOCDIR%%/qtquick/qtquick-animation-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-animation-pathanimation-pathanimation-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-pathinterpolator-pathinterpolator-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-states-states-qml.html %%QT_DOCDIR%%/qtquick/qtquick-animation-states-transitions-qml.html %%QT_DOCDIR%%/qtquick/qtquick-bestpractices.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-beziercurve-beziercurve-qml.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-canvas-pro.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-canvas-qml.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-canvas-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-clip-clip-qml.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-example.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-quadraticcurveto-quadraticcurveto-qml.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-roundedrect-roundedrect-qml.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-smile-smile-qml.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-squircle-squircle-qml.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-tiger-tiger-js.html %%QT_DOCDIR%%/qtquick/qtquick-canvas-tiger-tiger-qml.html %%QT_DOCDIR%%/qtquick/qtquick-codesamples.html %%QT_DOCDIR%%/qtquick/qtquick-convenience-topic.html %%QT_DOCDIR%%/qtquick/qtquick-cppextensionpoints.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-content-dial-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-content-quitbutton-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-pro.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-dialcontrol-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-example.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-dialcontrol-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-content-card-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-example.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-flipable-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-flipable-flipable-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-example.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-painteditem-pro.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-painteditem-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoon-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoon-h.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoonplugin-plugin-h.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoonplugin-qmldir.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-painteditem-textballoons-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-example.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-scrollbar-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-scrollbar-scrollbar-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-example.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-tabwidget-qml.html %%QT_DOCDIR%%/qtquick/qtquick-customitems-tabwidget-tabwidget-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-pro.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-qml.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-draganddrop-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-example.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-tiles-dragtile-qml.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-tiles-droptile-qml.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-tiles-tiles-qml.html %%QT_DOCDIR%%/qtquick/qtquick-draganddrop-views-gridview-qml.html %%QT_DOCDIR%%/qtquick/qtquick-effects-particles.html %%QT_DOCDIR%%/qtquick/qtquick-effects-sprites.html %%QT_DOCDIR%%/qtquick/qtquick-effects-topic.html %%QT_DOCDIR%%/qtquick/qtquick-effects-transformations.html %%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-draganddroptextitem-qml.html %%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-example.html %%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-pro.html %%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-qml.html %%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-externaldraganddrop-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-externaldraganddrop-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-animatedimage-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-animatedsprite-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-borderimage-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-borderimageselector-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-imagecell-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-myborderimage-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-content-shadowrectangle-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-example.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-image-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-pro.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-imageelements-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-shadows-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageelements-spritesequence-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageprovider-example.html %%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-example-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-pro.html %%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovider-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-imageprovider-imageprovidercore-qmldir.html %%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-example.html %%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-example-qml.html %%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-pro.html %%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovider-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-imageresponseprovider-imageresponseprovidercore-qmldir.html %%QT_DOCDIR%%/qtquick/qtquick-index.html %%QT_DOCDIR%%/qtquick/qtquick-input-focus.html %%QT_DOCDIR%%/qtquick/qtquick-input-mouseevents.html %%QT_DOCDIR%%/qtquick/qtquick-input-textinput.html %%QT_DOCDIR%%/qtquick/qtquick-input-topic.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-example.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-contextmenu-qml.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-gridmenu-qml.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-listmenu-qml.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-listviewdelegate-qml.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-core-tabmenu-qml.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-focus-focus-qml.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-pro.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-qml.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-keyinteraction-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-keyinteraction-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-layouts-example.html %%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-pro.html %%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-qml.html %%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-layouts-layouts-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-layouts-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-layouts-qmlmodule.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-example.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-database-js.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-header-qml.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-localstorage-pro.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-localstorage-qml.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-localstorage-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-mybutton-qml.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-mydelegate-qml.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-mymodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-localstorage-pro.html %%QT_DOCDIR%%/qtquick/qtquick-localstorage-qmlmodule.html %%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-abstractitemmodel-pro.html %%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-abstractitemmodel-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-example.html %%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-model-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-model-h.html %%QT_DOCDIR%%/qtquick/qtquick-models-abstractitemmodel-view-qml.html %%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-dataobject-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-dataobject-h.html %%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-example.html %%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-objectlistmodel-pro.html %%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-objectlistmodel-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-models-objectlistmodel-view-qml.html %%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-example.html %%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-stringlistmodel-pro.html %%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-stringlistmodel-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-models-stringlistmodel-view-qml.html %%QT_DOCDIR%%/qtquick/qtquick-modelviewsdata-cppmodels.html %%QT_DOCDIR%%/qtquick/qtquick-modelviewsdata-modelview.html %%QT_DOCDIR%%/qtquick/qtquick-modelviewsdata-topic.html %%QT_DOCDIR%%/qtquick/qtquick-module.html %%QT_DOCDIR%%/qtquick/qtquick-mousearea-example.html %%QT_DOCDIR%%/qtquick/qtquick-mousearea-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-pro.html %%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-qml.html %%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-mousearea-mousearea-wheel-example-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-pro.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-affectors-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-age-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-attractor-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-customaffector-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-friction-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-gravity-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-greybutton-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-groupgoal-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-move-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-spritegoal-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-turbulence-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-content-wander-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-example.html %%QT_DOCDIR%%/qtquick/qtquick-particles-affectors-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-content-blurparticles-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-content-fragmentshader-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-content-imagecolors-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-pro.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-customparticle-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-example.html %%QT_DOCDIR%%/qtquick/qtquick-particles-customparticle-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-burstandpulse-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-customemitter-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-emitmask-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-maximumemitted-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-shapeanddirection-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-trailemitter-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-content-velocityfrommotion-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-pro.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-emitters-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-example.html %%QT_DOCDIR%%/qtquick/qtquick-particles-emitters-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-allatonce-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-colored-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-colortable-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-deformation-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-rotation-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-sharing-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-content-sprites-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-example.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-pro.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-imageparticle-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-particles-imageparticle-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-particles-performance.html %%QT_DOCDIR%%/qtquick/qtquick-particles-qmlmodule.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-dynamiccomparison-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-dynamicemitters-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-multiplepainters-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-startstop-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-content-timedgroupchanges-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-example.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-pro.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-qml.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-particles-system-system-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-example.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-attachedproperties-qml.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-pro.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-qml.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-positioners-positioners-transitions-qml.html %%QT_DOCDIR%%/qtquick/qtquick-positioning-anchors.html %%QT_DOCDIR%%/qtquick/qtquick-positioning-layouts.html %%QT_DOCDIR%%/qtquick/qtquick-positioning-righttoleft.html %%QT_DOCDIR%%/qtquick/qtquick-positioning-topic.html %%QT_DOCDIR%%/qtquick/qtquick-qmlmodule.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-accessibility-qml.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-accessibility-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-accessibility-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-content-button-qml.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-content-checkbox-qml.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-content-slider-qml.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-example.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-quick-accessibility-quick-accessibility-pro.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-customgl-qml.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-example.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-fbitem-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-fbitem-h.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-quickwidget-pro.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-quickwidget-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-rotatingsquare-qml.html %%QT_DOCDIR%%/qtquick/qtquick-quickwidgets-quickwidget-rotatingsquaretab-qml.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-cuberenderer-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-cuberenderer-h.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-demo-qml.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-example.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-rendercontrol-pro.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-rendercontrol-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-multithreaded-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-multithreaded-h.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-singlethreaded-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-rendercontrol-window-singlethreaded-h.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-example.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutdirection-layoutdirection-qml.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutdirection-layoutdirection-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutmirroring-layoutmirroring-qml.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-layoutmirroring-layoutmirroring-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-pro.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-qml.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-righttoleft-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-textalignment-textalignment-qml.html %%QT_DOCDIR%%/qtquick/qtquick-righttoleft-textalignment-textalignment-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-beziercurve-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-beziercurve-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-customgeometry-pro.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-customgeometry-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-example.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-customgeometry-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-example.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-pro.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-graph-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-gridnode-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-gridnode-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-linenode-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-linenode-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-noisynode-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-graph-noisynode-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-materials.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-nodes.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-example.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-openglunderqml-pro.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-openglunderqml-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-squircle-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-openglunderqml-squircle-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-example.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-simplematerial-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-simplematerial-pro.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-simplematerial-simplematerial-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-example.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-fboinsgrenderer-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-fboinsgrenderer-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-textureinsgnode-pro.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinsgnode-textureinsgnode-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-error-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-example.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-textureinthread-pro.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-textureinthread-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-threadrenderer-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-textureinthread-threadrenderer-h.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-example.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-twotextureproviders-pro.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-twotextureproviders-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-xorblender-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-scenegraph-twotextureproviders-xorblender-h.html %%QT_DOCDIR%%/qtquick/qtquick-shadereffects-content-slider-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shadereffects-example.html %%QT_DOCDIR%%/qtquick/qtquick-shadereffects-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-pro.html %%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-shadereffects-shadereffects-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-clippedtigers-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-interactive-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item10-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item11-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item12-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item13-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item14-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item15-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item17-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item2-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item3-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item4-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item5-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item6-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item7-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item8-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-item9-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-sampling-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-shapegallery-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-tapabletriangle-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-content-tiger-qml.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-example.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-main-cpp.html +%%QT_DOCDIR%%/qtquick/qtquick-shapes-qmlmodule.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-shapes-pro.html %%QT_DOCDIR%%/qtquick/qtquick-shapes-shapes-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-statesanimations-animations.html %%QT_DOCDIR%%/qtquick/qtquick-statesanimations-behaviors.html %%QT_DOCDIR%%/qtquick/qtquick-statesanimations-states.html %%QT_DOCDIR%%/qtquick/qtquick-statesanimations-topic.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-gameoflife-example.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-gameoflife-gameoflife-pro.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-gameoflife-gameoflifemodel-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-gameoflife-gameoflifemodel-h.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-gameoflife-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-gameoflife-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-pixelator-example.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-pixelator-imagemodel-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-pixelator-imagemodel-h.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-pixelator-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-pixelator-main-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tableview-pixelator-pixelator-pro.html %%QT_DOCDIR%%/qtquick/qtquick-text-example.html %%QT_DOCDIR%%/qtquick/qtquick-text-fonts-availablefonts-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-fonts-banner-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-fonts-fonts-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-fonts-hello-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-imgtag-imgtag-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-imgtag-textwithimage-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-text-styledtext-layout-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-text-pro.html %%QT_DOCDIR%%/qtquick/qtquick-text-text-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-text-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-text-text-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-text-textselection-textselection-qml.html %%QT_DOCDIR%%/qtquick/qtquick-text-validator.html %%QT_DOCDIR%%/qtquick/qtquick-threading-example.html %%QT_DOCDIR%%/qtquick/qtquick-threading-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-threading-threadedlistmodel-example.html %%QT_DOCDIR%%/qtquick/qtquick-threading-threadedlistmodel-threadedlistmodel-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-threading-threadedlistmodel-timedisplay-qml.html %%QT_DOCDIR%%/qtquick/qtquick-threading-threading-pro.html %%QT_DOCDIR%%/qtquick/qtquick-threading-threading-qml.html %%QT_DOCDIR%%/qtquick/qtquick-threading-threading-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-threading-threading-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-threading-workerscript-spinner-qml.html %%QT_DOCDIR%%/qtquick/qtquick-threading-workerscript-workerscript-qml.html %%QT_DOCDIR%%/qtquick/qtquick-threading-workerscript-workerscript-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tools-and-utilities.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-example.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-flickable-basic-flickable-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-flickable-content-panel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-flickable-corkboards-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-bearwhack-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-content-augmentedtouchpoint-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-content-bearwhackparticlesystem-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-content-particleflame-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-multipointtouch-multiflame-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-pincharea-flickresize-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-pro.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-qml.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-touchinteraction-touchinteraction-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-dynamicview-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-dynamicview1-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview1-petsmodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-dynamicview-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-dynamicview2-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview2-petsmodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-dynamicview-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-dynamicview3-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview3-petsmodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-dynamicview-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-dynamicview4-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-listselector-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-dynamicview-dynamicview4-petsmodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-block-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-button-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-samegame-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame1-samegame1-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-block-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-button-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-samegame-js.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-samegame-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame2-samegame2-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-block-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-button-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-dialog-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-samegame-js.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-samegame-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame3-samegame3-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-boomblock-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-button-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-dialog-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-content-samegame-js.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-example.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-highscores-score-data-xml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-samegame-qml.html %%QT_DOCDIR%%/qtquick/qtquick-tutorials-samegame-samegame4-samegame4-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-views-delegatemodel-delegatemodel-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-views-delegatemodel-dragselection-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-delegatemodel-slideshow-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-example.html %%QT_DOCDIR%%/qtquick/qtquick-views-gridview-gridview-example-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-petsmodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-pressandholdbutton-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-recipesmodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-smalltext-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-textbutton-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-content-togglebutton-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-displaymargin-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-dynamiclist-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-expandingdelegates-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-highlight-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-highlightranges-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-listview-sections-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-views-objectmodel-objectmodel-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-package-delegate-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-package-view-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-pathview-pathview-example-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-views-pro.html %%QT_DOCDIR%%/qtquick/qtquick-views-views-qml.html %%QT_DOCDIR%%/qtquick/qtquick-views-views-qmlproject.html %%QT_DOCDIR%%/qtquick/qtquick-views-views-qrc.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-adaptations-d3d12.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-adaptations-openvg.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-adaptations-software.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-adaptations.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-coordinates.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-scenegraph-renderer.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-scenegraph.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-topic.html %%QT_DOCDIR%%/qtquick/qtquick-visualcanvas-visualparent.html %%QT_DOCDIR%%/qtquick/qtquick-visualtypes-topic.html %%QT_DOCDIR%%/qtquick/qtquick-window-allscreens-qml.html %%QT_DOCDIR%%/qtquick/qtquick-window-currentscreen-qml.html %%QT_DOCDIR%%/qtquick/qtquick-window-example.html %%QT_DOCDIR%%/qtquick/qtquick-window-main-cpp.html %%QT_DOCDIR%%/qtquick/qtquick-window-qmlmodule.html %%QT_DOCDIR%%/qtquick/qtquick-window-resources-icon-svg.html %%QT_DOCDIR%%/qtquick/qtquick-window-splash-qml.html %%QT_DOCDIR%%/qtquick/qtquick-window-window-pro.html %%QT_DOCDIR%%/qtquick/qtquick-window-window-qml.html %%QT_DOCDIR%%/qtquick/qtquick-window-window-qrc.html %%QT_DOCDIR%%/qtquick/qtquick.index %%QT_DOCDIR%%/qtquick/qtquick.qhp %%QT_DOCDIR%%/qtquick/qtquick.qhp.sha1 %%QT_DOCDIR%%/qtquick/qtquick.tags %%QT_DOCDIR%%/qtquick/qtquickhandlers-index.html %%QT_DOCDIR%%/qtquick/qtquicklayouts-index.html %%QT_DOCDIR%%/qtquick/qtquicklayouts-overview.html %%QT_DOCDIR%%/qtquick/qtquickwidgets-module.html %%QT_DOCDIR%%/qtquick/qttest-qmlmodule.html %%QT_DOCDIR%%/qtquick/style/offline-simple.css %%QT_DOCDIR%%/qtquick/style/offline.css %%QT_DOCDIR%%/qtquickcontrols.qch %%QT_DOCDIR%%/qtquickcontrols/examples-manifest.xml %%QT_DOCDIR%%/qtquickcontrols/images/applicationwindow-background.png %%QT_DOCDIR%%/qtquickcontrols/images/applicationwindow-overlay-modal.png %%QT_DOCDIR%%/qtquickcontrols/images/applicationwindow-overlay.png %%QT_DOCDIR%%/qtquickcontrols/images/arrow_bc.png %%QT_DOCDIR%%/qtquickcontrols/images/bgrContent.png %%QT_DOCDIR%%/qtquickcontrols/images/btn_next.png %%QT_DOCDIR%%/qtquickcontrols/images/btn_prev.png %%QT_DOCDIR%%/qtquickcontrols/images/bullet_dn.png %%QT_DOCDIR%%/qtquickcontrols/images/bullet_sq.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-checked-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-checked-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-checked-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-flat-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-flat-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-flat-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-flat-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-flat.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-highlighted-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-highlighted-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-highlighted-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-highlighted-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-highlighted-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-highlighted.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/button-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-partially-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-partially-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-partially-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-partially-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/checkbox-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-partially-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-partially-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-partially-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-partially-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/checkdelegate-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-editable-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-editable-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-editable.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-open.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-indicator-editable-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-indicator-editable-mirrored-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-indicator-editable-mirrored.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-indicator-editable.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/combobox-popup.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-checked-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-checked-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-disabled-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-mask.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-progress-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/delaybutton-progress.9.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-background-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-background-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-background.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-handle-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-handle-focused-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-handle-focused-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-handle-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-handle-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/dial-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/dialog-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/dialog-overlay-modal.png %%QT_DOCDIR%%/qtquickcontrols/images/dialog-overlay.png %%QT_DOCDIR%%/qtquickcontrols/images/dialogbuttonbox-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/drawer-background-bottom.9.png %%QT_DOCDIR%%/qtquickcontrols/images/drawer-background-left.9.png %%QT_DOCDIR%%/qtquickcontrols/images/drawer-background-right.9.png %%QT_DOCDIR%%/qtquickcontrols/images/drawer-background-top.9.png %%QT_DOCDIR%%/qtquickcontrols/images/drawer-overlay-modal.png %%QT_DOCDIR%%/qtquickcontrols/images/drawer-overlay.png %%QT_DOCDIR%%/qtquickcontrols/images/frame-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/groupbox-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/groupbox-title.9.png %%QT_DOCDIR%%/qtquickcontrols/images/home.png %%QT_DOCDIR%%/qtquickcontrols/images/ico_note.png %%QT_DOCDIR%%/qtquickcontrols/images/ico_note_attention.png %%QT_DOCDIR%%/qtquickcontrols/images/ico_out.png %%QT_DOCDIR%%/qtquickcontrols/images/itemdelegate-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/itemdelegate-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/itemdelegate-background-highlighted.9.png %%QT_DOCDIR%%/qtquickcontrols/images/itemdelegate-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/itemdelegate-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/itemdelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/logo.png %%QT_DOCDIR%%/qtquickcontrols/images/menu-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-arrow-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-arrow-mirrored-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-arrow-mirrored.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-arrow.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-background-highlighted.9.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/menuitem-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/menuseparator-separator.9.png %%QT_DOCDIR%%/qtquickcontrols/images/page-background.png %%QT_DOCDIR%%/qtquickcontrols/images/pageindicator-delegate-current.png %%QT_DOCDIR%%/qtquickcontrols/images/pageindicator-delegate-disabled-current.png %%QT_DOCDIR%%/qtquickcontrols/images/pageindicator-delegate-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/pageindicator-delegate-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/pageindicator-delegate.png %%QT_DOCDIR%%/qtquickcontrols/images/pane-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/popup-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/popup-overlay-modal.png %%QT_DOCDIR%%/qtquickcontrols/images/popup-overlay.png %%QT_DOCDIR%%/qtquickcontrols/images/progressbar-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/progressbar-mask.9.png %%QT_DOCDIR%%/qtquickcontrols/images/progressbar-progress.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-applicationwindow-wireframe.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-automotive.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-busyindicator-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-busyindicator.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-busyindicator.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button-flat.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button-highlighted.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button-icononly.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button-textbesideicon.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button-textonly.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button-textundericon.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-button.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter1.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter2-listview-header.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter2.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter3-listview-header.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter3-view-margins.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter3.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter4-long-message.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter4-message-timestamp.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter4.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-contacts-material-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-contacts-material-test.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-contacts-material.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-contacts-universal-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-contacts-universal.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-conversations-material-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-conversations-material-test.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-conversations-material.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-conversations-universal-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-chattutorial-chapter5-conversations-universal.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-checkbox-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-checkbox-group.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-checkbox-tristate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-checkbox.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-checkdelegate-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-checkdelegate-tristate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-checkdelegate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-combobox-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-combobox.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-contactlist.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-control.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-customize-buttons.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-default-thumbnail.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-default.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-delaybutton-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-delaybutton.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-dial-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-dial-inputmode.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-dial-no-wrap.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-dial-wrap.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-dial.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-dialogbuttonbox.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-drawer-expanded-wireframe.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-drawer.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-flatstyle-creator.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-flatstyle.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-frame-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-frame.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-fusion-palettes.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-fusion-thumbnail.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-fusion-violet.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-fusion.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-gallery-drawer.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-gallery-menu.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-gallery-welcome.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-groupbox-checkable.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-groupbox-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-groupbox.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-9-patch-4x.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-9-patch-inset-boundaries.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-9-patch-inset.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-9-patch-resized-padding.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-9-patch-resized-stretchable.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-9-patch-size.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-customization-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine-thumbnail.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-imagine.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-itemdelegate-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-itemdelegate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-label-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-label.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-accent.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-attributes.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-background.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-elevation.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-foreground.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-light.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-purple.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-theme.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-thumbnail.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-variant-dense.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-material-variant-normal.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-menu-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-menu.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-menubar-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-menubar.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-menuseparator.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-musicplayer.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-page-wireframe.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-pageindicator-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-pageindicator.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-pane-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-pane.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-popup-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-popup-settings.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-popup-transformorigin.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-popup.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-progressbar-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-progressbar-indeterminate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-progressbar.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-radiobutton-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-radiobutton.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-radiodelegate-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-radiodelegate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-rangeslider-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-rangeslider.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-roundbutton.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollbar-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollbar-non-attached.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollbar-nosnap.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollbar-snapalways.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollbar-snaponrelease.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollbar.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollindicator-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollindicator-non-attached.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollindicator.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollview-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollview-wireframe.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-scrollview.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-sidepanel-landscape.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-sidepanel-portrait.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-slider-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-slider-nosnap.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-slider-snapalways.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-slider-snaponrelease.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-slider.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-spinbox-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-spinbox-double.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-spinbox-textual.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-spinbox.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-stackview-pop.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-stackview-push.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-stackview-replace.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-stackview-unwind.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-stackview-visible.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-stackview-wireframe.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-styles.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-swipedelegate-behind.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-swipedelegate-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-swipedelegate-leading-trailing.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-swipedelegate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-swipetoremove.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-swipeview-wireframe.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-swipeview.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-switch-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-switch.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-switch.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-switchdelegate-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-switchdelegate.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tabbar-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tabbar-explicit.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tabbar-flickable.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tabbar-wireframe.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tabbutton.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textarea-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textarea-scrollable.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textarea.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-texteditor-desktop.jpg %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-texteditor-touch.jpg %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textfield-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textfield-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textfield-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textfield-normal.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-textfield.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-toolbar-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-toolbar.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-toolbutton-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-toolbutton.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-toolseparator-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-toolseparator.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tooltip-slider.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tooltip.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tumbler-custom.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tumbler-wrap.gif %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-tumbler.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-accent.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-attributes.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-background.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-foreground.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-light.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-theme.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-thumbnail.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-universal-violet.png %%QT_DOCDIR%%/qtquickcontrols/images/qtquickcontrols2-wearable.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/radiobutton-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/radiodelegate-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-background-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-background-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-handle-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-handle-focused-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-handle-focused-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-handle-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-handle-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-progress-horizontal-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-progress-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-progress-vertical-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/rangeslider-progress-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-disabled-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-highlighted-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-highlighted-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-highlighted-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-highlighted.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/roundbutton-background.png %%QT_DOCDIR%%/qtquickcontrols/images/scrollbar-handle-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/scrollbar-handle-interactive-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/scrollbar-handle-interactive-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/scrollbar-handle-interactive-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/scrollbar-handle-interactive.png %%QT_DOCDIR%%/qtquickcontrols/images/scrollbar-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/scrollindicator-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-background-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-background-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-handle-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-handle-focused-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-handle-focused-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-handle-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-handle-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-progress-horizontal-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-progress-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-progress-vertical-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/slider-progress-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-background-editable.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-editable-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-editable-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-editable-mirrored.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-editable-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-editable.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-mirrored.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-down.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-editable-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-editable-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-editable-mirrored.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-editable-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-editable.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-mirrored.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/spinbox-indicator-up.9.png %%QT_DOCDIR%%/qtquickcontrols/images/swipedelegate-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/swipedelegate-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/swipedelegate-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/swipedelegate-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/swipedelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-handle-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/switch-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-handle-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-checked-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-focused.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/switchdelegate-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/tabbar-background.png %%QT_DOCDIR%%/qtquickcontrols/images/tabbutton-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/tabbutton-background-disabled-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/tabbutton-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/tabbutton-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/tabbutton-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/tabbutton-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/textarea-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/textarea-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/textarea-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/textfield-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/textfield-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/textfield-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbar-background.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background-checked-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background-checked-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background-disabled-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background-focused.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolbutton-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolseparator-separator-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/toolseparator-separator-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/tooltip-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Albert_Einstein.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Albert_Einstein@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Albert_Einstein@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Albert_Einstein@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Ernest_Hemingway.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Ernest_Hemingway@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Ernest_Hemingway@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Ernest_Hemingway@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Hans_Gude.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Hans_Gude@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Hans_Gude@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/chattutorial/shared/Hans_Gude@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20/back.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20/drawer.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20/menu.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@2/back.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@2/drawer.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@2/menu.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@3/back.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@3/drawer.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@3/menu.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@4/back.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@4/drawer.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/icons/gallery/20x20@4/menu.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrow.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrow@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrow@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrow@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrows.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrows@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrows@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/arrows@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/qt-logo.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/qt-logo@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/qt-logo@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/gallery/images/qt-logo@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/air-con.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/command.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/message.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/music.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/seats.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/settings.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/statistics.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44/windows.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/air-con.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/command.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/message.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/music.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/navigation.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/seats.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/settings.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/statistics.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/automotive/44x44@2/windows.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/car.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/car@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/warning.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/warning@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/weather.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/icons/weather@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/applicationwindow-background.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/applicationwindow-background@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-checked-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-checked-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-checked@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background-pressed@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/button-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-background-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-background-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-background-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-background-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-background.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-background@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-handle-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/dial-handle@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/frame-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/frame-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background-checked@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background-pressed@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/itemdelegate-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-checked-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-checked-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-checked@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/radiobutton-indicator@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/scrollindicator-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/scrollindicator-handle@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-background-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-background-horizontal@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-handle-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-handle-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-handle-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-handle@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-progress-horizontal-pressed@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-progress-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/slider-progress-horizontal@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-checked-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-checked@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-handle@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-indicator-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/switchdelegate-indicator@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/toolseparator-separator-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/automotive/imagine-assets/toolseparator-separator-vertical@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/bluetooth.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/cart.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/cloud.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/favorite.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/filter.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/folder.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/message.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/music.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/next.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/pause.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/power.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/previous.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/repeat.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/save.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/settings.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/shuffle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32/stop.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/bluetooth.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/cart.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/cloud.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/favorite.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/filter.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/folder.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/grid.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/message.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/music.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/next.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/pause.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/power.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/previous.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/repeat.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/save.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/settings.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/shuffle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/icons/musicplayer/32x32@2/stop.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/images/album-cover.jpg %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/applicationwindow-background.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-checked-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-checked-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-checked@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-disabled@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background-pressed@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/button-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background-open.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background-open@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background-pressed@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator-open.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator-open@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-indicator@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-popup.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/combobox-popup@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-background-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-background-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-background-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-background-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-background.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-background@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-handle-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-handle-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/dial-handle@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/frame-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/frame-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-checked@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-disabled@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background-pressed@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/itemdelegate-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-checked-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-checked.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-checked@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-disabled@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/roundbutton-background@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive-pressed@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/scrollbar-handle-interactive@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-horizontal-disabled@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-horizontal@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-vertical-disabled@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-background-vertical@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-handle-disabled.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-handle-disabled@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-handle-hovered.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-handle-hovered@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-handle.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-handle@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-progress-horizontal.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-progress-horizontal@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-progress-vertical-disabled@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-progress-vertical.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/slider-progress-vertical@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/textfield-background-disabled.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/textfield-background-disabled@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/textfield-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/textfield-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbar-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbar-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-checked-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-checked.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-checked@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-hovered.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-hovered@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-pressed.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background-pressed@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/toolbutton-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/tooltip-background.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/imagine/musicplayer/imagine-assets/tooltip-background@2x.9.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/sidepanel/images/qt-logo.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/sidepanel/images/qt-logo@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/sidepanel/images/qt-logo@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/sidepanel/images/qt-logo@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/texteditor/images/qt-logo.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36/alarms.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36/fitness.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36/navigation.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36/notifications.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36/settings.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36/weather.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36/worldclock.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36@2/alarms.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36@2/fitness.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36@2/navigation.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36@2/notifications.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36@2/settings.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36@2/weather.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/icons/wearable/36x36@2/worldclock.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/back.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/back@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/back@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/back@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/background-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/background-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/home.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/home@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/home@3x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/images/home@4x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-running-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-running-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-running-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-running-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-walking-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-walking-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-walking-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Fitness/images/man-walking-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/end.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/end@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/leftturn-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/leftturn-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/leftturn-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/leftturn-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/marker.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/navigation-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/navigation-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/navigation-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/navigation-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/rightturn-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/rightturn-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/rightturn-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/rightturn-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/start.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/start@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/straight-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/straight-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/straight-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/straight-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/uturn.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Navigation/images/uturn@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarf-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarf-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarf-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarf-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarm-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarm-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarm-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/avatarm-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/missedcall-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/missedcall-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/missedcall-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Notifications/images/missedcall-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/bluetooth-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/bluetooth-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/bluetooth-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/bluetooth-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/brightness-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/brightness-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/brightness-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/brightness-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/demo-mode-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/demo-mode-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/demo-mode-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/demo-mode-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/demo-mode-white.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/demo-mode-white@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/theme-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/theme-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/theme-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/theme-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/wifi-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/wifi-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/wifi-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Settings/images/wifi-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/humidity-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/humidity-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/humidity-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/humidity-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/pressure-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/pressure-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/pressure-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/pressure-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunrise-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunrise-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunrise-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunrise-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunset-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunset-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunset-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/sunset-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/temperature-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/temperature-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/temperature-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/temperature-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/wind-dark.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/wind-dark@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/wind-light.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/Weather/images/wind-light@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/center.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/center@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/clock-night.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/clock-night@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/clock.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/second.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/second@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissdaydial.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissdaydial@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissdayhour.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissdayhour@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissdayminute.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissdayminute@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissnightdial.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissnightdial@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissnighthour.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissnighthour@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissnightminute.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissnightminute@2x.png %%QT_DOCDIR%%/qtquickcontrols/images/used-in-examples/wearable/qml/WorldClock/images/swissseconds.png %%QT_DOCDIR%%/qtquickcontrols/qml-palette.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-abstractbutton-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-abstractbutton.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-action-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-action.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-actiongroup-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-actiongroup.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-applicationwindow-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-applicationwindow-obsolete.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-applicationwindow.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-busyindicator-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-busyindicator.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-button-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-button.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-buttongroup-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-buttongroup.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-checkbox-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-checkbox.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-checkdelegate-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-checkdelegate.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-combobox-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-combobox.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-container-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-container-obsolete.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-container.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-control-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-control.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-delaybutton-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-delaybutton.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-dial-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-dial.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-dialog-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-dialog.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-dialogbuttonbox-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-dialogbuttonbox.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-drawer-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-drawer.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-frame-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-frame.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-groupbox-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-groupbox.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-itemdelegate-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-itemdelegate.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-label-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-label.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menu-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menu-obsolete.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menu.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menubar-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menubar.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menubaritem-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menubaritem.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menuitem-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menuitem.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menuseparator-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-menuseparator.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-overlay-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-overlay.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-page-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-page.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-pageindicator-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-pageindicator.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-pane-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-pane.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-popup-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-popup.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-progressbar-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-progressbar.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-radiobutton-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-radiobutton.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-radiodelegate-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-radiodelegate.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-rangeslider-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-rangeslider.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-roundbutton-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-roundbutton.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-scrollbar-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-scrollbar.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-scrollindicator-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-scrollindicator.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-scrollview-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-scrollview.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-slider-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-slider.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-spinbox-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-spinbox.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-stackview-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-stackview.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-swipedelegate-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-swipedelegate.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-swipeview-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-swipeview.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-switch-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-switch.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-switchdelegate-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-switchdelegate.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tabbar-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tabbar.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tabbutton-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tabbutton.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-textarea-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-textarea.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-textfield-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-textfield.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-toolbar-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-toolbar.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-toolbutton-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-toolbutton.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-toolseparator-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-toolseparator.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tooltip-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tooltip.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tumbler-members.html %%QT_DOCDIR%%/qtquickcontrols/qml-qtquick-controls2-tumbler.html %%QT_DOCDIR%%/qtquickcontrols/qquickstyle-members.html %%QT_DOCDIR%%/qtquickcontrols/qquickstyle.html %%QT_DOCDIR%%/qtquickcontrols/qtquick-controls2-qmlmodule.html %%QT_DOCDIR%%/qtquickcontrols/qtquick-templates2-qmlmodule.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-attribution-shadow-angular-material.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter1-settingup-chapter1-settingup-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter1-settingup-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter1-settingup-main-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter1-settingup-qml-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter2-lists-chapter2-lists-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter2-lists-main-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter2-lists-qml-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter3-navigation-chapter3-navigation-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter3-navigation-contactpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter3-navigation-conversationpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter3-navigation-main-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter3-navigation-qml-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-chapter4-models-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-contactpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-conversationpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-main-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-qml-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-sqlcontactmodel-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-sqlcontactmodel-h.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-sqlconversationmodel-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter4-models-sqlconversationmodel-h.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-chapter5-styling-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-chattoolbar-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-contactpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-conversationpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-main-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-material-chattoolbar-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-qml-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-qtquickcontrols2-conf.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-sqlcontactmodel-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-sqlcontactmodel-h.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-sqlconversationmodel-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chapter5-styling-sqlconversationmodel-h.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-chattutorial-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-chattutorial-shared-shared-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactdelegate-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactdialog-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactform-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactlist-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactlist-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactmodel-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactmodel-h.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-contactview-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-designer-backend-contactmodel-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-designer-backend-qmldir.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-contactlist-sectiondelegate-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-flat-button-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-flat-checkbox-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-flat-switch-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-flatstyle-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-flatstyle-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-imports-theme-qmldir.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-imports-theme-theme-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-mainform-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-flatstyle-qtquickcontrols2-conf.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-gallery-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-gallery-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-gallery-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-busyindicatorpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-buttonpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-checkboxpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-comboboxpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-delaybuttonpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-delegatepage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-dialogpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-dialpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-framepage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-groupboxpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-pageindicatorpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-progressbarpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-radiobuttonpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-rangesliderpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-scrollablepage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-scrollbarpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-scrollindicatorpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-sliderpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-spinboxpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-stackviewpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-swipeviewpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-switchpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-tabbarpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-textareapage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-textfieldpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-tooltippage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-pages-tumblerpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-gallery-qtquickcontrols2-conf.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-automotive-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-automotive-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-icons-automotive-icons-svg.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-icons-icons-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-imagine-assets-imagine-assets-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-qml-automotive-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-qml-customglow-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-qml-featurebutton-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-qml-glowinglabel-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-qml-qml-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-automotive-qtquickcontrols2-conf.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-icons-icons-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-icons-musicplayer-icons-svg.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-imagine-assets-imagine-assets-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-musicplayer-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-musicplayer-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-musicplayer-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-imagine-musicplayer-qtquickcontrols2-conf.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-index.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-sidepanel-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-sidepanel-sidepanel-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-sidepanel-sidepanel-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-sidepanel-sidepanel-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-swipetoremove-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-swipetoremove-swipetoremove-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-swipetoremove-swipetoremove-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-swipetoremove-swipetoremove-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-documenthandler-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-documenthandler-h.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-qml-texteditor-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-qml-touch-texteditor-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-qtquickcontrols2-conf.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-texteditor-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-texteditor-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-texteditor-texteditor-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-example.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-alarms-alarmspage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-demomode-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-demomodeindicator-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-fitness-fitness-js.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-fitness-fitnesspage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-launcherpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-navibutton-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-navigation-navigation-js.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-navigation-navigationpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-navigation-routeelement-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-notifications-notifications-js.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-notifications-notificationspage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-settings-images-demo-mode-svg.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-settings-images-theme-svg.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-settings-settingspage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-style-pageindicator-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-style-qmldir.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-style-slider-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-style-switch-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-style-uistyle-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-swipeviewpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-weather-weather-js.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-weather-weatherpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-worldclock-clock-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-qml-worldclock-worldclockpage-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-wearable-cpp.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-wearable-pro.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-wearable-qml.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols-wearable-wearable-qrc.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.index %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.qhp %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.qhp.sha1 %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols.tags %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-buttons.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-configuration.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-containers.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-customize.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-default.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-delegates.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-deployment.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-differences.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-environment.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-examples.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-fileselectors.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-focus.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-fusion.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-gettingstarted.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-guidelines.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-highdpi.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-icons.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-imagine.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-indicators.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-input.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-material.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-menus.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-module.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-navigation.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-popups.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-separators.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-styles.html %%QT_DOCDIR%%/qtquickcontrols/qtquickcontrols2-universal.html %%QT_DOCDIR%%/qtquickcontrols/qtquicktemplates2-index.html %%QT_DOCDIR%%/qtquickcontrols/style/offline-simple.css %%QT_DOCDIR%%/qtquickcontrols/style/offline.css %%QT_DOCDIR%%/qtquickcontrols1.qch %%QT_DOCDIR%%/qtquickcontrols1/applicationwindow.html %%QT_DOCDIR%%/qtquickcontrols1/applicationwindowstyling.html %%QT_DOCDIR%%/qtquickcontrols1/controls.html %%QT_DOCDIR%%/qtquickcontrols1/controlsstyling.html %%QT_DOCDIR%%/qtquickcontrols1/examples-manifest.xml %%QT_DOCDIR%%/qtquickcontrols1/images/applicationwindow.png %%QT_DOCDIR%%/qtquickcontrols1/images/arrow_bc.png %%QT_DOCDIR%%/qtquickcontrols1/images/bgrContent.png %%QT_DOCDIR%%/qtquickcontrols1/images/btn_next.png %%QT_DOCDIR%%/qtquickcontrols1/images/btn_prev.png %%QT_DOCDIR%%/qtquickcontrols1/images/bullet_dn.png %%QT_DOCDIR%%/qtquickcontrols1/images/bullet_sq.png %%QT_DOCDIR%%/qtquickcontrols1/images/busyindicator.png %%QT_DOCDIR%%/qtquickcontrols1/images/button.png %%QT_DOCDIR%%/qtquickcontrols1/images/calendar.png %%QT_DOCDIR%%/qtquickcontrols1/images/calendarstyle-components-week-numbers.png %%QT_DOCDIR%%/qtquickcontrols1/images/checkbox.png %%QT_DOCDIR%%/qtquickcontrols1/images/circulargauge-angles.png %%QT_DOCDIR%%/qtquickcontrols1/images/circulargauge-needle-example-2.png %%QT_DOCDIR%%/qtquickcontrols1/images/circulargauge-needle.png %%QT_DOCDIR%%/qtquickcontrols1/images/circulargauge-reversed.png %%QT_DOCDIR%%/qtquickcontrols1/images/circulargauge-tickmark-indices-values.png %%QT_DOCDIR%%/qtquickcontrols1/images/combobox.png %%QT_DOCDIR%%/qtquickcontrols1/images/gauge-minorTickmark-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/gauge-temperature.png %%QT_DOCDIR%%/qtquickcontrols1/images/gauge-tickmark-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/groupbox.png %%QT_DOCDIR%%/qtquickcontrols1/images/home.png %%QT_DOCDIR%%/qtquickcontrols1/images/ico_note.png %%QT_DOCDIR%%/qtquickcontrols1/images/ico_note_attention.png %%QT_DOCDIR%%/qtquickcontrols1/images/ico_out.png %%QT_DOCDIR%%/qtquickcontrols1/images/label.png %%QT_DOCDIR%%/qtquickcontrols1/images/logo.png %%QT_DOCDIR%%/qtquickcontrols1/images/menu.png %%QT_DOCDIR%%/qtquickcontrols1/images/menubar-action.png %%QT_DOCDIR%%/qtquickcontrols1/images/menubar.png %%QT_DOCDIR%%/qtquickcontrols1/images/piemenu-menuitem-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/progressbar.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-calendar.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-filesystembrowser.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-gallery-android-dark.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-gallery-android.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-gallery-osx.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-styles.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-tableview.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-text.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-touch.png %%QT_DOCDIR%%/qtquickcontrols1/images/qtquickcontrols-example-uiforms.png %%QT_DOCDIR%%/qtquickcontrols1/images/radiobutton.png %%QT_DOCDIR%%/qtquickcontrols1/images/scrollview.png %%QT_DOCDIR%%/qtquickcontrols1/images/slider.png %%QT_DOCDIR%%/qtquickcontrols1/images/spinbox.png %%QT_DOCDIR%%/qtquickcontrols1/images/splitview.png %%QT_DOCDIR%%/qtquickcontrols1/images/square-blue.png %%QT_DOCDIR%%/qtquickcontrols1/images/square-green.png %%QT_DOCDIR%%/qtquickcontrols1/images/square-red.png %%QT_DOCDIR%%/qtquickcontrols1/images/square-white.png %%QT_DOCDIR%%/qtquickcontrols1/images/square-yellow.png %%QT_DOCDIR%%/qtquickcontrols1/images/stackview.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-circulargauge-background-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-circulargauge-knob-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-circulargauge-minorTickmark-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-circulargauge-needle-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-circulargauge-tickmark-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-circulargauge-tickmarkLabel-example.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-gauge-font-size.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-gauge-foreground.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-gauge-minorTickmark.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-gauge-tickmark.png %%QT_DOCDIR%%/qtquickcontrols1/images/styling-gauge-valueBar.png %%QT_DOCDIR%%/qtquickcontrols1/images/switch.png %%QT_DOCDIR%%/qtquickcontrols1/images/tableview.png %%QT_DOCDIR%%/qtquickcontrols1/images/tabview.png %%QT_DOCDIR%%/qtquickcontrols1/images/textarea.png %%QT_DOCDIR%%/qtquickcontrols1/images/textfield.png %%QT_DOCDIR%%/qtquickcontrols1/images/toolbar.png %%QT_DOCDIR%%/qtquickcontrols1/images/treeview.png %%QT_DOCDIR%%/qtquickcontrols1/images/tumbler-flat-style.png %%QT_DOCDIR%%/qtquickcontrols1/images/tumbler.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/calendar/images/eventindicator.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/bubble.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/button-pressed.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/button.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/progress-background.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/progress-fill.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/slider-handle.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/tab.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/tab_selected.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/styles/images/textfield.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/editcopy.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/editcut.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/editpaste.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/editredo.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/editundo.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/exportpdf.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/filenew.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/fileopen.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/fileprint.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/filesave.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/qt-logo.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/textbold.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/textcenter.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/textitalic.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/textjustify.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/textleft.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/textright.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/textunder.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/zoomin.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/texteditor/qml/images/zoomout.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/button_default.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/button_pressed.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/navigation_next_item.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/navigation_previous_item.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/tab_selected.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/tabs_standard.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/textinput.png %%QT_DOCDIR%%/qtquickcontrols1/images/used-in-examples/touch/images/toolbar.png %%QT_DOCDIR%%/qtquickcontrols1/menus.html %%QT_DOCDIR%%/qtquickcontrols1/menusstyling.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-action-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-action.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-applicationwindow-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-applicationwindow.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-busyindicator-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-busyindicator.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-button-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-button.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-calendar-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-calendar.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-checkbox-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-checkbox.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-combobox-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-combobox.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-exclusivegroup-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-exclusivegroup.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-groupbox-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-groupbox.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-label-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-label.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menu-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menu.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menubar-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menubar.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menuitem-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menuitem.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menuseparator-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-menuseparator.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-progressbar-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-progressbar.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-radiobutton-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-radiobutton.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-scrollview-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-scrollview.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-slider-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-slider.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-spinbox-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-spinbox.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-splitview-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-splitview.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-stack-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-stack.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-stackview-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-stackview.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-stackviewdelegate-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-stackviewdelegate.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-statusbar-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-statusbar.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-applicationwindowstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-applicationwindowstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-busyindicatorstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-busyindicatorstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-buttonstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-buttonstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-calendarstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-calendarstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-checkboxstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-checkboxstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-circulargaugestyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-circulargaugestyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-comboboxstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-comboboxstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-delaybuttonstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-delaybuttonstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-dialstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-dialstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-gaugestyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-gaugestyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-menubarstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-menubarstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-menustyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-menustyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-piemenustyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-piemenustyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-progressbarstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-progressbarstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-radiobuttonstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-radiobuttonstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-scrollviewstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-scrollviewstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-sliderstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-sliderstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-spinboxstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-spinboxstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-statusbarstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-statusbarstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-statusindicatorstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-statusindicatorstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-switchstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-switchstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-tableviewstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-tableviewstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-tabviewstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-tabviewstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-textareastyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-textareastyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-textfieldstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-textfieldstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-togglebuttonstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-togglebuttonstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-toolbarstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-toolbarstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-treeviewstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-treeviewstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-tumblerstyle-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-tumblerstyle-obsolete.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-styles-tumblerstyle.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-switch-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-switch.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tab-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tab.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tableview-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tableview.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tableviewcolumn-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tableviewcolumn.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tabview-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-tabview.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-textarea-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-textarea.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-textfield-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-textfield.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-toolbar-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-toolbar.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-toolbutton-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-toolbutton.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-treeview-members.html %%QT_DOCDIR%%/qtquickcontrols1/qml-qtquick-controls-treeview.html %%QT_DOCDIR%%/qtquickcontrols1/qtquick-controls-private-qmlmodule.html %%QT_DOCDIR%%/qtquickcontrols1/qtquick-controls-qmlmodule.html %%QT_DOCDIR%%/qtquickcontrols1/qtquick-controls-styles-qmlmodule.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols-examples.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols-overview.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols-platformnotes.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-calendar-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-qml-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-resources-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-src-event-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-src-event-h.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-src-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-src-sqleventmodel-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-calendar-src-sqleventmodel-h.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-filesystembrowser-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-filesystembrowser-filesystembrowser-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-filesystembrowser-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-filesystembrowser-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-filesystembrowser-qml-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-gallery-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-gallery-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-qml-android-ui-js.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-qml-buttonpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-qml-inputpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-qml-ios-ui-js.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-qml-osx-ui-js.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-qml-progresspage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-gallery-qml-ui-js.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-index.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-styles-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-styles-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-styles-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-styles-styles-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-styles-styles-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-tableview-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-tableview-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-tableview-src-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-tableview-src-sortfilterproxymodel-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-tableview-src-sortfilterproxymodel-h.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-tableview-tableview-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-tableview-tableview-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-qml-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-qml-toolbarseparator-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-resources-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-src-documenthandler-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-src-documenthandler-h.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-src-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-texteditor-texteditor-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-content-androiddelegate-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-content-buttonpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-content-listpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-content-progressbarpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-content-sliderpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-content-tabbarpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-content-textinputpage-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-resources-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-src-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-touch-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-touch-touch-qmlproject.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-example.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-main-cpp.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-main-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-mainform-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-qml-customermodel-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-qml-history-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-qml-historyform-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-qml-notes-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-qml-notesform-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-qml-settings-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-qml-settingsform-ui-qml.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-uiforms-pro.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1-uiforms-uiforms-qrc.html %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1.index %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1.qhp %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1.qhp.sha1 %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrols1.tags %%QT_DOCDIR%%/qtquickcontrols1/qtquickcontrolsstyles-index.html %%QT_DOCDIR%%/qtquickcontrols1/style/offline-simple.css %%QT_DOCDIR%%/qtquickcontrols1/style/offline.css %%QT_DOCDIR%%/qtquickcontrols1/styling-circulargauge.html %%QT_DOCDIR%%/qtquickcontrols1/styling-gauge.html %%QT_DOCDIR%%/qtquickcontrols1/stylingtutorials.html %%QT_DOCDIR%%/qtquickcontrols1/views.html %%QT_DOCDIR%%/qtquickcontrols1/viewsstyling.html %%QT_DOCDIR%%/qtquickdialogs.qch %%QT_DOCDIR%%/qtquickdialogs/examples-manifest.xml %%QT_DOCDIR%%/qtquickdialogs/images/arrow_bc.png %%QT_DOCDIR%%/qtquickdialogs/images/bgrContent.png %%QT_DOCDIR%%/qtquickdialogs/images/btn_next.png %%QT_DOCDIR%%/qtquickdialogs/images/btn_prev.png %%QT_DOCDIR%%/qtquickdialogs/images/bullet_dn.png %%QT_DOCDIR%%/qtquickdialogs/images/bullet_sq.png %%QT_DOCDIR%%/qtquickdialogs/images/critical.png %%QT_DOCDIR%%/qtquickdialogs/images/home.png %%QT_DOCDIR%%/qtquickdialogs/images/ico_note.png %%QT_DOCDIR%%/qtquickdialogs/images/ico_note_attention.png %%QT_DOCDIR%%/qtquickdialogs/images/ico_out.png %%QT_DOCDIR%%/qtquickdialogs/images/information.png %%QT_DOCDIR%%/qtquickdialogs/images/logo.png %%QT_DOCDIR%%/qtquickdialogs/images/question.png %%QT_DOCDIR%%/qtquickdialogs/images/replacefile.png %%QT_DOCDIR%%/qtquickdialogs/images/systemdialogs-example.jpg %%QT_DOCDIR%%/qtquickdialogs/images/warning.png %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-colordialog-members.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-colordialog.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-dialog-members.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-dialog.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-filedialog-members.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-filedialog.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-fontdialog-members.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-fontdialog.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-messagedialog-members.html %%QT_DOCDIR%%/qtquickdialogs/qml-qtquick-dialogs-messagedialog.html %%QT_DOCDIR%%/qtquickdialogs/qtquick-dialogs-qmlmodule.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialog-examples.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-index.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-colordialogs-qml.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-customdialogs-qml.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-example.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-filedialogs-qml.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-fontdialogs-qml.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-main-cpp.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-messagedialogs-qml.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-systemdialogs-pro.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-systemdialogs-qml.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs-systemdialogs-systemdialogs-qrc.html %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs.index %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs.qhp %%QT_DOCDIR%%/qtquickdialogs/qtquickdialogs.qhp.sha1 %%QT_DOCDIR%%/qtquickdialogs/style/offline-simple.css %%QT_DOCDIR%%/qtquickdialogs/style/offline.css %%QT_DOCDIR%%/qtquickextras.qch %%QT_DOCDIR%%/qtquickextras/examples-manifest.xml %%QT_DOCDIR%%/qtquickextras/images/arrow_bc.png %%QT_DOCDIR%%/qtquickextras/images/bgrContent.png %%QT_DOCDIR%%/qtquickextras/images/btn_next.png %%QT_DOCDIR%%/qtquickextras/images/btn_prev.png %%QT_DOCDIR%%/qtquickextras/images/bullet_dn.png %%QT_DOCDIR%%/qtquickextras/images/bullet_sq.png %%QT_DOCDIR%%/qtquickextras/images/circulargauge.png %%QT_DOCDIR%%/qtquickextras/images/delaybutton-activated.png %%QT_DOCDIR%%/qtquickextras/images/delaybutton-progress.png %%QT_DOCDIR%%/qtquickextras/images/delaybutton.png %%QT_DOCDIR%%/qtquickextras/images/dial.png %%QT_DOCDIR%%/qtquickextras/images/gauge.png %%QT_DOCDIR%%/qtquickextras/images/home.png %%QT_DOCDIR%%/qtquickextras/images/ico_note.png %%QT_DOCDIR%%/qtquickextras/images/ico_note_attention.png %%QT_DOCDIR%%/qtquickextras/images/ico_out.png %%QT_DOCDIR%%/qtquickextras/images/logo.png %%QT_DOCDIR%%/qtquickextras/images/piemenu-boundingItem-example.png %%QT_DOCDIR%%/qtquickextras/images/piemenu-boundingItem-null-example.png %%QT_DOCDIR%%/qtquickextras/images/piemenu.png %%QT_DOCDIR%%/qtquickextras/images/qtquickextras-example-dashboard.png %%QT_DOCDIR%%/qtquickextras/images/qtquickextras-example-flat.png %%QT_DOCDIR%%/qtquickextras/images/qtquickextras-example-gallery.png %%QT_DOCDIR%%/qtquickextras/images/statusindicator-active.png %%QT_DOCDIR%%/qtquickextras/images/statusindicator-green.png %%QT_DOCDIR%%/qtquickextras/images/statusindicator-inactive.png %%QT_DOCDIR%%/qtquickextras/images/togglebutton-checked.png %%QT_DOCDIR%%/qtquickextras/images/togglebutton-unchecked.png %%QT_DOCDIR%%/qtquickextras/images/tumbler.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/dashboard/images/fuel-icon.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/dashboard/images/temperature-icon.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-bw-normal.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-bw-pressed.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-image-bw.jpg %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-image-rgb.jpg %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-image-sepia.jpg %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-rgb-normal.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-rgb-pressed.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-sepia-normal.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/flat/images/piemenu-sepia-pressed.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/background-light.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/background.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/center-light.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/center.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/icon-back.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/icon-go.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/icon-settings.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/info.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/needle-light.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/needle.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/qt-logo.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/zoom_in.png %%QT_DOCDIR%%/qtquickextras/images/used-in-examples/gallery/images/zoom_out.png %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-circulargauge-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-circulargauge.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-delaybutton-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-delaybutton.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-dial-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-dial.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-gauge-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-gauge.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-picture-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-picture.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-piemenu-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-piemenu-obsolete.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-piemenu.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-statusindicator-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-statusindicator-obsolete.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-statusindicator.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-togglebutton-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-togglebutton.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumbler-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumbler.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumblercolumn-members.html %%QT_DOCDIR%%/qtquickextras/qml-qtquick-extras-tumblercolumn.html %%QT_DOCDIR%%/qtquickextras/qtquick-extras-qmlmodule.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-dashboard-pro.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-dashboard-qrc.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-example.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-main-cpp.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-dashboard-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-dashboardgaugestyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-icongaugestyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-tachometerstyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-turnindicator-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-dashboard-qml-valuesource-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-examples.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-content-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-example.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-flat-pro.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-flat-qrc.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-main-cpp.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-main-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-flat-settingsicon-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-example.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-gallery-pro.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-gallery-qrc.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-main-cpp.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-blackbuttonbackground-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-blackbuttonstyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugedarkstyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugedefaultstyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugelightstyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-circulargaugeview-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-controllabel-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-controlview-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-controlviewtoolbar-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-customizerlabel-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-customizerslider-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-customizerswitch-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-flickablemoreindicator-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-gallery-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-piemenucontrolview-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-piemenudarkstyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-piemenudefaultstyle-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-gallery-qml-stylepicker-qml.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-index.html %%QT_DOCDIR%%/qtquickextras/qtquickextras-overview.html %%QT_DOCDIR%%/qtquickextras/qtquickextras.index %%QT_DOCDIR%%/qtquickextras/qtquickextras.qhp %%QT_DOCDIR%%/qtquickextras/qtquickextras.qhp.sha1 %%QT_DOCDIR%%/qtquickextras/style/offline-simple.css %%QT_DOCDIR%%/qtquickextras/style/offline.css %%QT_DOCDIR%%/qtremoteobjects.qch %%QT_DOCDIR%%/qtremoteobjects/images/DirectConnectClientServerOutput.png %%QT_DOCDIR%%/qtremoteobjects/images/DirectConnectServerOutput.png %%QT_DOCDIR%%/qtremoteobjects/images/arrow_bc.png %%QT_DOCDIR%%/qtremoteobjects/images/bgrContent.png %%QT_DOCDIR%%/qtremoteobjects/images/btn_next.png %%QT_DOCDIR%%/qtremoteobjects/images/btn_prev.png %%QT_DOCDIR%%/qtremoteobjects/images/bullet_dn.png %%QT_DOCDIR%%/qtremoteobjects/images/bullet_sq.png %%QT_DOCDIR%%/qtremoteobjects/images/home.png %%QT_DOCDIR%%/qtremoteobjects/images/ico_note.png %%QT_DOCDIR%%/qtremoteobjects/images/ico_note_attention.png %%QT_DOCDIR%%/qtremoteobjects/images/ico_out.png %%QT_DOCDIR%%/qtremoteobjects/images/logo.png %%QT_DOCDIR%%/qtremoteobjects/qml-qtremoteobjects-node-members.html %%QT_DOCDIR%%/qtremoteobjects/qml-qtremoteobjects-node.html %%QT_DOCDIR%%/qtremoteobjects/qml-qtremoteobjects-settingsstore-members.html %%QT_DOCDIR%%/qtremoteobjects/qml-qtremoteobjects-settingsstore.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectabstractpersistedstore-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectabstractpersistedstore-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectabstractpersistedstore.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectdynamicreplica-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectdynamicreplica-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectdynamicreplica.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjecthost-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjecthost-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjecthost.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjecthostbase-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjecthostbase-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjecthostbase.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectnode-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectnode-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectnode.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectregistry-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectregistry-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectregistry.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectregistryhost-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectregistryhost-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectregistryhost.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectreplica-members.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectreplica-obsolete.html %%QT_DOCDIR%%/qtremoteobjects/qremoteobjectreplica.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-external-schemas.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-gettingstarted.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-index.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-interaction.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-module.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-node.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-qmlmodule.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-registry.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-repc.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-replica.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-source.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-troubleshooting.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects-use.html %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects.index %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects.qhp %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects.qhp.sha1 %%QT_DOCDIR%%/qtremoteobjects/qtremoteobjects.tags %%QT_DOCDIR%%/qtremoteobjects/qtroclientfactory-members.html %%QT_DOCDIR%%/qtremoteobjects/qtroclientfactory.html %%QT_DOCDIR%%/qtremoteobjects/qtroserverfactory-members.html %%QT_DOCDIR%%/qtremoteobjects/qtroserverfactory.html %%QT_DOCDIR%%/qtremoteobjects/style/offline-simple.css %%QT_DOCDIR%%/qtremoteobjects/style/offline.css %%QT_DOCDIR%%/qtscxml.qch %%QT_DOCDIR%%/qtscxml/examples-manifest.xml %%QT_DOCDIR%%/qtscxml/examples-qtscxml.html %%QT_DOCDIR%%/qtscxml/images/arrow_bc.png %%QT_DOCDIR%%/qtscxml/images/bgrContent.png %%QT_DOCDIR%%/qtscxml/images/btn_next.png %%QT_DOCDIR%%/qtscxml/images/btn_prev.png %%QT_DOCDIR%%/qtscxml/images/bullet_dn.png %%QT_DOCDIR%%/qtscxml/images/bullet_sq.png %%QT_DOCDIR%%/qtscxml/images/calculator-qml.png %%QT_DOCDIR%%/qtscxml/images/calculator.png %%QT_DOCDIR%%/qtscxml/images/ftpclient-statechart.png %%QT_DOCDIR%%/qtscxml/images/home.png %%QT_DOCDIR%%/qtscxml/images/ico_note.png %%QT_DOCDIR%%/qtscxml/images/ico_note_attention.png %%QT_DOCDIR%%/qtscxml/images/ico_out.png %%QT_DOCDIR%%/qtscxml/images/invoke-dynamic.png %%QT_DOCDIR%%/qtscxml/images/invoke-static.png %%QT_DOCDIR%%/qtscxml/images/logo.png %%QT_DOCDIR%%/qtscxml/images/mediaplayer.png %%QT_DOCDIR%%/qtscxml/images/pinball-statechart-global.png %%QT_DOCDIR%%/qtscxml/images/pinball-statechart-guicontrol.png %%QT_DOCDIR%%/qtscxml/images/pinball-statechart-internalstate.png %%QT_DOCDIR%%/qtscxml/images/pinball-statechart-logicalstate.png %%QT_DOCDIR%%/qtscxml/images/pinball-statechart-modestate.png %%QT_DOCDIR%%/qtscxml/images/pinball-statechart-onstate.png %%QT_DOCDIR%%/qtscxml/images/pinball-statechart-workflow.png %%QT_DOCDIR%%/qtscxml/images/pinball.png %%QT_DOCDIR%%/qtscxml/images/sudoku.png %%QT_DOCDIR%%/qtscxml/images/trafficlight.png %%QT_DOCDIR%%/qtscxml/qml-mediaplayer-qml-dynamic-members.html %%QT_DOCDIR%%/qtscxml/qml-mediaplayer-qml-dynamic.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-eventconnection-members.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-eventconnection.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-invokedservices-members.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-invokedservices.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-scxmlstatemachine-members.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-scxmlstatemachine.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-statemachineloader-members.html %%QT_DOCDIR%%/qtscxml/qml-qtscxml-statemachineloader.html %%QT_DOCDIR%%/qtscxml/qscxmlc.html %%QT_DOCDIR%%/qtscxml/qscxmlcompiler-loader-members.html %%QT_DOCDIR%%/qtscxml/qscxmlcompiler-loader.html %%QT_DOCDIR%%/qtscxml/qscxmlcompiler-members.html %%QT_DOCDIR%%/qtscxml/qscxmlcompiler.html %%QT_DOCDIR%%/qtscxml/qscxmlcppdatamodel-members.html %%QT_DOCDIR%%/qtscxml/qscxmlcppdatamodel-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmlcppdatamodel.html %%QT_DOCDIR%%/qtscxml/qscxmldatamodel-foreachloopbody-members.html %%QT_DOCDIR%%/qtscxml/qscxmldatamodel-foreachloopbody.html %%QT_DOCDIR%%/qtscxml/qscxmldatamodel-members.html %%QT_DOCDIR%%/qtscxml/qscxmldatamodel-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmldatamodel.html %%QT_DOCDIR%%/qtscxml/qscxmldynamicscxmlservicefactory-members.html %%QT_DOCDIR%%/qtscxml/qscxmldynamicscxmlservicefactory-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmldynamicscxmlservicefactory.html %%QT_DOCDIR%%/qtscxml/qscxmlecmascriptdatamodel-members.html %%QT_DOCDIR%%/qtscxml/qscxmlecmascriptdatamodel-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmlecmascriptdatamodel.html %%QT_DOCDIR%%/qtscxml/qscxmlerror-members.html %%QT_DOCDIR%%/qtscxml/qscxmlerror.html %%QT_DOCDIR%%/qtscxml/qscxmlevent-members.html %%QT_DOCDIR%%/qtscxml/qscxmlevent.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-assignmentinfo-members.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-assignmentinfo.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-evaluatorinfo-members.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-evaluatorinfo.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-foreachinfo-members.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-foreachinfo.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-invokeinfo-members.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-invokeinfo.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-parameterinfo-members.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent-parameterinfo.html %%QT_DOCDIR%%/qtscxml/qscxmlexecutablecontent.html %%QT_DOCDIR%%/qtscxml/qscxmlinvokableservice-members.html %%QT_DOCDIR%%/qtscxml/qscxmlinvokableservice-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmlinvokableservice.html %%QT_DOCDIR%%/qtscxml/qscxmlinvokableservicefactory-members.html %%QT_DOCDIR%%/qtscxml/qscxmlinvokableservicefactory-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmlinvokableservicefactory.html %%QT_DOCDIR%%/qtscxml/qscxmlnulldatamodel-members.html %%QT_DOCDIR%%/qtscxml/qscxmlnulldatamodel-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmlnulldatamodel.html %%QT_DOCDIR%%/qtscxml/qscxmlstatemachine-members.html %%QT_DOCDIR%%/qtscxml/qscxmlstatemachine-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmlstatemachine.html %%QT_DOCDIR%%/qtscxml/qscxmlstaticscxmlservicefactory-members.html %%QT_DOCDIR%%/qtscxml/qscxmlstaticscxmlservicefactory-obsolete.html %%QT_DOCDIR%%/qtscxml/qscxmlstaticscxmlservicefactory.html %%QT_DOCDIR%%/qtscxml/qscxmltabledata-members.html %%QT_DOCDIR%%/qtscxml/qscxmltabledata.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-button-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-calculator-qml-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-qml-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-calculator-widgets-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-calculator-widgets-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-mainwindow-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-mainwindow-h.html %%QT_DOCDIR%%/qtscxml/qtscxml-calculator-widgets-mainwindow-ui.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-ftpclient-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-ftpcontrolchannel-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-ftpcontrolchannel-h.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-ftpdatachannel-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-ftpdatachannel-h.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-main-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-ftpclient-simpleftp-scxml.html %%QT_DOCDIR%%/qtscxml/qtscxml-index.html %%QT_DOCDIR%%/qtscxml/qtscxml-instantiating-state-machines.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-dynamic-invoke-dynamic-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-invoke-static-invoke-static-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-cppdatamodel-scxml.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-mediaplayer-qml-cppdatamodel-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-thedatamodel-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-cppdatamodel-thedatamodel-h.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-dynamic-mediaplayer-qml-dynamic-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-mediaplayer-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-mediaplayer-widgets-dynamic-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-dynamic-mediaplayer-widgets-dynamic-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-static-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-static-mediaplayer-widgets-static-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-mediaplayer-widgets-static-mediaplayer-widgets-static-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-module.html %%QT_DOCDIR%%/qtscxml/qtscxml-overview.html %%QT_DOCDIR%%/qtscxml/qtscxml-pinball-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-pinball-main-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-pinball-mainwindow-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-pinball-mainwindow-h.html %%QT_DOCDIR%%/qtscxml/qtscxml-pinball-mainwindow-ui.html %%QT_DOCDIR%%/qtscxml/qtscxml-pinball-pinball-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-pinball-pinball-scxml.html %%QT_DOCDIR%%/qtscxml/qtscxml-qmlmodule.html %%QT_DOCDIR%%/qtscxml/qtscxml-scxml-compliance.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-main-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-mainwindow-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-mainwindow-h.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-sudoku-js.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-sudoku-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-sudoku-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-sudoku-sudoku-scxml.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-dynamic-trafficlight-qml-dynamic-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-simple-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-simple-light-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-simple-trafficlight-qml-simple-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-simple-trafficlight-qml-simple-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-simple-trafficlight-qml-simple-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-simple-trafficlight-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-qml.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-qml-static-trafficlight-qml-static-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-trafficlight-widgets-dynamic-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-trafficlight-widgets-dynamic-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-dynamic-trafficlight-widgets-dynamic-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-example.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-trafficlight-widgets-static-cpp.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-trafficlight-widgets-static-pro.html %%QT_DOCDIR%%/qtscxml/qtscxml-trafficlight-widgets-static-trafficlight-widgets-static-qrc.html %%QT_DOCDIR%%/qtscxml/qtscxml.index %%QT_DOCDIR%%/qtscxml/qtscxml.qhp %%QT_DOCDIR%%/qtscxml/qtscxml.qhp.sha1 %%QT_DOCDIR%%/qtscxml/qtscxml.tags %%QT_DOCDIR%%/qtscxml/style/offline-simple.css %%QT_DOCDIR%%/qtscxml/style/offline.css %%QT_DOCDIR%%/qtsensors.qch %%QT_DOCDIR%%/qtsensors/compatmap.html %%QT_DOCDIR%%/qtsensors/creating-a-sensor-plugin.html %%QT_DOCDIR%%/qtsensors/determining-the-default-sensor-for-a-type.html %%QT_DOCDIR%%/qtsensors/dynamic-sensor-backend-registration.html %%QT_DOCDIR%%/qtsensors/examples-manifest.xml %%QT_DOCDIR%%/qtsensors/genericbackend.html %%QT_DOCDIR%%/qtsensors/images/accelbubble.png %%QT_DOCDIR%%/qtsensors/images/arrow_bc.png %%QT_DOCDIR%%/qtsensors/images/bgrContent.png %%QT_DOCDIR%%/qtsensors/images/btn_next.png %%QT_DOCDIR%%/qtsensors/images/btn_prev.png %%QT_DOCDIR%%/qtsensors/images/bullet_dn.png %%QT_DOCDIR%%/qtsensors/images/bullet_sq.png %%QT_DOCDIR%%/qtsensors/images/home.png %%QT_DOCDIR%%/qtsensors/images/ico_note.png %%QT_DOCDIR%%/qtsensors/images/ico_note_attention.png %%QT_DOCDIR%%/qtsensors/images/ico_out.png %%QT_DOCDIR%%/qtsensors/images/logo.png %%QT_DOCDIR%%/qtsensors/images/maze.png %%QT_DOCDIR%%/qtsensors/images/qmlqtsensors.png %%QT_DOCDIR%%/qtsensors/images/qtsensors-examples-explorer.png %%QT_DOCDIR%%/qtsensors/images/qtsensors-examples-grue.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-cover.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-doubletap.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-facedown.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-faceup.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-hover.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-shake.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-slam_1.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-slam_2.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-twist.png %%QT_DOCDIR%%/qtsensors/images/sensorgesture-whip.png %%QT_DOCDIR%%/qtsensors/images/sensorgesturecpp.png %%QT_DOCDIR%%/qtsensors/images/sensors-coordinates.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-coordinates2.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-coordinates3.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-dynamic.png %%QT_DOCDIR%%/qtsensors/images/sensors-geo-vs-raw-magnetism.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-orientation.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-overview.png %%QT_DOCDIR%%/qtsensors/images/sensors-rotation-anim.gif %%QT_DOCDIR%%/qtsensors/images/sensors-rotation.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-rotation2.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-rotation3.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-sides.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-sides2.jpg %%QT_DOCDIR%%/qtsensors/images/sensors-static.png %%QT_DOCDIR%%/qtsensors/images/shakeit.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/grue/grue.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/components/images/button_background_disabled.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/components/images/button_background_normal.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/components/images/button_background_pressed.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/content/00.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/content/01.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/content/cheese.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/content/cheeseeating.gif %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/content/congratulations.gif %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/content/mouse_down.gif %%QT_DOCDIR%%/qtsensors/images/used-in-examples/maze/content/start.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/qmlqtsensors/components/images/button_background_disabled.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/qmlqtsensors/components/images/button_background_normal.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/qmlqtsensors/components/images/button_background_pressed.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/shakeit/content/triangle.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/shakeit/content/triangle2.png %%QT_DOCDIR%%/qtsensors/images/used-in-examples/shakeit/content/triangle3.png %%QT_DOCDIR%%/qtsensors/qaccelerometer-members.html %%QT_DOCDIR%%/qtsensors/qaccelerometer-obsolete.html %%QT_DOCDIR%%/qtsensors/qaccelerometer.html %%QT_DOCDIR%%/qtsensors/qaccelerometerfilter-members.html %%QT_DOCDIR%%/qtsensors/qaccelerometerfilter.html %%QT_DOCDIR%%/qtsensors/qaccelerometerreading-members.html %%QT_DOCDIR%%/qtsensors/qaccelerometerreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qaccelerometerreading.html %%QT_DOCDIR%%/qtsensors/qaltimeter-members.html %%QT_DOCDIR%%/qtsensors/qaltimeter-obsolete.html %%QT_DOCDIR%%/qtsensors/qaltimeter.html %%QT_DOCDIR%%/qtsensors/qaltimeterfilter-members.html %%QT_DOCDIR%%/qtsensors/qaltimeterfilter.html %%QT_DOCDIR%%/qtsensors/qaltimeterreading-members.html %%QT_DOCDIR%%/qtsensors/qaltimeterreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qaltimeterreading.html %%QT_DOCDIR%%/qtsensors/qambientlightfilter-members.html %%QT_DOCDIR%%/qtsensors/qambientlightfilter.html %%QT_DOCDIR%%/qtsensors/qambientlightreading-members.html %%QT_DOCDIR%%/qtsensors/qambientlightreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qambientlightreading.html %%QT_DOCDIR%%/qtsensors/qambientlightsensor-members.html %%QT_DOCDIR%%/qtsensors/qambientlightsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qambientlightsensor.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturefilter-members.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturefilter.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturereading-members.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturereading-obsolete.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturereading.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturesensor-members.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturesensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qambienttemperaturesensor.html %%QT_DOCDIR%%/qtsensors/qcompass-members.html %%QT_DOCDIR%%/qtsensors/qcompass-obsolete.html %%QT_DOCDIR%%/qtsensors/qcompass.html %%QT_DOCDIR%%/qtsensors/qcompassfilter-members.html %%QT_DOCDIR%%/qtsensors/qcompassfilter.html %%QT_DOCDIR%%/qtsensors/qcompassreading-members.html %%QT_DOCDIR%%/qtsensors/qcompassreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qcompassreading.html %%QT_DOCDIR%%/qtsensors/qdistancefilter-members.html %%QT_DOCDIR%%/qtsensors/qdistancefilter.html %%QT_DOCDIR%%/qtsensors/qdistancereading-members.html %%QT_DOCDIR%%/qtsensors/qdistancereading-obsolete.html %%QT_DOCDIR%%/qtsensors/qdistancereading.html %%QT_DOCDIR%%/qtsensors/qdistancesensor-members.html %%QT_DOCDIR%%/qtsensors/qdistancesensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qdistancesensor.html %%QT_DOCDIR%%/qtsensors/qgyroscope-members.html %%QT_DOCDIR%%/qtsensors/qgyroscope-obsolete.html %%QT_DOCDIR%%/qtsensors/qgyroscope.html %%QT_DOCDIR%%/qtsensors/qgyroscopefilter-members.html %%QT_DOCDIR%%/qtsensors/qgyroscopefilter.html %%QT_DOCDIR%%/qtsensors/qgyroscopereading-members.html %%QT_DOCDIR%%/qtsensors/qgyroscopereading-obsolete.html %%QT_DOCDIR%%/qtsensors/qgyroscopereading.html %%QT_DOCDIR%%/qtsensors/qholsterfilter-members.html %%QT_DOCDIR%%/qtsensors/qholsterfilter.html %%QT_DOCDIR%%/qtsensors/qholsterreading-members.html %%QT_DOCDIR%%/qtsensors/qholsterreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qholsterreading.html %%QT_DOCDIR%%/qtsensors/qholstersensor-members.html %%QT_DOCDIR%%/qtsensors/qholstersensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qholstersensor.html %%QT_DOCDIR%%/qtsensors/qhumidityfilter-members.html %%QT_DOCDIR%%/qtsensors/qhumidityfilter.html %%QT_DOCDIR%%/qtsensors/qhumidityreading-members.html %%QT_DOCDIR%%/qtsensors/qhumidityreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qhumidityreading.html %%QT_DOCDIR%%/qtsensors/qhumiditysensor-members.html %%QT_DOCDIR%%/qtsensors/qhumiditysensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qhumiditysensor.html %%QT_DOCDIR%%/qtsensors/qirproximityfilter-members.html %%QT_DOCDIR%%/qtsensors/qirproximityfilter.html %%QT_DOCDIR%%/qtsensors/qirproximityreading-members.html %%QT_DOCDIR%%/qtsensors/qirproximityreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qirproximityreading.html %%QT_DOCDIR%%/qtsensors/qirproximitysensor-members.html %%QT_DOCDIR%%/qtsensors/qirproximitysensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qirproximitysensor.html %%QT_DOCDIR%%/qtsensors/qlidfilter-members.html %%QT_DOCDIR%%/qtsensors/qlidfilter.html %%QT_DOCDIR%%/qtsensors/qlidreading-members.html %%QT_DOCDIR%%/qtsensors/qlidreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qlidreading.html %%QT_DOCDIR%%/qtsensors/qlidsensor-members.html %%QT_DOCDIR%%/qtsensors/qlidsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qlidsensor.html %%QT_DOCDIR%%/qtsensors/qlightfilter-members.html %%QT_DOCDIR%%/qtsensors/qlightfilter.html %%QT_DOCDIR%%/qtsensors/qlightreading-members.html %%QT_DOCDIR%%/qtsensors/qlightreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qlightreading.html %%QT_DOCDIR%%/qtsensors/qlightsensor-members.html %%QT_DOCDIR%%/qtsensors/qlightsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qlightsensor.html %%QT_DOCDIR%%/qtsensors/qmagnetometer-members.html %%QT_DOCDIR%%/qtsensors/qmagnetometer-obsolete.html %%QT_DOCDIR%%/qtsensors/qmagnetometer.html %%QT_DOCDIR%%/qtsensors/qmagnetometerfilter-members.html %%QT_DOCDIR%%/qtsensors/qmagnetometerfilter.html %%QT_DOCDIR%%/qtsensors/qmagnetometerreading-members.html %%QT_DOCDIR%%/qtsensors/qmagnetometerreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qmagnetometerreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometer-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometer.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometerreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-accelerometerreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeter-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeter.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeterreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-altimeterreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightsensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambientlightsensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturereading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturereading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturesensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-ambienttemperaturesensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-compass-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-compass.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-compassreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-compassreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancereading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancereading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancesensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-distancesensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscope-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscope.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscopereading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-gyroscopereading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-holsterreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-holsterreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-holstersensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-holstersensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-humidityreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-humidityreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-humiditysensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-humiditysensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximityreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximityreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximitysensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-irproximitysensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lidreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lidreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lidsensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lidsensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightsensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-lightsensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometer-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometer.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometerreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-magnetometerreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationsensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-orientationsensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressurereading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressurereading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressuresensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-pressuresensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximityreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximityreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximitysensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-proximitysensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationsensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-rotationsensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorgesture-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorgesture.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorglobal-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorglobal.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-sensorreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapsensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tapsensor.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltreading-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltreading.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltsensor-members.html %%QT_DOCDIR%%/qtsensors/qml-qtsensors-tiltsensor.html %%QT_DOCDIR%%/qtsensors/qorientationfilter-members.html %%QT_DOCDIR%%/qtsensors/qorientationfilter.html %%QT_DOCDIR%%/qtsensors/qorientationreading-members.html %%QT_DOCDIR%%/qtsensors/qorientationreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qorientationreading.html %%QT_DOCDIR%%/qtsensors/qorientationsensor-members.html %%QT_DOCDIR%%/qtsensors/qorientationsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qorientationsensor.html %%QT_DOCDIR%%/qtsensors/qoutputrange-members.html %%QT_DOCDIR%%/qtsensors/qoutputrange.html %%QT_DOCDIR%%/qtsensors/qpressurefilter-members.html %%QT_DOCDIR%%/qtsensors/qpressurefilter.html %%QT_DOCDIR%%/qtsensors/qpressurereading-members.html %%QT_DOCDIR%%/qtsensors/qpressurereading-obsolete.html %%QT_DOCDIR%%/qtsensors/qpressurereading.html %%QT_DOCDIR%%/qtsensors/qpressuresensor-members.html %%QT_DOCDIR%%/qtsensors/qpressuresensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qpressuresensor.html %%QT_DOCDIR%%/qtsensors/qproximityfilter-members.html %%QT_DOCDIR%%/qtsensors/qproximityfilter.html %%QT_DOCDIR%%/qtsensors/qproximityreading-members.html %%QT_DOCDIR%%/qtsensors/qproximityreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qproximityreading.html %%QT_DOCDIR%%/qtsensors/qproximitysensor-members.html %%QT_DOCDIR%%/qtsensors/qproximitysensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qproximitysensor.html %%QT_DOCDIR%%/qtsensors/qrotationfilter-members.html %%QT_DOCDIR%%/qtsensors/qrotationfilter.html %%QT_DOCDIR%%/qtsensors/qrotationreading-members.html %%QT_DOCDIR%%/qtsensors/qrotationreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qrotationreading.html %%QT_DOCDIR%%/qtsensors/qrotationsensor-members.html %%QT_DOCDIR%%/qtsensors/qrotationsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qrotationsensor.html %%QT_DOCDIR%%/qtsensors/qsensor-members.html %%QT_DOCDIR%%/qtsensors/qsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qsensor.html %%QT_DOCDIR%%/qtsensors/qsensorbackend-members.html %%QT_DOCDIR%%/qtsensors/qsensorbackend-obsolete.html %%QT_DOCDIR%%/qtsensors/qsensorbackend.html %%QT_DOCDIR%%/qtsensors/qsensorbackendfactory-members.html %%QT_DOCDIR%%/qtsensors/qsensorbackendfactory.html %%QT_DOCDIR%%/qtsensors/qsensorchangesinterface-members.html %%QT_DOCDIR%%/qtsensors/qsensorchangesinterface.html %%QT_DOCDIR%%/qtsensors/qsensorfilter-members.html %%QT_DOCDIR%%/qtsensors/qsensorfilter.html %%QT_DOCDIR%%/qtsensors/qsensorgesture-members.html %%QT_DOCDIR%%/qtsensors/qsensorgesture-obsolete.html %%QT_DOCDIR%%/qtsensors/qsensorgesture.html %%QT_DOCDIR%%/qtsensors/qsensorgesturemanager-members.html %%QT_DOCDIR%%/qtsensors/qsensorgesturemanager-obsolete.html %%QT_DOCDIR%%/qtsensors/qsensorgesturemanager.html %%QT_DOCDIR%%/qtsensors/qsensorgestureplugininterface-members.html %%QT_DOCDIR%%/qtsensors/qsensorgestureplugininterface.html %%QT_DOCDIR%%/qtsensors/qsensorgesturerecognizer-members.html %%QT_DOCDIR%%/qtsensors/qsensorgesturerecognizer-obsolete.html %%QT_DOCDIR%%/qtsensors/qsensorgesturerecognizer.html %%QT_DOCDIR%%/qtsensors/qsensormanager-members.html %%QT_DOCDIR%%/qtsensors/qsensormanager.html %%QT_DOCDIR%%/qtsensors/qsensorplugininterface-members.html %%QT_DOCDIR%%/qtsensors/qsensorplugininterface.html %%QT_DOCDIR%%/qtsensors/qsensorreading-members.html %%QT_DOCDIR%%/qtsensors/qsensorreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qsensorreading.html %%QT_DOCDIR%%/qtsensors/qtapfilter-members.html %%QT_DOCDIR%%/qtsensors/qtapfilter.html %%QT_DOCDIR%%/qtsensors/qtapreading-members.html %%QT_DOCDIR%%/qtsensors/qtapreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qtapreading.html %%QT_DOCDIR%%/qtsensors/qtapsensor-members.html %%QT_DOCDIR%%/qtsensors/qtapsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qtapsensor.html %%QT_DOCDIR%%/qtsensors/qtiltfilter-members.html %%QT_DOCDIR%%/qtsensors/qtiltfilter.html %%QT_DOCDIR%%/qtsensors/qtiltreading-members.html %%QT_DOCDIR%%/qtsensors/qtiltreading-obsolete.html %%QT_DOCDIR%%/qtsensors/qtiltreading.html %%QT_DOCDIR%%/qtsensors/qtiltsensor-members.html %%QT_DOCDIR%%/qtsensors/qtiltsensor-obsolete.html %%QT_DOCDIR%%/qtsensors/qtiltsensor.html %%QT_DOCDIR%%/qtsensors/qtsensorgestures-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-accelbubble-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-accelbubble-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-accelbubble-qrc.html %%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-android-androidmanifest-xml.html %%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-content-bluebubble-svg.html %%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-accelbubble-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-examples.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-console-app-console-app-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-grue-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-grue-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-import-import-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-import-qmldir.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-gruesensor-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-gruesensor-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-gruesensor-p-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-lib-lib-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-plugin-gruesensorimpl-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-plugin-gruesensorimpl-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-plugin-plugin-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-qml-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-grue-qml-qrc.html %%QT_DOCDIR%%/qtsensors/qtsensors-index.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-android-androidmanifest-xml.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-components-applicationwindow-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-components-button-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-congratulation-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-labyrinthsquare-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-lib-js.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-maze-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-maze-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-maze-qrc.html %%QT_DOCDIR%%/qtsensors/qtsensors-maze-mouse-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-module.html %%QT_DOCDIR%%/qtsensors/qtsensors-porting.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlmodule.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-components-applicationwindow-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-components-button-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-components-divider-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-qmlqtsensors-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-qmlqtsensors-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlqtsensors-qmlqtsensors-qrc.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-button-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-gesturelist-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-gesturesview-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-gestureview-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-plugin-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcountergestureplugin-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcountergestureplugin-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcounterrecognizer-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-plugin-qcounterrecognizer-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qml-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qml-qrc.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qmlsensorgestures-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-qmlsensorgestures-qmlsensorgestures-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-explorer-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-explorer-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-import-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-propertyinfo-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-propertyinfo-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-qmldir.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-sensoritem-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-import-sensoritem-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-qml-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-qml-qrc.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-sensor-explorer-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensor-explorer-sensor-explorer-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-mainwindow-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-mainwindow-h.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-mainwindow-ui.html %%QT_DOCDIR%%/qtsensors/qtsensors-sensorgestures-sensorgestures-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-example.html %%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-main-cpp.html %%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-shakeit-pro.html %%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-shakeit-qml.html %%QT_DOCDIR%%/qtsensors/qtsensors-shakeit-shakeit-qrc.html %%QT_DOCDIR%%/qtsensors/qtsensors.index %%QT_DOCDIR%%/qtsensors/qtsensors.qhp %%QT_DOCDIR%%/qtsensors/qtsensors.qhp.sha1 %%QT_DOCDIR%%/qtsensors/qtsensors.tags %%QT_DOCDIR%%/qtsensors/senorfwbackend.html %%QT_DOCDIR%%/qtsensors/sensorgesture-emulator-topics.html %%QT_DOCDIR%%/qtsensors/sensorgesture-plugins-topics.html %%QT_DOCDIR%%/qtsensors/sensors-backend-topics.html %%QT_DOCDIR%%/qtsensors/style/offline-simple.css %%QT_DOCDIR%%/qtsensors/style/offline.css %%QT_DOCDIR%%/qtserialbus.qch %%QT_DOCDIR%%/qtserialbus/examples-manifest.xml %%QT_DOCDIR%%/qtserialbus/images/arrow_bc.png %%QT_DOCDIR%%/qtserialbus/images/bgrContent.png %%QT_DOCDIR%%/qtserialbus/images/btn_next.png %%QT_DOCDIR%%/qtserialbus/images/btn_prev.png %%QT_DOCDIR%%/qtserialbus/images/bullet_dn.png %%QT_DOCDIR%%/qtserialbus/images/bullet_sq.png %%QT_DOCDIR%%/qtserialbus/images/can-example.png %%QT_DOCDIR%%/qtserialbus/images/home.png %%QT_DOCDIR%%/qtserialbus/images/ico_note.png %%QT_DOCDIR%%/qtserialbus/images/ico_note_attention.png %%QT_DOCDIR%%/qtserialbus/images/ico_out.png %%QT_DOCDIR%%/qtserialbus/images/logo.png %%QT_DOCDIR%%/qtserialbus/images/modbusmaster.png %%QT_DOCDIR%%/qtserialbus/images/modbusserver.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/application-exit.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/clear.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/connect.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/can/images/disconnect.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/application-exit.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/connect.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/disconnect.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/master/images/settings.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/application-exit.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/connect.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/disconnect.png %%QT_DOCDIR%%/qtserialbus/images/used-in-examples/modbus/slave/images/settings.png %%QT_DOCDIR%%/qtserialbus/qcanbus-members.html %%QT_DOCDIR%%/qtserialbus/qcanbus-obsolete.html %%QT_DOCDIR%%/qtserialbus/qcanbus.html %%QT_DOCDIR%%/qtserialbus/qcanbusdevice-filter-members.html %%QT_DOCDIR%%/qtserialbus/qcanbusdevice-filter.html %%QT_DOCDIR%%/qtserialbus/qcanbusdevice-members.html %%QT_DOCDIR%%/qtserialbus/qcanbusdevice-obsolete.html %%QT_DOCDIR%%/qtserialbus/qcanbusdevice.html %%QT_DOCDIR%%/qtserialbus/qcanbusdeviceinfo-members.html %%QT_DOCDIR%%/qtserialbus/qcanbusdeviceinfo.html %%QT_DOCDIR%%/qtserialbus/qcanbusfactory-members.html %%QT_DOCDIR%%/qtserialbus/qcanbusfactory.html %%QT_DOCDIR%%/qtserialbus/qcanbusfactoryv2-members.html %%QT_DOCDIR%%/qtserialbus/qcanbusfactoryv2.html %%QT_DOCDIR%%/qtserialbus/qcanbusframe-members.html %%QT_DOCDIR%%/qtserialbus/qcanbusframe-timestamp-members.html %%QT_DOCDIR%%/qtserialbus/qcanbusframe-timestamp.html %%QT_DOCDIR%%/qtserialbus/qcanbusframe.html %%QT_DOCDIR%%/qtserialbus/qmodbusclient-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusclient-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbusclient.html %%QT_DOCDIR%%/qtserialbus/qmodbusdataunit-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusdataunit.html %%QT_DOCDIR%%/qtserialbus/qmodbusdevice-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusdevice-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbusdevice.html %%QT_DOCDIR%%/qtserialbus/qmodbusdeviceidentification-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusdeviceidentification.html %%QT_DOCDIR%%/qtserialbus/qmodbusexceptionresponse-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusexceptionresponse.html %%QT_DOCDIR%%/qtserialbus/qmodbuspdu-members.html %%QT_DOCDIR%%/qtserialbus/qmodbuspdu.html %%QT_DOCDIR%%/qtserialbus/qmodbusreply-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusreply-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbusreply.html %%QT_DOCDIR%%/qtserialbus/qmodbusrequest-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusrequest.html %%QT_DOCDIR%%/qtserialbus/qmodbusresponse-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusresponse.html %%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialmaster-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialmaster-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialmaster.html %%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialslave-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialslave-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbusrtuserialslave.html %%QT_DOCDIR%%/qtserialbus/qmodbusserver-members.html %%QT_DOCDIR%%/qtserialbus/qmodbusserver-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbusserver.html %%QT_DOCDIR%%/qtserialbus/qmodbustcpclient-members.html %%QT_DOCDIR%%/qtserialbus/qmodbustcpclient-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbustcpclient.html %%QT_DOCDIR%%/qtserialbus/qmodbustcpserver-members.html %%QT_DOCDIR%%/qtserialbus/qmodbustcpserver-obsolete.html %%QT_DOCDIR%%/qtserialbus/qmodbustcpserver.html %%QT_DOCDIR%%/qtserialbus/qtcanbus-backends.html %%QT_DOCDIR%%/qtserialbus/qtmodbus-backends.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-bitratebox-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-bitratebox-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-can-pro.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-can-qrc.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-connectdialog-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-connectdialog-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-connectdialog-ui.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-example.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-main-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-mainwindow-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-mainwindow-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-mainwindow-ui.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-sendframebox-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-sendframebox-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-can-sendframebox-ui.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-examples.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-index.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-example.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-main-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-mainwindow-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-mainwindow-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-mainwindow-ui.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-master-pro.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-master-qrc.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-settingsdialog-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-settingsdialog-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-settingsdialog-ui.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-writeregistermodel-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-master-writeregistermodel-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-example.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-main-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-mainwindow-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-mainwindow-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-mainwindow-ui.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-settingsdialog-cpp.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-settingsdialog-h.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-settingsdialog-ui.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-slave-pro.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-modbus-slave-slave-qrc.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-module.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-passthrucan-overview.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-peakcan-overview.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-socketcan-overview.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-systeccan-overview.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-tinycan-overview.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-vectorcan-overview.html %%QT_DOCDIR%%/qtserialbus/qtserialbus-virtualcan-overview.html %%QT_DOCDIR%%/qtserialbus/qtserialbus.index %%QT_DOCDIR%%/qtserialbus/qtserialbus.qhp %%QT_DOCDIR%%/qtserialbus/qtserialbus.qhp.sha1 %%QT_DOCDIR%%/qtserialbus/qtserialbus.tags %%QT_DOCDIR%%/qtserialbus/style/offline-simple.css %%QT_DOCDIR%%/qtserialbus/style/offline.css %%QT_DOCDIR%%/qtserialport.qch %%QT_DOCDIR%%/qtserialport/examples-manifest.xml %%QT_DOCDIR%%/qtserialport/images/arrow_bc.png %%QT_DOCDIR%%/qtserialport/images/bgrContent.png %%QT_DOCDIR%%/qtserialport/images/blockingmaster-example.png %%QT_DOCDIR%%/qtserialport/images/blockingslave-example.png %%QT_DOCDIR%%/qtserialport/images/btn_next.png %%QT_DOCDIR%%/qtserialport/images/btn_prev.png %%QT_DOCDIR%%/qtserialport/images/bullet_dn.png %%QT_DOCDIR%%/qtserialport/images/bullet_sq.png %%QT_DOCDIR%%/qtserialport/images/cenumerator-example.png %%QT_DOCDIR%%/qtserialport/images/creaderasync-example.png %%QT_DOCDIR%%/qtserialport/images/creadersync-example.png %%QT_DOCDIR%%/qtserialport/images/cwriterasync-example.png %%QT_DOCDIR%%/qtserialport/images/cwritersync-example.png %%QT_DOCDIR%%/qtserialport/images/enumerator-example.png %%QT_DOCDIR%%/qtserialport/images/home.png %%QT_DOCDIR%%/qtserialport/images/ico_note.png %%QT_DOCDIR%%/qtserialport/images/ico_note_attention.png %%QT_DOCDIR%%/qtserialport/images/ico_out.png %%QT_DOCDIR%%/qtserialport/images/logo.png %%QT_DOCDIR%%/qtserialport/images/terminal-example.png %%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/application-exit.png %%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/clear.png %%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/connect.png %%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/disconnect.png %%QT_DOCDIR%%/qtserialport/images/used-in-examples/terminal/images/settings.png %%QT_DOCDIR%%/qtserialport/qserialport-members.html %%QT_DOCDIR%%/qtserialport/qserialport-obsolete.html %%QT_DOCDIR%%/qtserialport/qserialport.html %%QT_DOCDIR%%/qtserialport/qserialportinfo-members.html %%QT_DOCDIR%%/qtserialport/qserialportinfo-obsolete.html %%QT_DOCDIR%%/qtserialport/qserialportinfo.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-blockingmaster-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-dialog-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-dialog-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-masterthread-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingmaster-masterthread-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-blockingslave-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-dialog-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-dialog-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-slavethread-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-blockingslave-slavethread-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-cenumerator-cenumerator-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-cenumerator-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-cenumerator-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-creaderasync-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-serialportreader-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-creaderasync-serialportreader-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-creadersync-creadersync-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-creadersync-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-creadersync-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-cwriterasync-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-serialportwriter-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwriterasync-serialportwriter-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwritersync-cwritersync-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwritersync-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-cwritersync-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-enumerator-enumerator-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-enumerator-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-enumerator-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-examples.html %%QT_DOCDIR%%/qtserialport/qtserialport-index.html %%QT_DOCDIR%%/qtserialport/qtserialport-module.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-console-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-console-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-example.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-main-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-mainwindow-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-mainwindow-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-mainwindow-ui.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-settingsdialog-cpp.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-settingsdialog-h.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-settingsdialog-ui.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-terminal-pro.html %%QT_DOCDIR%%/qtserialport/qtserialport-terminal-terminal-qrc.html %%QT_DOCDIR%%/qtserialport/qtserialport.index %%QT_DOCDIR%%/qtserialport/qtserialport.qhp %%QT_DOCDIR%%/qtserialport/qtserialport.qhp.sha1 %%QT_DOCDIR%%/qtserialport/style/offline-simple.css %%QT_DOCDIR%%/qtserialport/style/offline.css %%QT_DOCDIR%%/qtspeech.qch %%QT_DOCDIR%%/qtspeech/examples-manifest.xml %%QT_DOCDIR%%/qtspeech/images/arrow_bc.png %%QT_DOCDIR%%/qtspeech/images/bgrContent.png %%QT_DOCDIR%%/qtspeech/images/btn_next.png %%QT_DOCDIR%%/qtspeech/images/btn_prev.png %%QT_DOCDIR%%/qtspeech/images/bullet_dn.png %%QT_DOCDIR%%/qtspeech/images/bullet_sq.png %%QT_DOCDIR%%/qtspeech/images/hellospeak-example.png %%QT_DOCDIR%%/qtspeech/images/home.png %%QT_DOCDIR%%/qtspeech/images/ico_note.png %%QT_DOCDIR%%/qtspeech/images/ico_note_attention.png %%QT_DOCDIR%%/qtspeech/images/ico_out.png %%QT_DOCDIR%%/qtspeech/images/logo.png %%QT_DOCDIR%%/qtspeech/qtexttospeech-members.html %%QT_DOCDIR%%/qtspeech/qtexttospeech-obsolete.html %%QT_DOCDIR%%/qtspeech/qtexttospeech.html %%QT_DOCDIR%%/qtspeech/qtexttospeechengine-members.html %%QT_DOCDIR%%/qtspeech/qtexttospeechengine-obsolete.html %%QT_DOCDIR%%/qtspeech/qtexttospeechengine.html %%QT_DOCDIR%%/qtspeech/qtexttospeechplugin-members.html %%QT_DOCDIR%%/qtspeech/qtexttospeechplugin.html %%QT_DOCDIR%%/qtspeech/qtspeech-hello-speak-example.html %%QT_DOCDIR%%/qtspeech/qtspeech-hello-speak-hello-speak-pro.html %%QT_DOCDIR%%/qtspeech/qtspeech-hello-speak-main-cpp.html %%QT_DOCDIR%%/qtspeech/qtspeech-hello-speak-mainwindow-cpp.html %%QT_DOCDIR%%/qtspeech/qtspeech-hello-speak-mainwindow-h.html %%QT_DOCDIR%%/qtspeech/qtspeech-hello-speak-mainwindow-ui.html %%QT_DOCDIR%%/qtspeech/qtspeech-index.html %%QT_DOCDIR%%/qtspeech/qtspeech-module.html %%QT_DOCDIR%%/qtspeech/qtspeech.index %%QT_DOCDIR%%/qtspeech/qtspeech.qhp %%QT_DOCDIR%%/qtspeech/qtspeech.qhp.sha1 %%QT_DOCDIR%%/qtspeech/qtspeech.tags %%QT_DOCDIR%%/qtspeech/qvoice-members.html %%QT_DOCDIR%%/qtspeech/qvoice.html %%QT_DOCDIR%%/qtspeech/style/offline-simple.css %%QT_DOCDIR%%/qtspeech/style/offline.css %%QT_DOCDIR%%/qtsql.qch %%QT_DOCDIR%%/qtsql/database.html %%QT_DOCDIR%%/qtsql/examples-manifest.xml %%QT_DOCDIR%%/qtsql/images/arrow_bc.png %%QT_DOCDIR%%/qtsql/images/bgrContent.png %%QT_DOCDIR%%/qtsql/images/books-demo.png %%QT_DOCDIR%%/qtsql/images/btn_next.png %%QT_DOCDIR%%/qtsql/images/btn_prev.png %%QT_DOCDIR%%/qtsql/images/bullet_dn.png %%QT_DOCDIR%%/qtsql/images/bullet_sq.png %%QT_DOCDIR%%/qtsql/images/cachedtable-example.png %%QT_DOCDIR%%/qtsql/images/drilldown-example.png %%QT_DOCDIR%%/qtsql/images/foreignkeys.png %%QT_DOCDIR%%/qtsql/images/home.png %%QT_DOCDIR%%/qtsql/images/ico_note.png %%QT_DOCDIR%%/qtsql/images/ico_note_attention.png %%QT_DOCDIR%%/qtsql/images/ico_out.png %%QT_DOCDIR%%/qtsql/images/insertrowinmodelview.png %%QT_DOCDIR%%/qtsql/images/logo.png %%QT_DOCDIR%%/qtsql/images/masterdetail-example.png %%QT_DOCDIR%%/qtsql/images/noforeignkeys.png %%QT_DOCDIR%%/qtsql/images/qdatawidgetmapper-simple.png %%QT_DOCDIR%%/qtsql/images/querymodel-example.png %%QT_DOCDIR%%/qtsql/images/relationaltable.png %%QT_DOCDIR%%/qtsql/images/relationaltablemodel-example.png %%QT_DOCDIR%%/qtsql/images/sql-widget-mapper.png %%QT_DOCDIR%%/qtsql/images/sqlbrowser-demo.png %%QT_DOCDIR%%/qtsql/images/tablemodel-example.png %%QT_DOCDIR%%/qtsql/images/used-in-examples/books/images/star.png %%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-creator.png %%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-logo.png %%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-project.png %%QT_DOCDIR%%/qtsql/images/used-in-examples/drilldown/images/qt-quick.png %%QT_DOCDIR%%/qtsql/images/used-in-examples/masterdetail/images/icon.png %%QT_DOCDIR%%/qtsql/images/used-in-examples/masterdetail/images/image.png %%QT_DOCDIR%%/qtsql/images/widgetmapper-sql-mapping-table.png %%QT_DOCDIR%%/qtsql/images/widgetmapper-sql-mapping.png %%QT_DOCDIR%%/qtsql/qsql.html %%QT_DOCDIR%%/qtsql/qsqldatabase-members.html %%QT_DOCDIR%%/qtsql/qsqldatabase.html %%QT_DOCDIR%%/qtsql/qsqldriver-members.html %%QT_DOCDIR%%/qtsql/qsqldriver-obsolete.html %%QT_DOCDIR%%/qtsql/qsqldriver.html %%QT_DOCDIR%%/qtsql/qsqldrivercreator-members.html %%QT_DOCDIR%%/qtsql/qsqldrivercreator.html %%QT_DOCDIR%%/qtsql/qsqldrivercreatorbase-members.html %%QT_DOCDIR%%/qtsql/qsqldrivercreatorbase.html %%QT_DOCDIR%%/qtsql/qsqldriverplugin-members.html %%QT_DOCDIR%%/qtsql/qsqldriverplugin-obsolete.html %%QT_DOCDIR%%/qtsql/qsqldriverplugin.html %%QT_DOCDIR%%/qtsql/qsqlerror-members.html %%QT_DOCDIR%%/qtsql/qsqlerror-obsolete.html %%QT_DOCDIR%%/qtsql/qsqlerror.html %%QT_DOCDIR%%/qtsql/qsqlfield-members.html %%QT_DOCDIR%%/qtsql/qsqlfield.html %%QT_DOCDIR%%/qtsql/qsqlindex-members.html %%QT_DOCDIR%%/qtsql/qsqlindex.html %%QT_DOCDIR%%/qtsql/qsqlquery-members.html %%QT_DOCDIR%%/qtsql/qsqlquery.html %%QT_DOCDIR%%/qtsql/qsqlquerymodel-members.html %%QT_DOCDIR%%/qtsql/qsqlquerymodel-obsolete.html %%QT_DOCDIR%%/qtsql/qsqlquerymodel.html %%QT_DOCDIR%%/qtsql/qsqlrecord-members.html %%QT_DOCDIR%%/qtsql/qsqlrecord.html %%QT_DOCDIR%%/qtsql/qsqlrelation-members.html %%QT_DOCDIR%%/qtsql/qsqlrelation.html %%QT_DOCDIR%%/qtsql/qsqlrelationaldelegate-members.html %%QT_DOCDIR%%/qtsql/qsqlrelationaldelegate-obsolete.html %%QT_DOCDIR%%/qtsql/qsqlrelationaldelegate.html %%QT_DOCDIR%%/qtsql/qsqlrelationaltablemodel-members.html %%QT_DOCDIR%%/qtsql/qsqlrelationaltablemodel-obsolete.html %%QT_DOCDIR%%/qtsql/qsqlrelationaltablemodel.html %%QT_DOCDIR%%/qtsql/qsqlresult-members.html %%QT_DOCDIR%%/qtsql/qsqlresult.html %%QT_DOCDIR%%/qtsql/qsqltablemodel-members.html %%QT_DOCDIR%%/qtsql/qsqltablemodel-obsolete.html %%QT_DOCDIR%%/qtsql/qsqltablemodel.html %%QT_DOCDIR%%/qtsql/qtsql-attribution-sqlite.html %%QT_DOCDIR%%/qtsql/qtsql-books-bookdelegate-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-books-bookdelegate-h.html %%QT_DOCDIR%%/qtsql/qtsql-books-books-pro.html %%QT_DOCDIR%%/qtsql/qtsql-books-books-qrc.html %%QT_DOCDIR%%/qtsql/qtsql-books-bookwindow-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-books-bookwindow-h.html %%QT_DOCDIR%%/qtsql/qtsql-books-bookwindow-ui.html %%QT_DOCDIR%%/qtsql/qtsql-books-example.html %%QT_DOCDIR%%/qtsql/qtsql-books-initdb-h.html %%QT_DOCDIR%%/qtsql/qtsql-books-main-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-cachedtable-cachedtable-pro.html %%QT_DOCDIR%%/qtsql/qtsql-cachedtable-example.html %%QT_DOCDIR%%/qtsql/qtsql-cachedtable-main-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-cachedtable-tableeditor-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-cachedtable-tableeditor-h.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-drilldown-pro.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-drilldown-qrc.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-example.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-imageitem-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-imageitem-h.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-informationwindow-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-informationwindow-h.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-main-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-view-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-drilldown-view-h.html %%QT_DOCDIR%%/qtsql/qtsql-index.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-albumdetails-xml.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-database-h.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-dialog-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-dialog-h.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-example.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-main-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-mainwindow-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-mainwindow-h.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-masterdetail-pro.html %%QT_DOCDIR%%/qtsql/qtsql-masterdetail-masterdetail-qrc.html %%QT_DOCDIR%%/qtsql/qtsql-module.html %%QT_DOCDIR%%/qtsql/qtsql-querymodel-customsqlmodel-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-querymodel-customsqlmodel-h.html %%QT_DOCDIR%%/qtsql/qtsql-querymodel-editablesqlmodel-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-querymodel-editablesqlmodel-h.html %%QT_DOCDIR%%/qtsql/qtsql-querymodel-example.html %%QT_DOCDIR%%/qtsql/qtsql-querymodel-main-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-querymodel-querymodel-pro.html %%QT_DOCDIR%%/qtsql/qtsql-relationaltablemodel-example.html %%QT_DOCDIR%%/qtsql/qtsql-relationaltablemodel-relationaltablemodel-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-relationaltablemodel-relationaltablemodel-pro.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-browser-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-browser-h.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-browserwidget-ui.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-connectionwidget-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-connectionwidget-h.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-example.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-main-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-qsqlconnectiondialog-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-qsqlconnectiondialog-h.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-qsqlconnectiondialog-ui.html %%QT_DOCDIR%%/qtsql/qtsql-sqlbrowser-sqlbrowser-pro.html %%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-example.html %%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-main-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-sqlwidgetmapper-pro.html %%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-window-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-sqlwidgetmapper-window-h.html %%QT_DOCDIR%%/qtsql/qtsql-tablemodel-example.html %%QT_DOCDIR%%/qtsql/qtsql-tablemodel-tablemodel-cpp.html %%QT_DOCDIR%%/qtsql/qtsql-tablemodel-tablemodel-pro.html %%QT_DOCDIR%%/qtsql/qtsql.index %%QT_DOCDIR%%/qtsql/qtsql.qhp %%QT_DOCDIR%%/qtsql/qtsql.qhp.sha1 %%QT_DOCDIR%%/qtsql/qtsql.tags %%QT_DOCDIR%%/qtsql/sql-connecting.html %%QT_DOCDIR%%/qtsql/sql-driver.html %%QT_DOCDIR%%/qtsql/sql-forms.html %%QT_DOCDIR%%/qtsql/sql-model.html %%QT_DOCDIR%%/qtsql/sql-presenting.html %%QT_DOCDIR%%/qtsql/sql-programming.html %%QT_DOCDIR%%/qtsql/sql-sqlstatements.html %%QT_DOCDIR%%/qtsql/sql-types.html %%QT_DOCDIR%%/qtsql/style/offline-simple.css %%QT_DOCDIR%%/qtsql/style/offline.css %%QT_DOCDIR%%/qtsvg.qch %%QT_DOCDIR%%/qtsvg/examples-manifest.xml %%QT_DOCDIR%%/qtsvg/images/arrow_bc.png %%QT_DOCDIR%%/qtsvg/images/bgrContent.png %%QT_DOCDIR%%/qtsvg/images/btn_next.png %%QT_DOCDIR%%/qtsvg/images/btn_prev.png %%QT_DOCDIR%%/qtsvg/images/bullet_dn.png %%QT_DOCDIR%%/qtsvg/images/bullet_sq.png %%QT_DOCDIR%%/qtsvg/images/home.png %%QT_DOCDIR%%/qtsvg/images/ico_note.png %%QT_DOCDIR%%/qtsvg/images/ico_note_attention.png %%QT_DOCDIR%%/qtsvg/images/ico_out.png %%QT_DOCDIR%%/qtsvg/images/logo.png %%QT_DOCDIR%%/qtsvg/images/svggenerator-example.png %%QT_DOCDIR%%/qtsvg/images/svgviewer-example.png %%QT_DOCDIR%%/qtsvg/images/textobject-example.png %%QT_DOCDIR%%/qtsvg/qgraphicssvgitem-members.html %%QT_DOCDIR%%/qtsvg/qgraphicssvgitem-obsolete.html %%QT_DOCDIR%%/qtsvg/qgraphicssvgitem.html %%QT_DOCDIR%%/qtsvg/qsvggenerator-members.html %%QT_DOCDIR%%/qtsvg/qsvggenerator.html %%QT_DOCDIR%%/qtsvg/qsvgrenderer-members.html %%QT_DOCDIR%%/qtsvg/qsvgrenderer-obsolete.html %%QT_DOCDIR%%/qtsvg/qsvgrenderer.html %%QT_DOCDIR%%/qtsvg/qsvgwidget-members.html %%QT_DOCDIR%%/qtsvg/qsvgwidget-obsolete.html %%QT_DOCDIR%%/qtsvg/qsvgwidget.html %%QT_DOCDIR%%/qtsvg/qtsvg-attribution-xsvg.html %%QT_DOCDIR%%/qtsvg/qtsvg-index.html %%QT_DOCDIR%%/qtsvg/qtsvg-module.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-example.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-files-heart-svg.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-main-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-resources-qrc.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-svgtextobject-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-svgtextobject-h.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-textobject-pro.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-window-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-richtext-textobject-window-h.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-displaywidget-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-displaywidget-h.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-example.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-forms-window-ui.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-main-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-svggenerator-pro.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-svggenerator-qrc.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-window-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-svggenerator-window-h.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-example.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-exportdialog-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-exportdialog-h.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-files-bubbles-svg.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-files-cubic-svg.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-files-spheres-svg.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-main-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-mainwindow-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-mainwindow-h.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgview-cpp.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgview-h.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgviewer-pro.html %%QT_DOCDIR%%/qtsvg/qtsvg-svgviewer-svgviewer-qrc.html %%QT_DOCDIR%%/qtsvg/qtsvg.index %%QT_DOCDIR%%/qtsvg/qtsvg.qhp %%QT_DOCDIR%%/qtsvg/qtsvg.qhp.sha1 %%QT_DOCDIR%%/qtsvg/qtsvg.tags %%QT_DOCDIR%%/qtsvg/style/offline-simple.css %%QT_DOCDIR%%/qtsvg/style/offline.css %%QT_DOCDIR%%/qtsvg/svgrendering.html %%QT_DOCDIR%%/qttestlib.qch %%QT_DOCDIR%%/qttestlib/examples-manifest.xml %%QT_DOCDIR%%/qttestlib/images/arrow_bc.png %%QT_DOCDIR%%/qttestlib/images/bgrContent.png %%QT_DOCDIR%%/qttestlib/images/btn_next.png %%QT_DOCDIR%%/qttestlib/images/btn_prev.png %%QT_DOCDIR%%/qttestlib/images/bullet_dn.png %%QT_DOCDIR%%/qttestlib/images/bullet_sq.png %%QT_DOCDIR%%/qttestlib/images/home.png %%QT_DOCDIR%%/qttestlib/images/ico_note.png %%QT_DOCDIR%%/qttestlib/images/ico_note_attention.png %%QT_DOCDIR%%/qttestlib/images/ico_out.png %%QT_DOCDIR%%/qttestlib/images/logo.png %%QT_DOCDIR%%/qttestlib/qabstractitemmodeltester-members.html %%QT_DOCDIR%%/qttestlib/qabstractitemmodeltester-obsolete.html %%QT_DOCDIR%%/qttestlib/qabstractitemmodeltester.html %%QT_DOCDIR%%/qttestlib/qsignalspy-members.html %%QT_DOCDIR%%/qttestlib/qsignalspy-obsolete.html %%QT_DOCDIR%%/qttestlib/qsignalspy.html +%%QT_DOCDIR%%/qttestlib/qtest-obsolete.html %%QT_DOCDIR%%/qttestlib/qtest-overview.html %%QT_DOCDIR%%/qttestlib/qtest-qtoucheventsequence-members.html %%QT_DOCDIR%%/qttestlib/qtest-qtoucheventsequence.html %%QT_DOCDIR%%/qttestlib/qtest-tutorial.html %%QT_DOCDIR%%/qttestlib/qtest.html %%QT_DOCDIR%%/qttestlib/qtesteventlist-members.html %%QT_DOCDIR%%/qttestlib/qtesteventlist.html %%QT_DOCDIR%%/qttestlib/qttest-index.html %%QT_DOCDIR%%/qttestlib/qttest-module.html %%QT_DOCDIR%%/qttestlib/qttestlib-attribution-cycle.html %%QT_DOCDIR%%/qttestlib/qttestlib-attribution-linuxperf.html %%QT_DOCDIR%%/qttestlib/qttestlib-attribution-valgrind.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial1-example.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial1-testqstring-cpp.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial1-tutorial1-pro.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial2-example.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial2-testqstring-cpp.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial2-tutorial2-pro.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial3-example.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial3-testgui-cpp.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial3-tutorial3-pro.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial4-example.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial4-testgui-cpp.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial4-tutorial4-pro.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial5-benchmarking-cpp.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial5-example.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial5-tutorial5-pro.html %%QT_DOCDIR%%/qttestlib/qttestlib-tutorial6.html %%QT_DOCDIR%%/qttestlib/qttestlib.index %%QT_DOCDIR%%/qttestlib/qttestlib.qhp %%QT_DOCDIR%%/qttestlib/qttestlib.qhp.sha1 %%QT_DOCDIR%%/qttestlib/qttestlib.tags %%QT_DOCDIR%%/qttestlib/style/offline-simple.css %%QT_DOCDIR%%/qttestlib/style/offline.css %%QT_DOCDIR%%/qtuitools.qch %%QT_DOCDIR%%/qtuitools/examples-manifest.xml %%QT_DOCDIR%%/qtuitools/examples-qtuitools.html %%QT_DOCDIR%%/qtuitools/images/arrow_bc.png %%QT_DOCDIR%%/qtuitools/images/bgrContent.png %%QT_DOCDIR%%/qtuitools/images/btn_next.png %%QT_DOCDIR%%/qtuitools/images/btn_prev.png %%QT_DOCDIR%%/qtuitools/images/bullet_dn.png %%QT_DOCDIR%%/qtuitools/images/bullet_sq.png %%QT_DOCDIR%%/qtuitools/images/home.png %%QT_DOCDIR%%/qtuitools/images/ico_note.png %%QT_DOCDIR%%/qtuitools/images/ico_note_attention.png %%QT_DOCDIR%%/qtuitools/images/ico_out.png %%QT_DOCDIR%%/qtuitools/images/logo.png %%QT_DOCDIR%%/qtuitools/images/multipleinheritance-example.png %%QT_DOCDIR%%/qtuitools/images/textfinder-example-find.png %%QT_DOCDIR%%/qtuitools/images/textfinder-example-find2.png %%QT_DOCDIR%%/qtuitools/images/textfinder-example-userinterface.png %%QT_DOCDIR%%/qtuitools/images/uitools-examples.png %%QT_DOCDIR%%/qtuitools/qtuitools-index.html %%QT_DOCDIR%%/qtuitools/qtuitools-module.html %%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-calculatorform-cpp.html %%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-calculatorform-h.html %%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-calculatorform-ui.html %%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-example.html %%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-main-cpp.html %%QT_DOCDIR%%/qtuitools/qtuitools-multipleinheritance-multipleinheritance-pro.html %%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-example.html %%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-forms-textfinder-ui.html %%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-main-cpp.html %%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-cpp.html %%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-h.html %%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-pro.html %%QT_DOCDIR%%/qtuitools/qtuitools-textfinder-textfinder-qrc.html %%QT_DOCDIR%%/qtuitools/qtuitools.index %%QT_DOCDIR%%/qtuitools/qtuitools.qhp %%QT_DOCDIR%%/qtuitools/qtuitools.qhp.sha1 %%QT_DOCDIR%%/qtuitools/quiloader-members.html %%QT_DOCDIR%%/qtuitools/quiloader-obsolete.html %%QT_DOCDIR%%/qtuitools/quiloader.html %%QT_DOCDIR%%/qtuitools/style/offline-simple.css %%QT_DOCDIR%%/qtuitools/style/offline.css %%QT_DOCDIR%%/qtwaylandcompositor.qch %%QT_DOCDIR%%/qtwaylandcompositor/examples-manifest.xml %%QT_DOCDIR%%/qtwaylandcompositor/images/arrow_bc.png %%QT_DOCDIR%%/qtwaylandcompositor/images/bgrContent.png %%QT_DOCDIR%%/qtwaylandcompositor/images/btn_next.png %%QT_DOCDIR%%/qtwaylandcompositor/images/btn_prev.png %%QT_DOCDIR%%/qtwaylandcompositor/images/bullet_dn.png %%QT_DOCDIR%%/qtwaylandcompositor/images/bullet_sq.png %%QT_DOCDIR%%/qtwaylandcompositor/images/home.png %%QT_DOCDIR%%/qtwaylandcompositor/images/ico_note.png %%QT_DOCDIR%%/qtwaylandcompositor/images/ico_note_attention.png %%QT_DOCDIR%%/qtwaylandcompositor/images/ico_out.png %%QT_DOCDIR%%/qtwaylandcompositor/images/logo.png %%QT_DOCDIR%%/qtwaylandcompositor/images/used-in-examples/multi-output/images/background.jpg %%QT_DOCDIR%%/qtwaylandcompositor/images/used-in-examples/pure-qml/images/background.jpg %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-iviapplication-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-iviapplication.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-ivisurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-ivisurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-shellsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-shellsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-shellsurfaceitem-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-shellsurfaceitem.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandclient-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandclient.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandcompositor-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandcompositor.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandhardwarelayer-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandhardwarelayer.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandoutput-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandoutput.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandquickitem-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandquickitem.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandseat-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandseat.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandview-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-waylandview.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-wlshell-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-wlshell.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-wlshellsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-wlshellsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgdecorationmanagerv1-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgdecorationmanagerv1.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgpopup-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgpopup.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgpopupv5-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgpopupv5.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgpopupv6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgpopupv6.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgshell-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgshell.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgshellv5-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgshellv5.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgshellv6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgshellv6.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgsurfacev5-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgsurfacev5.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgsurfacev6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgsurfacev6.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgtoplevel-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgtoplevel.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgtoplevelv6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qml-qtwayland-compositor-xdgtoplevelv6.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwayland-compositor-qmlmodule.html +%%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-attribution-wayland-eglstream-controller.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-attribution-wayland-ivi-extension-protocol.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-attribution-wayland-protocol.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-attribution-wayland-txt-input-unstable.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-attribution-wayland-xdg-decoration-protocol.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-attribution-wayland-xdg-output-protocol.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-attribution-wayland-xdg-shell-protocol.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-examples.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-index.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-ivi-compositor-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-ivi-compositor-ivi-compositor-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-ivi-compositor-ivi-compositor-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-ivi-compositor-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-ivi-compositor-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-minimal-qml-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-minimal-qml-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-minimal-qml-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-minimal-qml-minimal-qml-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-minimal-qml-minimal-qml-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-module.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-multi-output-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-multi-output-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-qml-gridscreen-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-qml-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-qml-shellchrome-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-output-qml-shellscreen-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-screen-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-screen-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-screen-multi-screen-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-screen-multi-screen-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-screen-qml-chrome-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-screen-qml-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-multi-screen-qml-screen-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-overview-compositor-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-overview-compositor-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-overview-compositor-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-overview-compositor-overview-compositor-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-overview-compositor-overview-compositor-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-pure-qml-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-pure-qml-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-qml-chrome-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-qml-keyboard-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-qml-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-pure-qml-qml-screen-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-compositor-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-compositor-h.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-qwindow-compositor-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-qwindow-compositor-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-window-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-qwindow-compositor-window-h.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-server-side-decoration-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-server-side-decoration-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-server-side-decoration-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-server-side-decoration-server-side-decoration-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-server-side-decoration-server-side-decoration-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-spanning-screens-example.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-spanning-screens-main-cpp.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-spanning-screens-main-qml.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-spanning-screens-spanning-screens-pro.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor-spanning-screens-spanning-screens-qrc.html %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor.index %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor.qhp %%QT_DOCDIR%%/qtwaylandcompositor/qtwaylandcompositor.qhp.sha1 %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandbufferref-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandbufferref.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandclient-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandclient-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandclient.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandcompositor-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandcompositor-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandcompositor.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandiviapplication-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandiviapplication.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandivisurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandivisurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandkeyboard-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandkeyboard-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandkeyboard.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandoutput-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandoutput-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandoutput.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandoutputmode-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandoutputmode.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandpointer-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandpointer-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandpointer.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandquickitem-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandquickitem-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandquickitem.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandquickshellsurfaceitem-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandquickshellsurfaceitem-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandquickshellsurfaceitem.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandseat-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandseat-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandseat.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandshellsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandshellsurface-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandshellsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandsurface-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandsurfacegrabber-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandsurfacegrabber-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandsurfacegrabber.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandtouch-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandtouch-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandtouch.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandview-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandview-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandview.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandwlshell-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandwlshell.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandwlshellsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandwlshellsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgdecorationmanagerv1-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgdecorationmanagerv1.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopup-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopup-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopup.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopupv5-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopupv5.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopupv6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopupv6-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgpopupv6.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgshell-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgshell.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgshellv5-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgshellv5.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgshellv6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgshellv6.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgsurface-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgsurface.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgsurfacev5-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgsurfacev5.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgsurfacev6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgsurfacev6.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgtoplevel-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgtoplevel-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgtoplevel.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgtoplevelv6-members.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgtoplevelv6-obsolete.html %%QT_DOCDIR%%/qtwaylandcompositor/qwaylandxdgtoplevelv6.html %%QT_DOCDIR%%/qtwaylandcompositor/style/offline-simple.css %%QT_DOCDIR%%/qtwaylandcompositor/style/offline.css %%QT_DOCDIR%%/qtwebchannel.qch %%QT_DOCDIR%%/qtwebchannel/examples-manifest.xml %%QT_DOCDIR%%/qtwebchannel/images/arrow_bc.png %%QT_DOCDIR%%/qtwebchannel/images/bgrContent.png %%QT_DOCDIR%%/qtwebchannel/images/btn_next.png %%QT_DOCDIR%%/qtwebchannel/images/btn_prev.png %%QT_DOCDIR%%/qtwebchannel/images/bullet_dn.png %%QT_DOCDIR%%/qtwebchannel/images/bullet_sq.png %%QT_DOCDIR%%/qtwebchannel/images/chatclient-html.png %%QT_DOCDIR%%/qtwebchannel/images/chatclient-qml.png %%QT_DOCDIR%%/qtwebchannel/images/chatserver-cpp.png %%QT_DOCDIR%%/qtwebchannel/images/home.png %%QT_DOCDIR%%/qtwebchannel/images/ico_note.png %%QT_DOCDIR%%/qtwebchannel/images/ico_note_attention.png %%QT_DOCDIR%%/qtwebchannel/images/ico_out.png %%QT_DOCDIR%%/qtwebchannel/images/logo.png %%QT_DOCDIR%%/qtwebchannel/images/standalone-screenshot.png %%QT_DOCDIR%%/qtwebchannel/qml-qtwebchannel-webchannel-members.html %%QT_DOCDIR%%/qtwebchannel/qml-qtwebchannel-webchannel.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-html-chatclient-html-pro.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-html-chatclient-html.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-html-example.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-chatclient-qml-pro.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-example.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-loginform-ui-qml.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-mainform-ui-qml.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatclient-qml-qmlchatclient-qml.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-chatserver-cpp-pro.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-chatserver-cpp.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-chatserver-h.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-example.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-chatserver-cpp-main-cpp.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-examples.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-index.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-javascript.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-module.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-qmlmodule.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-core-h.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-dialog-cpp.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-dialog-h.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-dialog-ui.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-example.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-index-html.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-main-cpp.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel-standalone-standalone-pro.html %%QT_DOCDIR%%/qtwebchannel/qtwebchannel.index %%QT_DOCDIR%%/qtwebchannel/qtwebchannel.qhp %%QT_DOCDIR%%/qtwebchannel/qtwebchannel.qhp.sha1 %%QT_DOCDIR%%/qtwebchannel/qtwebchannel.tags %%QT_DOCDIR%%/qtwebchannel/qwebchannel-members.html %%QT_DOCDIR%%/qtwebchannel/qwebchannel-obsolete.html %%QT_DOCDIR%%/qtwebchannel/qwebchannel.html %%QT_DOCDIR%%/qtwebchannel/qwebchannelabstracttransport-members.html %%QT_DOCDIR%%/qtwebchannel/qwebchannelabstracttransport-obsolete.html %%QT_DOCDIR%%/qtwebchannel/qwebchannelabstracttransport.html %%QT_DOCDIR%%/qtwebchannel/style/offline-simple.css %%QT_DOCDIR%%/qtwebchannel/style/offline.css %%QT_DOCDIR%%/qtwebsockets.qch %%QT_DOCDIR%%/qtwebsockets/echoclient.html %%QT_DOCDIR%%/qtwebsockets/echoserver.html %%QT_DOCDIR%%/qtwebsockets/examples-manifest.xml %%QT_DOCDIR%%/qtwebsockets/images/arrow_bc.png %%QT_DOCDIR%%/qtwebsockets/images/bgrContent.png %%QT_DOCDIR%%/qtwebsockets/images/btn_next.png %%QT_DOCDIR%%/qtwebsockets/images/btn_prev.png %%QT_DOCDIR%%/qtwebsockets/images/bullet_dn.png %%QT_DOCDIR%%/qtwebsockets/images/bullet_sq.png %%QT_DOCDIR%%/qtwebsockets/images/echoclient-html-example.png %%QT_DOCDIR%%/qtwebsockets/images/home.png %%QT_DOCDIR%%/qtwebsockets/images/ico_note.png %%QT_DOCDIR%%/qtwebsockets/images/ico_note_attention.png %%QT_DOCDIR%%/qtwebsockets/images/ico_out.png %%QT_DOCDIR%%/qtwebsockets/images/logo.png %%QT_DOCDIR%%/qtwebsockets/images/websockets-pictorial-representation.jpg %%QT_DOCDIR%%/qtwebsockets/qmaskgenerator-members.html %%QT_DOCDIR%%/qtwebsockets/qmaskgenerator-obsolete.html %%QT_DOCDIR%%/qtwebsockets/qmaskgenerator.html %%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocket-members.html %%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocket.html %%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocketserver-members.html %%QT_DOCDIR%%/qtwebsockets/qml-qtwebsockets-websocketserver.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-echoclient-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-echoclient-h.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-echoclient-pro.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-example.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoclient-main-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoclient-html.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoserver-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoserver-h.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-echoserver-pro.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-example.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-echoserver-main-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-examples.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-index.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-module.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlmodule.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-data-qrc.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-example.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-main-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-qml-qmlwebsocketclient-main-qml.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketclient-qmlwebsocketclient-pro.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-data-qrc.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-example.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-main-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-qml-qmlwebsocketserver-main-qml.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-qmlwebsocketserver-qmlwebsocketserver-pro.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-chatclient-html.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-chatserver-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-chatserver-h.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-example.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-main-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-simplechat-simplechat-pro.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-example.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-main-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-sslechoclient-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-sslechoclient-h.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoclient-sslechoclient-pro.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-example.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-main-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-securesocketclient-qrc.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoclient-html.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoserver-cpp.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoserver-h.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-sslechoserver-sslechoserver-pro.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets-testing.html %%QT_DOCDIR%%/qtwebsockets/qtwebsockets.index %%QT_DOCDIR%%/qtwebsockets/qtwebsockets.qhp %%QT_DOCDIR%%/qtwebsockets/qtwebsockets.qhp.sha1 %%QT_DOCDIR%%/qtwebsockets/qtwebsockets.tags %%QT_DOCDIR%%/qtwebsockets/qwebsocket-members.html %%QT_DOCDIR%%/qtwebsockets/qwebsocket-obsolete.html %%QT_DOCDIR%%/qtwebsockets/qwebsocket.html %%QT_DOCDIR%%/qtwebsockets/qwebsocketcorsauthenticator-members.html %%QT_DOCDIR%%/qtwebsockets/qwebsocketcorsauthenticator.html %%QT_DOCDIR%%/qtwebsockets/qwebsocketprotocol.html %%QT_DOCDIR%%/qtwebsockets/qwebsocketserver-members.html %%QT_DOCDIR%%/qtwebsockets/qwebsocketserver-obsolete.html %%QT_DOCDIR%%/qtwebsockets/qwebsocketserver.html %%QT_DOCDIR%%/qtwebsockets/style/offline-simple.css %%QT_DOCDIR%%/qtwebsockets/style/offline.css %%QT_DOCDIR%%/qtwebsockets/websockets-overview.html %%QT_DOCDIR%%/qtwebview.qch %%QT_DOCDIR%%/qtwebview/examples-manifest.xml %%QT_DOCDIR%%/qtwebview/images/arrow_bc.png %%QT_DOCDIR%%/qtwebview/images/bgrContent.png %%QT_DOCDIR%%/qtwebview/images/btn_next.png %%QT_DOCDIR%%/qtwebview/images/btn_prev.png %%QT_DOCDIR%%/qtwebview/images/bullet_dn.png %%QT_DOCDIR%%/qtwebview/images/bullet_sq.png %%QT_DOCDIR%%/qtwebview/images/home.png %%QT_DOCDIR%%/qtwebview/images/ico_note.png %%QT_DOCDIR%%/qtwebview/images/ico_note_attention.png %%QT_DOCDIR%%/qtwebview/images/ico_out.png %%QT_DOCDIR%%/qtwebview/images/logo.png %%QT_DOCDIR%%/qtwebview/images/used-in-examples/minibrowser/images/left-32.png %%QT_DOCDIR%%/qtwebview/images/used-in-examples/minibrowser/images/refresh-32.png %%QT_DOCDIR%%/qtwebview/images/used-in-examples/minibrowser/images/right-32.png %%QT_DOCDIR%%/qtwebview/images/used-in-examples/minibrowser/images/stop-32.png %%QT_DOCDIR%%/qtwebview/images/webview-example.jpg %%QT_DOCDIR%%/qtwebview/qml-qtwebview-webview-members.html %%QT_DOCDIR%%/qtwebview/qml-qtwebview-webview.html %%QT_DOCDIR%%/qtwebview/qml-qtwebview-webviewloadrequest-members.html %%QT_DOCDIR%%/qtwebview/qml-qtwebview-webviewloadrequest.html %%QT_DOCDIR%%/qtwebview/qtwebview-examples.html %%QT_DOCDIR%%/qtwebview/qtwebview-index.html %%QT_DOCDIR%%/qtwebview/qtwebview-minibrowser-android-loadprogressstyle-qml.html %%QT_DOCDIR%%/qtwebview/qtwebview-minibrowser-example.html %%QT_DOCDIR%%/qtwebview/qtwebview-minibrowser-loadprogressstyle-qml.html %%QT_DOCDIR%%/qtwebview/qtwebview-minibrowser-main-cpp.html %%QT_DOCDIR%%/qtwebview/qtwebview-minibrowser-main-qml.html %%QT_DOCDIR%%/qtwebview/qtwebview-minibrowser-minibrowser-pro.html %%QT_DOCDIR%%/qtwebview/qtwebview-minibrowser-qml-qrc.html %%QT_DOCDIR%%/qtwebview/qtwebview-module.html %%QT_DOCDIR%%/qtwebview/qtwebview-qmlmodule.html %%QT_DOCDIR%%/qtwebview/qtwebview.html %%QT_DOCDIR%%/qtwebview/qtwebview.index %%QT_DOCDIR%%/qtwebview/qtwebview.qhp %%QT_DOCDIR%%/qtwebview/qtwebview.qhp.sha1 %%QT_DOCDIR%%/qtwebview/style/offline-simple.css %%QT_DOCDIR%%/qtwebview/style/offline.css %%QT_DOCDIR%%/qtwidgets.qch %%QT_DOCDIR%%/qtwidgets/application-windows.html %%QT_DOCDIR%%/qtwidgets/dialogs.html %%QT_DOCDIR%%/qtwidgets/examples-desktop.html %%QT_DOCDIR%%/qtwidgets/examples-dialogs.html %%QT_DOCDIR%%/qtwidgets/examples-graphicsview.html %%QT_DOCDIR%%/qtwidgets/examples-itemviews.html %%QT_DOCDIR%%/qtwidgets/examples-mainwindow.html %%QT_DOCDIR%%/qtwidgets/examples-manifest.xml %%QT_DOCDIR%%/qtwidgets/examples-painting.html %%QT_DOCDIR%%/qtwidgets/examples-richtext.html %%QT_DOCDIR%%/qtwidgets/examples-widgets.html %%QT_DOCDIR%%/qtwidgets/focus.html %%QT_DOCDIR%%/qtwidgets/gallery.html %%QT_DOCDIR%%/qtwidgets/gestures-overview.html %%QT_DOCDIR%%/qtwidgets/graphicsview.html %%QT_DOCDIR%%/qtwidgets/guibooks.html %%QT_DOCDIR%%/qtwidgets/images/addressbook-adddialog.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-classes.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-editdialog.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-example.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-filemenu.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-newaddresstab.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-signals.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-toolsmenu.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part1-labeled-layout.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part1-labeled-screenshot.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part1-screenshot.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-add-contact.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-add-flowchart.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-add-successful.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-labeled-layout.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-signals-and-slots.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part2-stretch-effects.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part3-labeled-layout.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part3-linkedlist.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part3-screenshot.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part4-remove.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-finddialog.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-notfound.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-screenshot.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part5-signals-and-slots.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part6-load.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part6-save.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part6-screenshot.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-part7-screenshot.png %%QT_DOCDIR%%/qtwidgets/images/addressbook-tutorial-screenshot.png %%QT_DOCDIR%%/qtwidgets/images/affine-demo.png %%QT_DOCDIR%%/qtwidgets/images/analogclock-example.png %%QT_DOCDIR%%/qtwidgets/images/analogclock-viewport.png %%QT_DOCDIR%%/qtwidgets/images/animatedtiles-example.png %%QT_DOCDIR%%/qtwidgets/images/application-menus.png %%QT_DOCDIR%%/qtwidgets/images/application.png %%QT_DOCDIR%%/qtwidgets/images/arrow_bc.png %%QT_DOCDIR%%/qtwidgets/images/assistant-toolbar.png %%QT_DOCDIR%%/qtwidgets/images/basicdrawing-example.png %%QT_DOCDIR%%/qtwidgets/images/basicgraphicslayouts-example.png %%QT_DOCDIR%%/qtwidgets/images/basiclayouts-example.png %%QT_DOCDIR%%/qtwidgets/images/basicsortfiltermodel-example.png %%QT_DOCDIR%%/qtwidgets/images/bgrContent.png %%QT_DOCDIR%%/qtwidgets/images/blurpickereffect-example.png %%QT_DOCDIR%%/qtwidgets/images/borderlayout-example.png %%QT_DOCDIR%%/qtwidgets/images/boxes-demo.png %%QT_DOCDIR%%/qtwidgets/images/branchindicatorimage.png %%QT_DOCDIR%%/qtwidgets/images/btn_next.png %%QT_DOCDIR%%/qtwidgets/images/btn_prev.png %%QT_DOCDIR%%/qtwidgets/images/bullet_dn.png %%QT_DOCDIR%%/qtwidgets/images/bullet_sq.png %%QT_DOCDIR%%/qtwidgets/images/button.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-gnomelayout-horizontal.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-gnomelayout-vertical.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-kdelayout-horizontal.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-kdelayout-vertical.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-mac-modeless-horizontal.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-mac-modeless-vertical.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-maclayout-horizontal.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-maclayout-vertical.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-winlayout-horizontal.png %%QT_DOCDIR%%/qtwidgets/images/buttonbox-winlayout-vertical.png %%QT_DOCDIR%%/qtwidgets/images/calculator-example.png %%QT_DOCDIR%%/qtwidgets/images/calculator-ugly.png %%QT_DOCDIR%%/qtwidgets/images/calendar-example.png %%QT_DOCDIR%%/qtwidgets/images/calendarwidgetexample.png %%QT_DOCDIR%%/qtwidgets/images/charactermap-example.png %%QT_DOCDIR%%/qtwidgets/images/chart-example.png %%QT_DOCDIR%%/qtwidgets/images/checkbox.png %%QT_DOCDIR%%/qtwidgets/images/checkboxes-exclusive.png %%QT_DOCDIR%%/qtwidgets/images/checkboxes-non-exclusive.png %%QT_DOCDIR%%/qtwidgets/images/checkboxexample.png %%QT_DOCDIR%%/qtwidgets/images/chip-demo.png %%QT_DOCDIR%%/qtwidgets/images/classwizard-flow.png %%QT_DOCDIR%%/qtwidgets/images/classwizard.png %%QT_DOCDIR%%/qtwidgets/images/clock.png %%QT_DOCDIR%%/qtwidgets/images/codecs-example.png %%QT_DOCDIR%%/qtwidgets/images/codeeditor-example.png %%QT_DOCDIR%%/qtwidgets/images/collidingmice-example.png %%QT_DOCDIR%%/qtwidgets/images/coloreditorfactoryimage.png %%QT_DOCDIR%%/qtwidgets/images/columnview.png %%QT_DOCDIR%%/qtwidgets/images/combobox.png %%QT_DOCDIR%%/qtwidgets/images/comboboximage.png %%QT_DOCDIR%%/qtwidgets/images/combowidgetmapper-example.png %%QT_DOCDIR%%/qtwidgets/images/completer-example-country.png %%QT_DOCDIR%%/qtwidgets/images/completer-example-dirmodel.png %%QT_DOCDIR%%/qtwidgets/images/completer-example-qdirmodel.png %%QT_DOCDIR%%/qtwidgets/images/completer-example-word.png %%QT_DOCDIR%%/qtwidgets/images/completer-example.png %%QT_DOCDIR%%/qtwidgets/images/composition-demo.png %%QT_DOCDIR%%/qtwidgets/images/concentriccircles-example.png %%QT_DOCDIR%%/qtwidgets/images/conceptualpushbuttontree.png %%QT_DOCDIR%%/qtwidgets/images/customcompleter-example.png %%QT_DOCDIR%%/qtwidgets/images/customcompleter-insertcompletion.png %%QT_DOCDIR%%/qtwidgets/images/customsortfiltermodel-example.png %%QT_DOCDIR%%/qtwidgets/images/deform-demo.png %%QT_DOCDIR%%/qtwidgets/images/designer-stylesheet-options.png %%QT_DOCDIR%%/qtwidgets/images/designer-stylesheet-usage.png %%QT_DOCDIR%%/qtwidgets/images/designer-validator-highlighter.png %%QT_DOCDIR%%/qtwidgets/images/desktop-examples.png %%QT_DOCDIR%%/qtwidgets/images/diagramscene.png %%QT_DOCDIR%%/qtwidgets/images/dialog-examples.png %%QT_DOCDIR%%/qtwidgets/images/digitalclock-example.png %%QT_DOCDIR%%/qtwidgets/images/dirview-example.png %%QT_DOCDIR%%/qtwidgets/images/dockwidget.png %%QT_DOCDIR%%/qtwidgets/images/dockwidgetimage.png %%QT_DOCDIR%%/qtwidgets/images/dockwidgets-example.png %%QT_DOCDIR%%/qtwidgets/images/draganddroppuzzle-example.png %%QT_DOCDIR%%/qtwidgets/images/dragdroprobot-example.png %%QT_DOCDIR%%/qtwidgets/images/draggableicons-example.png %%QT_DOCDIR%%/qtwidgets/images/draggabletext-example.png %%QT_DOCDIR%%/qtwidgets/images/dropsite-example.png %%QT_DOCDIR%%/qtwidgets/images/dummy_tree.png %%QT_DOCDIR%%/qtwidgets/images/dynamiclayouts-example.png %%QT_DOCDIR%%/qtwidgets/images/easing-example.png %%QT_DOCDIR%%/qtwidgets/images/echopluginexample.png %%QT_DOCDIR%%/qtwidgets/images/elasticnodes-example.png %%QT_DOCDIR%%/qtwidgets/images/elidedlabel-example.png %%QT_DOCDIR%%/qtwidgets/images/embeddeddialogs-demo.png %%QT_DOCDIR%%/qtwidgets/images/example_model.png %%QT_DOCDIR%%/qtwidgets/images/extension-example.png %%QT_DOCDIR%%/qtwidgets/images/extension_more.png %%QT_DOCDIR%%/qtwidgets/images/factorial-example.png %%QT_DOCDIR%%/qtwidgets/images/fademessageeffect-example-faded.png %%QT_DOCDIR%%/qtwidgets/images/fademessageeffect-example.png %%QT_DOCDIR%%/qtwidgets/images/fetchmore-example.png %%QT_DOCDIR%%/qtwidgets/images/filedialogurls.png %%QT_DOCDIR%%/qtwidgets/images/findfiles-example.png %%QT_DOCDIR%%/qtwidgets/images/findfiles_progress_dialog.png %%QT_DOCDIR%%/qtwidgets/images/flowlayout-example.png %%QT_DOCDIR%%/qtwidgets/images/fontsampler-example.png %%QT_DOCDIR%%/qtwidgets/images/frames.png %%QT_DOCDIR%%/qtwidgets/images/fridgemagnets-example.png %%QT_DOCDIR%%/qtwidgets/images/frozencolumn-example.png %%QT_DOCDIR%%/qtwidgets/images/frozencolumn-tableview.png %%QT_DOCDIR%%/qtwidgets/images/fusion-calendarwidget.png %%QT_DOCDIR%%/qtwidgets/images/fusion-colordialog.png %%QT_DOCDIR%%/qtwidgets/images/fusion-combobox.png %%QT_DOCDIR%%/qtwidgets/images/fusion-fontdialog.png %%QT_DOCDIR%%/qtwidgets/images/fusion-label.png %%QT_DOCDIR%%/qtwidgets/images/fusion-menu.png %%QT_DOCDIR%%/qtwidgets/images/fusion-progressdialog.png %%QT_DOCDIR%%/qtwidgets/images/fusion-pushbutton-menu.png %%QT_DOCDIR%%/qtwidgets/images/fusion-statusbar-sizegrip.png %%QT_DOCDIR%%/qtwidgets/images/fusion-style.png %%QT_DOCDIR%%/qtwidgets/images/fusion-tabbar-truncated.png %%QT_DOCDIR%%/qtwidgets/images/fusion-tabbar.png %%QT_DOCDIR%%/qtwidgets/images/fusion-tabwidget.png %%QT_DOCDIR%%/qtwidgets/images/geometry.png %%QT_DOCDIR%%/qtwidgets/images/gradients-demo.png %%QT_DOCDIR%%/qtwidgets/images/graphicsanchorlayout-example.png %%QT_DOCDIR%%/qtwidgets/images/graphicseffect-blur.png %%QT_DOCDIR%%/qtwidgets/images/graphicseffect-colorize.png %%QT_DOCDIR%%/qtwidgets/images/graphicseffect-drop-shadow.png %%QT_DOCDIR%%/qtwidgets/images/graphicseffect-opacity.png %%QT_DOCDIR%%/qtwidgets/images/graphicseffect-plain.png %%QT_DOCDIR%%/qtwidgets/images/graphicseffect-widget.png %%QT_DOCDIR%%/qtwidgets/images/graphicsflowlayout-example.png %%QT_DOCDIR%%/qtwidgets/images/graphicssimpleanchorlayout-example.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-ellipseitem-pie.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-ellipseitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-examples.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-items.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-lineitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-parentchild.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-pathitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-pixmapitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-polygonitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-rectitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-simpletextitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-textitem.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-view.png %%QT_DOCDIR%%/qtwidgets/images/graphicsview-zorder.png %%QT_DOCDIR%%/qtwidgets/images/groupbox-example.png %%QT_DOCDIR%%/qtwidgets/images/groupbox.png %%QT_DOCDIR%%/qtwidgets/images/groupboximage.png %%QT_DOCDIR%%/qtwidgets/images/header.png %%QT_DOCDIR%%/qtwidgets/images/headerimage.png %%QT_DOCDIR%%/qtwidgets/images/home.png %%QT_DOCDIR%%/qtwidgets/images/i18n-example.png %%QT_DOCDIR%%/qtwidgets/images/ico_note.png %%QT_DOCDIR%%/qtwidgets/images/ico_note_attention.png %%QT_DOCDIR%%/qtwidgets/images/ico_out.png %%QT_DOCDIR%%/qtwidgets/images/icons-example.png %%QT_DOCDIR%%/qtwidgets/images/icons-view-menu.png %%QT_DOCDIR%%/qtwidgets/images/icons_find_normal.png %%QT_DOCDIR%%/qtwidgets/images/icons_find_normal_disabled.png %%QT_DOCDIR%%/qtwidgets/images/icons_images_groupbox.png %%QT_DOCDIR%%/qtwidgets/images/icons_monkey.png %%QT_DOCDIR%%/qtwidgets/images/icons_monkey_active.png %%QT_DOCDIR%%/qtwidgets/images/icons_monkey_mess.png %%QT_DOCDIR%%/qtwidgets/images/icons_preview_area.png %%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_16x16.png %%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_17x17.png %%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_32x32.png %%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_33x33.png %%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_48x48.png %%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_64x64.png %%QT_DOCDIR%%/qtwidgets/images/icons_qt_extended_8x8.png %%QT_DOCDIR%%/qtwidgets/images/icons_size_groupbox.png %%QT_DOCDIR%%/qtwidgets/images/icons_size_spinbox.png %%QT_DOCDIR%%/qtwidgets/images/imagecomposition-example.png %%QT_DOCDIR%%/qtwidgets/images/imagegestures-example.jpg %%QT_DOCDIR%%/qtwidgets/images/imageviewer-example.png %%QT_DOCDIR%%/qtwidgets/images/imageviewer-fit_to_window_1.png %%QT_DOCDIR%%/qtwidgets/images/imageviewer-fit_to_window_2.png %%QT_DOCDIR%%/qtwidgets/images/imageviewer-original_size.png %%QT_DOCDIR%%/qtwidgets/images/imageviewer-zoom_in_1.png %%QT_DOCDIR%%/qtwidgets/images/imageviewer-zoom_in_2.png %%QT_DOCDIR%%/qtwidgets/images/inputdialogs.png %%QT_DOCDIR%%/qtwidgets/images/interview-demo.png %%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-indexes.png %%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-items.png %%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-model.png %%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel-values.png %%QT_DOCDIR%%/qtwidgets/images/itemviews-editabletreemodel.png %%QT_DOCDIR%%/qtwidgets/images/itemviews-examples.png %%QT_DOCDIR%%/qtwidgets/images/itemviewspuzzle-example.png %%QT_DOCDIR%%/qtwidgets/images/layout1.png %%QT_DOCDIR%%/qtwidgets/images/layout2.png %%QT_DOCDIR%%/qtwidgets/images/licensewizard-example.png %%QT_DOCDIR%%/qtwidgets/images/licensewizard-flow.png %%QT_DOCDIR%%/qtwidgets/images/lineedits-example.png %%QT_DOCDIR%%/qtwidgets/images/list_table_tree.png %%QT_DOCDIR%%/qtwidgets/images/listview.png %%QT_DOCDIR%%/qtwidgets/images/logo.png %%QT_DOCDIR%%/qtwidgets/images/macos-lineedit.png %%QT_DOCDIR%%/qtwidgets/images/macos-progressbar.png %%QT_DOCDIR%%/qtwidgets/images/macos-style.png %%QT_DOCDIR%%/qtwidgets/images/macos-style2.png %%QT_DOCDIR%%/qtwidgets/images/macos-tabwidget.png %%QT_DOCDIR%%/qtwidgets/images/mainwindow-demo.png %%QT_DOCDIR%%/qtwidgets/images/mainwindow-docks-example.png %%QT_DOCDIR%%/qtwidgets/images/mainwindow-docks.png %%QT_DOCDIR%%/qtwidgets/images/mainwindow-examples.png %%QT_DOCDIR%%/qtwidgets/images/mainwindowlayout.png %%QT_DOCDIR%%/qtwidgets/images/mdi-cascade.png %%QT_DOCDIR%%/qtwidgets/images/mdi-example.png %%QT_DOCDIR%%/qtwidgets/images/mdi-tile.png %%QT_DOCDIR%%/qtwidgets/images/menu.png %%QT_DOCDIR%%/qtwidgets/images/menubar.png %%QT_DOCDIR%%/qtwidgets/images/menubarimage.png %%QT_DOCDIR%%/qtwidgets/images/menuimage.png %%QT_DOCDIR%%/qtwidgets/images/menus-example.png %%QT_DOCDIR%%/qtwidgets/images/modelview-combobox.png %%QT_DOCDIR%%/qtwidgets/images/modelview-header.png %%QT_DOCDIR%%/qtwidgets/images/modelview-models.png %%QT_DOCDIR%%/qtwidgets/images/modelview-overview.png %%QT_DOCDIR%%/qtwidgets/images/modelview-roles.png %%QT_DOCDIR%%/qtwidgets/images/modelview-tablemodel.png %%QT_DOCDIR%%/qtwidgets/images/modelview-treemodel.png %%QT_DOCDIR%%/qtwidgets/images/modelview.png %%QT_DOCDIR%%/qtwidgets/images/mousebutton-buttontester.png %%QT_DOCDIR%%/qtwidgets/images/move-blocks-chart.png %%QT_DOCDIR%%/qtwidgets/images/moveblocks-example.png %%QT_DOCDIR%%/qtwidgets/images/movie-example.png %%QT_DOCDIR%%/qtwidgets/images/msgbox1.png %%QT_DOCDIR%%/qtwidgets/images/msgbox2.png %%QT_DOCDIR%%/qtwidgets/images/msgbox3.png %%QT_DOCDIR%%/qtwidgets/images/msgbox4.png %%QT_DOCDIR%%/qtwidgets/images/notepad1.png %%QT_DOCDIR%%/qtwidgets/images/notepad2.png %%QT_DOCDIR%%/qtwidgets/images/notepad3.png %%QT_DOCDIR%%/qtwidgets/images/notepad4.png %%QT_DOCDIR%%/qtwidgets/images/orderform-example-detailsdialog.png %%QT_DOCDIR%%/qtwidgets/images/orderform-example.png %%QT_DOCDIR%%/qtwidgets/images/padnavigator-example.png %%QT_DOCDIR%%/qtwidgets/images/painterpaths-example.png %%QT_DOCDIR%%/qtwidgets/images/painting-examples.png %%QT_DOCDIR%%/qtwidgets/images/paintsystem-icon.png %%QT_DOCDIR%%/qtwidgets/images/paintsystem-stylepainter.png %%QT_DOCDIR%%/qtwidgets/images/pangesture.png %%QT_DOCDIR%%/qtwidgets/images/parent-child-widgets.png %%QT_DOCDIR%%/qtwidgets/images/pathstroke-demo.png %%QT_DOCDIR%%/qtwidgets/images/pinchgesture.png %%QT_DOCDIR%%/qtwidgets/images/pingpong-example.png %%QT_DOCDIR%%/qtwidgets/images/pixelator-example.png %%QT_DOCDIR%%/qtwidgets/images/plugandpaint-plugindialog.png %%QT_DOCDIR%%/qtwidgets/images/plugandpaint.png %%QT_DOCDIR%%/qtwidgets/images/progressBar-stylesheet.png %%QT_DOCDIR%%/qtwidgets/images/progressBar2-stylesheet.png %%QT_DOCDIR%%/qtwidgets/images/progressbar.png %%QT_DOCDIR%%/qtwidgets/images/progressbarimage.png %%QT_DOCDIR%%/qtwidgets/images/propagation-custom.png %%QT_DOCDIR%%/qtwidgets/images/propagation-standard.png %%QT_DOCDIR%%/qtwidgets/images/pushbutton.png %%QT_DOCDIR%%/qtwidgets/images/qactiongroup-align.png %%QT_DOCDIR%%/qtwidgets/images/qcalendarwidget-grid.png %%QT_DOCDIR%%/qtwidgets/images/qcalendarwidget-maximum.png %%QT_DOCDIR%%/qtwidgets/images/qcalendarwidget-minimum.png %%QT_DOCDIR%%/qtwidgets/images/qcolumnview.png %%QT_DOCDIR%%/qtwidgets/images/qcompleter.png %%QT_DOCDIR%%/qtwidgets/images/qdesktopwidget.png %%QT_DOCDIR%%/qtwidgets/images/qerrormessage.png %%QT_DOCDIR%%/qtwidgets/images/qformlayout-kde.png %%QT_DOCDIR%%/qtwidgets/images/qformlayout-mac.png %%QT_DOCDIR%%/qtwidgets/images/qformlayout-qpe.png %%QT_DOCDIR%%/qtwidgets/images/qformlayout-win.png %%QT_DOCDIR%%/qtwidgets/images/qformlayout-with-6-children.png %%QT_DOCDIR%%/qtwidgets/images/qgraphicsproxywidget-embed.png %%QT_DOCDIR%%/qtwidgets/images/qgridlayout-with-5-children.png %%QT_DOCDIR%%/qtwidgets/images/qgridlayout.png %%QT_DOCDIR%%/qtwidgets/images/qhboxlayout-with-5-children.png %%QT_DOCDIR%%/qtwidgets/images/qmdisubwindowlayout.png %%QT_DOCDIR%%/qtwidgets/images/qmessagebox-crit.png %%QT_DOCDIR%%/qtwidgets/images/qmessagebox-info.png %%QT_DOCDIR%%/qtwidgets/images/qmessagebox-quest.png %%QT_DOCDIR%%/qtwidgets/images/qmessagebox-warn.png %%QT_DOCDIR%%/qtwidgets/images/qscrollarea-noscrollbars.png %%QT_DOCDIR%%/qtwidgets/images/qscrollarea-onescrollbar.png %%QT_DOCDIR%%/qtwidgets/images/qscrollarea-twoscrollbars.png %%QT_DOCDIR%%/qtwidgets/images/qscrollbar-picture.png %%QT_DOCDIR%%/qtwidgets/images/qscrollbar-values.png %%QT_DOCDIR%%/qtwidgets/images/qspinbox-plusminus.png %%QT_DOCDIR%%/qtwidgets/images/qspinbox-updown.png %%QT_DOCDIR%%/qtwidgets/images/qstyle-comboboxes.png %%QT_DOCDIR%%/qtwidgets/images/qstyleoptiontoolbar-position.png %%QT_DOCDIR%%/qtwidgets/images/qtableview-resized.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-aero1.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-aero2.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-classic1.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-classic2.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-mac1.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-mac2.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-macpage.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-modern1.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-modern2.png %%QT_DOCDIR%%/qtwidgets/images/qtwizard-nonmacpage.png %%QT_DOCDIR%%/qtwidgets/images/qundoview.png %%QT_DOCDIR%%/qtwidgets/images/qvboxlayout-with-5-children.png %%QT_DOCDIR%%/qtwidgets/images/readonlytable_role.png %%QT_DOCDIR%%/qtwidgets/images/regexp-example.png %%QT_DOCDIR%%/qtwidgets/images/regularexpression-example.png %%QT_DOCDIR%%/qtwidgets/images/richtext-examples.png %%QT_DOCDIR%%/qtwidgets/images/rogue-example.png %%QT_DOCDIR%%/qtwidgets/images/rogue-statechart.png %%QT_DOCDIR%%/qtwidgets/images/rubberband.png %%QT_DOCDIR%%/qtwidgets/images/rubberbandimage.png %%QT_DOCDIR%%/qtwidgets/images/screenshot-example.png %%QT_DOCDIR%%/qtwidgets/images/scribble-example.png %%QT_DOCDIR%%/qtwidgets/images/scrollbar.png %%QT_DOCDIR%%/qtwidgets/images/scrollbarimage.png %%QT_DOCDIR%%/qtwidgets/images/sdi-example.png %%QT_DOCDIR%%/qtwidgets/images/selected-items1.png %%QT_DOCDIR%%/qtwidgets/images/selected-items2.png %%QT_DOCDIR%%/qtwidgets/images/selected-items3.png %%QT_DOCDIR%%/qtwidgets/images/selection-extended.png %%QT_DOCDIR%%/qtwidgets/images/selection-multi.png %%QT_DOCDIR%%/qtwidgets/images/selection-single.png %%QT_DOCDIR%%/qtwidgets/images/selection2.png %%QT_DOCDIR%%/qtwidgets/images/settingseditor-example.png %%QT_DOCDIR%%/qtwidgets/images/shapedclock-dragging.png %%QT_DOCDIR%%/qtwidgets/images/shapedclock-example.png %%QT_DOCDIR%%/qtwidgets/images/shareddirmodel.png %%QT_DOCDIR%%/qtwidgets/images/sharedmodel-tableviews.png %%QT_DOCDIR%%/qtwidgets/images/sharedselection-tableviews.png %%QT_DOCDIR%%/qtwidgets/images/signals-n-slots-aw-nat.png %%QT_DOCDIR%%/qtwidgets/images/simpleanchorlayout-example.png %%QT_DOCDIR%%/qtwidgets/images/simpledommodel-example.png %%QT_DOCDIR%%/qtwidgets/images/simpletreemodel-example.png %%QT_DOCDIR%%/qtwidgets/images/simplewidgetmapper-example.png %%QT_DOCDIR%%/qtwidgets/images/sizegrip.png %%QT_DOCDIR%%/qtwidgets/images/sizegripimage.png %%QT_DOCDIR%%/qtwidgets/images/slider.png %%QT_DOCDIR%%/qtwidgets/images/sliderimage.png %%QT_DOCDIR%%/qtwidgets/images/sliders-example.png %%QT_DOCDIR%%/qtwidgets/images/spinbox.png %%QT_DOCDIR%%/qtwidgets/images/spinboxdelegate-example.png %%QT_DOCDIR%%/qtwidgets/images/spinboxes-example.png %%QT_DOCDIR%%/qtwidgets/images/spinboximage.png %%QT_DOCDIR%%/qtwidgets/images/spreadsheet-demo.png %%QT_DOCDIR%%/qtwidgets/images/standard-views.png %%QT_DOCDIR%%/qtwidgets/images/standarddialogs-example.png %%QT_DOCDIR%%/qtwidgets/images/standardwidget.png %%QT_DOCDIR%%/qtwidgets/images/stardelegate.png %%QT_DOCDIR%%/qtwidgets/images/states-example.png %%QT_DOCDIR%%/qtwidgets/images/stickman-example.png %%QT_DOCDIR%%/qtwidgets/images/stickman-example1.png %%QT_DOCDIR%%/qtwidgets/images/stickman-example2.png %%QT_DOCDIR%%/qtwidgets/images/stickman-example3.png %%QT_DOCDIR%%/qtwidgets/images/stringlistmodel.png %%QT_DOCDIR%%/qtwidgets/images/stylepluginexample.png %%QT_DOCDIR%%/qtwidgets/images/styles-3d.png %%QT_DOCDIR%%/qtwidgets/images/styles-aliasing.png %%QT_DOCDIR%%/qtwidgets/images/styles-disabledwood.png %%QT_DOCDIR%%/qtwidgets/images/styles-enabledwood.png %%QT_DOCDIR%%/qtwidgets/images/styles-woodbuttons.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-border-image-normal.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-border-image-stretched.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-border-image-wrong.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-boxmodel.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-closed.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-end.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-more.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-branch-open.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-coffee-cleanlooks.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-pagefold-mac.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-pagefold.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-redbutton1.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-redbutton2.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-redbutton3.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-scrollbar1.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-scrollbar2.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-treeview.png %%QT_DOCDIR%%/qtwidgets/images/stylesheet-vline.png %%QT_DOCDIR%%/qtwidgets/images/sub-attaq-demo.png %%QT_DOCDIR%%/qtwidgets/images/swipegesture.png %%QT_DOCDIR%%/qtwidgets/images/syntaxhighlighter-example.png %%QT_DOCDIR%%/qtwidgets/images/system-tray.png %%QT_DOCDIR%%/qtwidgets/images/systemtray-editor.png %%QT_DOCDIR%%/qtwidgets/images/systemtray-example.png %%QT_DOCDIR%%/qtwidgets/images/tab.png %%QT_DOCDIR%%/qtwidgets/images/tabWidget-stylesheet1.png %%QT_DOCDIR%%/qtwidgets/images/tabWidget-stylesheet2.png %%QT_DOCDIR%%/qtwidgets/images/tabWidget-stylesheet3.png %%QT_DOCDIR%%/qtwidgets/images/tabdialog-example.png %%QT_DOCDIR%%/qtwidgets/images/tableWidget-stylesheet.png %%QT_DOCDIR%%/qtwidgets/images/tabletexample.png %%QT_DOCDIR%%/qtwidgets/images/tableview.png %%QT_DOCDIR%%/qtwidgets/images/tabwidget.png %%QT_DOCDIR%%/qtwidgets/images/tetrix-example.png %%QT_DOCDIR%%/qtwidgets/images/textedit-demo.png %%QT_DOCDIR%%/qtwidgets/images/titlebar.png %%QT_DOCDIR%%/qtwidgets/images/titlebarimage.png %%QT_DOCDIR%%/qtwidgets/images/toolbar.png %%QT_DOCDIR%%/qtwidgets/images/toolbarimage.png %%QT_DOCDIR%%/qtwidgets/images/toolbox.png %%QT_DOCDIR%%/qtwidgets/images/toolboximage.png %%QT_DOCDIR%%/qtwidgets/images/toolbutton.png %%QT_DOCDIR%%/qtwidgets/images/toolbuttonimage.png %%QT_DOCDIR%%/qtwidgets/images/tooltips-example.png %%QT_DOCDIR%%/qtwidgets/images/touch-dials-example.png %%QT_DOCDIR%%/qtwidgets/images/touch-fingerpaint-example.png %%QT_DOCDIR%%/qtwidgets/images/touch-knobs-example.png %%QT_DOCDIR%%/qtwidgets/images/touch-pinchzoom-example.png %%QT_DOCDIR%%/qtwidgets/images/trafficlight-example.png %%QT_DOCDIR%%/qtwidgets/images/trafficlight-example1.png %%QT_DOCDIR%%/qtwidgets/images/trafficlight-example2.png %%QT_DOCDIR%%/qtwidgets/images/transformations-example.png %%QT_DOCDIR%%/qtwidgets/images/transitions.png %%QT_DOCDIR%%/qtwidgets/images/tree_2_with_algorithm.png %%QT_DOCDIR%%/qtwidgets/images/treemodel-structure.png %%QT_DOCDIR%%/qtwidgets/images/treemodelcompleter-example.png %%QT_DOCDIR%%/qtwidgets/images/treeview.png %%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-conclusion.png %%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-flow.png %%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-introduction.png %%QT_DOCDIR%%/qtwidgets/images/trivialwizard-example-registration.png %%QT_DOCDIR%%/qtwidgets/images/undodemo.png %%QT_DOCDIR%%/qtwidgets/images/undoframeworkexample.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/Time-For-Lunch-2.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/centered.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/ellipse.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/figure8.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/kinetic.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/random.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/animatedtiles/images/tile.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/easing/images/qt-logo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/states/accessories-dictionary.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/states/akregator.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/states/digikam.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/states/help-browser.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/states/k3b.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/states/kchart.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/background.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/boat.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/bomb.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/boat/step1.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/boat/step2.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/boat/step3.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/boat/step4.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/submarine/step1.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/submarine/step2.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/submarine/step3.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/explosion/submarine/step4.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/submarine.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/surface.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/big/torpedo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/small/background.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/small/boat.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/small/bomb.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/small/submarine.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/small/surface.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/small/torpedo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-a.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-a2.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-b.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-dash.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-excl.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-q.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-s.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-t.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-t2.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/animation/sub-attaq/pics/welcome/logo-u.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/desktop/systray/images/bad.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/desktop/systray/images/heart.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/desktop/systray/images/trash.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/background.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/banner.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/logo1.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/logo2.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/logo3.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/watermark1.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/classwizard/images/watermark2.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/licensewizard/images/logo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/dialogs/licensewizard/images/watermark.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/draganddrop/draggableicons/images/boat.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/draganddrop/draggableicons/images/car.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/draganddrop/draggableicons/images/house.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/draganddrop/puzzle/example.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/accessories-calculator.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/accessories-text-editor.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/background.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/help-browser.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/internet-group-chat.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/internet-mail.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/internet-web-browser.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/office-calendar.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/blurpicker/images/system-users.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/effects/fademessage/background.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/basicgraphicslayouts/images/block.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/cubemap_negx.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/cubemap_negy.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/cubemap_negz.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/cubemap_posx.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/cubemap_posy.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/cubemap_posz.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/qt-logo.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/qt-logo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/smiley.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/boxes/square.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/chip/fileprint.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/chip/qt4logo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/chip/rotateleft.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/chip/rotateright.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/chip/zoomin.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/chip/zoomout.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/collidingmice/images/cheese.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background1.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background2.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background3.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/background4.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/bold.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/bringtofront.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/delete.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/floodfill.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/italic.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/linecolor.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/linepointer.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/pointer.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/sendtoback.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/textpointer.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/diagramscene/images/underline.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/dragdroprobot/images/head.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/embeddeddialogs/No-Ones-Laughing-3.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/artsfftscope.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/blue_angle_swirl.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_contacts.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_journal.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_mail.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kontact_notes.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/kopeteavailable.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/metacontact_online.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/padnavigator/images/minitools.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/5days.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/details.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/place.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/tabbar.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/title.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/graphicsview/weatheranchorlayout/images/weather-few-clouds.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/customsortfiltermodel/images/find.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/interview/images/folder.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/interview/images/interview.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/interview/images/services.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/pixelator/images/qt.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/puzzle/example.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/itemviews/spreadsheet/images/interview.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/copy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/cut.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/new.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/open.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/paste.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/application/images/save.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/new.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/print.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/save.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/dockwidgets/images/undo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mainwindow/qt.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mainwindow/titlebarCenter.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mainwindow/titlebarLeft.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mainwindow/titlebarRight.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/copy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/cut.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/new.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/open.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/paste.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/mdi/images/save.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/copy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/cut.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/new.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/open.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/paste.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/mainwindows/sdi/images/save.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/affine/bg1.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/basicdrawing/images/brick.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/basicdrawing/images/qt-logo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/composition/flower.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/composition/flower_alpha.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/background.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/blackrectangle.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/butterfly.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/painting/imagecomposition/images/checker.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/logo32.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editcopy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editcut.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editpaste.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editredo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/editundo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/exportpdf.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/filenew.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/fileopen.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/fileprint.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/filesave.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textbold.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textcenter.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textitalic.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textjustify.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textleft.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textright.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/textunder.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/zoomin.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/mac/zoomout.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editcopy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editcut.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editpaste.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editredo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/editundo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/exportpdf.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/filenew.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/fileopen.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/fileprint.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/filesave.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textbold.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textcenter.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textitalic.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textjustify.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textleft.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textright.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/textunder.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/zoomin.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/richtext/textedit/images/win/zoomout.png +%%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/codecs/images/editcopy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/regularexpression/images/copy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/background.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/blue.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/circle.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/exit.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/fileclose.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/filenew.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/fileopen.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/filesave.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/green.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/ok.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/rectangle.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/red.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/redo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/remove.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/triangle.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undo/icons/undo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tools/undoframework/images/cross.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/touch/pinchzoom/images/cheese.jpg %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/bold.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/copy.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/create.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/cut.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/edit_redo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/edit_undo.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/exit.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/font.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/info.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/italic.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/new.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/open.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/paste.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/pencil.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/print.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/save.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/save_as.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/tutorials/notepad/images/underline.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/designer.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/find_disabled.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/find_normal.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_128x128.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_16x16.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_32x32.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_off_64x64.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_128x128.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_16x16.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_32x32.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/monkey_on_64x64.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/qt_extended_16x16.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/qt_extended_32x32.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/icons/images/qt_extended_48x48.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/movie/animation.gif %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/styles/images/woodbackground.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/styles/images/woodbutton.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_checked.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_checked_hover.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_checked_pressed.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked_hover.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked_pressed.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/down_arrow.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/down_arrow_disabled.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/frame.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pagefold.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pushbutton.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pushbutton_hover.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/pushbutton_pressed.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked_hover.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked_pressed.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked_hover.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked_pressed.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/sizegrip.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown_hover.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown_off.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spindown_pressed.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup_hover.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup_off.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/spinup_pressed.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/up_arrow.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/stylesheet/images/up_arrow_disabled.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-airbrush.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-eraser.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-felt-marker.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tablet/images/cursor-pencil.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tooltips/images/circle.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tooltips/images/square.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/tooltips/images/triangle.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/validators/ledoff.png %%QT_DOCDIR%%/qtwidgets/images/used-in-examples/widgets/validators/ledon.png %%QT_DOCDIR%%/qtwidgets/images/validators.png %%QT_DOCDIR%%/qtwidgets/images/weatheranchorlayout-example.png %%QT_DOCDIR%%/qtwidgets/images/whatsthis.png %%QT_DOCDIR%%/qtwidgets/images/widget-examples.png %%QT_DOCDIR%%/qtwidgets/images/widgetdelegate.png %%QT_DOCDIR%%/qtwidgets/images/widgetmapper-combo-mapping.png %%QT_DOCDIR%%/qtwidgets/images/widgetmapper-simple-mapping.png %%QT_DOCDIR%%/qtwidgets/images/widgetmapper.png %%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-childwidget.png %%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-nestedlayouts.png %%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-toplevel.png %%QT_DOCDIR%%/qtwidgets/images/widgets-tutorial-windowlayout.png %%QT_DOCDIR%%/qtwidgets/images/wiggly-example.png %%QT_DOCDIR%%/qtwidgets/images/windowflags-example.png %%QT_DOCDIR%%/qtwidgets/images/windowflags_controllerwindow.png %%QT_DOCDIR%%/qtwidgets/images/windowflags_previewwindow.png %%QT_DOCDIR%%/qtwidgets/images/windows-checkbox.png %%QT_DOCDIR%%/qtwidgets/images/windows-combobox.png %%QT_DOCDIR%%/qtwidgets/images/windows-dateedit.png %%QT_DOCDIR%%/qtwidgets/images/windows-datetimeedit.png %%QT_DOCDIR%%/qtwidgets/images/windows-dial.png %%QT_DOCDIR%%/qtwidgets/images/windows-groupbox.png %%QT_DOCDIR%%/qtwidgets/images/windows-label.png %%QT_DOCDIR%%/qtwidgets/images/windows-lcdnumber.png %%QT_DOCDIR%%/qtwidgets/images/windows-lineedit.png %%QT_DOCDIR%%/qtwidgets/images/windows-listview.png %%QT_DOCDIR%%/qtwidgets/images/windows-progressbar.png %%QT_DOCDIR%%/qtwidgets/images/windows-pushbutton.png %%QT_DOCDIR%%/qtwidgets/images/windows-radiobutton.png %%QT_DOCDIR%%/qtwidgets/images/windows-slider.png %%QT_DOCDIR%%/qtwidgets/images/windows-spinbox.png %%QT_DOCDIR%%/qtwidgets/images/windows-style.png %%QT_DOCDIR%%/qtwidgets/images/windows-style2.png %%QT_DOCDIR%%/qtwidgets/images/windows-tableview.png %%QT_DOCDIR%%/qtwidgets/images/windows-tabwidget.png %%QT_DOCDIR%%/qtwidgets/images/windows-timeedit.png %%QT_DOCDIR%%/qtwidgets/images/windows-treeview.png %%QT_DOCDIR%%/qtwidgets/images/windows-vista-style.png %%QT_DOCDIR%%/qtwidgets/images/windowstabimage.png %%QT_DOCDIR%%/qtwidgets/images/windowsvista-fontcombobox.png %%QT_DOCDIR%%/qtwidgets/images/windowsvista-pushbutton.png %%QT_DOCDIR%%/qtwidgets/images/windowsvista-radiobutton.png %%QT_DOCDIR%%/qtwidgets/images/windowsvista-tabwidget.png %%QT_DOCDIR%%/qtwidgets/images/woodbackground.png %%QT_DOCDIR%%/qtwidgets/images/woodbutton.png %%QT_DOCDIR%%/qtwidgets/layout.html %%QT_DOCDIR%%/qtwidgets/mainwindow.html %%QT_DOCDIR%%/qtwidgets/model-view-programming.html %%QT_DOCDIR%%/qtwidgets/modelview-part2-main-cpp.html %%QT_DOCDIR%%/qtwidgets/modelview.html %%QT_DOCDIR%%/qtwidgets/qabstractbutton-members.html %%QT_DOCDIR%%/qtwidgets/qabstractbutton-obsolete.html %%QT_DOCDIR%%/qtwidgets/qabstractbutton.html %%QT_DOCDIR%%/qtwidgets/qabstractgraphicsshapeitem-members.html %%QT_DOCDIR%%/qtwidgets/qabstractgraphicsshapeitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qabstractgraphicsshapeitem.html %%QT_DOCDIR%%/qtwidgets/qabstractitemdelegate-members.html %%QT_DOCDIR%%/qtwidgets/qabstractitemdelegate-obsolete.html %%QT_DOCDIR%%/qtwidgets/qabstractitemdelegate.html %%QT_DOCDIR%%/qtwidgets/qabstractitemview-members.html %%QT_DOCDIR%%/qtwidgets/qabstractitemview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qabstractitemview.html %%QT_DOCDIR%%/qtwidgets/qabstractscrollarea-members.html %%QT_DOCDIR%%/qtwidgets/qabstractscrollarea-obsolete.html %%QT_DOCDIR%%/qtwidgets/qabstractscrollarea.html %%QT_DOCDIR%%/qtwidgets/qabstractslider-members.html %%QT_DOCDIR%%/qtwidgets/qabstractslider-obsolete.html %%QT_DOCDIR%%/qtwidgets/qabstractslider.html %%QT_DOCDIR%%/qtwidgets/qabstractspinbox-members.html %%QT_DOCDIR%%/qtwidgets/qabstractspinbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qabstractspinbox.html %%QT_DOCDIR%%/qtwidgets/qaccessiblewidget-members.html %%QT_DOCDIR%%/qtwidgets/qaccessiblewidget.html %%QT_DOCDIR%%/qtwidgets/qaction-members.html %%QT_DOCDIR%%/qtwidgets/qaction-obsolete.html %%QT_DOCDIR%%/qtwidgets/qaction.html %%QT_DOCDIR%%/qtwidgets/qactiongroup-members.html %%QT_DOCDIR%%/qtwidgets/qactiongroup-obsolete.html %%QT_DOCDIR%%/qtwidgets/qactiongroup.html %%QT_DOCDIR%%/qtwidgets/qapplication-members.html %%QT_DOCDIR%%/qtwidgets/qapplication-obsolete.html %%QT_DOCDIR%%/qtwidgets/qapplication.html %%QT_DOCDIR%%/qtwidgets/qboxlayout-members.html %%QT_DOCDIR%%/qtwidgets/qboxlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qboxlayout.html %%QT_DOCDIR%%/qtwidgets/qbuttongroup-members.html %%QT_DOCDIR%%/qtwidgets/qbuttongroup-obsolete.html %%QT_DOCDIR%%/qtwidgets/qbuttongroup.html %%QT_DOCDIR%%/qtwidgets/qcalendarwidget-members.html %%QT_DOCDIR%%/qtwidgets/qcalendarwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcalendarwidget.html %%QT_DOCDIR%%/qtwidgets/qcheckbox-members.html %%QT_DOCDIR%%/qtwidgets/qcheckbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcheckbox.html %%QT_DOCDIR%%/qtwidgets/qcolordialog-members.html %%QT_DOCDIR%%/qtwidgets/qcolordialog-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcolordialog.html %%QT_DOCDIR%%/qtwidgets/qcolormap-members.html %%QT_DOCDIR%%/qtwidgets/qcolormap.html %%QT_DOCDIR%%/qtwidgets/qcolumnview-members.html %%QT_DOCDIR%%/qtwidgets/qcolumnview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcolumnview.html %%QT_DOCDIR%%/qtwidgets/qcombobox-members.html %%QT_DOCDIR%%/qtwidgets/qcombobox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcombobox.html %%QT_DOCDIR%%/qtwidgets/qcommandlinkbutton-members.html %%QT_DOCDIR%%/qtwidgets/qcommandlinkbutton-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcommandlinkbutton.html %%QT_DOCDIR%%/qtwidgets/qcommonstyle-members.html %%QT_DOCDIR%%/qtwidgets/qcommonstyle-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcommonstyle.html %%QT_DOCDIR%%/qtwidgets/qcompleter-members.html %%QT_DOCDIR%%/qtwidgets/qcompleter-obsolete.html %%QT_DOCDIR%%/qtwidgets/qcompleter.html %%QT_DOCDIR%%/qtwidgets/qdatawidgetmapper-members.html %%QT_DOCDIR%%/qtwidgets/qdatawidgetmapper-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdatawidgetmapper.html %%QT_DOCDIR%%/qtwidgets/qdateedit-members.html %%QT_DOCDIR%%/qtwidgets/qdateedit-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdateedit.html %%QT_DOCDIR%%/qtwidgets/qdatetimeedit-members.html %%QT_DOCDIR%%/qtwidgets/qdatetimeedit-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdatetimeedit.html %%QT_DOCDIR%%/qtwidgets/qdesktopwidget-members.html %%QT_DOCDIR%%/qtwidgets/qdesktopwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdesktopwidget.html %%QT_DOCDIR%%/qtwidgets/qdial-members.html %%QT_DOCDIR%%/qtwidgets/qdial-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdial.html %%QT_DOCDIR%%/qtwidgets/qdialog-members.html %%QT_DOCDIR%%/qtwidgets/qdialog-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdialog.html %%QT_DOCDIR%%/qtwidgets/qdialogbuttonbox-members.html %%QT_DOCDIR%%/qtwidgets/qdialogbuttonbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdialogbuttonbox.html %%QT_DOCDIR%%/qtwidgets/qdirmodel-members.html %%QT_DOCDIR%%/qtwidgets/qdirmodel-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdirmodel.html %%QT_DOCDIR%%/qtwidgets/qdockwidget-members.html %%QT_DOCDIR%%/qtwidgets/qdockwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdockwidget.html %%QT_DOCDIR%%/qtwidgets/qdoublespinbox-members.html %%QT_DOCDIR%%/qtwidgets/qdoublespinbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qdoublespinbox.html %%QT_DOCDIR%%/qtwidgets/qdrawutil-h.html %%QT_DOCDIR%%/qtwidgets/qerrormessage-members.html %%QT_DOCDIR%%/qtwidgets/qerrormessage-obsolete.html %%QT_DOCDIR%%/qtwidgets/qerrormessage.html %%QT_DOCDIR%%/qtwidgets/qfiledialog-members.html %%QT_DOCDIR%%/qtwidgets/qfiledialog-obsolete.html %%QT_DOCDIR%%/qtwidgets/qfiledialog.html %%QT_DOCDIR%%/qtwidgets/qfileiconprovider-members.html %%QT_DOCDIR%%/qtwidgets/qfileiconprovider.html %%QT_DOCDIR%%/qtwidgets/qfilesystemmodel-members.html %%QT_DOCDIR%%/qtwidgets/qfilesystemmodel-obsolete.html %%QT_DOCDIR%%/qtwidgets/qfilesystemmodel.html %%QT_DOCDIR%%/qtwidgets/qfocusframe-members.html %%QT_DOCDIR%%/qtwidgets/qfocusframe-obsolete.html %%QT_DOCDIR%%/qtwidgets/qfocusframe.html %%QT_DOCDIR%%/qtwidgets/qfontcombobox-members.html %%QT_DOCDIR%%/qtwidgets/qfontcombobox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qfontcombobox.html %%QT_DOCDIR%%/qtwidgets/qfontdialog-members.html %%QT_DOCDIR%%/qtwidgets/qfontdialog-obsolete.html %%QT_DOCDIR%%/qtwidgets/qfontdialog.html %%QT_DOCDIR%%/qtwidgets/qformlayout-members.html %%QT_DOCDIR%%/qtwidgets/qformlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qformlayout-takerowresult-members.html %%QT_DOCDIR%%/qtwidgets/qformlayout-takerowresult.html %%QT_DOCDIR%%/qtwidgets/qformlayout.html %%QT_DOCDIR%%/qtwidgets/qframe-members.html %%QT_DOCDIR%%/qtwidgets/qframe-obsolete.html %%QT_DOCDIR%%/qtwidgets/qframe.html %%QT_DOCDIR%%/qtwidgets/qgesture-members.html %%QT_DOCDIR%%/qtwidgets/qgesture-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgesture.html %%QT_DOCDIR%%/qtwidgets/qgestureevent-members.html %%QT_DOCDIR%%/qtwidgets/qgestureevent.html %%QT_DOCDIR%%/qtwidgets/qgesturerecognizer-members.html %%QT_DOCDIR%%/qtwidgets/qgesturerecognizer.html %%QT_DOCDIR%%/qtwidgets/qgraphicsanchor-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsanchor-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsanchor.html %%QT_DOCDIR%%/qtwidgets/qgraphicsanchorlayout-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsanchorlayout.html %%QT_DOCDIR%%/qtwidgets/qgraphicsblureffect-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsblureffect-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsblureffect.html %%QT_DOCDIR%%/qtwidgets/qgraphicscolorizeeffect-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicscolorizeeffect-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicscolorizeeffect.html %%QT_DOCDIR%%/qtwidgets/qgraphicsdropshadoweffect-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsdropshadoweffect-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsdropshadoweffect.html %%QT_DOCDIR%%/qtwidgets/qgraphicseffect-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicseffect-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicseffect.html %%QT_DOCDIR%%/qtwidgets/qgraphicsellipseitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsellipseitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsellipseitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicsgridlayout-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsgridlayout.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitemanimation-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitemanimation-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitemanimation.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitemgroup-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitemgroup-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsitemgroup.html %%QT_DOCDIR%%/qtwidgets/qgraphicslayout-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicslayout.html %%QT_DOCDIR%%/qtwidgets/qgraphicslayoutitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicslayoutitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicslinearlayout-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicslinearlayout.html %%QT_DOCDIR%%/qtwidgets/qgraphicslineitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicslineitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicslineitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicsobject-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsobject-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsobject.html %%QT_DOCDIR%%/qtwidgets/qgraphicsopacityeffect-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsopacityeffect-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsopacityeffect.html %%QT_DOCDIR%%/qtwidgets/qgraphicspathitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicspathitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicspathitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicspixmapitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicspixmapitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicspixmapitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicspolygonitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicspolygonitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicspolygonitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicsproxywidget-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsproxywidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsproxywidget.html %%QT_DOCDIR%%/qtwidgets/qgraphicsrectitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsrectitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsrectitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicsrotation-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsrotation-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsrotation.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscale-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscale-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscale.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscene-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscene-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscene.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenecontextmenuevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenecontextmenuevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenedragdropevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenedragdropevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicssceneevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicssceneevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenehelpevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenehelpevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenehoverevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenehoverevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenemouseevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenemouseevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenemoveevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenemoveevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicssceneresizeevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicssceneresizeevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenewheelevent-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsscenewheelevent.html %%QT_DOCDIR%%/qtwidgets/qgraphicssimpletextitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicssimpletextitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicssimpletextitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicstextitem-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicstextitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicstextitem.html %%QT_DOCDIR%%/qtwidgets/qgraphicstransform-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicstransform-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicstransform.html %%QT_DOCDIR%%/qtwidgets/qgraphicsview-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicsview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicsview.html %%QT_DOCDIR%%/qtwidgets/qgraphicswidget-members.html %%QT_DOCDIR%%/qtwidgets/qgraphicswidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgraphicswidget.html %%QT_DOCDIR%%/qtwidgets/qgridlayout-members.html %%QT_DOCDIR%%/qtwidgets/qgridlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgridlayout.html %%QT_DOCDIR%%/qtwidgets/qgroupbox-members.html %%QT_DOCDIR%%/qtwidgets/qgroupbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qgroupbox.html %%QT_DOCDIR%%/qtwidgets/qhboxlayout-members.html %%QT_DOCDIR%%/qtwidgets/qhboxlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qhboxlayout.html %%QT_DOCDIR%%/qtwidgets/qheaderview-members.html %%QT_DOCDIR%%/qtwidgets/qheaderview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qheaderview.html %%QT_DOCDIR%%/qtwidgets/qinputdialog-members.html %%QT_DOCDIR%%/qtwidgets/qinputdialog-obsolete.html %%QT_DOCDIR%%/qtwidgets/qinputdialog.html %%QT_DOCDIR%%/qtwidgets/qitemdelegate-members.html %%QT_DOCDIR%%/qtwidgets/qitemdelegate-obsolete.html %%QT_DOCDIR%%/qtwidgets/qitemdelegate.html %%QT_DOCDIR%%/qtwidgets/qitemeditorcreator-members.html %%QT_DOCDIR%%/qtwidgets/qitemeditorcreator.html %%QT_DOCDIR%%/qtwidgets/qitemeditorcreatorbase-members.html %%QT_DOCDIR%%/qtwidgets/qitemeditorcreatorbase.html %%QT_DOCDIR%%/qtwidgets/qitemeditorfactory-members.html %%QT_DOCDIR%%/qtwidgets/qitemeditorfactory.html %%QT_DOCDIR%%/qtwidgets/qkeyeventtransition-members.html %%QT_DOCDIR%%/qtwidgets/qkeyeventtransition-obsolete.html %%QT_DOCDIR%%/qtwidgets/qkeyeventtransition.html %%QT_DOCDIR%%/qtwidgets/qkeysequenceedit-members.html %%QT_DOCDIR%%/qtwidgets/qkeysequenceedit-obsolete.html %%QT_DOCDIR%%/qtwidgets/qkeysequenceedit.html %%QT_DOCDIR%%/qtwidgets/qlabel-members.html %%QT_DOCDIR%%/qtwidgets/qlabel-obsolete.html %%QT_DOCDIR%%/qtwidgets/qlabel.html %%QT_DOCDIR%%/qtwidgets/qlayout-members.html %%QT_DOCDIR%%/qtwidgets/qlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qlayout.html %%QT_DOCDIR%%/qtwidgets/qlayoutitem-members.html %%QT_DOCDIR%%/qtwidgets/qlayoutitem.html %%QT_DOCDIR%%/qtwidgets/qlcdnumber-members.html %%QT_DOCDIR%%/qtwidgets/qlcdnumber-obsolete.html %%QT_DOCDIR%%/qtwidgets/qlcdnumber.html %%QT_DOCDIR%%/qtwidgets/qlineedit-members.html %%QT_DOCDIR%%/qtwidgets/qlineedit-obsolete.html %%QT_DOCDIR%%/qtwidgets/qlineedit.html %%QT_DOCDIR%%/qtwidgets/qlistview-members.html %%QT_DOCDIR%%/qtwidgets/qlistview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qlistview.html %%QT_DOCDIR%%/qtwidgets/qlistwidget-members.html %%QT_DOCDIR%%/qtwidgets/qlistwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qlistwidget.html %%QT_DOCDIR%%/qtwidgets/qlistwidgetitem-members.html %%QT_DOCDIR%%/qtwidgets/qlistwidgetitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qlistwidgetitem.html %%QT_DOCDIR%%/qtwidgets/qmainwindow-members.html %%QT_DOCDIR%%/qtwidgets/qmainwindow-obsolete.html %%QT_DOCDIR%%/qtwidgets/qmainwindow.html %%QT_DOCDIR%%/qtwidgets/qmdiarea-members.html %%QT_DOCDIR%%/qtwidgets/qmdiarea-obsolete.html %%QT_DOCDIR%%/qtwidgets/qmdiarea.html %%QT_DOCDIR%%/qtwidgets/qmdisubwindow-members.html %%QT_DOCDIR%%/qtwidgets/qmdisubwindow-obsolete.html %%QT_DOCDIR%%/qtwidgets/qmdisubwindow.html %%QT_DOCDIR%%/qtwidgets/qmenu-members.html %%QT_DOCDIR%%/qtwidgets/qmenu-obsolete.html %%QT_DOCDIR%%/qtwidgets/qmenu.html %%QT_DOCDIR%%/qtwidgets/qmenubar-members.html %%QT_DOCDIR%%/qtwidgets/qmenubar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qmenubar.html %%QT_DOCDIR%%/qtwidgets/qmessagebox-members.html %%QT_DOCDIR%%/qtwidgets/qmessagebox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qmessagebox.html %%QT_DOCDIR%%/qtwidgets/qmouseeventtransition-members.html %%QT_DOCDIR%%/qtwidgets/qmouseeventtransition-obsolete.html %%QT_DOCDIR%%/qtwidgets/qmouseeventtransition.html %%QT_DOCDIR%%/qtwidgets/qopenglwidget-members.html %%QT_DOCDIR%%/qtwidgets/qopenglwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qopenglwidget.html %%QT_DOCDIR%%/qtwidgets/qpangesture-members.html %%QT_DOCDIR%%/qtwidgets/qpangesture-obsolete.html %%QT_DOCDIR%%/qtwidgets/qpangesture.html %%QT_DOCDIR%%/qtwidgets/qpinchgesture-members.html %%QT_DOCDIR%%/qtwidgets/qpinchgesture-obsolete.html %%QT_DOCDIR%%/qtwidgets/qpinchgesture.html %%QT_DOCDIR%%/qtwidgets/qplaintextdocumentlayout-members.html %%QT_DOCDIR%%/qtwidgets/qplaintextdocumentlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qplaintextdocumentlayout.html %%QT_DOCDIR%%/qtwidgets/qplaintextedit-members.html %%QT_DOCDIR%%/qtwidgets/qplaintextedit-obsolete.html %%QT_DOCDIR%%/qtwidgets/qplaintextedit.html %%QT_DOCDIR%%/qtwidgets/qprogressbar-members.html %%QT_DOCDIR%%/qtwidgets/qprogressbar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qprogressbar.html %%QT_DOCDIR%%/qtwidgets/qprogressdialog-members.html %%QT_DOCDIR%%/qtwidgets/qprogressdialog-obsolete.html %%QT_DOCDIR%%/qtwidgets/qprogressdialog.html %%QT_DOCDIR%%/qtwidgets/qproxystyle-members.html %%QT_DOCDIR%%/qtwidgets/qproxystyle-obsolete.html %%QT_DOCDIR%%/qtwidgets/qproxystyle.html %%QT_DOCDIR%%/qtwidgets/qpushbutton-members.html %%QT_DOCDIR%%/qtwidgets/qpushbutton-obsolete.html %%QT_DOCDIR%%/qtwidgets/qpushbutton.html %%QT_DOCDIR%%/qtwidgets/qradiobutton-members.html %%QT_DOCDIR%%/qtwidgets/qradiobutton-obsolete.html %%QT_DOCDIR%%/qtwidgets/qradiobutton.html %%QT_DOCDIR%%/qtwidgets/qrubberband-members.html %%QT_DOCDIR%%/qtwidgets/qrubberband-obsolete.html %%QT_DOCDIR%%/qtwidgets/qrubberband.html %%QT_DOCDIR%%/qtwidgets/qscrollarea-members.html %%QT_DOCDIR%%/qtwidgets/qscrollarea-obsolete.html %%QT_DOCDIR%%/qtwidgets/qscrollarea.html %%QT_DOCDIR%%/qtwidgets/qscrollbar-members.html %%QT_DOCDIR%%/qtwidgets/qscrollbar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qscrollbar.html %%QT_DOCDIR%%/qtwidgets/qscroller-members.html %%QT_DOCDIR%%/qtwidgets/qscroller-obsolete.html %%QT_DOCDIR%%/qtwidgets/qscroller.html %%QT_DOCDIR%%/qtwidgets/qscrollerproperties-members.html %%QT_DOCDIR%%/qtwidgets/qscrollerproperties.html %%QT_DOCDIR%%/qtwidgets/qshortcut-members.html %%QT_DOCDIR%%/qtwidgets/qshortcut-obsolete.html %%QT_DOCDIR%%/qtwidgets/qshortcut.html %%QT_DOCDIR%%/qtwidgets/qsizegrip-members.html %%QT_DOCDIR%%/qtwidgets/qsizegrip-obsolete.html %%QT_DOCDIR%%/qtwidgets/qsizegrip.html %%QT_DOCDIR%%/qtwidgets/qsizepolicy-members.html %%QT_DOCDIR%%/qtwidgets/qsizepolicy.html %%QT_DOCDIR%%/qtwidgets/qslider-members.html %%QT_DOCDIR%%/qtwidgets/qslider-obsolete.html %%QT_DOCDIR%%/qtwidgets/qslider.html %%QT_DOCDIR%%/qtwidgets/qspaceritem-members.html %%QT_DOCDIR%%/qtwidgets/qspaceritem.html %%QT_DOCDIR%%/qtwidgets/qspinbox-members.html %%QT_DOCDIR%%/qtwidgets/qspinbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qspinbox.html %%QT_DOCDIR%%/qtwidgets/qsplashscreen-members.html %%QT_DOCDIR%%/qtwidgets/qsplashscreen-obsolete.html %%QT_DOCDIR%%/qtwidgets/qsplashscreen.html %%QT_DOCDIR%%/qtwidgets/qsplitter-members.html %%QT_DOCDIR%%/qtwidgets/qsplitter-obsolete.html %%QT_DOCDIR%%/qtwidgets/qsplitter.html %%QT_DOCDIR%%/qtwidgets/qsplitterhandle-members.html %%QT_DOCDIR%%/qtwidgets/qsplitterhandle-obsolete.html %%QT_DOCDIR%%/qtwidgets/qsplitterhandle.html %%QT_DOCDIR%%/qtwidgets/qstackedlayout-members.html %%QT_DOCDIR%%/qtwidgets/qstackedlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstackedlayout.html %%QT_DOCDIR%%/qtwidgets/qstackedwidget-members.html %%QT_DOCDIR%%/qtwidgets/qstackedwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstackedwidget.html %%QT_DOCDIR%%/qtwidgets/qstandarditemeditorcreator-members.html %%QT_DOCDIR%%/qtwidgets/qstandarditemeditorcreator.html %%QT_DOCDIR%%/qtwidgets/qstatusbar-members.html %%QT_DOCDIR%%/qtwidgets/qstatusbar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstatusbar.html %%QT_DOCDIR%%/qtwidgets/qstyle-members.html %%QT_DOCDIR%%/qtwidgets/qstyle-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyle.html %%QT_DOCDIR%%/qtwidgets/qstyleditemdelegate-members.html %%QT_DOCDIR%%/qtwidgets/qstyleditemdelegate-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleditemdelegate.html %%QT_DOCDIR%%/qtwidgets/qstylefactory-members.html %%QT_DOCDIR%%/qtwidgets/qstylefactory.html %%QT_DOCDIR%%/qtwidgets/qstylehintreturn-members.html %%QT_DOCDIR%%/qtwidgets/qstylehintreturn.html %%QT_DOCDIR%%/qtwidgets/qstylehintreturnmask-members.html %%QT_DOCDIR%%/qtwidgets/qstylehintreturnmask.html %%QT_DOCDIR%%/qtwidgets/qstylehintreturnvariant-members.html %%QT_DOCDIR%%/qtwidgets/qstylehintreturnvariant.html %%QT_DOCDIR%%/qtwidgets/qstyleoption-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoption-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoption.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionbutton-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionbutton-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionbutton.html %%QT_DOCDIR%%/qtwidgets/qstyleoptioncombobox-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptioncombobox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptioncombobox.html %%QT_DOCDIR%%/qtwidgets/qstyleoptioncomplex-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptioncomplex-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptioncomplex.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiondockwidget-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiondockwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiondockwidget.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionfocusrect-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionfocusrect-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionfocusrect.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionframe-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionframe-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionframe.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiongraphicsitem-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiongraphicsitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiongraphicsitem.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiongroupbox-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiongroupbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiongroupbox.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionheader-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionheader-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionheader.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionmenuitem-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionmenuitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionmenuitem.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionprogressbar-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionprogressbar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionprogressbar.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionrubberband-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionrubberband-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionrubberband.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionsizegrip-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionsizegrip-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionsizegrip.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionslider-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionslider-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionslider.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionspinbox-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionspinbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionspinbox.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontab-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontab-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontab.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontabbarbase-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontabbarbase-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontabbarbase.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontabwidgetframe-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontabwidgetframe-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontabwidgetframe.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontitlebar-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontitlebar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontitlebar.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbar-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbar.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbox-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbox.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbutton-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbutton-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptiontoolbutton.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionviewitem-members.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionviewitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleoptionviewitem.html %%QT_DOCDIR%%/qtwidgets/qstylepainter-members.html %%QT_DOCDIR%%/qtwidgets/qstylepainter-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstylepainter.html %%QT_DOCDIR%%/qtwidgets/qstyleplugin-members.html %%QT_DOCDIR%%/qtwidgets/qstyleplugin-obsolete.html %%QT_DOCDIR%%/qtwidgets/qstyleplugin.html %%QT_DOCDIR%%/qtwidgets/qswipegesture-members.html %%QT_DOCDIR%%/qtwidgets/qswipegesture-obsolete.html %%QT_DOCDIR%%/qtwidgets/qswipegesture.html %%QT_DOCDIR%%/qtwidgets/qsystemtrayicon-members.html %%QT_DOCDIR%%/qtwidgets/qsystemtrayicon-obsolete.html %%QT_DOCDIR%%/qtwidgets/qsystemtrayicon.html %%QT_DOCDIR%%/qtwidgets/qtabbar-members.html %%QT_DOCDIR%%/qtwidgets/qtabbar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtabbar.html %%QT_DOCDIR%%/qtwidgets/qtableview-members.html %%QT_DOCDIR%%/qtwidgets/qtableview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtableview.html %%QT_DOCDIR%%/qtwidgets/qtablewidget-members.html %%QT_DOCDIR%%/qtwidgets/qtablewidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtablewidget.html %%QT_DOCDIR%%/qtwidgets/qtablewidgetitem-members.html %%QT_DOCDIR%%/qtwidgets/qtablewidgetitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtablewidgetitem.html %%QT_DOCDIR%%/qtwidgets/qtablewidgetselectionrange-members.html %%QT_DOCDIR%%/qtwidgets/qtablewidgetselectionrange.html %%QT_DOCDIR%%/qtwidgets/qtabwidget-members.html %%QT_DOCDIR%%/qtwidgets/qtabwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtabwidget.html %%QT_DOCDIR%%/qtwidgets/qtapandholdgesture-members.html %%QT_DOCDIR%%/qtwidgets/qtapandholdgesture-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtapandholdgesture.html %%QT_DOCDIR%%/qtwidgets/qtapgesture-members.html %%QT_DOCDIR%%/qtwidgets/qtapgesture-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtapgesture.html %%QT_DOCDIR%%/qtwidgets/qtextbrowser-members.html %%QT_DOCDIR%%/qtwidgets/qtextbrowser-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtextbrowser.html %%QT_DOCDIR%%/qtwidgets/qtextedit-extraselection-members.html %%QT_DOCDIR%%/qtwidgets/qtextedit-extraselection.html %%QT_DOCDIR%%/qtwidgets/qtextedit-members.html %%QT_DOCDIR%%/qtwidgets/qtextedit-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtextedit.html %%QT_DOCDIR%%/qtwidgets/qtilerules-members.html %%QT_DOCDIR%%/qtwidgets/qtilerules.html %%QT_DOCDIR%%/qtwidgets/qtimeedit-members.html %%QT_DOCDIR%%/qtwidgets/qtimeedit-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtimeedit.html %%QT_DOCDIR%%/qtwidgets/qtoolbar-members.html %%QT_DOCDIR%%/qtwidgets/qtoolbar-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtoolbar.html %%QT_DOCDIR%%/qtwidgets/qtoolbox-members.html %%QT_DOCDIR%%/qtwidgets/qtoolbox-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtoolbox.html %%QT_DOCDIR%%/qtwidgets/qtoolbutton-members.html %%QT_DOCDIR%%/qtwidgets/qtoolbutton-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtoolbutton.html %%QT_DOCDIR%%/qtwidgets/qtooltip-members.html %%QT_DOCDIR%%/qtwidgets/qtooltip.html %%QT_DOCDIR%%/qtwidgets/qtreeview-members.html %%QT_DOCDIR%%/qtwidgets/qtreeview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtreeview.html %%QT_DOCDIR%%/qtwidgets/qtreewidget-members.html %%QT_DOCDIR%%/qtwidgets/qtreewidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtreewidget.html %%QT_DOCDIR%%/qtwidgets/qtreewidgetitem-members.html %%QT_DOCDIR%%/qtwidgets/qtreewidgetitem-obsolete.html %%QT_DOCDIR%%/qtwidgets/qtreewidgetitem.html %%QT_DOCDIR%%/qtwidgets/qtreewidgetitemiterator-members.html %%QT_DOCDIR%%/qtwidgets/qtreewidgetitemiterator.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-animatedtiles-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-animatedtiles-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-animatedtiles-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-animation-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-easing-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-easing-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-form-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-easing-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-moveblocks-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-moveblocks-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-moveblocks-moveblocks-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-states-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-states-states-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-animation-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-animation-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-graphicsview-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-graphicsview-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-lifecycle-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-lifecycle-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-node-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-node-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-rectbutton-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-rectbutton-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-stickman-stickman-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-animationmanager-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-animationmanager-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-boat-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-boat-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-boat-p-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-bomb-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-bomb-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-data-xml.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-graphicsscene-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-graphicsscene-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-background-n810-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-background-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-boat-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-bomb-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-sand-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-see-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-sky-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-sub-attaq-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-submarine-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-surface-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pics-scalable-torpedo-svg.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pixmapitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-pixmapitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-progressitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-progressitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-qanimationstate-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-qanimationstate-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-states-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-states-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-sub-attaq-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-subattaq-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-submarine-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-submarine-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-submarine-p-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-textinformationitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-textinformationitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-torpedo-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-animation-sub-attaq-torpedo-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-screenshot-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-screenshot-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-screenshot-screenshot-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-systray-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-systray-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-desktop-systray-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-classwizard-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-classwizard-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-extension-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-finddialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-finddialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-extension-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-findfiles-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-findfiles-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-licensewizard-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-licensewizard-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-dialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-dialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-standarddialogs-standarddialogs-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-tabdialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-tabdialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-tabdialog-tabdialog-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-trivialwizard-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-trivialwizard-trivialwizard-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-dialogs-trivialwizard-trivialwizard-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-draggableicons-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-draggableicons-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-dragwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-dragwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggableicons-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-draggabletext-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-draggabletext-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-dragwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-dragwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-draggabletext-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-droparea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-droparea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-dropsite-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-dropsitewindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-dropsitewindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-dropsite-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-draglabel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-draglabel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-dragwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-dragwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-fridgemagnets-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-fridgemagnets-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-fridgemagnets-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-pieceslist-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-pieceslist-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzle-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzle-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzlewidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-draganddrop-puzzle-puzzlewidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blureffect-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blureffect-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-blurpicker-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-blurpicker-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-fademessage-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-effects-fademessage-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-imagegestures-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-imagewidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-imagewidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-mainwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-gestures-imagegestures-mainwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-anchorlayout-anchorlayout-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-anchorlayout-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-anchorlayout-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-basicgraphicslayouts-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-basicgraphicslayouts-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-layoutitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-layoutitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-basicgraphicslayouts-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-3rdparty-fbm-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-boxes-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-boxes-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glbuffers-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glbuffers-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glextensions-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-glextensions-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-gltrianglemesh-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-qtbox-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-qtbox-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-roundedbox-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-roundedbox-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-scene-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-scene-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-trackball-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-boxes-trackball-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-chip-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-chip-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-chip-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-images-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-view-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-chip-view-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-collidingmice-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-mice-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-mouse-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-collidingmice-mouse-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-arrow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-arrow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramscene-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramtextitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-diagramtextitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-diagramscene-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-coloritem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-coloritem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-dragdroprobot-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-robot-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-robot-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-dragdroprobot-robot-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-edge-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-edge-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-elasticnodes-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-graphwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-graphwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-node-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-elasticnodes-node-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-customproxy-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-customproxy-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialog-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialogs-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-embeddeddialogs-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-embeddeddialogs-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-flowlayout-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-flowlayout-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-flowlayout-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-flowlayout-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-flippablepad-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-flippablepad-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-form-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-padnavigator-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-roundrectitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-roundrectitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-splashitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-padnavigator-splashitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-simpleanchorlayout-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-simpleanchorlayout-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-simpleanchorlayout-simpleanchorlayout-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-weatheranchorlayout-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-graphicsview-weatheranchorlayout-weatheranchorlayout-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-index.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-adddialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-adddialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-addressbook-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-addresswidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-addresswidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-newaddresstab-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-newaddresstab-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-tablemodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-addressbook-tablemodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-basicsortfiltermodel-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-basicsortfiltermodel-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-chart-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-chart-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-pieview-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-chart-pieview-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-coloreditorfactory-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-colorlisteditor-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-colorlisteditor-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-coloreditorfactory-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-combowidgetmapper-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-combowidgetmapper-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-customsortfiltermodel-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-customsortfiltermodel-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-filterwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-filterwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-mysortfilterproxymodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-mysortfilterproxymodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-customsortfiltermodel-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-dirview-dirview-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-dirview-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-dirview-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-editabletreemodel-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-editabletreemodel-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-mainwindow-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treeitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treeitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treemodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-editabletreemodel-treemodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-fetchmore-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-filelistmodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-filelistmodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-fetchmore-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-freezetablewidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-freezetablewidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-frozencolumn-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-grades-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-frozencolumn-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-interview-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-interview-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-model-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-interview-model-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-imagemodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-imagemodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-images-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-pixelator-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-pixeldelegate-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-pixelator-pixeldelegate-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-piecesmodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-piecesmodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzle-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzle-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzlewidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-puzzle-puzzlewidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-domitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-domitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-dommodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-dommodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpledommodel-simpledommodel-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-simpletreemodel-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-simpletreemodel-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treeitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treeitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treemodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simpletreemodel-treemodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-simplewidgetmapper-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-simplewidgetmapper-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-delegate-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-delegate-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spinboxdelegate-spinboxdelegate-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-printview-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-printview-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheet-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetdelegate-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetdelegate-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-spreadsheet-spreadsheetitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stardelegate-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stardelegate-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stardelegate-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stareditor-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-stareditor-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-starrating-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-itemviews-stardelegate-starrating-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-basiclayouts-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-dialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-dialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-basiclayouts-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-borderlayout-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-borderlayout-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-borderlayout-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-borderlayout-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-dialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-dialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-dynamiclayouts-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-dynamiclayouts-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-flowlayout-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-flowlayout-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-flowlayout-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-layouts-flowlayout-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-application-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-application-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-application-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-dockwidgets-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-dockwidgets-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-dockwidgets-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-colorswatch-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-colorswatch-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-mainwindow-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-toolbar-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mainwindow-toolbar-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdi-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdi-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdichild-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-mdi-mdichild-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-menus-menus-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-sdi-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-mainwindows-sdi-sdi-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-module.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-affine-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-affine-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-xform-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-affine-xform-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-basicdrawing-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-basicdrawing-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-renderarea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-renderarea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-basicdrawing-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-composition-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-composition-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-circlewidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-circlewidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-concentriccircles-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-concentriccircles-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-deform-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-deform-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-pathdeform-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-deform-pathdeform-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-fontsampler-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-fontsampler-mainwindowbase-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-gradients-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-gradients-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposer-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposer-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposition-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-imagecomposition-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-imagecomposition-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-painterpaths-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-renderarea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-renderarea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-painterpaths-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-pathstroke-pathstroke-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-renderarea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-renderarea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-transformations-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-painting-transformations-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-calendar-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-calendar-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-detailsdialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-detailsdialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-orderform-orderform-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-highlighter-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-highlighter-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-syntaxhighlighter-syntaxhighlighter-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-richtext-textedit-textedit-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-eventtransitions-eventtransitions-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-eventtransitions-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-eventtransitions-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-factorial-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-factorial-factorial-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-factorial-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-pingpong-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-pingpong-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-pingpong-pingpong-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-movementtransition-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-rogue-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-rogue-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-trafficlight-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-trafficlight-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-trafficlight-trafficlight-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-twowaybutton-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-twowaybutton-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-statemachine-twowaybutton-twowaybutton-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-codecs-pro.html +%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-codecs-qrc.html +%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-encodingdialog-cpp.html +%%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-encodingdialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-previewform-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-codecs-previewform-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-completer-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-completer-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-fsmodel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-fsmodel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-completer-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-customcompleter-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-customcompleter-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-textedit-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-customcompleter-textedit-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echoplugin-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echointerface-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echowindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echowindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-echowindow-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-echowindow-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-plugin-echoplugin-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-plugin-echoplugin-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-echoplugin-plugin-plugin-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-i18n-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-i18n-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-languagechooser-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-languagechooser-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-i18n-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-app-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-interfaces-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-paintarea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-paintarea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-plugindialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-app-plugindialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-basictools-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-basictoolsplugin-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-basictoolsplugin-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-basictools-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-extrafilters-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-extrafiltersplugin-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-plugandpaint-plugins-extrafilters-extrafiltersplugin-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-regexp-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-regexpdialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regexp-regexpdialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpression-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpression-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpressiondialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-regularexpression-regularexpressiondialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-locationdialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-locationdialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-settingseditor-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-settingstree-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-settingstree-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-variantdelegate-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-settingseditor-variantdelegate-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-plugin-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyle-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyle-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyleplugin-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-plugin-simplestyleplugin-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-styleplugin-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-stylewindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-stylewindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-styleplugin-stylewindow-stylewindow-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-treemodelcompleter-treemodelcompleter-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-commands-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-commands-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-document-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-document-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-mainwindow-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-undo-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undo-undo-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-commands-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-commands-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramscene-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-diagramscene-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-undoframework-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tools-undoframework-undoframework-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-dials-dials-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-dials-dials-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-dials-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-dials-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-fingerpaint-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-fingerpaint-fingerpaint-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-fingerpaint-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-fingerpaint-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-fingerpaint-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-fingerpaint-scribblearea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-fingerpaint-scribblearea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-knobs-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-knobs-knob-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-knobs-knob-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-knobs-knobs-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-knobs-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-graphicsview-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-graphicsview-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-mice-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-mouse-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-mouse-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-touch-pinchzoom-pinchzoom-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-addressbook-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-addressbook-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part1-part1-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-addressbook-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-addressbook-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part2-part2-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-addressbook-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-addressbook-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part3-part3-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-addressbook-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-addressbook-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part4-part4-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-addressbook-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-addressbook-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-finddialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-finddialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part5-part5-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-addressbook-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-addressbook-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-finddialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-finddialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part6-part6-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-addressbook-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-addressbook-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-finddialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-finddialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-addressbook-part7-part7-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-notepad-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-notepad-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-notepad-notepad-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-notepad-notepad-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-notepad-notepad-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-notepad-notepad-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-notepad-notepad-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-childwidget-childwidget-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-childwidget-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-childwidget-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-nestedlayouts-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-nestedlayouts-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-nestedlayouts-nestedlayouts-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-toplevel-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-toplevel-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-toplevel-toplevel-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-windowlayout-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-windowlayout-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-tutorials-widgets-windowlayout-windowlayout-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-analogclock-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-analogclock-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-analogclock-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-analogclock-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-button-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-button-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-calculator-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-calculator-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-calculator-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calculator-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-calendarwidget-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-calendarwidget-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-charactermap-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-characterwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-characterwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-charactermap-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-codeeditor-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-codeeditor-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-codeeditor-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-codeeditor-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-digitalclock-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-digitalclock-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-digitalclock-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-digitalclock-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-elidedlabel-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-elidedlabel-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-elidedlabel-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-testwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-elidedlabel-testwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-groupbox-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-groupbox-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconpreviewarea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconpreviewarea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-icons-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconsizespinbox-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-iconsizespinbox-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-imagedelegate-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-imagedelegate-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-icons-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-imageviewer-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-imageviewer-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-imageviewer-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-imageviewer-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-lineedits-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-lineedits-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-buttontester-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-buttontester-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-mousebuttons-mousebuttons-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-movie-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-movieplayer-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-movie-movieplayer-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-scribble-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-scribblearea-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-scribble-scribblearea-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-shapedclock-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-shapedclock-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-shapedclock-shapedclock-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-sliders-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-slidersgroup-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-slidersgroup-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-sliders-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-spinboxes-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-window-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-spinboxes-window-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-norwegianwoodstyle-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-norwegianwoodstyle-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-styles-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-styles-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-widgetgallery-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-styles-widgetgallery-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-layouts-default-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-layouts-pagefold-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-mainwindow-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheet-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheet-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheeteditor-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheeteditor-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-stylesheet-stylesheeteditor-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-images-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-mainwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-mainwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tablet-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletapplication-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletapplication-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletcanvas-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tablet-tabletcanvas-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrix-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixboard-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixboard-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixpiece-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixpiece-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tetrix-tetrixwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-shapeitem-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-shapeitem-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-sortingbox-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-sortingbox-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-tooltips-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-tooltips-tooltips-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-ledwidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-ledwidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-localeselector-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-localeselector-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-validators-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-validators-qrc.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-validators-validators-ui.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-dialog-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-dialog-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-wiggly-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-wigglywidget-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-wiggly-wigglywidget-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-controllerwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-controllerwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-example.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-main-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-previewwindow-cpp.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-previewwindow-h.html %%QT_DOCDIR%%/qtwidgets/qtwidgets-widgets-windowflags-windowflags-pro.html %%QT_DOCDIR%%/qtwidgets/qtwidgets.index %%QT_DOCDIR%%/qtwidgets/qtwidgets.qhp %%QT_DOCDIR%%/qtwidgets/qtwidgets.qhp.sha1 %%QT_DOCDIR%%/qtwidgets/qtwidgets.tags %%QT_DOCDIR%%/qtwidgets/qundocommand-members.html %%QT_DOCDIR%%/qtwidgets/qundocommand.html %%QT_DOCDIR%%/qtwidgets/qundogroup-members.html %%QT_DOCDIR%%/qtwidgets/qundogroup-obsolete.html %%QT_DOCDIR%%/qtwidgets/qundogroup.html %%QT_DOCDIR%%/qtwidgets/qundostack-members.html %%QT_DOCDIR%%/qtwidgets/qundostack-obsolete.html %%QT_DOCDIR%%/qtwidgets/qundostack.html %%QT_DOCDIR%%/qtwidgets/qundoview-members.html %%QT_DOCDIR%%/qtwidgets/qundoview-obsolete.html %%QT_DOCDIR%%/qtwidgets/qundoview.html %%QT_DOCDIR%%/qtwidgets/qvboxlayout-members.html %%QT_DOCDIR%%/qtwidgets/qvboxlayout-obsolete.html %%QT_DOCDIR%%/qtwidgets/qvboxlayout.html %%QT_DOCDIR%%/qtwidgets/qwhatsthis-members.html %%QT_DOCDIR%%/qtwidgets/qwhatsthis.html %%QT_DOCDIR%%/qtwidgets/qwidget-members.html %%QT_DOCDIR%%/qtwidgets/qwidget-obsolete.html %%QT_DOCDIR%%/qtwidgets/qwidget-styling.html %%QT_DOCDIR%%/qtwidgets/qwidget.html %%QT_DOCDIR%%/qtwidgets/qwidgetaction-members.html %%QT_DOCDIR%%/qtwidgets/qwidgetaction-obsolete.html %%QT_DOCDIR%%/qtwidgets/qwidgetaction.html %%QT_DOCDIR%%/qtwidgets/qwidgetitem-members.html %%QT_DOCDIR%%/qtwidgets/qwidgetitem.html %%QT_DOCDIR%%/qtwidgets/qwizard-members.html %%QT_DOCDIR%%/qtwidgets/qwizard-obsolete.html %%QT_DOCDIR%%/qtwidgets/qwizard.html %%QT_DOCDIR%%/qtwidgets/qwizardpage-members.html %%QT_DOCDIR%%/qtwidgets/qwizardpage-obsolete.html %%QT_DOCDIR%%/qtwidgets/qwizardpage.html %%QT_DOCDIR%%/qtwidgets/standard-dialogs.html %%QT_DOCDIR%%/qtwidgets/style-reference.html %%QT_DOCDIR%%/qtwidgets/style/offline-simple.css %%QT_DOCDIR%%/qtwidgets/style/offline.css %%QT_DOCDIR%%/qtwidgets/stylesheet-customizing.html %%QT_DOCDIR%%/qtwidgets/stylesheet-designer.html %%QT_DOCDIR%%/qtwidgets/stylesheet-examples.html %%QT_DOCDIR%%/qtwidgets/stylesheet-reference.html %%QT_DOCDIR%%/qtwidgets/stylesheet-syntax.html %%QT_DOCDIR%%/qtwidgets/stylesheet.html %%QT_DOCDIR%%/qtwidgets/textedit-example.html %%QT_DOCDIR%%/qtwidgets/tutorials-addressbook.html %%QT_DOCDIR%%/qtwidgets/widget-classes.html %%QT_DOCDIR%%/qtwidgets/widgets-tutorial.html %%QT_DOCDIR%%/qtwinextras.qch %%QT_DOCDIR%%/qtwinextras/examples-manifest.xml %%QT_DOCDIR%%/qtwinextras/examples-qtwinextras.html %%QT_DOCDIR%%/qtwinextras/images/arrow_bc.png %%QT_DOCDIR%%/qtwinextras/images/bgrContent.png %%QT_DOCDIR%%/qtwinextras/images/btn_next.png %%QT_DOCDIR%%/qtwinextras/images/btn_prev.png %%QT_DOCDIR%%/qtwinextras/images/bullet_dn.png %%QT_DOCDIR%%/qtwinextras/images/bullet_sq.png %%QT_DOCDIR%%/qtwinextras/images/glass.png %%QT_DOCDIR%%/qtwinextras/images/home.png %%QT_DOCDIR%%/qtwinextras/images/ico_note.png %%QT_DOCDIR%%/qtwinextras/images/ico_note_attention.png %%QT_DOCDIR%%/qtwinextras/images/ico_out.png %%QT_DOCDIR%%/qtwinextras/images/jumplist.png %%QT_DOCDIR%%/qtwinextras/images/logo.png %%QT_DOCDIR%%/qtwinextras/images/peek-on.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-composited.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-non-composited.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-taskbar.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-musicplayer-thumbnail.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-composited.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-non-composited.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-taskbar.png %%QT_DOCDIR%%/qtwinextras/images/qtwinextras-quickplayer-thumbnail.png %%QT_DOCDIR%%/qtwinextras/images/taskbar-button.png %%QT_DOCDIR%%/qtwinextras/images/taskbar-progress-indeterminate.png %%QT_DOCDIR%%/qtwinextras/images/taskbar-progress-paused.png %%QT_DOCDIR%%/qtwinextras/images/taskbar-progress-stopped.png %%QT_DOCDIR%%/qtwinextras/images/taskbar-progress.png %%QT_DOCDIR%%/qtwinextras/images/thumbbar.png %%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-pause-16.png %%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-pause-32.png %%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-play-16.png %%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-play-32.png %%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-seek-backward-32.png %%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-seek-forward-32.png %%QT_DOCDIR%%/qtwinextras/images/used-in-examples/quickplayer/images/media-stop-32.png %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-dwmfeatures-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-dwmfeatures.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplist-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplist.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistcategory-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistcategory.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistdestination-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistdestination.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistlink-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistlink.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistseparator-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-jumplistseparator.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-taskbarbutton-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-taskbarbutton.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbar-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbar.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbutton-members.html %%QT_DOCDIR%%/qtwinextras/qml-qtwinextras-thumbnailtoolbutton.html %%QT_DOCDIR%%/qtwinextras/qtwin.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-iconextractor-example.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-iconextractor-iconextractor-pro.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-iconextractor-main-cpp.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-index.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-module.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-example.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-main-cpp.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-musicplayer-cpp.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-musicplayer-h.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-musicplayer-pro.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-volumebutton-cpp.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-musicplayer-volumebutton-h.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-overview.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-qmlmodule.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-example.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-main-cpp.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-qml-main-qml.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-quickplayer-pro.html %%QT_DOCDIR%%/qtwinextras/qtwinextras-quickplayer-quickplayer-qrc.html %%QT_DOCDIR%%/qtwinextras/qtwinextras.index %%QT_DOCDIR%%/qtwinextras/qtwinextras.qhp %%QT_DOCDIR%%/qtwinextras/qtwinextras.qhp.sha1 %%QT_DOCDIR%%/qtwinextras/qwinjumplist-members.html %%QT_DOCDIR%%/qtwinextras/qwinjumplist-obsolete.html %%QT_DOCDIR%%/qtwinextras/qwinjumplist.html %%QT_DOCDIR%%/qtwinextras/qwinjumplistcategory-members.html %%QT_DOCDIR%%/qtwinextras/qwinjumplistcategory.html %%QT_DOCDIR%%/qtwinextras/qwinjumplistitem-members.html %%QT_DOCDIR%%/qtwinextras/qwinjumplistitem.html %%QT_DOCDIR%%/qtwinextras/qwinmime-members.html %%QT_DOCDIR%%/qtwinextras/qwinmime.html %%QT_DOCDIR%%/qtwinextras/qwintaskbarbutton-members.html %%QT_DOCDIR%%/qtwinextras/qwintaskbarbutton-obsolete.html %%QT_DOCDIR%%/qtwinextras/qwintaskbarbutton.html %%QT_DOCDIR%%/qtwinextras/qwintaskbarprogress-members.html %%QT_DOCDIR%%/qtwinextras/qwintaskbarprogress-obsolete.html %%QT_DOCDIR%%/qtwinextras/qwintaskbarprogress.html %%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbar-members.html %%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbar-obsolete.html %%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbar.html %%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbutton-members.html %%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbutton-obsolete.html %%QT_DOCDIR%%/qtwinextras/qwinthumbnailtoolbutton.html %%QT_DOCDIR%%/qtwinextras/style/offline-simple.css %%QT_DOCDIR%%/qtwinextras/style/offline.css %%QT_DOCDIR%%/qtx11extras.qch %%QT_DOCDIR%%/qtx11extras/images/arrow_bc.png %%QT_DOCDIR%%/qtx11extras/images/bgrContent.png %%QT_DOCDIR%%/qtx11extras/images/btn_next.png %%QT_DOCDIR%%/qtx11extras/images/btn_prev.png %%QT_DOCDIR%%/qtx11extras/images/bullet_dn.png %%QT_DOCDIR%%/qtx11extras/images/bullet_sq.png %%QT_DOCDIR%%/qtx11extras/images/home.png %%QT_DOCDIR%%/qtx11extras/images/ico_note.png %%QT_DOCDIR%%/qtx11extras/images/ico_note_attention.png %%QT_DOCDIR%%/qtx11extras/images/ico_out.png %%QT_DOCDIR%%/qtx11extras/images/logo.png %%QT_DOCDIR%%/qtx11extras/qtx11extras-index.html %%QT_DOCDIR%%/qtx11extras/qtx11extras-module.html %%QT_DOCDIR%%/qtx11extras/qtx11extras.index %%QT_DOCDIR%%/qtx11extras/qtx11extras.qhp %%QT_DOCDIR%%/qtx11extras/qtx11extras.qhp.sha1 %%QT_DOCDIR%%/qtx11extras/qx11info-members.html %%QT_DOCDIR%%/qtx11extras/qx11info.html %%QT_DOCDIR%%/qtx11extras/style/offline-simple.css %%QT_DOCDIR%%/qtx11extras/style/offline.css %%QT_DOCDIR%%/qtxml.qch %%QT_DOCDIR%%/qtxml/examples-manifest.xml %%QT_DOCDIR%%/qtxml/images/arrow_bc.png %%QT_DOCDIR%%/qtxml/images/bgrContent.png %%QT_DOCDIR%%/qtxml/images/btn_next.png %%QT_DOCDIR%%/qtxml/images/btn_prev.png %%QT_DOCDIR%%/qtxml/images/bullet_dn.png %%QT_DOCDIR%%/qtxml/images/bullet_sq.png %%QT_DOCDIR%%/qtxml/images/dombookmarks-example.png %%QT_DOCDIR%%/qtxml/images/home.png %%QT_DOCDIR%%/qtxml/images/ico_note.png %%QT_DOCDIR%%/qtxml/images/ico_note_attention.png %%QT_DOCDIR%%/qtxml/images/ico_out.png %%QT_DOCDIR%%/qtxml/images/logo.png %%QT_DOCDIR%%/qtxml/images/saxbookmarks-example.png %%QT_DOCDIR%%/qtxml/images/xmlstreamexample-filemenu.png %%QT_DOCDIR%%/qtxml/images/xmlstreamexample-helpmenu.png %%QT_DOCDIR%%/qtxml/images/xmlstreamexample-screenshot.png %%QT_DOCDIR%%/qtxml/qdomattr-members.html %%QT_DOCDIR%%/qtxml/qdomattr.html %%QT_DOCDIR%%/qtxml/qdomcdatasection-members.html %%QT_DOCDIR%%/qtxml/qdomcdatasection.html %%QT_DOCDIR%%/qtxml/qdomcharacterdata-members.html %%QT_DOCDIR%%/qtxml/qdomcharacterdata.html %%QT_DOCDIR%%/qtxml/qdomcomment-members.html %%QT_DOCDIR%%/qtxml/qdomcomment.html %%QT_DOCDIR%%/qtxml/qdomdocument-members.html %%QT_DOCDIR%%/qtxml/qdomdocument.html %%QT_DOCDIR%%/qtxml/qdomdocumentfragment-members.html %%QT_DOCDIR%%/qtxml/qdomdocumentfragment.html %%QT_DOCDIR%%/qtxml/qdomdocumenttype-members.html %%QT_DOCDIR%%/qtxml/qdomdocumenttype.html %%QT_DOCDIR%%/qtxml/qdomelement-members.html %%QT_DOCDIR%%/qtxml/qdomelement.html %%QT_DOCDIR%%/qtxml/qdomentity-members.html %%QT_DOCDIR%%/qtxml/qdomentity.html %%QT_DOCDIR%%/qtxml/qdomentityreference-members.html %%QT_DOCDIR%%/qtxml/qdomentityreference.html %%QT_DOCDIR%%/qtxml/qdomimplementation-members.html %%QT_DOCDIR%%/qtxml/qdomimplementation.html %%QT_DOCDIR%%/qtxml/qdomnamednodemap-members.html %%QT_DOCDIR%%/qtxml/qdomnamednodemap.html %%QT_DOCDIR%%/qtxml/qdomnode-members.html %%QT_DOCDIR%%/qtxml/qdomnode.html %%QT_DOCDIR%%/qtxml/qdomnodelist-members.html %%QT_DOCDIR%%/qtxml/qdomnodelist.html %%QT_DOCDIR%%/qtxml/qdomnotation-members.html %%QT_DOCDIR%%/qtxml/qdomnotation.html %%QT_DOCDIR%%/qtxml/qdomprocessinginstruction-members.html %%QT_DOCDIR%%/qtxml/qdomprocessinginstruction.html %%QT_DOCDIR%%/qtxml/qdomtext-members.html %%QT_DOCDIR%%/qtxml/qdomtext.html %%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-dombookmarks-pro.html %%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-example.html %%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-main-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-mainwindow-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-mainwindow-h.html %%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-xbeltree-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-dombookmarks-xbeltree-h.html %%QT_DOCDIR%%/qtxml/qtxml-index.html %%QT_DOCDIR%%/qtxml/qtxml-module.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-example.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-main-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-mainwindow-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-mainwindow-h.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-saxbookmarks-pro.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelgenerator-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelgenerator-h.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelhandler-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-saxbookmarks-xbelhandler-h.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-example.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-main-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-mainwindow-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-mainwindow-h.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-streambookmarks-pro.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelreader-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelreader-h.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelwriter-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-streambookmarks-xbelwriter-h.html %%QT_DOCDIR%%/qtxml/qtxml-xmlstreamlint-example.html %%QT_DOCDIR%%/qtxml/qtxml-xmlstreamlint-main-cpp.html %%QT_DOCDIR%%/qtxml/qtxml-xmlstreamlint-xmlstreamlint-pro.html %%QT_DOCDIR%%/qtxml/qtxml.index %%QT_DOCDIR%%/qtxml/qtxml.qhp %%QT_DOCDIR%%/qtxml/qtxml.qhp.sha1 %%QT_DOCDIR%%/qtxml/qtxml.tags %%QT_DOCDIR%%/qtxml/qxmlattributes-members.html %%QT_DOCDIR%%/qtxml/qxmlattributes.html %%QT_DOCDIR%%/qtxml/qxmlcontenthandler-members.html %%QT_DOCDIR%%/qtxml/qxmlcontenthandler.html %%QT_DOCDIR%%/qtxml/qxmldeclhandler-members.html %%QT_DOCDIR%%/qtxml/qxmldeclhandler.html %%QT_DOCDIR%%/qtxml/qxmldefaulthandler-members.html %%QT_DOCDIR%%/qtxml/qxmldefaulthandler.html %%QT_DOCDIR%%/qtxml/qxmldtdhandler-members.html %%QT_DOCDIR%%/qtxml/qxmldtdhandler.html %%QT_DOCDIR%%/qtxml/qxmlentityresolver-members.html %%QT_DOCDIR%%/qtxml/qxmlentityresolver.html %%QT_DOCDIR%%/qtxml/qxmlerrorhandler-members.html %%QT_DOCDIR%%/qtxml/qxmlerrorhandler.html %%QT_DOCDIR%%/qtxml/qxmlinputsource-members.html %%QT_DOCDIR%%/qtxml/qxmlinputsource.html %%QT_DOCDIR%%/qtxml/qxmllexicalhandler-members.html %%QT_DOCDIR%%/qtxml/qxmllexicalhandler.html %%QT_DOCDIR%%/qtxml/qxmllocator-members.html %%QT_DOCDIR%%/qtxml/qxmllocator.html %%QT_DOCDIR%%/qtxml/qxmlnamespacesupport-members.html %%QT_DOCDIR%%/qtxml/qxmlnamespacesupport.html %%QT_DOCDIR%%/qtxml/qxmlparseexception-members.html %%QT_DOCDIR%%/qtxml/qxmlparseexception.html %%QT_DOCDIR%%/qtxml/qxmlreader-members.html %%QT_DOCDIR%%/qtxml/qxmlreader-obsolete.html %%QT_DOCDIR%%/qtxml/qxmlreader.html %%QT_DOCDIR%%/qtxml/qxmlsimplereader-members.html %%QT_DOCDIR%%/qtxml/qxmlsimplereader-obsolete.html %%QT_DOCDIR%%/qtxml/qxmlsimplereader.html %%QT_DOCDIR%%/qtxml/style/offline-simple.css %%QT_DOCDIR%%/qtxml/style/offline.css %%QT_DOCDIR%%/qtxml/xml-dom-tml.html %%QT_DOCDIR%%/qtxml/xml-namespaces.html %%QT_DOCDIR%%/qtxml/xml-processing.html %%QT_DOCDIR%%/qtxml/xml-sax.html %%QT_DOCDIR%%/qtxml/xml-streaming.html %%QT_DOCDIR%%/qtxml/xml-tools.html %%QT_DOCDIR%%/qtxmlpatterns.qch %%QT_DOCDIR%%/qtxmlpatterns/examples-manifest.xml %%QT_DOCDIR%%/qtxmlpatterns/images/arrow_bc.png %%QT_DOCDIR%%/qtxmlpatterns/images/bgrContent.png %%QT_DOCDIR%%/qtxmlpatterns/images/btn_next.png %%QT_DOCDIR%%/qtxmlpatterns/images/btn_prev.png %%QT_DOCDIR%%/qtxmlpatterns/images/bullet_dn.png %%QT_DOCDIR%%/qtxmlpatterns/images/bullet_sq.png %%QT_DOCDIR%%/qtxmlpatterns/images/filetree_1-example.png %%QT_DOCDIR%%/qtxmlpatterns/images/filetree_2-example.png %%QT_DOCDIR%%/qtxmlpatterns/images/home.png %%QT_DOCDIR%%/qtxmlpatterns/images/ico_note.png %%QT_DOCDIR%%/qtxmlpatterns/images/ico_note_attention.png %%QT_DOCDIR%%/qtxmlpatterns/images/ico_out.png %%QT_DOCDIR%%/qtxmlpatterns/images/logo.png %%QT_DOCDIR%%/qtxmlpatterns/images/patternist-wordProcessor.png %%QT_DOCDIR%%/qtxmlpatterns/images/recipes-example.png %%QT_DOCDIR%%/qtxmlpatterns/images/schema-example.png %%QT_DOCDIR%%/qtxmlpatterns/qabstractmessagehandler-members.html %%QT_DOCDIR%%/qtxmlpatterns/qabstractmessagehandler-obsolete.html %%QT_DOCDIR%%/qtxmlpatterns/qabstractmessagehandler.html %%QT_DOCDIR%%/qtxmlpatterns/qabstracturiresolver-members.html %%QT_DOCDIR%%/qtxmlpatterns/qabstracturiresolver-obsolete.html %%QT_DOCDIR%%/qtxmlpatterns/qabstracturiresolver.html %%QT_DOCDIR%%/qtxmlpatterns/qabstractxmlnodemodel-members.html %%QT_DOCDIR%%/qtxmlpatterns/qabstractxmlnodemodel.html +%%QT_DOCDIR%%/qtxmlpatterns/qml-qtquick-xmllistmodel-xmllistmodel-members.html +%%QT_DOCDIR%%/qtxmlpatterns/qml-qtquick-xmllistmodel-xmllistmodel.html +%%QT_DOCDIR%%/qtxmlpatterns/qml-qtquick-xmllistmodel-xmlrole-members.html +%%QT_DOCDIR%%/qtxmlpatterns/qml-qtquick-xmllistmodel-xmlrole.html %%QT_DOCDIR%%/qtxmlpatterns/qsimplexmlnodemodel-members.html %%QT_DOCDIR%%/qtxmlpatterns/qsimplexmlnodemodel.html %%QT_DOCDIR%%/qtxmlpatterns/qsourcelocation-members.html %%QT_DOCDIR%%/qtxmlpatterns/qsourcelocation.html +%%QT_DOCDIR%%/qtxmlpatterns/qtquick-xmllistmodel-qmlmodule.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-attribution-xml-xsd.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-example.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-filetree-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-filetree-h.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-filetree-pro.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-forms-mainwindow-ui.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-main-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-mainwindow-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-mainwindow-h.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-queries-listcppfiles-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-queries-qrc.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-filetree-queries-wholetree-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-index.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-module.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-example.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-allrecipes-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-cookbook-xml.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-liquidingredientsinsoup-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-mushroomsoup-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-preparationlessthan30-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-files-preparationtimes-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-forms-querywidget-ui.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-main-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-querymainwindow-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-querymainwindow-h.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-recipes-pro.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-recipes-recipes-qrc.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-example.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-invalid-contact-xml.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-invalid-order-xml.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-invalid-recipe-xml.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-valid-contact-xml.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-valid-order-xml.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-files-valid-recipe-xml.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-main-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-mainwindow-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-mainwindow-h.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-schema-pro.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-schema-qrc.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-schema-schema-ui.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-example.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-globalvariables-globals-cpp.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-globalvariables-reportglobals-xq.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns-xquery-xquery-pro.html %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.index %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.qhp %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.qhp.sha1 %%QT_DOCDIR%%/qtxmlpatterns/qtxmlpatterns.tags %%QT_DOCDIR%%/qtxmlpatterns/qxmlformatter-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlformatter.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlitem-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlitem.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlname-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlname.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlnamepool-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlnamepool.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlnodemodelindex-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlnodemodelindex.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlquery-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlquery.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlresultitems-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlresultitems.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlschema-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlschema.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlschemavalidator-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlschemavalidator.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlserializer-members.html %%QT_DOCDIR%%/qtxmlpatterns/qxmlserializer.html %%QT_DOCDIR%%/qtxmlpatterns/style/offline-simple.css %%QT_DOCDIR%%/qtxmlpatterns/style/offline.css %%QT_DOCDIR%%/qtxmlpatterns/xmlpattern-examples.html %%QT_DOCDIR%%/qtxmlpatterns/xmlprocessing.html %%QT_DOCDIR%%/qtxmlpatterns/xquery-introduction.html Index: head/misc/qt5-examples/distinfo =================================================================== --- head/misc/qt5-examples/distinfo (revision 492792) +++ head/misc/qt5-examples/distinfo (revision 492793) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544129633 -SHA256 (KDE/Qt/5.12.0/qt-everywhere-src-5.12.0.tar.xz) = 356f42d9087718f22f03d13d0c2cdfb308f91dc3cf0c6318bed33f2094cd9d6c -SIZE (KDE/Qt/5.12.0/qt-everywhere-src-5.12.0.tar.xz) = 510292820 +TIMESTAMP = 1549517708 +SHA256 (KDE/Qt/5.12.1/qt-everywhere-src-5.12.1.tar.xz) = caffbd625c7bc10ff8c5c7a27dbc7d84fa4de146975c0e1ffe904b514ccd6da4 +SIZE (KDE/Qt/5.12.1/qt-everywhere-src-5.12.1.tar.xz) = 507568064 Index: head/misc/qt5-examples/pkg-plist =================================================================== --- head/misc/qt5-examples/pkg-plist (revision 492792) +++ head/misc/qt5-examples/pkg-plist (revision 492793) @@ -1,7010 +1,7014 @@ %%QT_EXAMPLEDIR%%/HACKING %%QT_EXAMPLEDIR%%/README %%QT_EXAMPLEDIR%%/aggregate/examples.pro %%QT_EXAMPLEDIR%%/assistant/assistant.pro %%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-example.png %%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-findfiledialog.png %%QT_EXAMPLEDIR%%/assistant/doc/images/simpletextviewer-mainwindow.png %%QT_EXAMPLEDIR%%/assistant/doc/src/remotecontrol.qdoc %%QT_EXAMPLEDIR%%/assistant/doc/src/simpletextviewer.qdoc %%QT_EXAMPLEDIR%%/assistant/remotecontrol/enter.png %%QT_EXAMPLEDIR%%/assistant/remotecontrol/main.cpp %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.cpp %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.h %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.pro %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.qrc %%QT_EXAMPLEDIR%%/assistant/remotecontrol/remotecontrol.ui %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/assistant.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/assistant.h %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/about.txt %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/browse.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/filedialog.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/findfile.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/browse.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/fadedfilemenu.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/filedialog.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/handbook.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/icon.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/mainwindow.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/open.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/images/wildcard.png %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/index.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/intro.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/openfile.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qch %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhc %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhcp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/simpletextviewer.qhp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/documentation/wildcardmatching.html %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/findfiledialog.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/findfiledialog.h %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/main.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/mainwindow.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/mainwindow.h %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/simpletextviewer.pro %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/textedit.cpp %%QT_EXAMPLEDIR%%/assistant/simpletextviewer/textedit.h %%QT_EXAMPLEDIR%%/bluetooth/bluetooth.pro %%QT_EXAMPLEDIR%%/bluetooth/btchat/btchat.pro %%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/chat.ui %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatclient.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatclient.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatserver.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/chatserver.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/doc/images/btchat-example.png %%QT_EXAMPLEDIR%%/bluetooth/btchat/doc/src/btchat.qdoc %%QT_EXAMPLEDIR%%/bluetooth/btchat/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.cpp %%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.h %%QT_EXAMPLEDIR%%/bluetooth/btchat/remoteselector.ui %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/btfiletransfer.pro %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/btfiletransfer.qrc %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/busy.gif %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/doc/images/btfiletransfer-example.png %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/doc/src/btfiletransfer.qdoc %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pairing.gif %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.h %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/pindisplay.ui %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.h %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/progress.ui %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.cpp %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.h %%QT_EXAMPLEDIR%%/bluetooth/btfiletransfer/remoteselector.ui %%QT_EXAMPLEDIR%%/bluetooth/btscanner/btscanner.pro %%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.cpp %%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.h %%QT_EXAMPLEDIR%%/bluetooth/btscanner/device.ui %%QT_EXAMPLEDIR%%/bluetooth/btscanner/doc/images/btscanner-example.png %%QT_EXAMPLEDIR%%/bluetooth/btscanner/doc/src/btscanner.qdoc %%QT_EXAMPLEDIR%%/bluetooth/btscanner/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.cpp %%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.h %%QT_EXAMPLEDIR%%/bluetooth/btscanner/service.ui %%QT_EXAMPLEDIR%%/bluetooth/chat/Button.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/InputBox.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/Search.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/chat.pro %%QT_EXAMPLEDIR%%/bluetooth/chat/chat.qml %%QT_EXAMPLEDIR%%/bluetooth/chat/chat.qrc %%QT_EXAMPLEDIR%%/bluetooth/chat/doc/images/chat-view.png %%QT_EXAMPLEDIR%%/bluetooth/chat/doc/src/chat.qdoc %%QT_EXAMPLEDIR%%/bluetooth/chat/images/clear.png %%QT_EXAMPLEDIR%%/bluetooth/chat/images/default.png %%QT_EXAMPLEDIR%%/bluetooth/chat/images/lineedit-bg.png %%QT_EXAMPLEDIR%%/bluetooth/chat/qmlchat.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/README.md %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/bluetoothbaseclass.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/bluetoothbaseclass.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/connectionhandler.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/connectionhandler.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicefinder.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicefinder.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicehandler.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/devicehandler.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/deviceinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/deviceinfo.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-result.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-running.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-search.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/images/heartgame-start.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/doc/src/heartrate-game.qdoc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/heartrate-game.pro %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/heartrate-global.h %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/images.qrc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml.qrc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/App.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/BluetoothAlarmDialog.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/BottomLine.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/Connect.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/GameButton.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/GamePage.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/GameSettings.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/Measure.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/SplashScreen.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/Stats.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/StatsLabel.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/TitleBar.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/images/bt_off_to_on.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/images/heart.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/images/logo.png %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/main.qml %%QT_EXAMPLEDIR%%/bluetooth/heartrate-game/qml/qmldir %%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/doc/src/heartrate-server.qdoc %%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/heartrate-server.pro %%QT_EXAMPLEDIR%%/bluetooth/heartrate-server/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Characteristics.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Dialog.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Header.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Label.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Menu.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/Services.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/busy_dark.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/assets/main.qml %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/characteristicinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/characteristicinfo.h %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/device.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/device.h %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/deviceinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/deviceinfo.h %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-chars.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-devices.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/images/lowenergyscanner-services.png %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/doc/src/lowenergyscanner.qdoc %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/lowenergyscanner.pro %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/resources.qrc %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/serviceinfo.cpp %%QT_EXAMPLEDIR%%/bluetooth/lowenergyscanner/serviceinfo.h %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/Button.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/DeviceDiscovery.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/FileSending.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/PictureSelector.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/background.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/bttransfer.qml %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-1.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-2.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/images/opp-example-3.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/doc/src/picturetransfer.qdoc %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/filetransfer.cpp %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/filetransfer.h %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/icon.png %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/picturetransfer.pro %%QT_EXAMPLEDIR%%/bluetooth/picturetransfer/qmltransfer.qrc %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Board.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Dialog.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/Menu.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/assets/main.qml %%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/images/intro.png %%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/images/intro1.png %%QT_EXAMPLEDIR%%/bluetooth/pingpong/doc/src/pingpong.qdoc %%QT_EXAMPLEDIR%%/bluetooth/pingpong/main.cpp %%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.cpp %%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.h %%QT_EXAMPLEDIR%%/bluetooth/pingpong/pingpong.pro %%QT_EXAMPLEDIR%%/bluetooth/pingpong/resource.qrc %%QT_EXAMPLEDIR%%/bluetooth/scanner/Button.qml %%QT_EXAMPLEDIR%%/bluetooth/scanner/default.png %%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/images/devicescan.png %%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/images/servicescan.png %%QT_EXAMPLEDIR%%/bluetooth/scanner/doc/src/scanner.qdoc %%QT_EXAMPLEDIR%%/bluetooth/scanner/qmlscanner.cpp %%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.pro %%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qml %%QT_EXAMPLEDIR%%/bluetooth/scanner/scanner.qrc %%QT_EXAMPLEDIR%%/canvas3d/3rdparty/ThreeJSLoader.js %%QT_EXAMPLEDIR%%/canvas3d/3rdparty/gl-matrix.js %%QT_EXAMPLEDIR%%/canvas3d/3rdparty/three.js %%QT_EXAMPLEDIR%%/canvas3d/3rdparty/threex.planets.js %%QT_EXAMPLEDIR%%/canvas3d/canvas3d.pro %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/doc/images/framebuffer-example.png %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/doc/src/framebuffer.qdoc %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/framebuffer.pro %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/framebuffer.qrc %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/framebuffer.js %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/main.qml %%QT_EXAMPLEDIR%%/canvas3d/framebuffer/qml/framebuffer/qtlogo.png %%QT_EXAMPLEDIR%%/canvas3d/interaction/3dmodels.txt %%QT_EXAMPLEDIR%%/canvas3d/interaction/doc/images/interaction-example.png %%QT_EXAMPLEDIR%%/canvas3d/interaction/doc/src/interaction.qdoc %%QT_EXAMPLEDIR%%/canvas3d/interaction/interaction.pro %%QT_EXAMPLEDIR%%/canvas3d/interaction/interaction.qrc %%QT_EXAMPLEDIR%%/canvas3d/interaction/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/barrel.jpg %%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/barrel.json %%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/interaction.js %%QT_EXAMPLEDIR%%/canvas3d/interaction/qml/interaction/main.qml %%QT_EXAMPLEDIR%%/canvas3d/interaction/readme.txt %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/3dmodels.txt %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/doc/images/jsonmodels-example.png %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/doc/src/jsonmodels.qdoc %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/jsonmodels.pro %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml.qrc %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/bush.json %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/bush.png %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/gold.jpg %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/gold.json %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.js %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/jsonmodels.qml %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/pallet.jpg %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/pallet.json %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/rock.jpg %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/rock.json %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/woodbox.jpg %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/qml/jsonmodels/woodbox.json %%QT_EXAMPLEDIR%%/canvas3d/jsonmodels/readme.txt %%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/doc/images/quickitemtexture-example.png %%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/doc/src/quickitemtexture.qdoc %%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/qml/quickitemtexture/main.qml %%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/qml/quickitemtexture/quickitemtexture.js %%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/quickitemtexture.pro %%QT_EXAMPLEDIR%%/canvas3d/quickitemtexture/quickitemtexture.qrc %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/doc/images/textureandlight-example.png %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/doc/src/textureandlight.qdoc %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/main.qml %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/qtlogo.png %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/qml/textureandlight/textureandlight.js %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/textureandlight.pro %%QT_EXAMPLEDIR%%/canvas3d/textureandlight/textureandlight.qrc %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/cellphone.pro %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/cellphone.qrc %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/doc/images/cellphone-example.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/doc/src/cellphone.qdoc %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/calendar.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/camera.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/clock.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/contacts.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/gallery.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/games.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/lock.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/mail.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/maps.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/menu_background.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/music.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/plutomap1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/qtlogo_with_alpha.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/settings.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/todo.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/images/videos.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone.js %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_case.json %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_front.json %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphone_icon.json %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphoneapp.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/cellphonecanvas.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/colorselector.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/fpsdisplay.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/cellphone/qml/cellphone/main.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/controls/ControlEventSource.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ImageCube.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/InfoSheet.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/Navibutton.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/SwipeArea.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/doc/images/oneqt-example.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/doc/src/oneqt.qdoc %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/imagecube.js %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/Info.plist %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon29x29~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon40x40~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon50x50@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon50x50~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon57x57.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon57x57@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon60x60@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon72x72@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon72x72~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon76x76@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/ios/OneQtIcon76x76~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.pro %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/oneqt.qrc %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/dataviz.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/devices.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/embedded.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/iot.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/multiscreen.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/puzzle-pieces.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/qtlogo.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/oneqt/textures/qtlogosmall.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/FpsDisplay.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/InfoSheet.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/PlanetButton.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/StyledSlider.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/doc/images/planets-example.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/doc/src/planets.qdoc %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earth.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthbump1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthcloudmapcolortrans.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthmap1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/earthspec1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/galaxy_starfield.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/jupiter.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/jupitermap.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mars.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/marsbump1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/marsmap1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercury.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercurybump.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/mercurymap.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/moonbump1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/moonmap1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/neptune.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/neptunemap.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/plutobump1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/plutomap1k.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturn.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturnmap.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/saturnringcolortrans.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/sun.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/sunmap.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranus.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranusmap.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/uranusringcolortrans.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venus.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venusbump.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/images/venusmap.jpg %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon29x29~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon40x40~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon50x50@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon50x50~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon57x57.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon57x57@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon60x60@2x.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon72x72@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon72x72~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon76x76@2x~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/AppIcon76x76~ipad.png %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/ios/Info.plist %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/main.cpp %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.js %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.pro %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.qml %%QT_EXAMPLEDIR%%/canvas3d/threejs/planets/planets.qrc %%QT_EXAMPLEDIR%%/canvas3d/threejs/threejs.pro %%QT_EXAMPLEDIR%%/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%%/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%%/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/itemview_transitions/OsloListModel.qml %%QT_EXAMPLEDIR%%/location/itemview_transitions/doc/images/itemview_trasitions.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%%/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%%/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%%/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%%/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%%/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%%/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%%/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%%/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/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%%/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/misc/qt5-l10n/Makefile =================================================================== --- head/misc/qt5-l10n/Makefile (revision 492792) +++ head/misc/qt5-l10n/Makefile (revision 492793) @@ -1,15 +1,14 @@ # $FreeBSD$ PORTNAME= l10n DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= misc PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt localized messages USES= qmake qt-dist:5,translations USE_QT= qmake_build linguisttools_build .include Index: head/misc/qt5-l10n/pkg-plist =================================================================== --- head/misc/qt5-l10n/pkg-plist (revision 492792) +++ head/misc/qt5-l10n/pkg-plist (revision 492793) @@ -1,289 +1,256 @@ %%QT_L10NDIR%%/assistant_ar.qm %%QT_L10NDIR%%/assistant_bg.qm %%QT_L10NDIR%%/assistant_cs.qm %%QT_L10NDIR%%/assistant_da.qm %%QT_L10NDIR%%/assistant_de.qm %%QT_L10NDIR%%/assistant_en.qm %%QT_L10NDIR%%/assistant_es.qm %%QT_L10NDIR%%/assistant_fr.qm %%QT_L10NDIR%%/assistant_hu.qm %%QT_L10NDIR%%/assistant_ja.qm %%QT_L10NDIR%%/assistant_ko.qm %%QT_L10NDIR%%/assistant_pl.qm %%QT_L10NDIR%%/assistant_ru.qm %%QT_L10NDIR%%/assistant_sk.qm %%QT_L10NDIR%%/assistant_sl.qm %%QT_L10NDIR%%/assistant_uk.qm %%QT_L10NDIR%%/assistant_zh_CN.qm %%QT_L10NDIR%%/assistant_zh_TW.qm %%QT_L10NDIR%%/designer_ar.qm %%QT_L10NDIR%%/designer_bg.qm %%QT_L10NDIR%%/designer_cs.qm %%QT_L10NDIR%%/designer_da.qm %%QT_L10NDIR%%/designer_de.qm %%QT_L10NDIR%%/designer_en.qm %%QT_L10NDIR%%/designer_es.qm %%QT_L10NDIR%%/designer_fr.qm %%QT_L10NDIR%%/designer_hu.qm %%QT_L10NDIR%%/designer_ja.qm %%QT_L10NDIR%%/designer_ko.qm %%QT_L10NDIR%%/designer_pl.qm %%QT_L10NDIR%%/designer_ru.qm %%QT_L10NDIR%%/designer_sk.qm %%QT_L10NDIR%%/designer_sl.qm %%QT_L10NDIR%%/designer_uk.qm %%QT_L10NDIR%%/designer_zh_CN.qm %%QT_L10NDIR%%/designer_zh_TW.qm %%QT_L10NDIR%%/linguist_ar.qm %%QT_L10NDIR%%/linguist_bg.qm %%QT_L10NDIR%%/linguist_cs.qm %%QT_L10NDIR%%/linguist_da.qm %%QT_L10NDIR%%/linguist_de.qm %%QT_L10NDIR%%/linguist_en.qm %%QT_L10NDIR%%/linguist_es.qm %%QT_L10NDIR%%/linguist_fr.qm %%QT_L10NDIR%%/linguist_hu.qm %%QT_L10NDIR%%/linguist_it.qm %%QT_L10NDIR%%/linguist_ja.qm %%QT_L10NDIR%%/linguist_ko.qm %%QT_L10NDIR%%/linguist_pl.qm %%QT_L10NDIR%%/linguist_ru.qm %%QT_L10NDIR%%/linguist_sk.qm %%QT_L10NDIR%%/linguist_sl.qm %%QT_L10NDIR%%/linguist_uk.qm %%QT_L10NDIR%%/linguist_zh_CN.qm %%QT_L10NDIR%%/linguist_zh_TW.qm -%%QT_L10NDIR%%/qmlviewer_ar.qm -%%QT_L10NDIR%%/qmlviewer_bg.qm -%%QT_L10NDIR%%/qmlviewer_cs.qm -%%QT_L10NDIR%%/qmlviewer_da.qm -%%QT_L10NDIR%%/qmlviewer_en.qm -%%QT_L10NDIR%%/qmlviewer_es.qm -%%QT_L10NDIR%%/qmlviewer_fi.qm -%%QT_L10NDIR%%/qmlviewer_fr.qm -%%QT_L10NDIR%%/qmlviewer_he.qm -%%QT_L10NDIR%%/qmlviewer_hu.qm -%%QT_L10NDIR%%/qmlviewer_ja.qm -%%QT_L10NDIR%%/qmlviewer_ko.qm -%%QT_L10NDIR%%/qmlviewer_pl.qm -%%QT_L10NDIR%%/qmlviewer_ru.qm -%%QT_L10NDIR%%/qmlviewer_sk.qm -%%QT_L10NDIR%%/qmlviewer_uk.qm %%QT_L10NDIR%%/qt_ar.qm %%QT_L10NDIR%%/qt_bg.qm %%QT_L10NDIR%%/qt_ca.qm %%QT_L10NDIR%%/qt_cs.qm %%QT_L10NDIR%%/qt_da.qm %%QT_L10NDIR%%/qt_de.qm %%QT_L10NDIR%%/qt_en.qm %%QT_L10NDIR%%/qt_es.qm %%QT_L10NDIR%%/qt_fa.qm %%QT_L10NDIR%%/qt_fi.qm %%QT_L10NDIR%%/qt_fr.qm %%QT_L10NDIR%%/qt_gd.qm %%QT_L10NDIR%%/qt_gl.qm %%QT_L10NDIR%%/qt_he.qm %%QT_L10NDIR%%/qt_help_ar.qm %%QT_L10NDIR%%/qt_help_bg.qm %%QT_L10NDIR%%/qt_help_cs.qm %%QT_L10NDIR%%/qt_help_da.qm %%QT_L10NDIR%%/qt_help_de.qm %%QT_L10NDIR%%/qt_help_en.qm %%QT_L10NDIR%%/qt_help_es.qm %%QT_L10NDIR%%/qt_help_fr.qm %%QT_L10NDIR%%/qt_help_gl.qm %%QT_L10NDIR%%/qt_help_hu.qm %%QT_L10NDIR%%/qt_help_it.qm %%QT_L10NDIR%%/qt_help_ja.qm %%QT_L10NDIR%%/qt_help_ko.qm %%QT_L10NDIR%%/qt_help_pl.qm %%QT_L10NDIR%%/qt_help_ru.qm %%QT_L10NDIR%%/qt_help_sk.qm %%QT_L10NDIR%%/qt_help_sl.qm %%QT_L10NDIR%%/qt_help_uk.qm %%QT_L10NDIR%%/qt_help_zh_CN.qm %%QT_L10NDIR%%/qt_help_zh_TW.qm %%QT_L10NDIR%%/qt_hu.qm %%QT_L10NDIR%%/qt_it.qm %%QT_L10NDIR%%/qt_ja.qm %%QT_L10NDIR%%/qt_ko.qm %%QT_L10NDIR%%/qt_lt.qm %%QT_L10NDIR%%/qt_lv.qm %%QT_L10NDIR%%/qt_pl.qm %%QT_L10NDIR%%/qt_pt.qm %%QT_L10NDIR%%/qt_ru.qm %%QT_L10NDIR%%/qt_sk.qm %%QT_L10NDIR%%/qt_sl.qm %%QT_L10NDIR%%/qt_sv.qm %%QT_L10NDIR%%/qt_uk.qm %%QT_L10NDIR%%/qt_zh_CN.qm %%QT_L10NDIR%%/qt_zh_TW.qm %%QT_L10NDIR%%/qtbase_ar.qm %%QT_L10NDIR%%/qtbase_bg.qm %%QT_L10NDIR%%/qtbase_ca.qm %%QT_L10NDIR%%/qtbase_cs.qm %%QT_L10NDIR%%/qtbase_da.qm %%QT_L10NDIR%%/qtbase_de.qm %%QT_L10NDIR%%/qtbase_en.qm %%QT_L10NDIR%%/qtbase_es.qm %%QT_L10NDIR%%/qtbase_fi.qm %%QT_L10NDIR%%/qtbase_fr.qm %%QT_L10NDIR%%/qtbase_gd.qm %%QT_L10NDIR%%/qtbase_he.qm %%QT_L10NDIR%%/qtbase_hu.qm %%QT_L10NDIR%%/qtbase_it.qm %%QT_L10NDIR%%/qtbase_ja.qm %%QT_L10NDIR%%/qtbase_ko.qm %%QT_L10NDIR%%/qtbase_lv.qm %%QT_L10NDIR%%/qtbase_pl.qm %%QT_L10NDIR%%/qtbase_ru.qm %%QT_L10NDIR%%/qtbase_sk.qm %%QT_L10NDIR%%/qtbase_uk.qm %%QT_L10NDIR%%/qtconnectivity_bg.qm %%QT_L10NDIR%%/qtconnectivity_da.qm %%QT_L10NDIR%%/qtconnectivity_de.qm %%QT_L10NDIR%%/qtconnectivity_en.qm %%QT_L10NDIR%%/qtconnectivity_es.qm %%QT_L10NDIR%%/qtconnectivity_hu.qm %%QT_L10NDIR%%/qtconnectivity_ko.qm %%QT_L10NDIR%%/qtconnectivity_pl.qm %%QT_L10NDIR%%/qtconnectivity_ru.qm %%QT_L10NDIR%%/qtconnectivity_uk.qm %%QT_L10NDIR%%/qtdeclarative_bg.qm %%QT_L10NDIR%%/qtdeclarative_da.qm %%QT_L10NDIR%%/qtdeclarative_de.qm %%QT_L10NDIR%%/qtdeclarative_en.qm %%QT_L10NDIR%%/qtdeclarative_es.qm %%QT_L10NDIR%%/qtdeclarative_fi.qm %%QT_L10NDIR%%/qtdeclarative_fr.qm %%QT_L10NDIR%%/qtdeclarative_hu.qm %%QT_L10NDIR%%/qtdeclarative_ja.qm %%QT_L10NDIR%%/qtdeclarative_ko.qm %%QT_L10NDIR%%/qtdeclarative_lv.qm %%QT_L10NDIR%%/qtdeclarative_pl.qm %%QT_L10NDIR%%/qtdeclarative_ru.qm %%QT_L10NDIR%%/qtdeclarative_sk.qm %%QT_L10NDIR%%/qtdeclarative_uk.qm %%QT_L10NDIR%%/qtlocation_bg.qm %%QT_L10NDIR%%/qtlocation_da.qm %%QT_L10NDIR%%/qtlocation_de.qm %%QT_L10NDIR%%/qtlocation_en.qm %%QT_L10NDIR%%/qtlocation_es.qm +%%QT_L10NDIR%%/qtlocation_fi.qm %%QT_L10NDIR%%/qtlocation_fr.qm %%QT_L10NDIR%%/qtlocation_hu.qm %%QT_L10NDIR%%/qtlocation_ko.qm %%QT_L10NDIR%%/qtlocation_pl.qm %%QT_L10NDIR%%/qtlocation_ru.qm %%QT_L10NDIR%%/qtlocation_uk.qm %%QT_L10NDIR%%/qtmultimedia_ar.qm %%QT_L10NDIR%%/qtmultimedia_bg.qm %%QT_L10NDIR%%/qtmultimedia_ca.qm %%QT_L10NDIR%%/qtmultimedia_cs.qm %%QT_L10NDIR%%/qtmultimedia_da.qm %%QT_L10NDIR%%/qtmultimedia_de.qm %%QT_L10NDIR%%/qtmultimedia_en.qm %%QT_L10NDIR%%/qtmultimedia_es.qm %%QT_L10NDIR%%/qtmultimedia_fi.qm %%QT_L10NDIR%%/qtmultimedia_fr.qm %%QT_L10NDIR%%/qtmultimedia_hu.qm %%QT_L10NDIR%%/qtmultimedia_it.qm %%QT_L10NDIR%%/qtmultimedia_ja.qm %%QT_L10NDIR%%/qtmultimedia_ko.qm %%QT_L10NDIR%%/qtmultimedia_pl.qm %%QT_L10NDIR%%/qtmultimedia_ru.qm %%QT_L10NDIR%%/qtmultimedia_sk.qm %%QT_L10NDIR%%/qtmultimedia_uk.qm -%%QT_L10NDIR%%/qtquick1_bg.qm -%%QT_L10NDIR%%/qtquick1_ca.qm -%%QT_L10NDIR%%/qtquick1_cs.qm -%%QT_L10NDIR%%/qtquick1_da.qm -%%QT_L10NDIR%%/qtquick1_de.qm -%%QT_L10NDIR%%/qtquick1_en.qm -%%QT_L10NDIR%%/qtquick1_es.qm -%%QT_L10NDIR%%/qtquick1_fi.qm -%%QT_L10NDIR%%/qtquick1_fr.qm -%%QT_L10NDIR%%/qtquick1_he.qm -%%QT_L10NDIR%%/qtquick1_hu.qm -%%QT_L10NDIR%%/qtquick1_it.qm -%%QT_L10NDIR%%/qtquick1_ja.qm -%%QT_L10NDIR%%/qtquick1_ko.qm -%%QT_L10NDIR%%/qtquick1_pl.qm -%%QT_L10NDIR%%/qtquick1_ru.qm -%%QT_L10NDIR%%/qtquick1_sk.qm -%%QT_L10NDIR%%/qtquick1_uk.qm %%QT_L10NDIR%%/qtquickcontrols2_ar.qm %%QT_L10NDIR%%/qtquickcontrols2_bg.qm %%QT_L10NDIR%%/qtquickcontrols2_da.qm %%QT_L10NDIR%%/qtquickcontrols2_en.qm %%QT_L10NDIR%%/qtquickcontrols2_hu.qm %%QT_L10NDIR%%/qtquickcontrols2_ko.qm %%QT_L10NDIR%%/qtquickcontrols2_uk.qm %%QT_L10NDIR%%/qtquickcontrols_bg.qm %%QT_L10NDIR%%/qtquickcontrols_da.qm %%QT_L10NDIR%%/qtquickcontrols_de.qm %%QT_L10NDIR%%/qtquickcontrols_en.qm %%QT_L10NDIR%%/qtquickcontrols_fi.qm %%QT_L10NDIR%%/qtquickcontrols_fr.qm %%QT_L10NDIR%%/qtquickcontrols_ja.qm %%QT_L10NDIR%%/qtquickcontrols_ru.qm %%QT_L10NDIR%%/qtquickcontrols_uk.qm %%QT_L10NDIR%%/qtscript_ar.qm %%QT_L10NDIR%%/qtscript_bg.qm %%QT_L10NDIR%%/qtscript_ca.qm %%QT_L10NDIR%%/qtscript_cs.qm %%QT_L10NDIR%%/qtscript_da.qm %%QT_L10NDIR%%/qtscript_de.qm %%QT_L10NDIR%%/qtscript_en.qm %%QT_L10NDIR%%/qtscript_es.qm %%QT_L10NDIR%%/qtscript_fi.qm %%QT_L10NDIR%%/qtscript_fr.qm %%QT_L10NDIR%%/qtscript_he.qm %%QT_L10NDIR%%/qtscript_hu.qm %%QT_L10NDIR%%/qtscript_it.qm %%QT_L10NDIR%%/qtscript_ja.qm %%QT_L10NDIR%%/qtscript_ko.qm %%QT_L10NDIR%%/qtscript_lv.qm %%QT_L10NDIR%%/qtscript_pl.qm %%QT_L10NDIR%%/qtscript_ru.qm %%QT_L10NDIR%%/qtscript_sk.qm %%QT_L10NDIR%%/qtscript_uk.qm %%QT_L10NDIR%%/qtserialport_de.qm %%QT_L10NDIR%%/qtserialport_en.qm %%QT_L10NDIR%%/qtserialport_es.qm %%QT_L10NDIR%%/qtserialport_ja.qm %%QT_L10NDIR%%/qtserialport_ko.qm %%QT_L10NDIR%%/qtserialport_pl.qm %%QT_L10NDIR%%/qtserialport_ru.qm %%QT_L10NDIR%%/qtserialport_uk.qm %%QT_L10NDIR%%/qtwebengine_de.qm %%QT_L10NDIR%%/qtwebengine_en.qm %%QT_L10NDIR%%/qtwebengine_es.qm %%QT_L10NDIR%%/qtwebengine_ko.qm %%QT_L10NDIR%%/qtwebengine_pl.qm %%QT_L10NDIR%%/qtwebengine_ru.qm %%QT_L10NDIR%%/qtwebengine_uk.qm %%QT_L10NDIR%%/qtwebsockets_de.qm %%QT_L10NDIR%%/qtwebsockets_en.qm %%QT_L10NDIR%%/qtwebsockets_es.qm %%QT_L10NDIR%%/qtwebsockets_fr.qm %%QT_L10NDIR%%/qtwebsockets_ja.qm %%QT_L10NDIR%%/qtwebsockets_ko.qm %%QT_L10NDIR%%/qtwebsockets_pl.qm %%QT_L10NDIR%%/qtwebsockets_ru.qm %%QT_L10NDIR%%/qtwebsockets_uk.qm %%QT_L10NDIR%%/qtxmlpatterns_bg.qm %%QT_L10NDIR%%/qtxmlpatterns_ca.qm %%QT_L10NDIR%%/qtxmlpatterns_cs.qm %%QT_L10NDIR%%/qtxmlpatterns_da.qm %%QT_L10NDIR%%/qtxmlpatterns_de.qm %%QT_L10NDIR%%/qtxmlpatterns_en.qm %%QT_L10NDIR%%/qtxmlpatterns_es.qm %%QT_L10NDIR%%/qtxmlpatterns_fr.qm %%QT_L10NDIR%%/qtxmlpatterns_hu.qm %%QT_L10NDIR%%/qtxmlpatterns_it.qm %%QT_L10NDIR%%/qtxmlpatterns_ja.qm %%QT_L10NDIR%%/qtxmlpatterns_ko.qm %%QT_L10NDIR%%/qtxmlpatterns_pl.qm %%QT_L10NDIR%%/qtxmlpatterns_ru.qm %%QT_L10NDIR%%/qtxmlpatterns_sk.qm %%QT_L10NDIR%%/qtxmlpatterns_uk.qm Index: head/multimedia/phonon/Makefile =================================================================== --- head/multimedia/phonon/Makefile (revision 492792) +++ head/multimedia/phonon/Makefile (revision 492793) @@ -1,69 +1,69 @@ # Created by: Martin Wilke # $FreeBSD$ PORTNAME= phonon DISTVERSION= 4.10.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} DIST_SUBDIR= KDE/phonon MAINTAINER= kde@FreeBSD.org COMMENT= KDE multimedia framework LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB FLAVORS= qt5 qt4 FLAVOR?= ${FLAVORS:[1]} qt4_BUILD_DEPENDS= automoc4:devel/automoc4 qt4_LIB_DEPENDS= libqzeitgeist.so:sysutils/qzeitgeist qt4_PKGNAMESUFFIX= -qt4 qt5_PKGNAMESUFFIX= -qt5 qt4_PLIST= ${.CURDIR}/pkg-plist.qt4 qt5_PLIST= ${.CURDIR}/pkg-plist.qt5 USES= cmake compiler:c++11-lang pathfix tar:xz CMAKE_ON= PHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT \ PHONON_NO_PLATFORMPLUGIN CMAKE_OFF= PHONON_BUILD_DESIGNER_PLUGIN USE_LDCONFIG= yes . if ${FLAVOR} == qt4 DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE=2019-03-15 USES+= qt:4 USE_QT= corelib dbus declarative gui testlib \ qmake_build moc_build rcc_build uic_build . else USES+= kde:5 qt:5 USE_KDE= ecm USE_QT= core dbus gui opengl widgets \ buildtools_build qmake_build CMAKE_OFF+= PHONON_BUILD_DECLARATIVE_PLUGIN CMAKE_ON+= PHONON_BUILD_PHONON4QT5 . endif PLIST_SUB= SHLIB_VER=${DISTVERSION} OPTIONS_DEFINE= PULSEAUDIO PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_USE= GNOME=glib20 PULSEAUDIO_CMAKE_BOOL= WITH_PulseAudio . if ${FLAVOR} == qt4 post-install: ${MKDIR} ${STAGEDIR}${QT_INCDIR} ${MKDIR} ${STAGEDIR}${QT_LIBDIR} ${RLN} ${STAGEDIR}${PREFIX}/include/phonon ${STAGEDIR}${QT_INCDIR}/phonon ${RLN} ${STAGEDIR}${PREFIX}/include/phonon ${STAGEDIR}${QT_INCDIR}/Phonon ${RLN} ${STAGEDIR}${PREFIX}/include/KDE/Phonon ${STAGEDIR}${PREFIX}/include/phonon/Phonon . for lib in phonon phononexperimental ${RLN} ${STAGEDIR}${PREFIX}/lib/lib${lib}.so.${DISTVERSION} ${STAGEDIR}${QT_LIBDIR}/lib${lib}.so ${RLN} ${STAGEDIR}${PREFIX}/lib/lib${lib}.so.${DISTVERSION} ${STAGEDIR}${QT_LIBDIR}/lib${lib}.so.4 . endfor . endif .include Index: head/multimedia/phonon/files/patch-git_qt5-5.12.1 =================================================================== --- head/multimedia/phonon/files/patch-git_qt5-5.12.1 (nonexistent) +++ head/multimedia/phonon/files/patch-git_qt5-5.12.1 (revision 492793) @@ -0,0 +1,34 @@ +From f49c9a9921d5678628df394ebafa4e9b62b2af0e Mon Sep 17 00:00:00 2001 +From: "Tobias C. Berner" +Date: Mon, 11 Feb 2019 07:14:23 +0100 +Subject: [PATCH] Define QT.phonon4qt5.module = phonon4qt5 for Qt5-5.12.1 + +Summary: +I think [1] broke the qt5_phonon.pri file [2] -- the library is no +longer added to the linker arguments. + +[1] https://github.com/qt/qtbase/commit/e0926ca4260953a70cdb2a6f84da35517ead1349#diff-4b36b0980a641d6a8d8e640f89c45625 +[2] http://package22.nyi.freebsd.org/data/112amd64-default-PR235620PR235622/2019-02-09_20h17m10s/logs/auralquiz-1.0.0_2.log + +Reviewers: #freebsd, sitter, O4 phonon + +Differential Revision: https://phabricator.kde.org/D18919 +--- + qt5_phonon.pri | 1 + + 1 file changed, 1 insertion(+) + +diff --git qt5_phonon.pri qt5_phonon.pri +index 5dfeac8f..54216690 100644 +--- qt5_phonon.pri ++++ qt5_phonon.pri +@@ -5,6 +5,7 @@ QT.@PHONON_LIB_SONAME@.PATCH_VERSION = @PHONON_LIB_PATCH_VERSION@ + QT.@PHONON_LIB_SONAME@.name = @PHONON_LIB_SONAME@ + QT.@PHONON_LIB_SONAME@.bins = + QT.@PHONON_LIB_SONAME@.includes = @ABS_INCLUDE_INSTALL_DIR@ ++QT.@PHONON_LIB_SONAME@.module = @PHONON_LIB_SONAME@ + QT.@PHONON_LIB_SONAME@.private_includes = + QT.@PHONON_LIB_SONAME@.sources = + QT.@PHONON_LIB_SONAME@.libs = @ABS_LIB_INSTALL_DIR@ +-- +2.20.1 + Property changes on: head/multimedia/phonon/files/patch-git_qt5-5.12.1 ___________________________________________________________________ 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/multimedia/qt5-multimedia/Makefile =================================================================== --- head/multimedia/qt5-multimedia/Makefile (revision 492792) +++ head/multimedia/qt5-multimedia/Makefile (revision 492793) @@ -1,58 +1,57 @@ # $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 qmake:norecursive \ qt-dist:5,multimedia 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 OPENAL_USES= openal OPENAL_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-openal 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/net/qt5-network/Makefile =================================================================== --- head/net/qt5-network/Makefile (revision 492792) +++ head/net/qt5-network/Makefile (revision 492793) @@ -1,48 +1,47 @@ # $FreeBSD$ PORTNAME= network DISTVERSION= ${QT5_VERSION} -PORTREVISION= 5 CATEGORIES= net ipv6 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 492792) +++ head/net/qt5-network/files/patch-src_network_kernel_qnetworkinterface__unix.cpp (revision 492793) @@ -1,106 +1,100 @@ 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 2018-12-03 11:15:26 UTC -+++ src/network/kernel/qnetworkinterface_unix.cpp -@@ -419,12 +419,23 @@ QT_BEGIN_INCLUDE_NAMESPACE +--- 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 @@ #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() + { + 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) { -@@ -463,9 +474,6 @@ static QNetworkInterface::InterfaceType - case IFM_ETHER: - return QNetworkInterface::Ethernet; - -- case IFM_FDDI: -- return QNetworkInterface::Fddi; -- - case IFM_IEEE80211: - return QNetworkInterface::Ieee80211; - } -@@ -477,15 +485,8 @@ static QNetworkInterface::InterfaceType + // Determine the interface type. +@@ -480,16 +492,9 @@ static QList createInterfaces(ifaddrs *rawList) { QList interfaces; - union { - struct ifmediareq mediareq; - struct ifreq req; - }; - int socket = -1; -- -- // 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; +- // 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); +- // on NetBSD we use AF_LINK and sockaddr_dl // scan the list for that family -@@ -500,13 +501,21 @@ static QList + for (ifaddrs *ptr = rawList; ptr; ptr = ptr->ifa_next) +@@ -503,13 +508,22 @@ iface->flags = convertFlags(ptr->ifa_flags); iface->hardwareAddress = iface->makeHwAddress(sdl->sdl_alen, (uchar*)LLADDR(sdl)); -- strlcpy(mediareq.ifm_name, ptr->ifa_name, sizeof(mediareq.ifm_name)); +- 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); + } ++ } - if (socket != -1) - qt_safe_close(socket); return interfaces; } -@@ -605,7 +614,7 @@ static QList +@@ -608,7 +622,7 @@ { QList interfaces; - ifaddrs *interfaceListing; + ifaddrs *interfaceListing = nullptr; if (getifaddrs(&interfaceListing) == -1) { // error return interfaces; Index: head/net/qt5-networkauth/Makefile =================================================================== --- head/net/qt5-networkauth/Makefile (revision 492792) +++ head/net/qt5-networkauth/Makefile (revision 492793) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= networkauth DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= net ipv6 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 492792) +++ head/print/qt5-printsupport/Makefile (revision 492793) @@ -1,59 +1,58 @@ # $FreeBSD$ PORTNAME= printsupport DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/sysutils/qt5-qtdiag/Makefile (revision 492793) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= qtdiag DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/sysutils/qt5-qtpaths/Makefile (revision 492793) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= qtpaths DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/sysutils/qt5-qtplugininfo/Makefile (revision 492793) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= qtplugininfo DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/textproc/qt5-xml/Makefile (revision 492793) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= xml DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/textproc/qt5-xmlpatterns/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= xmlpatterns DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/www/qt5-webchannel/Makefile (revision 492793) @@ -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 492792) +++ head/www/qt5-webengine/Makefile (revision 492793) @@ -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 are disabling support for features such as WebRTC and printing. We need # to see what it would take to properly support them. # - 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} -PORTREVISION= 14 +PORTREVISION= 15 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/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 \ 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 \ libwebp.so:graphics/webp DISTINFO_FILE= ${.CURDIR}/distinfo QT5_VERSION= 5.9.5 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= gperf jpeg python:2.7,build pkgconfig \ qmake:norecursive,outsource qt-dist:5,webengine shebangfix 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-webkit/Makefile =================================================================== --- head/www/qt5-webkit/Makefile (revision 492792) +++ head/www/qt5-webkit/Makefile (revision 492793) @@ -1,55 +1,55 @@ # $FreeBSD$ PORTNAME= webkit DISTVERSION= 5.212.0-alpha2 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= www MASTER_SITES= https://github.com/annulen/${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 \ libgstapp-1.0.so:multimedia/gstreamer1-plugins \ libgstbase-1.0.so:multimedia/gstreamer1 \ libhyphen.so:textproc/hyphen \ libicui18n.so:devel/icu \ libpng.so:graphics/png \ libwebp.so:graphics/webp USES= bison cmake compiler:c++11-lang gperf jpeg \ pathfix perl5 pkgconfig python:2.7,build qt:5 sqlite:3 \ tar:xz USE_GNOME= glib20 libxml2 libxslt USE_PERL5= build USE_GSTREAMER1= core 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}" .include Index: head/www/qt5-websockets/Makefile =================================================================== --- head/www/qt5-websockets/Makefile (revision 492792) +++ head/www/qt5-websockets/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= websockets DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/www/qt5-websockets-qml/Makefile (revision 492793) @@ -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 492792) +++ head/www/qt5-webview/Makefile (revision 492793) @@ -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/x11/qt5-qev/Makefile =================================================================== --- head/x11/qt5-qev/Makefile (revision 492792) +++ head/x11/qt5-qev/Makefile (revision 492793) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= qev DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 492792) +++ head/x11/qt5-x11extras/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= x11extras DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-toolkits/qt5-canvas3d/Makefile =================================================================== --- head/x11-toolkits/qt5-canvas3d/Makefile (revision 492792) +++ head/x11-toolkits/qt5-canvas3d/Makefile (revision 492793) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= canvas3d DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt canvas3d module USES= compiler:c++11-lang qmake qt-dist:5,canvas3d USE_QT= core declarative gui network buildtools_build USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Index: head/x11-toolkits/qt5-charts/Makefile =================================================================== --- head/x11-toolkits/qt5-charts/Makefile (revision 492792) +++ head/x11-toolkits/qt5-charts/Makefile (revision 492793) @@ -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 492792) +++ head/x11-toolkits/qt5-datavis3d/Makefile (revision 492793) @@ -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 492792) +++ head/x11-toolkits/qt5-declarative/Makefile (revision 492793) @@ -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-gamepad/Makefile =================================================================== --- head/x11-toolkits/qt5-gamepad/Makefile (revision 492792) +++ head/x11-toolkits/qt5-gamepad/Makefile (revision 492793) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= gamepad DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 Gamepad Module 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 492792) +++ head/x11-toolkits/qt5-gui/Makefile (revision 492793) @@ -1,105 +1,104 @@ # $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 LIB_DEPENDS= libdbus-1.so:devel/dbus \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ 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 jpeg localbase qmake:no_env qt-dist:5,base 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-evdev \ -no-libudev \ -system-harfbuzz # Explicitely set to c++14 as to net get c++17/c++1z, as libX11's headers # are using the obsolete 'register' key word. 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 CFLAGS_powerpc64= -mminimal-toc 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 492792) +++ head/x11-toolkits/qt5-gui/pkg-plist (revision 492793) @@ -1,834 +1,834 @@ -%%QT_BINDIR%%/qvkgen %%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/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/qimagescale_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/qtextureglyphcache_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/qvulkanwindow_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%%/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/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/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_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_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%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake %%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfigVersion.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%%/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_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_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%%/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/libqvnc.so -%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqvnc.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 492792) +++ head/x11-toolkits/qt5-quickcontrols/Makefile (revision 492793) @@ -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 492792) +++ head/x11-toolkits/qt5-quickcontrols2/Makefile (revision 492793) @@ -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 492792) +++ head/x11-toolkits/qt5-uiplugin/Makefile (revision 492793) @@ -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/files/patch-src__src.pro =================================================================== --- head/x11-toolkits/qt5-uiplugin/files/patch-src__src.pro (revision 492792) +++ head/x11-toolkits/qt5-uiplugin/files/patch-src__src.pro (revision 492793) @@ -1,58 +1,60 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro.orig 2018-10-16 20:12:06 UTC +--- src/src.pro.orig 2019-02-08 21:07:16 UTC +++ src/src.pro -@@ -1,52 +1,3 @@ +@@ -1,54 +1,3 @@ TEMPLATE = subdirs -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") - } else { - QT_FOR_CONFIG += widgets - qtConfig(pushbutton):qtConfig(toolbutton) { - SUBDIRS = assistant \ - designer \ - pixeltool - - linguist.depends = designer - } - qtHaveModule(quick):qtConfig(thread):qtConfig(toolbutton): SUBDIRS += distancefieldgenerator - } -} - -SUBDIRS += linguist \ - qtattributionsscanner - -qtConfig(library) { - !android|android_app: SUBDIRS += qtplugininfo -} - --config_clang: qtConfig(thread): SUBDIRS += qdoc +-include($$OUT_PWD/qdoc/qtqdoc-config.pri) +-QT_FOR_CONFIG += qdoc-private +-qtConfig(qdoc): qtConfig(thread): SUBDIRS += qdoc - -!android|android_app: SUBDIRS += qtpaths - -macos { - SUBDIRS += macdeployqt -} - -qtHaveModule(dbus): SUBDIRS += qdbus - -win32|winrt:SUBDIRS += windeployqt -winrt:SUBDIRS += winrtrunner -qtHaveModule(gui):!android:!uikit:!qnx:!winrt: SUBDIRS += qtdiag - -qtNomakeTools( \ - distancefieldgenerator \ - pixeltool \ -) - -# This is necessary to avoid a race condition between toolchain.prf -# invocations in a module-by-module cross-build. -cross_compile:isEmpty(QMAKE_HOST_CXX.INCDIRS) { - qdoc.depends += qtattributionsscanner - windeployqt.depends += qtattributionsscanner - winrtrunner.depends += qtattributionsscanner - linguist.depends += qtattributionsscanner -} +SUBDIRS = designer Index: head/x11-toolkits/qt5-virtualkeyboard/Makefile =================================================================== --- head/x11-toolkits/qt5-virtualkeyboard/Makefile (revision 492792) +++ head/x11-toolkits/qt5-virtualkeyboard/Makefile (revision 492793) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= virtualkeyboard DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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-widgets/Makefile =================================================================== --- head/x11-toolkits/qt5-widgets/Makefile (revision 492792) +++ head/x11-toolkits/qt5-widgets/Makefile (revision 492793) @@ -1,72 +1,71 @@ # $FreeBSD$ PORTNAME= widgets DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 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 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_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