Index: head/Mk/Uses/pyqt.mk =================================================================== --- head/Mk/Uses/pyqt.mk (revision 439793) +++ head/Mk/Uses/pyqt.mk (revision 439794) @@ -1,259 +1,259 @@ # $FreeBSD$ # # Handle PyQt related ports # # Feature: pyqt # Usage: USES=pyqt:ARGS # Valid ARGS: 4,5 # # MAINTAINER: kde@FreeBSD.org # # Internal Port variables for PyQt ports: # PYQT_DIST - This port is part of PyQt4/5 itself. Variables and # targets are then set assuming a certain tarball and # port layout. # USE_PYQT - List of PyQt components to depend on # * foo_build only build depend # * foo_run only run depend # * foo both (default) # SIPDIR - Absolute path where sip files will be installed # SIPDIR_REL - Relative version of SIPDIR # # Also PYQT_SIPDIR=${SIPDIR_REL} will be added to PLIST_SUB. # .if !defined(_INCLUDE_USES_PYQT_MK) _INCLUDE_USES_PYQT_MK= yes # At the moment we support PyQt bindings versions 4 and 5, sip # option is for internal use by the py-sip ports. _PYQT_SUPPORTED= 4 5 sip .if empty(pyqt_ARGS) IGNORE= pyqt needs a qt-version (${_PYQT_SUPPORTED}) .endif # At the moment we support PyQt bindings versions 4 and 5 .for ver in ${_PYQT_SUPPORTED:O:u} . if ${pyqt_ARGS:M${ver}} . if empty(_PYQT_VERSION) _PYQT_VERSION= ${ver} . else IGNORE?= cannot be installed: different PYQT versions specified via pyqt:[${_PYQT_SUPPORTED:S/ //g}] . endif . endif .endfor .if empty(_PYQT_VERSION) IGNORE?= USES=pyqt needs a version number (valid values: ${_PYQT_SUPPORTED}) .endif PYQT_MAINTAINER= kde@FreeBSD.org MASTER_SITE_RIVERBANK= http://www.riverbankcomputing.com/static/Downloads/%SUBDIR%/ MASTER_SITES_SIP= SF/pyqt/sip/sip-${PORTVERSION} \ GENTOO MASTER_SITES_PYQT4= SF/pyqt/PyQt4/PyQt-${PORTVERSION} \ GENTOO MASTER_SITES_PYQT5= SF/pyqt/PyQt5/PyQt-${PORTVERSION} \ GENTOO MASTER_SITES_QSCI2= SF/pyqt/QScintilla2/QScintilla-${PORTVERSION} \ GENTOO -SIP_VERSION= 4.18 +SIP_VERSION= 4.19.2 QSCI2_VERSION= 2.9.1 -PYQT4_VERSION= 4.11.4 -PYQT5_VERSION= 5.6 +PYQT4_VERSION= 4.12 +PYQT5_VERSION= 5.7.1 SIP_DISTNAME= sip-${SIP_VERSION} -PYQT4_DISTNAME= PyQt-x11-gpl-${PYQT4_VERSION} -PYQT4_DISTINFO_FILE= ${.CURDIR}/../../devel/${PYQT_RELNAME}/distinfo +PYQT4_DISTNAME= PyQt4_gpl_x11-${PYQT4_VERSION} +PYQT4_DISTINFO_FILE= ${.CURDIR:H:H}/devel/${PYQT_RELNAME}/distinfo PYQT5_DISTNAME= PyQt5_gpl-${PYQT5_VERSION} -PYQT5_DISTINFO_FILE= ${.CURDIR}/../../devel/py-qt5/distinfo +PYQT5_DISTINFO_FILE= ${.CURDIR:H:H}/devel/${PYQT_RELNAME}/distinfo QSCI2_DISTNAME= QScintilla-gpl-${QSCI2_VERSION} # PyQt components split up into pyqt4/pyqt5/... _USE_PYQT_ALL= core dbus dbussupport demo designer designerplugin \ doc gui multimedia network opengl qscintilla2 \ sql svg test webkit xml xmlpatterns sip # List of components only in pyqt4 _USE_PYQT4_ONLY= assistant declarative \ help phonon script scripttools # List of components only in pyqt5 _USE_PYQT5_ONLY= multimediawidgets printsupport qml serialport \ webkitwidgets widgets # Unversioned variables for the rest of the file PYQT_VERSION= ${PYQT${_PYQT_VERSION}_VERSION} PYQT_RELNAME= py-qt${_PYQT_VERSION} PYQT_PY_RELNAME= ${PYTHON_PKGNAMEPREFIX}qt${_PYQT_VERSION} PYQT_MASTERSITES= ${MASTER_SITES_PYQT${_PYQT_VERSION}} PYQT_DISTNAME= ${PYQT${_PYQT_VERSION}_DISTNAME} PYQT_DISTINFO_FILE= ${PYQT${_PYQT_VERSION}_DISTINFO_FILE} py-sip_PATH= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION} py-assistant_PATH= ${PYQT_PY_RELNAME}-assistant>=${PYQT_VERSION} py-core_PATH= ${PYQT_PY_RELNAME}-core>=${PYQT_VERSION} py-dbus_PATH= ${PYQT_PY_RELNAME}-dbus>=${PYQT_VERSION} py-dbussupport_PATH= ${PYQT_PY_RELNAME}-dbussupport>=${PYQT_VERSION} py-declarative_PATH= ${PYQT_PY_RELNAME}-declarative>=${PYQT_VERSION} py-demo_PATH= ${PYQT_PY_RELNAME}-demo>=${PYQT_VERSION} py-designer_PATH= ${PYQT_PY_RELNAME}-designer>=${PYQT_VERSION} py-designerplugin_PATH= ${PYQT_PY_RELNAME}-designerplugin>=${PYQT_VERSION} py-doc_PATH= ${PYQT_PY_RELNAME}-doc>=${PYQT_VERSION} py-gui_PATH= ${PYQT_PY_RELNAME}-gui>=${PYQT_VERSION} py-help_PATH= ${PYQT_PY_RELNAME}-help>=${PYQT_VERSION} py-multimedia_PATH= ${PYQT_PY_RELNAME}-multimedia>=${PYQT_VERSION} py-network_PATH= ${PYQT_PY_RELNAME}-network>=${PYQT_VERSION} py-opengl_PATH= ${PYQT_PY_RELNAME}-opengl>=${PYQT_VERSION} py-phonon_PATH= ${PYQT_PY_RELNAME}-phonon>=${PYQT_VERSION} py-qscintilla2_PATH= ${PYQT_PY_RELNAME}-qscintilla2>=${QSCI2_VERSION} py-script_PATH= ${PYQT_PY_RELNAME}-script>=${PYQT_VERSION} py-scripttools_PATH= ${PYQT_PY_RELNAME}-scripttools>=${PYQT_VERSION} py-sql_PATH= ${PYQT_PY_RELNAME}-sql>=${PYQT_VERSION} py-svg_PATH= ${PYQT_PY_RELNAME}-svg>=${PYQT_VERSION} py-test_PATH= ${PYQT_PY_RELNAME}-test>=${PYQT_VERSION} py-webkit_PATH= ${PYQT_PY_RELNAME}-webkit>=${PYQT_VERSION} py-xml_PATH= ${PYQT_PY_RELNAME}-xml>=${PYQT_VERSION} py-xmlpatterns_PATH= ${PYQT_PY_RELNAME}-xmlpatterns>=${PYQT_VERSION} py-multimediawidgets_PATH= ${PYQT_PY_RELNAME}-multimediawidgets>=${PYQT_VERSION} py-qml_PATH= ${PYQT_PY_RELNAME}-qml>=${PYQT_VERSION} py-printsupport_PATH= ${PYQT_PY_RELNAME}-printsupport>=${PYQT_VERSION} py-serialport_PATH= ${PYQT_PY_RELNAME}-serialport>=${PYQT_VERSION} py-webkitwidgets_PATH= ${PYQT_PY_RELNAME}-webkitwidgets>=${PYQT_VERSION} py-widgets_PATH= ${PYQT_PY_RELNAME}-widgets>=${PYQT_VERSION} py-sip_PORT= devel/py-sip py-assistant_PORT= devel/${PYQT_RELNAME}-assistant py-core_PORT= devel/${PYQT_RELNAME}-core py-dbus_PORT= devel/${PYQT_RELNAME}-dbus py-dbussupport_PORT= devel/${PYQT_RELNAME}-dbussupport py-declarative_PORT= devel/${PYQT_RELNAME}-declarative py-demo_PORT= misc/${PYQT_RELNAME}-demo py-designer_PORT= devel/${PYQT_RELNAME}-designer py-designerplugin_PORT= devel/${PYQT_RELNAME}-designerplugin py-doc_PORT= misc/${PYQT_RELNAME}-doc py-gui_PORT= x11-toolkits/${PYQT_RELNAME}-gui py-help_PORT= devel/${PYQT_RELNAME}-help py-multimedia_PORT= multimedia/${PYQT_RELNAME}-multimedia py-network_PORT= net/${PYQT_RELNAME}-network py-opengl_PORT= x11/${PYQT_RELNAME}-opengl py-phonon_PORT= multimedia/${PYQT_RELNAME}-phonon py-qscintilla2_PORT= devel/${PYQT_RELNAME}-qscintilla2 py-script_PORT= devel/${PYQT_RELNAME}-script py-scripttools_PORT= devel/${PYQT_RELNAME}-scripttools py-sql_PORT= databases/${PYQT_RELNAME}-sql py-svg_PORT= graphics/${PYQT_RELNAME}-svg py-test_PORT= devel/${PYQT_RELNAME}-test py-webkit_PORT= www/${PYQT_RELNAME}-webkit py-xml_PORT= textproc/${PYQT_RELNAME}-xml py-xmlpatterns_PORT= textproc/${PYQT_RELNAME}-xmlpatterns py-multimediawidgets_PORT= multimedia/py-qt5-multimediawidgets py-qml_PORT= lang/py-qt5-qml py-printsupport_PORT= print/py-qt5-printsupport py-serialport_PORT= comms/py-qt5-serialport py-webkitwidgets_PORT= www/py-qt5-webkitwidgets py-widgets_PORT= x11-toolkits/py-qt5-widgets py-assistant_DESC= Python bindings for QtAssistant module py-core_DESC= Python bindings for QtCore module py-dbus_DESC= Python bindings for QtDBus module py-dbussupport_DESC= Qt event loop support for dbus-python py-declarative_DESC= Python bindings for QtDeclarative module py-demo_DESC= PyQt demo and examples py-designer_DESC= Python bindings for QtDesigner module py-designerplugin_DESC= Python bindings for QtDesigner plugin py-doc_DESC= PyQt documentation py-gui_DESC= Python bindings for QtGui module py-help_DESC= Python bindings for QtHelp module py-multimedia_DESC= Python bindings for Multimedia module py-network_DESC= Python bindings for QtNetwork module py-opengl_DESC= Python bindings for QtOpenGL module py-phonon_DESC= Python bindings for Phonon module py-qscintilla2_DESC= Python bindings for QScintilla2 py-script_DESC= Python bindings for QtScript module py-scripttools_DESC= Python bindings for QtScriptTools module py-sql_DESC= Python bindings for QtSql module py-svg_DESC= Python bindings for QtSvg module py-test_DESC= Python bindings for QtTest module py-webkit_DESC= Python bindings for QtWebKit module py-xml_DESC= Python bindings for QtXml module py-xmlpatterns_DESC= Python bindings for QtXmlPatterns module py-multimediawidgets_DESC= Python bindings for QtMultimediaWidgets module py-qml_DESC= Python bindings for Qml module py-printsupport_DESC= Python bindings for Printsupport module py-serialport_DESC= Python bindings for QtSerialPort py-webkitwidgets_DESC= Python bindings for QtWebKitWidgets module py-widgets_DESC= Python bindings for QTWidgets module SIPDIR_REL= share/py-sip/PyQt${_PYQT_VERSION} SIPDIR= ${PREFIX}/${SIPDIR_REL} PLIST_SUB+= PYQT_SIPDIR=${SIPDIR_REL} .if defined(PYQT_DIST) PORTVERSION= ${PYQT_VERSION} MASTER_SITES= ${PYQT_MASTERSITES} PKGNAMEPREFIX= ${PYQT_PY_RELNAME}- DISTNAME= ${PYQT_DISTNAME} DISTINFO_FILE= ${PYQT_DISTINFO_FILE} HAS_CONFIGURE= yes QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. .if ${_PYQT_VERSION} > 4 # PyQt5's configure.py generates .pro files and calls qmake to generate the # Makefiles. qmake's Makefiles use INSTALL_ROOT instead of DESTDIR. DESTDIRNAME= INSTALL_ROOT # Limit PyQt5's version to the Qt5 version in ports PORTSCOUT?= limit:^${_QT_VERSION:R} .endif PATCHDIR= ${.CURDIR}/../../devel/${PYQT_RELNAME}-core/files QSCIDIR= ${PREFIX}/share/qt${_PYQT_VERSION}/qsci CONFIGURE_ARGS+=-b ${PREFIX}/bin \ -d ${PYTHONPREFIX_SITELIBDIR} \ -q ${QMAKE} \ --confirm-license \ --sipdir ${SIPDIR} # One of the things PyQt looks for to determine whether to build the Qt DBus # main loop module (${PYQT_RELNAME}-dbussupport) is whether the dbus/ directory is # present. Only extract it for that port then. .if ${PORTNAME} != "dbussupport" EXTRACT_AFTER_ARGS+= --exclude "${DISTNAME}/dbus" .endif # ${PORTNAME} != "dbussupport" .if !target(do-configure) do-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} .endif # !target(do-configure) .endif # defined(PYQT_DIST) # Set build and run depends -- we need to prefix them internally with "py-" # else we conflict with the ones defined in bsd.qt.mk with the same name _USE_PYQT_ALL+= ${_USE_PYQT${_PYQT_VERSION}_ONLY} .for comp in ${_USE_PYQT_ALL:O:u} _USE_PYQT_ALL_SUFFIXED+= py-${comp} py-${comp}_build py-${comp}_run py-${comp}_BUILD_DEPENDS?= ${py-${comp}_PATH}:${py-${comp}_PORT} py-${comp}_RUN_DEPENDS?= ${py-${comp}_PATH}:${py-${comp}_PORT} py-${comp}_build_BUILD_DEPENDS?= ${py-${comp}_BUILD_DEPENDS} py-${comp}_run_RUN_DEPENDS?= ${py-${comp}_RUN_DEPENDS} .endfor _USE_PYQT= ${USE_PYQT:O:u} .for comp in ${_USE_PYQT} . if ${_USE_PYQT_ALL_SUFFIXED:Mpy-${comp}} BUILD_DEPENDS+= ${py-${comp}_BUILD_DEPENDS} RUN_DEPENDS+= ${py-${comp}_RUN_DEPENDS} . else IGNORE?= cannot be installed: unknown USE_PYQT component ${comp} #' . endif .endfor .endif # defined(_INCLUDE_USES_PYQT_MK) Index: head/devel/py-qt4/distinfo =================================================================== --- head/devel/py-qt4/distinfo (revision 439793) +++ head/devel/py-qt4/distinfo (revision 439794) @@ -1,2 +1,3 @@ -SHA256 (PyQt-x11-gpl-4.11.4.tar.gz) = fc1fe77495432ba3b0d74ff5cb164d375a97f5dddb728256330f615a7cdcf407 -SIZE (PyQt-x11-gpl-4.11.4.tar.gz) = 11317088 +TIMESTAMP = 1487867323 +SHA256 (PyQt4_gpl_x11-4.12.tar.gz) = 3c1d4b55314adb3e1132de8fc2a92eed216d37e58aceed41294dbca210ca88db +SIZE (PyQt4_gpl_x11-4.12.tar.gz) = 11325395 Index: head/devel/py-qt5/distinfo =================================================================== --- head/devel/py-qt5/distinfo (revision 439793) +++ head/devel/py-qt5/distinfo (revision 439794) @@ -1,3 +1,4 @@ -TIMESTAMP = 1477759251 -SHA256 (PyQt5_gpl-5.6.tar.gz) = 2e481a6c4c41b96ed3b33449e5f9599987c63a5c8db93313bd57a6acbf20f0e1 -SIZE (PyQt5_gpl-5.6.tar.gz) = 3720782 +TIMESTAMP = 1487865147 +SHA256 (PyQt5_gpl-5.7.1.tar.gz) = be849f212a074049b9ebc10b6c07dddefb86e6d30e8df8a5c715cbb2cf7fad14 +SIZE (PyQt5_gpl-5.7.1.tar.gz) = 3733746 + Index: head/devel/py-qt5-core/files/patch-configure.py =================================================================== --- head/devel/py-qt5-core/files/patch-configure.py (revision 439793) +++ head/devel/py-qt5-core/files/patch-configure.py (revision 439794) @@ -1,109 +1,113 @@ This patch is necessary for us to split PyQt5 up into several different ports. It works by conditionally building and installing some tools (such as pylupdate5 and pyrcc5), replacing the all-encompassing PyQt5.api file that depends on different modules with module-specific .api files. Also fixes a bug where dbus support drops multiple -I flags produced by pkg-config --cflags dbus-1 . ---- configure.py.orig 2016-04-24 10:55:08.000000000 +0000 -+++ configure.py 2016-10-30 22:16:19.159104000 +0000 -@@ -1482,13 +1482,13 @@ - - generate_sip_module_code(target_config, verbose, no_timestamp, parts, - tracing, 'Qt', sip_flags) +--- configure.py.orig 2016-07-25 13:55:28.000000000 +0000 ++++ configure.py 2016-09-14 18:42:40.977955000 +0000 +@@ -1460,8 +1460,9 @@ + + # Add the internal modules if they are required. + if not target_config.no_tools: +- pyqt_modules.append('pylupdate') +- pyqt_modules.append('pyrcc') ++ if "QtXml" in target_config.pyqt_modules: ++ pyqt_modules.append('pylupdate') ++ pyqt_modules.append('pyrcc') + + for mname in pyqt_modules: + metadata = MODULE_METADATA[mname] +@@ -1504,18 +1505,19 @@ + + generate_sip_module_code(target_config, verbose, parts, tracing, 'Qt', + sip_flags, False) - subdirs.append('Qt') - + + wrappers = [] if not target_config.no_tools: -- # Generate pylupdate5 and pyrcc5. +- # Generate the pylupdate5 and pyrcc5 wrappers. - for tool in ('pylupdate', 'pyrcc'): -- generate_application_makefile(target_config, verbose, tool) -- subdirs.append(tool) +- wrappers.append((tool, +- generate_tool_wrapper(target_config, tool + '5', +- 'PyQt5.%s_main' % tool))) +- +- # Generate the pyuic5 wrapper. +- wrappers.append(('pyuic', + if "QtXml" in target_config.pyqt_modules: -+ # Generate pylupdate5 and pyrcc5. ++ # Generate the pylupdate5 and pyrcc5 wrappers. + for tool in ('pylupdate', 'pyrcc'): -+ generate_application_makefile(target_config, verbose, tool) -+ subdirs.append(tool) - - # Generate the pyuic5 wrapper. - pyuic_wrapper = generate_pyuic5_wrapper(target_config) -@@ -1507,22 +1507,6 @@ ++ wrappers.append((tool, ++ generate_tool_wrapper(target_config, tool + '5', ++ 'PyQt5.%s_main' % tool))) ++ ++ if "QtCore" in target_config.pyqt_modules: ++ # Generate the pyuic5 wrapper. ++ wrappers.append(('pyuic', + generate_tool_wrapper(target_config, 'pyuic5', + 'PyQt5.uic.pyuic'))) + +@@ -1533,23 +1535,6 @@ source_path('examples', 'quick', 'tutorials', 'extending', 'chapter6-plugins')) - + - # Generate the QScintilla API file. - if target_config.qsci_api: - inform("Generating the QScintilla API file...") - f = open_for_writing('PyQt5.api') - - for mname in target_config.pyqt_modules: -- api = open(mname + '.api') +- if MODULE_METADATA[mname].public: +- api = open(mname + '.api') - -- for l in api: -- f.write('PyQt5.' + l) +- for l in api: +- f.write('PyQt5.' + l) - -- api.close() -- os.remove(mname + '.api') +- api.close() +- os.remove(mname + '.api') - - f.close() - # Generate the Python dbus module. if target_config.pydbus_module_dir != '': mname = 'dbus' -@@ -1548,21 +1532,24 @@ +@@ -1577,14 +1562,18 @@ out_f.write('''TEMPLATE = subdirs CONFIG += ordered nostrip SUBDIRS = %s -+''' % ' '.join(subdirs)) - ++''' % (' '.join(subdirs))) + + if "QtCore" in target_config.pyqt_modules: + out_f.write(''' init_py.files = %s init_py.path = %s INSTALLS += init_py --''' % (' '.join(subdirs), source_path('__init__.py'), qmake_quote(target_config.pyqt_module_dir + '/PyQt5'))) -+''' % (source_path('__init__.py'), qmake_quote(target_config.pyqt_module_dir + '/PyQt5'))) - -- # Install the uic module and the pyuic5 wrapper. +-''' % (' '.join(subdirs), source_path('__init__.py'), root_dir)) ++''' % (source_path('__init__.py'), root_dir)) + +- # Install the uic module. - out_f.write(''' -+ # Install the uic module and the pyuic5 wrapper. -+ out_f.write(''' ++ if not target_config.no_tools: ++ # Install the uic module. ++ out_f.write(''' uic_package.files = %s uic_package.path = %s INSTALLS += uic_package - ''' % (source_path('pyuic', 'uic'), qmake_quote(target_config.pyqt_module_dir + '/PyQt5'))) - -- if not target_config.no_tools: -- out_f.write(''' -+ if not target_config.no_tools: -+ out_f.write(''' - pyuic5.files = %s - pyuic5.path = %s - INSTALLS += pyuic5 -@@ -1579,11 +1566,12 @@ - +@@ -1620,11 +1609,12 @@ + # Install the QScintilla .api file. if target_config.qsci_api: + api_list = ' '.join(['%s.api' % m for m in target_config.pyqt_modules]) out_f.write(''' -qscintilla_api.files = PyQt5.api +qscintilla_api.files = %s qscintilla_api.path = %s INSTALLS += qscintilla_api -''' % qmake_quote(target_config.qsci_api_dir + '/api/python')) +''' % (api_list, qmake_quote(target_config.qsci_api_dir + '/api/python'))) - + out_f.close() - -@@ -2140,7 +2128,9 @@ - else: - dlist = target_config.dbus_inc_dirs - -- target_config.dbus_inc_dirs = [] -+ # Don't reset dbus_inc_dirs, because it will forget the flags -+ # found for dbus, above (which might require multiple -I flags). -+ # target_config.dbus_inc_dirs = [] - - for d in dlist: - if os.access(os.path.join(d, 'dbus', 'dbus-python.h'), os.F_OK): + Index: head/devel/py-qt5-core/pkg-plist =================================================================== --- head/devel/py-qt5-core/pkg-plist (revision 439793) +++ head/devel/py-qt5-core/pkg-plist (revision 439794) @@ -1,220 +1,220 @@ bin/pyuic5 %%PYTHON_SITELIBDIR%%/PyQt5/Qt.py %%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/Qt.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/QtCore.so %%PYTHON_SITELIBDIR%%/PyQt5/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/__init__.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.pyo -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.py -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.pyo -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.py -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtcharts.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtcharts.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtcharts.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebenginewidgets.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebenginewidgets.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebenginewidgets.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyc -%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.%%PYTHON_PYOEXTENSION%% %%PYQT_SIPDIR%%/QtCore/QtCoremod.sip %%PYQT_SIPDIR%%/QtCore/qabstractanimation.sip %%PYQT_SIPDIR%%/QtCore/qabstracteventdispatcher.sip %%PYQT_SIPDIR%%/QtCore/qabstractitemmodel.sip %%PYQT_SIPDIR%%/QtCore/qabstractnativeeventfilter.sip %%PYQT_SIPDIR%%/QtCore/qabstractproxymodel.sip %%PYQT_SIPDIR%%/QtCore/qabstractstate.sip %%PYQT_SIPDIR%%/QtCore/qabstracttransition.sip %%PYQT_SIPDIR%%/QtCore/qanimationgroup.sip %%PYQT_SIPDIR%%/QtCore/qbasictimer.sip %%PYQT_SIPDIR%%/QtCore/qbitarray.sip %%PYQT_SIPDIR%%/QtCore/qbuffer.sip %%PYQT_SIPDIR%%/QtCore/qbytearray.sip %%PYQT_SIPDIR%%/QtCore/qbytearraymatcher.sip %%PYQT_SIPDIR%%/QtCore/qchar.sip %%PYQT_SIPDIR%%/QtCore/qcollator.sip %%PYQT_SIPDIR%%/QtCore/qcommandlineoption.sip %%PYQT_SIPDIR%%/QtCore/qcommandlineparser.sip %%PYQT_SIPDIR%%/QtCore/qcoreapplication.sip %%PYQT_SIPDIR%%/QtCore/qcoreevent.sip %%PYQT_SIPDIR%%/QtCore/qcryptographichash.sip %%PYQT_SIPDIR%%/QtCore/qdatastream.sip %%PYQT_SIPDIR%%/QtCore/qdatetime.sip %%PYQT_SIPDIR%%/QtCore/qdir.sip %%PYQT_SIPDIR%%/QtCore/qdiriterator.sip %%PYQT_SIPDIR%%/QtCore/qeasingcurve.sip %%PYQT_SIPDIR%%/QtCore/qelapsedtimer.sip %%PYQT_SIPDIR%%/QtCore/qeventloop.sip %%PYQT_SIPDIR%%/QtCore/qeventtransition.sip %%PYQT_SIPDIR%%/QtCore/qfile.sip %%PYQT_SIPDIR%%/QtCore/qfiledevice.sip %%PYQT_SIPDIR%%/QtCore/qfileinfo.sip %%PYQT_SIPDIR%%/QtCore/qfileselector.sip %%PYQT_SIPDIR%%/QtCore/qfilesystemwatcher.sip %%PYQT_SIPDIR%%/QtCore/qfinalstate.sip %%PYQT_SIPDIR%%/QtCore/qglobal.sip %%PYQT_SIPDIR%%/QtCore/qhistorystate.sip %%PYQT_SIPDIR%%/QtCore/qidentityproxymodel.sip %%PYQT_SIPDIR%%/QtCore/qiodevice.sip %%PYQT_SIPDIR%%/QtCore/qitemselectionmodel.sip %%PYQT_SIPDIR%%/QtCore/qjsonarray.sip %%PYQT_SIPDIR%%/QtCore/qjsondocument.sip %%PYQT_SIPDIR%%/QtCore/qjsonobject.sip %%PYQT_SIPDIR%%/QtCore/qjsonvalue.sip %%PYQT_SIPDIR%%/QtCore/qlibrary.sip %%PYQT_SIPDIR%%/QtCore/qlibraryinfo.sip %%PYQT_SIPDIR%%/QtCore/qline.sip %%PYQT_SIPDIR%%/QtCore/qlocale.sip %%PYQT_SIPDIR%%/QtCore/qlockfile.sip %%PYQT_SIPDIR%%/QtCore/qlogging.sip %%PYQT_SIPDIR%%/QtCore/qmargins.sip %%PYQT_SIPDIR%%/QtCore/qmessageauthenticationcode.sip %%PYQT_SIPDIR%%/QtCore/qmetaobject.sip %%PYQT_SIPDIR%%/QtCore/qmetatype.sip %%PYQT_SIPDIR%%/QtCore/qmimedata.sip %%PYQT_SIPDIR%%/QtCore/qmimedatabase.sip %%PYQT_SIPDIR%%/QtCore/qmimetype.sip %%PYQT_SIPDIR%%/QtCore/qmutex.sip %%PYQT_SIPDIR%%/QtCore/qnamespace.sip %%PYQT_SIPDIR%%/QtCore/qnumeric.sip %%PYQT_SIPDIR%%/QtCore/qobject.sip %%PYQT_SIPDIR%%/QtCore/qobjectcleanuphandler.sip %%PYQT_SIPDIR%%/QtCore/qobjectdefs.sip %%PYQT_SIPDIR%%/QtCore/qparallelanimationgroup.sip %%PYQT_SIPDIR%%/QtCore/qpauseanimation.sip %%PYQT_SIPDIR%%/QtCore/qpluginloader.sip %%PYQT_SIPDIR%%/QtCore/qpoint.sip %%PYQT_SIPDIR%%/QtCore/qprocess.sip %%PYQT_SIPDIR%%/QtCore/qpropertyanimation.sip %%PYQT_SIPDIR%%/QtCore/qpycore_qhash.sip %%PYQT_SIPDIR%%/QtCore/qpycore_qlist.sip %%PYQT_SIPDIR%%/QtCore/qpycore_qmap.sip %%PYQT_SIPDIR%%/QtCore/qpycore_qpair.sip %%PYQT_SIPDIR%%/QtCore/qpycore_qset.sip %%PYQT_SIPDIR%%/QtCore/qpycore_qvector.sip %%PYQT_SIPDIR%%/QtCore/qpycore_virtual_error_handler.sip %%PYQT_SIPDIR%%/QtCore/qreadwritelock.sip %%PYQT_SIPDIR%%/QtCore/qrect.sip %%PYQT_SIPDIR%%/QtCore/qregexp.sip %%PYQT_SIPDIR%%/QtCore/qregularexpression.sip %%PYQT_SIPDIR%%/QtCore/qresource.sip %%PYQT_SIPDIR%%/QtCore/qrunnable.sip %%PYQT_SIPDIR%%/QtCore/qsavefile.sip %%PYQT_SIPDIR%%/QtCore/qsemaphore.sip %%PYQT_SIPDIR%%/QtCore/qsequentialanimationgroup.sip %%PYQT_SIPDIR%%/QtCore/qsettings.sip %%PYQT_SIPDIR%%/QtCore/qsharedmemory.sip %%PYQT_SIPDIR%%/QtCore/qsignalmapper.sip %%PYQT_SIPDIR%%/QtCore/qsignaltransition.sip %%PYQT_SIPDIR%%/QtCore/qsize.sip %%PYQT_SIPDIR%%/QtCore/qsocketnotifier.sip %%PYQT_SIPDIR%%/QtCore/qsortfilterproxymodel.sip %%PYQT_SIPDIR%%/QtCore/qstandardpaths.sip %%PYQT_SIPDIR%%/QtCore/qstate.sip %%PYQT_SIPDIR%%/QtCore/qstatemachine.sip %%PYQT_SIPDIR%%/QtCore/qstorageinfo.sip %%PYQT_SIPDIR%%/QtCore/qstring.sip %%PYQT_SIPDIR%%/QtCore/qstringlist.sip %%PYQT_SIPDIR%%/QtCore/qstringlistmodel.sip %%PYQT_SIPDIR%%/QtCore/qsysinfo.sip %%PYQT_SIPDIR%%/QtCore/qsystemsemaphore.sip %%PYQT_SIPDIR%%/QtCore/qtemporarydir.sip %%PYQT_SIPDIR%%/QtCore/qtemporaryfile.sip %%PYQT_SIPDIR%%/QtCore/qtextboundaryfinder.sip %%PYQT_SIPDIR%%/QtCore/qtextcodec.sip %%PYQT_SIPDIR%%/QtCore/qtextstream.sip %%PYQT_SIPDIR%%/QtCore/qthread.sip %%PYQT_SIPDIR%%/QtCore/qthreadpool.sip %%PYQT_SIPDIR%%/QtCore/qtimeline.sip %%PYQT_SIPDIR%%/QtCore/qtimer.sip %%PYQT_SIPDIR%%/QtCore/qtimezone.sip %%PYQT_SIPDIR%%/QtCore/qtranslator.sip %%PYQT_SIPDIR%%/QtCore/qurl.sip %%PYQT_SIPDIR%%/QtCore/qurlquery.sip %%PYQT_SIPDIR%%/QtCore/quuid.sip %%PYQT_SIPDIR%%/QtCore/qvariant.sip %%PYQT_SIPDIR%%/QtCore/qvariantanimation.sip %%PYQT_SIPDIR%%/QtCore/qversionnumber.sip %%PYQT_SIPDIR%%/QtCore/qwaitcondition.sip %%PYQT_SIPDIR%%/QtCore/qwineventnotifier.sip %%PYQT_SIPDIR%%/QtCore/qxmlstream.sip %%API%%share/qt5/qsci/api/python/QtCore.api Index: head/devel/py-sip/Makefile =================================================================== --- head/devel/py-sip/Makefile (revision 439793) +++ head/devel/py-sip/Makefile (revision 439794) @@ -1,43 +1,45 @@ # Created by: nbm # $FreeBSD$ PORTNAME= sip PORTVERSION= ${SIP_VERSION} PORTEPOCH= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITES_SIP} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${SIP_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Python to C and C++ bindings generator USES= python pyqt:sip USE_PYTHON= concurrent py3kplist USE_PYQT= # CONFIGURE_ARGS= -b ${PREFIX}/bin -d ${PYTHONPREFIX_SITELIBDIR} \ -e ${PYTHONPREFIX_INCLUDEDIR} -v ${DATADIR} \ CC="${CC}" CXX="${CXX}" LINK="${CXX}" LINK_SHLIB="${CXX}" \ CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ INCDIR="${LOCALBASE}/include" LIBDIR="${LOCALBASE}/lib" PORTDOCS= * OPTIONS_DEFINE= DOCS DEBUG DEBUG_CONFIGURE_ON= --debug do-configure: cd ${WRKSRC} && ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} && cd ${WRKSRC}/doc/html && \ ${COPYTREE_SHARE} \. ${STAGEDIR}${DOCSDIR} ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/bin/sip + ${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/sip.so .include Index: head/devel/py-sip/distinfo =================================================================== --- head/devel/py-sip/distinfo (revision 439793) +++ head/devel/py-sip/distinfo (revision 439794) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473848835 -SHA256 (sip-4.18.tar.gz) = f1dc5c81c07a9ad97edcd4a0af964a41e420024ba7ca165afd2b351efd249cb6 -SIZE (sip-4.18.tar.gz) = 991980 +TIMESTAMP = 1491828562 +SHA256 (sip-4.19.2.tar.gz) = 432b4aad25254e6997913e33b1ca3cf5fd21d5729a50a3ce2edccbea82c80533 +SIZE (sip-4.19.2.tar.gz) = 1000746 Index: head/devel/py-sip/files/patch-hg_6b09a6d578e8 =================================================================== --- head/devel/py-sip/files/patch-hg_6b09a6d578e8 (nonexistent) +++ head/devel/py-sip/files/patch-hg_6b09a6d578e8 (revision 439794) @@ -0,0 +1,20 @@ +Fix a regression so that a shadow class is not generated if there is a private +dtor. + +https://www.riverbankcomputing.com/hg/sip/rev/6b09a6d578e8 + +diff -r 6209a625ac87 -r 6b09a6d578e8 sipgen/transform.c +--- sipgen/transform.c Thu Mar 30 09:43:04 2017 +0100 ++++ sipgen/transform.c Sun Apr 02 11:49:58 2017 +0100 +@@ -273,7 +273,7 @@ + for (cd = pt->classes; cd != NULL; cd = cd->next) + if (cd->iff->type == class_iface) + { +- if (needsShadow(cd) && !isIncomplete(cd) && canCreate(cd)) ++ if (needsShadow(cd) && !isIncomplete(cd) && !isPrivateDtor(cd) && canCreate(cd)) + setHasShadow(cd); + + /* Get the list of visible Python member functions. */ + + + Property changes on: head/devel/py-sip/files/patch-hg_6b09a6d578e8 ___________________________________________________________________ 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/qscintilla2/pkg-plist =================================================================== --- head/devel/qscintilla2/pkg-plist (revision 439793) +++ head/devel/qscintilla2/pkg-plist (revision 439794) @@ -1,69 +1,69 @@ %%QT_INCDIR%%/Qsci/qsciabstractapis.h %%QT_INCDIR%%/Qsci/qsciapis.h %%QT_INCDIR%%/Qsci/qscicommand.h %%QT_INCDIR%%/Qsci/qscicommandset.h %%QT_INCDIR%%/Qsci/qscidocument.h %%QT_INCDIR%%/Qsci/qsciglobal.h %%QT_INCDIR%%/Qsci/qscilexer.h %%QT_INCDIR%%/Qsci/qscilexeravs.h %%QT_INCDIR%%/Qsci/qscilexerbash.h %%QT_INCDIR%%/Qsci/qscilexerbatch.h %%QT_INCDIR%%/Qsci/qscilexercmake.h %%QT_INCDIR%%/Qsci/qscilexercoffeescript.h %%QT_INCDIR%%/Qsci/qscilexercpp.h %%QT_INCDIR%%/Qsci/qscilexercsharp.h %%QT_INCDIR%%/Qsci/qscilexercss.h %%QT_INCDIR%%/Qsci/qscilexercustom.h %%QT_INCDIR%%/Qsci/qscilexerd.h %%QT_INCDIR%%/Qsci/qscilexerdiff.h %%QT_INCDIR%%/Qsci/qscilexerfortran.h %%QT_INCDIR%%/Qsci/qscilexerfortran77.h %%QT_INCDIR%%/Qsci/qscilexerhtml.h %%QT_INCDIR%%/Qsci/qscilexeridl.h %%QT_INCDIR%%/Qsci/qscilexerjava.h %%QT_INCDIR%%/Qsci/qscilexerjavascript.h %%QT_INCDIR%%/Qsci/qscilexerlua.h %%QT_INCDIR%%/Qsci/qscilexermakefile.h %%QT_INCDIR%%/Qsci/qscilexermatlab.h %%QT_INCDIR%%/Qsci/qscilexeroctave.h %%QT_INCDIR%%/Qsci/qscilexerpascal.h %%QT_INCDIR%%/Qsci/qscilexerperl.h %%QT_INCDIR%%/Qsci/qscilexerpo.h %%QT_INCDIR%%/Qsci/qscilexerpostscript.h %%QT_INCDIR%%/Qsci/qscilexerpov.h %%QT_INCDIR%%/Qsci/qscilexerproperties.h %%QT_INCDIR%%/Qsci/qscilexerpython.h %%QT_INCDIR%%/Qsci/qscilexerruby.h %%QT_INCDIR%%/Qsci/qscilexerspice.h %%QT_INCDIR%%/Qsci/qscilexersql.h %%QT_INCDIR%%/Qsci/qscilexertcl.h %%QT_INCDIR%%/Qsci/qscilexertex.h %%QT_INCDIR%%/Qsci/qscilexerverilog.h %%QT_INCDIR%%/Qsci/qscilexervhdl.h %%QT_INCDIR%%/Qsci/qscilexerxml.h %%QT_INCDIR%%/Qsci/qscilexeryaml.h %%QT_INCDIR%%/Qsci/qscimacro.h %%QT_INCDIR%%/Qsci/qsciprinter.h %%QT_INCDIR%%/Qsci/qsciscintilla.h %%QT_INCDIR%%/Qsci/qsciscintillabase.h %%QT_INCDIR%%/Qsci/qscistyle.h %%QT_INCDIR%%/Qsci/qscistyledtext.h -lib/qt4/libqscintilla2.so -lib/qt4/libqscintilla2.so.12 -lib/qt4/libqscintilla2.so.12.0 -lib/qt4/libqscintilla2.so.12.0.1 +%%QT_LIBDIR%%/libqscintilla2.so +%%QT_LIBDIR%%/libqscintilla2.so.12 +%%QT_LIBDIR%%/libqscintilla2.so.12.0 +%%QT_LIBDIR%%/libqscintilla2.so.12.0.1 %%QT_MKSPECDIR%%/features/qscintilla2.prf share/qt4/qsci/api/python/Python-2.4.api share/qt4/qsci/api/python/Python-2.5.api share/qt4/qsci/api/python/Python-2.6.api share/qt4/qsci/api/python/Python-2.7.api share/qt4/qsci/api/python/Python-3.1.api share/qt4/qsci/api/python/Python-3.2.api share/qt4/qsci/api/python/Python-3.3.api share/qt4/qsci/api/python/Python-3.4.api share/qt4/qsci/api/python/Python-3.5.api %%NLS%%share/qt4/translations/qscintilla_cs.qm %%NLS%%share/qt4/translations/qscintilla_de.qm %%NLS%%share/qt4/translations/qscintilla_es.qm %%NLS%%share/qt4/translations/qscintilla_fr.qm %%NLS%%share/qt4/translations/qscintilla_pt_br.qm Index: head/graphics/qgis/files/patch-gentoogit_d9559d0_qgis-2.18.3-sip-4.19.1 =================================================================== --- head/graphics/qgis/files/patch-gentoogit_d9559d0_qgis-2.18.3-sip-4.19.1 (nonexistent) +++ head/graphics/qgis/files/patch-gentoogit_d9559d0_qgis-2.18.3-sip-4.19.1 (revision 439794) @@ -0,0 +1,44 @@ +Obtained from: https://gitweb.gentoo.org/repo/gentoo.git/tree/sci-geosciences/qgis + +From 85a0db24f32351f6096cd8282f03ad5c2f4e6ef5 Mon Sep 17 00:00:00 2001 +From: Sandro Mani +Date: Wed, 1 Mar 2017 16:12:38 +0100 +Subject: [PATCH] Fix build against recent sip/PyQt4: + +qgsfiledownloader.sip:33:0: +src/gui/qgsfiledownloader.h:94:5: error: overriding non-deleted function 'virtual QgsFileDownloader::~QgsFileDownloader()' + +RuntimeError: qgis._core cannot import type 'QList' from PyQt4.QtCore +--- + python/core/core.sip | 1 + + src/gui/qgsfiledownloader.h | 4 +++- + 2 files changed, 4 insertions(+), 1 deletion(-) + +diff --git a/python/core/core.sip b/python/core/core.sip +index 8f0b6af..41f5450 100644 +--- python/core/core.sip ++++ python/core/core.sip +@@ -3,6 +3,7 @@ + + %Feature QT5_SUPPORT + ++%Import QtCore/QtCoremod.sip + %Import QtXml/QtXmlmod.sip + %Import QtNetwork/QtNetworkmod.sip + %Import QtSql/QtSqlmod.sip +diff --git a/src/gui/qgsfiledownloader.h b/src/gui/qgsfiledownloader.h +index c9276f7..841e4b6 100644 +--- src/gui/qgsfiledownloader.h ++++ src/gui/qgsfiledownloader.h +@@ -90,8 +90,10 @@ class GUI_EXPORT QgsFileDownloader : public QObject + void onSslErrors( QNetworkReply *reply, const QList &errors ); + #endif + +- private: ++ protected: + ~QgsFileDownloader(); ++ ++ private: + /** + * Abort current request and show an error if the instance has GUI + * notifications enabled. Property changes on: head/graphics/qgis/files/patch-gentoogit_d9559d0_qgis-2.18.3-sip-4.19.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/math/qtiplot/files/patch-gentoogit_68af1bc_qtiplot-0.9.8.9-sip-4.19 =================================================================== --- head/math/qtiplot/files/patch-gentoogit_68af1bc_qtiplot-0.9.8.9-sip-4.19 (nonexistent) +++ head/math/qtiplot/files/patch-gentoogit_68af1bc_qtiplot-0.9.8.9-sip-4.19 (revision 439794) @@ -0,0 +1,46 @@ +Obtained from: https://gitweb.gentoo.org/repo/gentoo.git/tree/sci-visualization/qtiplot + +sci-visualization/qtiplot: Fix build with >=sip-4.19 +Thanks-to: Fabio Rossi +Gentoo-bug: 609280 + +Package-Manager: Portage-2.3.3, Repoman-2.3.1 + +--- qtiplot/src/scripting/qti.sip 2017-02-13 17:01:03.123828499 +0100 ++++ qtiplot/src/scripting/qti.sip 2017-02-13 17:02:12.628828234 +0100 +@@ -148,14 +148,14 @@ + } + break; + case Table::Date: +- if (sipCanConvertToType(item, sipType_QDateTime, 0)) { ++ if (sipCanConvertToType(item, sipFindType("QDateTime"), 0)) { + int isErr = 0; +- QDateTime* dateTime = reinterpret_cast(sipConvertToType(item, sipType_QDateTime, ++ QDateTime* dateTime = reinterpret_cast(sipConvertToType(item, sipFindType("QDateTime"), + 0/*sipTransferObj*/, 0/*flags*/, 0/*state*/, &isErr)); + if (isErr) + return 1; + table->setText(row, col, dateTime->toString(table->columnFormat(col))); +- delete dateTime; ++ //delete dateTime; + } + else { + if (PyType_Ready(item_type) == 0) +@@ -164,14 +164,14 @@ + } + break; + case Table::Time: +- if (sipCanConvertToType(item, sipType_QTime, 0)) { ++ if (sipCanConvertToType(item, sipFindType("QTime"), 0)) { + int isErr = 0; +- QTime* time = reinterpret_cast(sipConvertToType(item, sipType_QTime, ++ QTime* time = reinterpret_cast(sipConvertToType(item, sipFindType("QTime"), + 0/*sipTransferObj*/, 0/*flags*/, 0/*state*/, &isErr)); + if (isErr) + return 1; + table->setText(row, col, time->toString(table->columnFormat(col))); +- delete time; ++ //delete time; + } + else { + if (PyType_Ready(item_type) == 0) Property changes on: head/math/qtiplot/files/patch-gentoogit_68af1bc_qtiplot-0.9.8.9-sip-4.19 ___________________________________________________________________ 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/misc/py-qt4-doc/pkg-plist =================================================================== --- head/misc/py-qt4-doc/pkg-plist (revision 439793) +++ head/misc/py-qt4-doc/pkg-plist (revision 439794) @@ -1,1335 +1,1337 @@ %%DOCSDIR%%/LICENSE %%DOCSDIR%%/NEWS %%DOCSDIR%%/README %%DOCSDIR%%/THANKS -%%DOCSDIR%%/html/_sources/buffer_interface.txt -%%DOCSDIR%%/html/_sources/build_system.txt -%%DOCSDIR%%/html/_sources/dbus.txt -%%DOCSDIR%%/html/_sources/deploy_commercial.txt -%%DOCSDIR%%/html/_sources/designer.txt -%%DOCSDIR%%/html/_sources/gotchas.txt -%%DOCSDIR%%/html/_sources/i18n.txt -%%DOCSDIR%%/html/_sources/incompatibilities.txt -%%DOCSDIR%%/html/_sources/incompatible_apis.txt -%%DOCSDIR%%/html/_sources/index.txt -%%DOCSDIR%%/html/_sources/installation.txt -%%DOCSDIR%%/html/_sources/introduction.txt -%%DOCSDIR%%/html/_sources/keyword_arguments.txt -%%DOCSDIR%%/html/_sources/new_style_signals_slots.txt -%%DOCSDIR%%/html/_sources/old_style_signals_slots.txt -%%DOCSDIR%%/html/_sources/pickle.txt -%%DOCSDIR%%/html/_sources/pyqt_qsettings.txt -%%DOCSDIR%%/html/_sources/pyqt_qvariant.txt -%%DOCSDIR%%/html/_sources/python_shell.txt -%%DOCSDIR%%/html/_sources/python_v3.txt -%%DOCSDIR%%/html/_sources/qml.txt -%%DOCSDIR%%/html/_sources/qt_properties.txt -%%DOCSDIR%%/html/_sources/qt_v5.txt -%%DOCSDIR%%/html/_sources/resources.txt -%%DOCSDIR%%/html/_sources/webkit.txt +%%DOCSDIR%%/html/_sources/buffer_interface.rst.txt +%%DOCSDIR%%/html/_sources/build_system.rst.txt +%%DOCSDIR%%/html/_sources/dbus.rst.txt +%%DOCSDIR%%/html/_sources/deploy_commercial.rst.txt +%%DOCSDIR%%/html/_sources/designer.rst.txt +%%DOCSDIR%%/html/_sources/extension_api.rst.txt +%%DOCSDIR%%/html/_sources/gotchas.rst.txt +%%DOCSDIR%%/html/_sources/i18n.rst.txt +%%DOCSDIR%%/html/_sources/incompatibilities.rst.txt +%%DOCSDIR%%/html/_sources/incompatible_apis.rst.txt +%%DOCSDIR%%/html/_sources/index.rst.txt +%%DOCSDIR%%/html/_sources/installation.rst.txt +%%DOCSDIR%%/html/_sources/introduction.rst.txt +%%DOCSDIR%%/html/_sources/keyword_arguments.rst.txt +%%DOCSDIR%%/html/_sources/new_style_signals_slots.rst.txt +%%DOCSDIR%%/html/_sources/old_style_signals_slots.rst.txt +%%DOCSDIR%%/html/_sources/pickle.rst.txt +%%DOCSDIR%%/html/_sources/pyqt_qsettings.rst.txt +%%DOCSDIR%%/html/_sources/pyqt_qvariant.rst.txt +%%DOCSDIR%%/html/_sources/python_shell.rst.txt +%%DOCSDIR%%/html/_sources/python_v3.rst.txt +%%DOCSDIR%%/html/_sources/qml.rst.txt +%%DOCSDIR%%/html/_sources/qt_properties.rst.txt +%%DOCSDIR%%/html/_sources/qt_v5.rst.txt +%%DOCSDIR%%/html/_sources/resources.rst.txt +%%DOCSDIR%%/html/_sources/webkit.rst.txt %%DOCSDIR%%/html/_static/ajax-loader.gif %%DOCSDIR%%/html/_static/basic.css %%DOCSDIR%%/html/_static/classic.css %%DOCSDIR%%/html/_static/comment-bright.png %%DOCSDIR%%/html/_static/comment-close.png %%DOCSDIR%%/html/_static/comment.png %%DOCSDIR%%/html/_static/doctools.js %%DOCSDIR%%/html/_static/down-pressed.png %%DOCSDIR%%/html/_static/down.png %%DOCSDIR%%/html/_static/file.png +%%DOCSDIR%%/html/_static/jquery-3.1.0.js %%DOCSDIR%%/html/_static/jquery.js -%%DOCSDIR%%/html/_static/jquery-1.11.1.js %%DOCSDIR%%/html/_static/logo.png %%DOCSDIR%%/html/_static/logo_tn.ico %%DOCSDIR%%/html/_static/minus.png %%DOCSDIR%%/html/_static/plus.png %%DOCSDIR%%/html/_static/pygments.css %%DOCSDIR%%/html/_static/searchtools.js %%DOCSDIR%%/html/_static/sidebar.js -%%DOCSDIR%%/html/_static/underscore.js %%DOCSDIR%%/html/_static/underscore-1.3.1.js +%%DOCSDIR%%/html/_static/underscore.js %%DOCSDIR%%/html/_static/up-pressed.png %%DOCSDIR%%/html/_static/up.png %%DOCSDIR%%/html/_static/websupport.js %%DOCSDIR%%/html/assistant-manual.html %%DOCSDIR%%/html/buffer_interface.html %%DOCSDIR%%/html/build_system.html %%DOCSDIR%%/html/classes.html %%DOCSDIR%%/html/dbus.html %%DOCSDIR%%/html/deploy_commercial.html %%DOCSDIR%%/html/designer.html +%%DOCSDIR%%/html/extension_api.html %%DOCSDIR%%/html/genindex.html %%DOCSDIR%%/html/gotchas.html %%DOCSDIR%%/html/i18n.html %%DOCSDIR%%/html/images/alphafill.png %%DOCSDIR%%/html/images/assistant-toolbar.png %%DOCSDIR%%/html/images/bearings.png %%DOCSDIR%%/html/images/brush-outline.png %%DOCSDIR%%/html/images/brush-styles.png %%DOCSDIR%%/html/images/buttonbox-gnomelayout-horizontal.png %%DOCSDIR%%/html/images/buttonbox-gnomelayout-vertical.png %%DOCSDIR%%/html/images/buttonbox-kdelayout-horizontal.png %%DOCSDIR%%/html/images/buttonbox-kdelayout-vertical.png %%DOCSDIR%%/html/images/buttonbox-mac-modeless-horizontal.png %%DOCSDIR%%/html/images/buttonbox-maclayout-horizontal.png %%DOCSDIR%%/html/images/buttonbox-maclayout-vertical.png %%DOCSDIR%%/html/images/buttonbox-winlayout-horizontal.png %%DOCSDIR%%/html/images/buttonbox-winlayout-vertical.png %%DOCSDIR%%/html/images/cde-lcdnumber.png %%DOCSDIR%%/html/images/checkboxes-exclusive.png %%DOCSDIR%%/html/images/checkboxes-non-exclusive.png %%DOCSDIR%%/html/images/cleanlooks-calendarwidget.png %%DOCSDIR%%/html/images/cleanlooks-pushbutton-menu.png %%DOCSDIR%%/html/images/conceptaudio.png %%DOCSDIR%%/html/images/conceptvideo.png %%DOCSDIR%%/html/images/containerextension-example.png %%DOCSDIR%%/html/images/cursor-arrow.png %%DOCSDIR%%/html/images/cursor-busy.png %%DOCSDIR%%/html/images/cursor-closedhand.png %%DOCSDIR%%/html/images/cursor-cross.png %%DOCSDIR%%/html/images/cursor-forbidden.png %%DOCSDIR%%/html/images/cursor-hand.png %%DOCSDIR%%/html/images/cursor-hsplit.png %%DOCSDIR%%/html/images/cursor-ibeam.png %%DOCSDIR%%/html/images/cursor-openhand.png %%DOCSDIR%%/html/images/cursor-sizeall.png %%DOCSDIR%%/html/images/cursor-sizeb.png %%DOCSDIR%%/html/images/cursor-sizef.png %%DOCSDIR%%/html/images/cursor-sizeh.png %%DOCSDIR%%/html/images/cursor-sizev.png %%DOCSDIR%%/html/images/cursor-uparrow.png %%DOCSDIR%%/html/images/cursor-vsplit.png %%DOCSDIR%%/html/images/cursor-wait.png %%DOCSDIR%%/html/images/cursor-whatsthis.png %%DOCSDIR%%/html/images/effectwidget.png %%DOCSDIR%%/html/images/filedialogurls.png %%DOCSDIR%%/html/images/foreignkeys.png %%DOCSDIR%%/html/images/frames.png %%DOCSDIR%%/html/images/graphicseffect-blur.png %%DOCSDIR%%/html/images/graphicseffect-colorize.png %%DOCSDIR%%/html/images/graphicseffect-drop-shadow.png %%DOCSDIR%%/html/images/graphicseffect-opacity.png %%DOCSDIR%%/html/images/graphicseffect-plain.png %%DOCSDIR%%/html/images/graphicseffect-widget.png %%DOCSDIR%%/html/images/graphicsview-ellipseitem-pie.png %%DOCSDIR%%/html/images/graphicsview-ellipseitem.png %%DOCSDIR%%/html/images/graphicsview-items.png %%DOCSDIR%%/html/images/graphicsview-lineitem.png %%DOCSDIR%%/html/images/graphicsview-parentchild.png %%DOCSDIR%%/html/images/graphicsview-pathitem.png %%DOCSDIR%%/html/images/graphicsview-pixmapitem.png %%DOCSDIR%%/html/images/graphicsview-polygonitem.png %%DOCSDIR%%/html/images/graphicsview-rectitem.png %%DOCSDIR%%/html/images/graphicsview-simpletextitem.png %%DOCSDIR%%/html/images/graphicsview-textitem.png %%DOCSDIR%%/html/images/graphicsview-view.png %%DOCSDIR%%/html/images/graphicsview-zorder.png %%DOCSDIR%%/html/images/gridlayout.png %%DOCSDIR%%/html/images/hoverevents.png %%DOCSDIR%%/html/images/httpstack.png %%DOCSDIR%%/html/images/icon.png %%DOCSDIR%%/html/images/imageprovider.png %%DOCSDIR%%/html/images/inputdialogs.png %%DOCSDIR%%/html/images/insertrowinmodelview.png %%DOCSDIR%%/html/images/licensewizard-flow.png %%DOCSDIR%%/html/images/macintosh-checkbox.png %%DOCSDIR%%/html/images/macintosh-dateedit.png %%DOCSDIR%%/html/images/macintosh-datetimeedit.png %%DOCSDIR%%/html/images/macintosh-dial.png %%DOCSDIR%%/html/images/macintosh-groupbox.png %%DOCSDIR%%/html/images/macintosh-horizontalscrollbar.png %%DOCSDIR%%/html/images/macintosh-label.png %%DOCSDIR%%/html/images/macintosh-lcdnumber.png %%DOCSDIR%%/html/images/macintosh-lineedit.png %%DOCSDIR%%/html/images/macintosh-listview.png %%DOCSDIR%%/html/images/macintosh-menu.png %%DOCSDIR%%/html/images/macintosh-progressbar.png %%DOCSDIR%%/html/images/macintosh-pushbutton.png %%DOCSDIR%%/html/images/macintosh-radiobutton.png %%DOCSDIR%%/html/images/macintosh-slider.png %%DOCSDIR%%/html/images/macintosh-spinbox.png %%DOCSDIR%%/html/images/macintosh-tableview.png %%DOCSDIR%%/html/images/macintosh-tabwidget.png %%DOCSDIR%%/html/images/macintosh-timeedit.png %%DOCSDIR%%/html/images/macintosh-treeview.png %%DOCSDIR%%/html/images/mainwindow-docks.png %%DOCSDIR%%/html/images/mainwindowlayout.png %%DOCSDIR%%/html/images/mdi-cascade.png %%DOCSDIR%%/html/images/mdi-tile.png %%DOCSDIR%%/html/images/modelindex-no-parent.png %%DOCSDIR%%/html/images/modelview-begin-append-columns.png %%DOCSDIR%%/html/images/modelview-begin-append-rows.png %%DOCSDIR%%/html/images/modelview-begin-insert-columns.png %%DOCSDIR%%/html/images/modelview-begin-insert-rows.png %%DOCSDIR%%/html/images/modelview-begin-remove-columns.png %%DOCSDIR%%/html/images/modelview-begin-remove-rows.png %%DOCSDIR%%/html/images/modelview-move-rows-1.png %%DOCSDIR%%/html/images/modelview-move-rows-2.png %%DOCSDIR%%/html/images/modelview-move-rows-3.png %%DOCSDIR%%/html/images/modelview-move-rows-4.png %%DOCSDIR%%/html/images/motif-lcdnumber.png %%DOCSDIR%%/html/images/motif-menubar.png %%DOCSDIR%%/html/images/msgbox1.png %%DOCSDIR%%/html/images/msgbox2.png %%DOCSDIR%%/html/images/msgbox3.png %%DOCSDIR%%/html/images/msgbox4.png %%DOCSDIR%%/html/images/noforeignkeys.png %%DOCSDIR%%/html/images/palette.png %%DOCSDIR%%/html/images/pangesture.png %%DOCSDIR%%/html/images/parent-child-widgets.png %%DOCSDIR%%/html/images/patternist-wordProcessor.png %%DOCSDIR%%/html/images/pinchgesture.png %%DOCSDIR%%/html/images/plastique-checkbox.png %%DOCSDIR%%/html/images/plastique-colordialog.png %%DOCSDIR%%/html/images/plastique-dateedit.png %%DOCSDIR%%/html/images/plastique-datetimeedit.png %%DOCSDIR%%/html/images/plastique-dial.png %%DOCSDIR%%/html/images/plastique-fontdialog.png %%DOCSDIR%%/html/images/plastique-groupbox.png %%DOCSDIR%%/html/images/plastique-horizontalscrollbar.png %%DOCSDIR%%/html/images/plastique-label.png %%DOCSDIR%%/html/images/plastique-lcdnumber.png %%DOCSDIR%%/html/images/plastique-lineedit.png %%DOCSDIR%%/html/images/plastique-listview.png %%DOCSDIR%%/html/images/plastique-menu.png %%DOCSDIR%%/html/images/plastique-menubar.png %%DOCSDIR%%/html/images/plastique-printdialog-properties.png %%DOCSDIR%%/html/images/plastique-printdialog.png %%DOCSDIR%%/html/images/plastique-progressbar.png %%DOCSDIR%%/html/images/plastique-progressdialog.png %%DOCSDIR%%/html/images/plastique-pushbutton-menu.png %%DOCSDIR%%/html/images/plastique-pushbutton.png %%DOCSDIR%%/html/images/plastique-radiobutton.png %%DOCSDIR%%/html/images/plastique-sizegrip.png %%DOCSDIR%%/html/images/plastique-slider.png %%DOCSDIR%%/html/images/plastique-spinbox.png %%DOCSDIR%%/html/images/plastique-statusbar.png %%DOCSDIR%%/html/images/plastique-tabbar-truncated.png %%DOCSDIR%%/html/images/plastique-tabbar.png %%DOCSDIR%%/html/images/plastique-tableview.png %%DOCSDIR%%/html/images/plastique-tabwidget.png %%DOCSDIR%%/html/images/plastique-timeedit.png %%DOCSDIR%%/html/images/plastique-treeview.png %%DOCSDIR%%/html/images/propagation-custom.png %%DOCSDIR%%/html/images/propagation-standard.png %%DOCSDIR%%/html/images/qactiongroup-align.png %%DOCSDIR%%/html/images/qcalendarwidget-grid.png %%DOCSDIR%%/html/images/qcolor-cmyk.png %%DOCSDIR%%/html/images/qcolor-hsv.png %%DOCSDIR%%/html/images/qcolor-hue.png %%DOCSDIR%%/html/images/qcolor-rgb.png %%DOCSDIR%%/html/images/qcolor-saturation.png %%DOCSDIR%%/html/images/qcolor-value.png %%DOCSDIR%%/html/images/qcolumnview.png %%DOCSDIR%%/html/images/qconicalgradient.png %%DOCSDIR%%/html/images/qdesktopwidget.png %%DOCSDIR%%/html/images/qeasingcurve-inback.png %%DOCSDIR%%/html/images/qeasingcurve-inbounce.png %%DOCSDIR%%/html/images/qeasingcurve-incirc.png %%DOCSDIR%%/html/images/qeasingcurve-incubic.png %%DOCSDIR%%/html/images/qeasingcurve-inelastic.png %%DOCSDIR%%/html/images/qeasingcurve-inexpo.png %%DOCSDIR%%/html/images/qeasingcurve-inoutback.png %%DOCSDIR%%/html/images/qeasingcurve-inoutbounce.png %%DOCSDIR%%/html/images/qeasingcurve-inoutcirc.png %%DOCSDIR%%/html/images/qeasingcurve-inoutcubic.png %%DOCSDIR%%/html/images/qeasingcurve-inoutelastic.png %%DOCSDIR%%/html/images/qeasingcurve-inoutexpo.png %%DOCSDIR%%/html/images/qeasingcurve-inoutquad.png %%DOCSDIR%%/html/images/qeasingcurve-inoutquart.png %%DOCSDIR%%/html/images/qeasingcurve-inoutquint.png %%DOCSDIR%%/html/images/qeasingcurve-inoutsine.png %%DOCSDIR%%/html/images/qeasingcurve-inquad.png %%DOCSDIR%%/html/images/qeasingcurve-inquart.png %%DOCSDIR%%/html/images/qeasingcurve-inquint.png %%DOCSDIR%%/html/images/qeasingcurve-insine.png %%DOCSDIR%%/html/images/qeasingcurve-linear.png %%DOCSDIR%%/html/images/qeasingcurve-outback.png %%DOCSDIR%%/html/images/qeasingcurve-outbounce.png %%DOCSDIR%%/html/images/qeasingcurve-outcirc.png %%DOCSDIR%%/html/images/qeasingcurve-outcubic.png %%DOCSDIR%%/html/images/qeasingcurve-outelastic.png %%DOCSDIR%%/html/images/qeasingcurve-outexpo.png %%DOCSDIR%%/html/images/qeasingcurve-outinback.png %%DOCSDIR%%/html/images/qeasingcurve-outinbounce.png %%DOCSDIR%%/html/images/qeasingcurve-outincirc.png %%DOCSDIR%%/html/images/qeasingcurve-outincubic.png %%DOCSDIR%%/html/images/qeasingcurve-outinelastic.png %%DOCSDIR%%/html/images/qeasingcurve-outinexpo.png %%DOCSDIR%%/html/images/qeasingcurve-outinquad.png %%DOCSDIR%%/html/images/qeasingcurve-outinquart.png %%DOCSDIR%%/html/images/qeasingcurve-outinquint.png %%DOCSDIR%%/html/images/qeasingcurve-outinsine.png %%DOCSDIR%%/html/images/qeasingcurve-outquad.png %%DOCSDIR%%/html/images/qeasingcurve-outquart.png %%DOCSDIR%%/html/images/qeasingcurve-outquint.png %%DOCSDIR%%/html/images/qeasingcurve-outsine.png %%DOCSDIR%%/html/images/qerrormessage.png %%DOCSDIR%%/html/images/qformlayout-kde.png %%DOCSDIR%%/html/images/qformlayout-mac.png %%DOCSDIR%%/html/images/qformlayout-qpe.png %%DOCSDIR%%/html/images/qformlayout-win.png %%DOCSDIR%%/html/images/qgradient-conical.png %%DOCSDIR%%/html/images/qgradient-linear.png %%DOCSDIR%%/html/images/qgradient-radial.png %%DOCSDIR%%/html/images/qgraphicsproxywidget-embed.png %%DOCSDIR%%/html/images/qhboxlayout-with-5-children.png %%DOCSDIR%%/html/images/qimage-32bit_scaled.png %%DOCSDIR%%/html/images/qimage-8bit_scaled.png %%DOCSDIR%%/html/images/qimage-scaling.png %%DOCSDIR%%/html/images/qline-coordinates.png %%DOCSDIR%%/html/images/qline-point.png %%DOCSDIR%%/html/images/qlineargradient-pad.png %%DOCSDIR%%/html/images/qlineargradient-reflect.png %%DOCSDIR%%/html/images/qlineargradient-repeat.png %%DOCSDIR%%/html/images/qlinef-bounded.png %%DOCSDIR%%/html/images/qlinef-normalvector.png %%DOCSDIR%%/html/images/qlinef-unbounded.png %%DOCSDIR%%/html/images/qmatrix-combinedtransformation.png %%DOCSDIR%%/html/images/qmatrix-representation.png %%DOCSDIR%%/html/images/qmatrix-simpletransformation.png %%DOCSDIR%%/html/images/qmdisubwindowlayout.png %%DOCSDIR%%/html/images/qmessagebox-crit.png %%DOCSDIR%%/html/images/qmessagebox-info.png %%DOCSDIR%%/html/images/qmessagebox-quest.png %%DOCSDIR%%/html/images/qmessagebox-warn.png %%DOCSDIR%%/html/images/qpainter-affinetransformations.png %%DOCSDIR%%/html/images/qpainter-arc.png %%DOCSDIR%%/html/images/qpainter-basicdrawing.png %%DOCSDIR%%/html/images/qpainter-chord.png %%DOCSDIR%%/html/images/qpainter-clock.png %%DOCSDIR%%/html/images/qpainter-compositiondemo.png %%DOCSDIR%%/html/images/qpainter-compositionmode1.png %%DOCSDIR%%/html/images/qpainter-compositionmode2.png %%DOCSDIR%%/html/images/qpainter-concentriccircles.png %%DOCSDIR%%/html/images/qpainter-ellipse.png %%DOCSDIR%%/html/images/qpainter-gradients.png %%DOCSDIR%%/html/images/qpainter-line.png %%DOCSDIR%%/html/images/qpainter-painterpaths.png %%DOCSDIR%%/html/images/qpainter-path.png %%DOCSDIR%%/html/images/qpainter-pathstroking.png %%DOCSDIR%%/html/images/qpainter-pie.png %%DOCSDIR%%/html/images/qpainter-polygon.png %%DOCSDIR%%/html/images/qpainter-rectangle.png %%DOCSDIR%%/html/images/qpainter-rotation.png %%DOCSDIR%%/html/images/qpainter-roundrect.png %%DOCSDIR%%/html/images/qpainter-scale.png %%DOCSDIR%%/html/images/qpainter-translation.png %%DOCSDIR%%/html/images/qpainter-vectordeformation.png %%DOCSDIR%%/html/images/qpainterpath-addellipse.png %%DOCSDIR%%/html/images/qpainterpath-addpolygon.png %%DOCSDIR%%/html/images/qpainterpath-addrectangle.png %%DOCSDIR%%/html/images/qpainterpath-addtext.png %%DOCSDIR%%/html/images/qpainterpath-arcto.png %%DOCSDIR%%/html/images/qpainterpath-construction.png %%DOCSDIR%%/html/images/qpainterpath-cubicto.png %%DOCSDIR%%/html/images/qpainterpath-demo.png %%DOCSDIR%%/html/images/qpainterpath-example.png %%DOCSDIR%%/html/images/qpen-bevel.png %%DOCSDIR%%/html/images/qpen-custom.png %%DOCSDIR%%/html/images/qpen-dash.png %%DOCSDIR%%/html/images/qpen-dashdot.png %%DOCSDIR%%/html/images/qpen-dashdotdot.png %%DOCSDIR%%/html/images/qpen-dashpattern.png %%DOCSDIR%%/html/images/qpen-demo.png %%DOCSDIR%%/html/images/qpen-dot.png %%DOCSDIR%%/html/images/qpen-flat.png %%DOCSDIR%%/html/images/qpen-miter.png %%DOCSDIR%%/html/images/qpen-miterlimit.png %%DOCSDIR%%/html/images/qpen-roundcap.png %%DOCSDIR%%/html/images/qpen-roundjoin.png %%DOCSDIR%%/html/images/qpen-solid.png %%DOCSDIR%%/html/images/qpen-square.png %%DOCSDIR%%/html/images/qradialgradient-pad.png %%DOCSDIR%%/html/images/qradialgradient-reflect.png %%DOCSDIR%%/html/images/qradialgradient-repeat.png %%DOCSDIR%%/html/images/qrect-coordinates.png %%DOCSDIR%%/html/images/qrect-diagram-one.png %%DOCSDIR%%/html/images/qrect-diagram-three.png %%DOCSDIR%%/html/images/qrect-diagram-two.png %%DOCSDIR%%/html/images/qrect-diagram-zero.png %%DOCSDIR%%/html/images/qrect-intersect.png %%DOCSDIR%%/html/images/qrect-unite.png %%DOCSDIR%%/html/images/qrectf-coordinates.png %%DOCSDIR%%/html/images/qrectf-diagram-one.png %%DOCSDIR%%/html/images/qrectf-diagram-three.png %%DOCSDIR%%/html/images/qrectf-diagram-two.png %%DOCSDIR%%/html/images/qscrollarea-noscrollbars.png %%DOCSDIR%%/html/images/qscrollarea-onescrollbar.png %%DOCSDIR%%/html/images/qscrollarea-twoscrollbars.png %%DOCSDIR%%/html/images/qscrollbar-picture.png %%DOCSDIR%%/html/images/qscrollbar-values.png %%DOCSDIR%%/html/images/qsortfilterproxymodel-sorting.png %%DOCSDIR%%/html/images/qspinbox-plusminus.png %%DOCSDIR%%/html/images/qspinbox-updown.png %%DOCSDIR%%/html/images/qstatustipevent-action.png %%DOCSDIR%%/html/images/qstatustipevent-widget.png %%DOCSDIR%%/html/images/qstyle-comboboxes.png %%DOCSDIR%%/html/images/qstyleoptiontoolbar-position.png %%DOCSDIR%%/html/images/qt-colors.png %%DOCSDIR%%/html/images/qt-fillrule-oddeven.png %%DOCSDIR%%/html/images/qt-fillrule-winding.png %%DOCSDIR%%/html/images/qtabletevent-tilt.png %%DOCSDIR%%/html/images/qtableview-resized.png %%DOCSDIR%%/html/images/qtextblock-sequence.png %%DOCSDIR%%/html/images/qtextfragment-split.png %%DOCSDIR%%/html/images/qtextframe-style.png %%DOCSDIR%%/html/images/qtexttableformat-cell.png %%DOCSDIR%%/html/images/qtransform-combinedtransformation.png %%DOCSDIR%%/html/images/qtransform-combinedtransformation2.png %%DOCSDIR%%/html/images/qtransform-representation.png %%DOCSDIR%%/html/images/qtransform-simpletransformation.png %%DOCSDIR%%/html/images/qtwizard-aero1.png %%DOCSDIR%%/html/images/qtwizard-aero2.png %%DOCSDIR%%/html/images/qtwizard-classic1.png %%DOCSDIR%%/html/images/qtwizard-classic2.png %%DOCSDIR%%/html/images/qtwizard-mac1.png %%DOCSDIR%%/html/images/qtwizard-mac2.png %%DOCSDIR%%/html/images/qtwizard-macpage.png %%DOCSDIR%%/html/images/qtwizard-modern1.png %%DOCSDIR%%/html/images/qtwizard-modern2.png %%DOCSDIR%%/html/images/qtwizard-nonmacpage.png %%DOCSDIR%%/html/images/qundoview.png %%DOCSDIR%%/html/images/qurl-authority.png %%DOCSDIR%%/html/images/qurl-authority2.png %%DOCSDIR%%/html/images/qurl-authority3.png %%DOCSDIR%%/html/images/qurl-fragment.png %%DOCSDIR%%/html/images/qurl-ftppath.png %%DOCSDIR%%/html/images/qurl-mailtopath.png %%DOCSDIR%%/html/images/qurl-querystring.png %%DOCSDIR%%/html/images/qvboxlayout-with-5-children.png %%DOCSDIR%%/html/images/qwebview-diagram.png %%DOCSDIR%%/html/images/rb-logo.png %%DOCSDIR%%/html/images/relationaltable.png %%DOCSDIR%%/html/images/rintersect.png %%DOCSDIR%%/html/images/roaming-states.png %%DOCSDIR%%/html/images/rsubtract.png %%DOCSDIR%%/html/images/runion.png %%DOCSDIR%%/html/images/rxor.png %%DOCSDIR%%/html/images/simpleanchorlayout-example.png %%DOCSDIR%%/html/images/swipegesture.png %%DOCSDIR%%/html/images/system-tray.png %%DOCSDIR%%/html/images/taskmenuextension-example-faded.png %%DOCSDIR%%/html/images/tcpstream.png %%DOCSDIR%%/html/images/texttable-merge.png %%DOCSDIR%%/html/images/texttable-split.png %%DOCSDIR%%/html/images/udppackets.png %%DOCSDIR%%/html/images/whatsthis.png %%DOCSDIR%%/html/images/widgetdelegate.png %%DOCSDIR%%/html/images/windows-checkbox.png %%DOCSDIR%%/html/images/windows-lcdnumber.png %%DOCSDIR%%/html/images/windows-lineedit.png %%DOCSDIR%%/html/images/windows-radiobutton.png %%DOCSDIR%%/html/images/windows-slider.png %%DOCSDIR%%/html/images/windowsxp-dateedit.png %%DOCSDIR%%/html/images/windowsxp-datetimeedit.png %%DOCSDIR%%/html/images/windowsxp-dial.png %%DOCSDIR%%/html/images/windowsxp-fontcombobox.png %%DOCSDIR%%/html/images/windowsxp-groupbox.png %%DOCSDIR%%/html/images/windowsxp-horizontalscrollbar.png %%DOCSDIR%%/html/images/windowsxp-label.png %%DOCSDIR%%/html/images/windowsxp-lcdnumber.png %%DOCSDIR%%/html/images/windowsxp-listview.png %%DOCSDIR%%/html/images/windowsxp-menu.png %%DOCSDIR%%/html/images/windowsxp-progressbar.png %%DOCSDIR%%/html/images/windowsxp-pushbutton.png %%DOCSDIR%%/html/images/windowsxp-spinbox.png %%DOCSDIR%%/html/images/windowsxp-tableview.png %%DOCSDIR%%/html/images/windowsxp-tabwidget.png %%DOCSDIR%%/html/images/windowsxp-timeedit.png %%DOCSDIR%%/html/images/windowsxp-treeview.png %%DOCSDIR%%/html/incompatibilities.html %%DOCSDIR%%/html/incompatible_apis.html %%DOCSDIR%%/html/index.html %%DOCSDIR%%/html/installation.html %%DOCSDIR%%/html/introduction.html %%DOCSDIR%%/html/keyword_arguments.html %%DOCSDIR%%/html/modules.html %%DOCSDIR%%/html/new_style_signals_slots.html %%DOCSDIR%%/html/objects.inv %%DOCSDIR%%/html/old_style_signals_slots.html %%DOCSDIR%%/html/phonon-abstractaudiooutput.html %%DOCSDIR%%/html/phonon-abstractvideooutput.html %%DOCSDIR%%/html/phonon-audiocapturedevice.html %%DOCSDIR%%/html/phonon-audiochanneldescription.html %%DOCSDIR%%/html/phonon-audiooutput.html %%DOCSDIR%%/html/phonon-audiooutputdevice.html %%DOCSDIR%%/html/phonon-audiooutputdevicemodel.html %%DOCSDIR%%/html/phonon-backendcapabilities-notifier.html %%DOCSDIR%%/html/phonon-backendcapabilities.html %%DOCSDIR%%/html/phonon-effect.html %%DOCSDIR%%/html/phonon-effectdescription.html %%DOCSDIR%%/html/phonon-effectdescriptionmodel.html %%DOCSDIR%%/html/phonon-effectparameter-hints.html %%DOCSDIR%%/html/phonon-effectparameter.html %%DOCSDIR%%/html/phonon-effectwidget.html %%DOCSDIR%%/html/phonon-mediacontroller-features.html %%DOCSDIR%%/html/phonon-mediacontroller.html %%DOCSDIR%%/html/phonon-medianode.html %%DOCSDIR%%/html/phonon-mediaobject.html %%DOCSDIR%%/html/phonon-mediasource.html %%DOCSDIR%%/html/phonon-module.html %%DOCSDIR%%/html/phonon-path.html %%DOCSDIR%%/html/phonon-seekslider.html %%DOCSDIR%%/html/phonon-subtitledescription.html %%DOCSDIR%%/html/phonon-videoplayer.html %%DOCSDIR%%/html/phonon-videowidget.html %%DOCSDIR%%/html/phonon-volumeslider.html %%DOCSDIR%%/html/phonon.html %%DOCSDIR%%/html/pickle.html %%DOCSDIR%%/html/py-modindex.html %%DOCSDIR%%/html/pyqt_qsettings.html %%DOCSDIR%%/html/pyqt_qvariant.html %%DOCSDIR%%/html/python_shell.html %%DOCSDIR%%/html/python_v3.html %%DOCSDIR%%/html/qabstractanimation.html %%DOCSDIR%%/html/qabstractbutton.html %%DOCSDIR%%/html/qabstracteventdispatcher.html %%DOCSDIR%%/html/qabstractextensionfactory.html %%DOCSDIR%%/html/qabstractextensionmanager.html %%DOCSDIR%%/html/qabstractfileengine-fileflags.html %%DOCSDIR%%/html/qabstractfileengine.html %%DOCSDIR%%/html/qabstractfileenginehandler.html %%DOCSDIR%%/html/qabstractfileengineiterator.html %%DOCSDIR%%/html/qabstractformbuilder.html %%DOCSDIR%%/html/qabstractgraphicsshapeitem.html %%DOCSDIR%%/html/qabstractitemdelegate.html %%DOCSDIR%%/html/qabstractitemmodel.html %%DOCSDIR%%/html/qabstractitemview-edittriggers.html %%DOCSDIR%%/html/qabstractitemview.html %%DOCSDIR%%/html/qabstractlistmodel.html %%DOCSDIR%%/html/qabstractmessagehandler.html %%DOCSDIR%%/html/qabstractnetworkcache.html %%DOCSDIR%%/html/qabstractprintdialog-printdialogoptions.html %%DOCSDIR%%/html/qabstractprintdialog.html %%DOCSDIR%%/html/qabstractproxymodel.html %%DOCSDIR%%/html/qabstractscrollarea.html %%DOCSDIR%%/html/qabstractslider.html %%DOCSDIR%%/html/qabstractsocket.html %%DOCSDIR%%/html/qabstractspinbox-stepenabled.html %%DOCSDIR%%/html/qabstractspinbox.html %%DOCSDIR%%/html/qabstractstate.html %%DOCSDIR%%/html/qabstracttablemodel.html %%DOCSDIR%%/html/qabstracttextdocumentlayout-paintcontext.html %%DOCSDIR%%/html/qabstracttextdocumentlayout-selection.html %%DOCSDIR%%/html/qabstracttextdocumentlayout.html %%DOCSDIR%%/html/qabstracttransition.html %%DOCSDIR%%/html/qabstracturiresolver.html %%DOCSDIR%%/html/qabstractvideobuffer.html %%DOCSDIR%%/html/qabstractvideosurface.html %%DOCSDIR%%/html/qabstractxmlnodemodel.html %%DOCSDIR%%/html/qabstractxmlreceiver.html %%DOCSDIR%%/html/qaction.html %%DOCSDIR%%/html/qactionevent.html %%DOCSDIR%%/html/qactiongroup.html %%DOCSDIR%%/html/qanimationgroup.html %%DOCSDIR%%/html/qapplication.html %%DOCSDIR%%/html/qassistantclient.html %%DOCSDIR%%/html/qaudio.html %%DOCSDIR%%/html/qaudiodeviceinfo.html %%DOCSDIR%%/html/qaudioformat.html %%DOCSDIR%%/html/qaudioinput.html %%DOCSDIR%%/html/qaudiooutput.html %%DOCSDIR%%/html/qauthenticator.html %%DOCSDIR%%/html/qaxcontainer.html %%DOCSDIR%%/html/qbasictimer.html %%DOCSDIR%%/html/qbitarray.html %%DOCSDIR%%/html/qbitmap.html %%DOCSDIR%%/html/qboxlayout.html %%DOCSDIR%%/html/qbrush.html %%DOCSDIR%%/html/qbuffer.html %%DOCSDIR%%/html/qbuttongroup.html %%DOCSDIR%%/html/qbytearray.html %%DOCSDIR%%/html/qbytearraymatcher.html %%DOCSDIR%%/html/qcalendarwidget.html %%DOCSDIR%%/html/qchar.html %%DOCSDIR%%/html/qcheckbox.html %%DOCSDIR%%/html/qchildevent.html %%DOCSDIR%%/html/qclipboard.html %%DOCSDIR%%/html/qcloseevent.html %%DOCSDIR%%/html/qcolor.html %%DOCSDIR%%/html/qcolordialog-colordialogoptions.html %%DOCSDIR%%/html/qcolordialog.html %%DOCSDIR%%/html/qcolumnview.html %%DOCSDIR%%/html/qcombobox.html %%DOCSDIR%%/html/qcommandlinkbutton.html %%DOCSDIR%%/html/qcommonstyle.html %%DOCSDIR%%/html/qcompleter.html %%DOCSDIR%%/html/qconicalgradient.html %%DOCSDIR%%/html/qcontextmenuevent.html %%DOCSDIR%%/html/qcoreapplication.html %%DOCSDIR%%/html/qcryptographichash.html %%DOCSDIR%%/html/qcursor.html %%DOCSDIR%%/html/qdatastream.html %%DOCSDIR%%/html/qdatawidgetmapper.html %%DOCSDIR%%/html/qdate.html %%DOCSDIR%%/html/qdateedit.html %%DOCSDIR%%/html/qdatetime.html %%DOCSDIR%%/html/qdatetimeedit-sections.html %%DOCSDIR%%/html/qdatetimeedit.html %%DOCSDIR%%/html/qdbus.html %%DOCSDIR%%/html/qdbusabstractadaptor.html %%DOCSDIR%%/html/qdbusabstractinterface.html %%DOCSDIR%%/html/qdbusargument.html %%DOCSDIR%%/html/qdbusconnection-connectioncapabilities.html %%DOCSDIR%%/html/qdbusconnection-registeroptions.html %%DOCSDIR%%/html/qdbusconnection.html %%DOCSDIR%%/html/qdbusconnectioninterface.html %%DOCSDIR%%/html/qdbuserror.html %%DOCSDIR%%/html/qdbusinterface.html %%DOCSDIR%%/html/qdbusmessage.html %%DOCSDIR%%/html/qdbusobjectpath.html %%DOCSDIR%%/html/qdbuspendingcall.html %%DOCSDIR%%/html/qdbuspendingcallwatcher.html %%DOCSDIR%%/html/qdbuspendingreply.html %%DOCSDIR%%/html/qdbusreply.html %%DOCSDIR%%/html/qdbusservicewatcher-watchmode.html %%DOCSDIR%%/html/qdbusservicewatcher.html %%DOCSDIR%%/html/qdbussignature.html %%DOCSDIR%%/html/qdbusunixfiledescriptor.html %%DOCSDIR%%/html/qdbusvariant.html %%DOCSDIR%%/html/qdeclarativecomponent.html %%DOCSDIR%%/html/qdeclarativecontext.html %%DOCSDIR%%/html/qdeclarativeengine.html %%DOCSDIR%%/html/qdeclarativeerror.html %%DOCSDIR%%/html/qdeclarativeexpression.html %%DOCSDIR%%/html/qdeclarativeextensionplugin.html %%DOCSDIR%%/html/qdeclarativeimageprovider.html %%DOCSDIR%%/html/qdeclarativeitem.html %%DOCSDIR%%/html/qdeclarativelistreference.html %%DOCSDIR%%/html/qdeclarativenetworkaccessmanagerfactory.html %%DOCSDIR%%/html/qdeclarativeparserstatus.html %%DOCSDIR%%/html/qdeclarativeproperty.html %%DOCSDIR%%/html/qdeclarativepropertymap.html %%DOCSDIR%%/html/qdeclarativepropertyvaluesource.html %%DOCSDIR%%/html/qdeclarativescriptstring.html %%DOCSDIR%%/html/qdeclarativeview.html %%DOCSDIR%%/html/qdesigneractioneditorinterface.html %%DOCSDIR%%/html/qdesignercontainerextension.html %%DOCSDIR%%/html/qdesignercustomwidgetcollectioninterface.html %%DOCSDIR%%/html/qdesignercustomwidgetinterface.html %%DOCSDIR%%/html/qdesignerformeditorinterface.html %%DOCSDIR%%/html/qdesignerformwindowcursorinterface.html %%DOCSDIR%%/html/qdesignerformwindowinterface-feature.html %%DOCSDIR%%/html/qdesignerformwindowinterface.html %%DOCSDIR%%/html/qdesignerformwindowmanagerinterface.html %%DOCSDIR%%/html/qdesignermembersheetextension.html %%DOCSDIR%%/html/qdesignerobjectinspectorinterface.html %%DOCSDIR%%/html/qdesignerpropertyeditorinterface.html %%DOCSDIR%%/html/qdesignerpropertysheetextension.html %%DOCSDIR%%/html/qdesignertaskmenuextension.html %%DOCSDIR%%/html/qdesignerwidgetboxinterface.html %%DOCSDIR%%/html/qdesktopservices.html %%DOCSDIR%%/html/qdesktopwidget.html %%DOCSDIR%%/html/qdial.html %%DOCSDIR%%/html/qdialog.html %%DOCSDIR%%/html/qdialogbuttonbox-standardbuttons.html %%DOCSDIR%%/html/qdialogbuttonbox.html %%DOCSDIR%%/html/qdir-filters.html %%DOCSDIR%%/html/qdir-sortflags.html %%DOCSDIR%%/html/qdir.html %%DOCSDIR%%/html/qdiriterator-iteratorflags.html %%DOCSDIR%%/html/qdiriterator.html %%DOCSDIR%%/html/qdirmodel.html %%DOCSDIR%%/html/qdockwidget-dockwidgetfeatures.html %%DOCSDIR%%/html/qdockwidget.html %%DOCSDIR%%/html/qdomattr.html %%DOCSDIR%%/html/qdomcdatasection.html %%DOCSDIR%%/html/qdomcharacterdata.html %%DOCSDIR%%/html/qdomcomment.html %%DOCSDIR%%/html/qdomdocument.html %%DOCSDIR%%/html/qdomdocumentfragment.html %%DOCSDIR%%/html/qdomdocumenttype.html %%DOCSDIR%%/html/qdomelement.html %%DOCSDIR%%/html/qdomentity.html %%DOCSDIR%%/html/qdomentityreference.html %%DOCSDIR%%/html/qdomimplementation.html %%DOCSDIR%%/html/qdomnamednodemap.html %%DOCSDIR%%/html/qdomnode.html %%DOCSDIR%%/html/qdomnodelist.html %%DOCSDIR%%/html/qdomnotation.html %%DOCSDIR%%/html/qdomprocessinginstruction.html %%DOCSDIR%%/html/qdomtext.html %%DOCSDIR%%/html/qdoublespinbox.html %%DOCSDIR%%/html/qdoublevalidator.html %%DOCSDIR%%/html/qdrag.html %%DOCSDIR%%/html/qdragenterevent.html %%DOCSDIR%%/html/qdragleaveevent.html %%DOCSDIR%%/html/qdragmoveevent.html %%DOCSDIR%%/html/qdropevent.html %%DOCSDIR%%/html/qdynamicpropertychangeevent.html %%DOCSDIR%%/html/qeasingcurve.html %%DOCSDIR%%/html/qelapsedtimer.html %%DOCSDIR%%/html/qerrormessage.html %%DOCSDIR%%/html/qevent.html %%DOCSDIR%%/html/qeventloop-processeventsflags.html %%DOCSDIR%%/html/qeventloop.html %%DOCSDIR%%/html/qeventtransition.html %%DOCSDIR%%/html/qextensionfactory.html %%DOCSDIR%%/html/qextensionmanager.html %%DOCSDIR%%/html/qfile-filehandleflags.html %%DOCSDIR%%/html/qfile-permissions.html %%DOCSDIR%%/html/qfile.html %%DOCSDIR%%/html/qfiledialog-options.html %%DOCSDIR%%/html/qfiledialog.html %%DOCSDIR%%/html/qfileiconprovider.html %%DOCSDIR%%/html/qfileinfo.html %%DOCSDIR%%/html/qfileopenevent.html %%DOCSDIR%%/html/qfilesystemmodel.html %%DOCSDIR%%/html/qfilesystemwatcher.html %%DOCSDIR%%/html/qfinalstate.html %%DOCSDIR%%/html/qfocusevent.html %%DOCSDIR%%/html/qfocusframe.html %%DOCSDIR%%/html/qfont.html %%DOCSDIR%%/html/qfontcombobox-fontfilters.html %%DOCSDIR%%/html/qfontcombobox.html %%DOCSDIR%%/html/qfontdatabase.html %%DOCSDIR%%/html/qfontdialog-fontdialogoptions.html %%DOCSDIR%%/html/qfontdialog.html %%DOCSDIR%%/html/qfontinfo.html %%DOCSDIR%%/html/qfontmetrics.html %%DOCSDIR%%/html/qfontmetricsf.html %%DOCSDIR%%/html/qformbuilder.html %%DOCSDIR%%/html/qformlayout.html %%DOCSDIR%%/html/qframe.html %%DOCSDIR%%/html/qfsfileengine.html %%DOCSDIR%%/html/qftp.html %%DOCSDIR%%/html/qgenericargument.html %%DOCSDIR%%/html/qgenericreturnargument.html %%DOCSDIR%%/html/qgesture.html %%DOCSDIR%%/html/qgestureevent.html %%DOCSDIR%%/html/qgesturerecognizer-result.html %%DOCSDIR%%/html/qgesturerecognizer.html %%DOCSDIR%%/html/qgl-formatoptions.html %%DOCSDIR%%/html/qgl.html %%DOCSDIR%%/html/qglbuffer.html %%DOCSDIR%%/html/qglcolormap.html %%DOCSDIR%%/html/qglcontext-bindoptions.html %%DOCSDIR%%/html/qglcontext.html %%DOCSDIR%%/html/qglformat-openglversionflags.html %%DOCSDIR%%/html/qglformat.html %%DOCSDIR%%/html/qglframebufferobject.html %%DOCSDIR%%/html/qglframebufferobjectformat.html %%DOCSDIR%%/html/qglpixelbuffer.html %%DOCSDIR%%/html/qglshader-shadertype.html %%DOCSDIR%%/html/qglshader.html %%DOCSDIR%%/html/qglshaderprogram.html %%DOCSDIR%%/html/qglwidget.html %%DOCSDIR%%/html/qglyphrun.html %%DOCSDIR%%/html/qgradient.html %%DOCSDIR%%/html/qgraphicsanchor.html %%DOCSDIR%%/html/qgraphicsanchorlayout.html %%DOCSDIR%%/html/qgraphicsblureffect-blurhints.html %%DOCSDIR%%/html/qgraphicsblureffect.html %%DOCSDIR%%/html/qgraphicscolorizeeffect.html %%DOCSDIR%%/html/qgraphicsdropshadoweffect.html %%DOCSDIR%%/html/qgraphicseffect-changeflags.html %%DOCSDIR%%/html/qgraphicseffect.html %%DOCSDIR%%/html/qgraphicsellipseitem.html %%DOCSDIR%%/html/qgraphicsgridlayout.html %%DOCSDIR%%/html/qgraphicsitem-graphicsitemflags.html %%DOCSDIR%%/html/qgraphicsitem.html %%DOCSDIR%%/html/qgraphicsitemanimation.html %%DOCSDIR%%/html/qgraphicsitemgroup.html %%DOCSDIR%%/html/qgraphicslayout.html %%DOCSDIR%%/html/qgraphicslayoutitem.html %%DOCSDIR%%/html/qgraphicslinearlayout.html %%DOCSDIR%%/html/qgraphicslineitem.html %%DOCSDIR%%/html/qgraphicsobject.html %%DOCSDIR%%/html/qgraphicsopacityeffect.html %%DOCSDIR%%/html/qgraphicspathitem.html %%DOCSDIR%%/html/qgraphicspixmapitem.html %%DOCSDIR%%/html/qgraphicspolygonitem.html %%DOCSDIR%%/html/qgraphicsproxywidget.html %%DOCSDIR%%/html/qgraphicsrectitem.html %%DOCSDIR%%/html/qgraphicsrotation.html %%DOCSDIR%%/html/qgraphicsscale.html %%DOCSDIR%%/html/qgraphicsscene-scenelayers.html %%DOCSDIR%%/html/qgraphicsscene.html %%DOCSDIR%%/html/qgraphicsscenecontextmenuevent.html %%DOCSDIR%%/html/qgraphicsscenedragdropevent.html %%DOCSDIR%%/html/qgraphicssceneevent.html %%DOCSDIR%%/html/qgraphicsscenehelpevent.html %%DOCSDIR%%/html/qgraphicsscenehoverevent.html %%DOCSDIR%%/html/qgraphicsscenemouseevent.html %%DOCSDIR%%/html/qgraphicsscenemoveevent.html %%DOCSDIR%%/html/qgraphicssceneresizeevent.html %%DOCSDIR%%/html/qgraphicsscenewheelevent.html %%DOCSDIR%%/html/qgraphicssimpletextitem.html %%DOCSDIR%%/html/qgraphicssvgitem.html %%DOCSDIR%%/html/qgraphicstextitem.html %%DOCSDIR%%/html/qgraphicstransform.html %%DOCSDIR%%/html/qgraphicsview-cachemode.html %%DOCSDIR%%/html/qgraphicsview-optimizationflags.html %%DOCSDIR%%/html/qgraphicsview.html %%DOCSDIR%%/html/qgraphicswebview.html %%DOCSDIR%%/html/qgraphicswidget.html %%DOCSDIR%%/html/qgridlayout.html %%DOCSDIR%%/html/qgroupbox.html %%DOCSDIR%%/html/qhboxlayout.html %%DOCSDIR%%/html/qheaderview.html %%DOCSDIR%%/html/qhelpcontentitem.html %%DOCSDIR%%/html/qhelpcontentmodel.html %%DOCSDIR%%/html/qhelpcontentwidget.html %%DOCSDIR%%/html/qhelpengine.html %%DOCSDIR%%/html/qhelpenginecore.html %%DOCSDIR%%/html/qhelpevent.html %%DOCSDIR%%/html/qhelpindexmodel.html %%DOCSDIR%%/html/qhelpindexwidget.html %%DOCSDIR%%/html/qhelpsearchengine.html %%DOCSDIR%%/html/qhelpsearchquery.html %%DOCSDIR%%/html/qhelpsearchquerywidget.html %%DOCSDIR%%/html/qhelpsearchresultwidget.html %%DOCSDIR%%/html/qhideevent.html %%DOCSDIR%%/html/qhistorystate.html %%DOCSDIR%%/html/qhostaddress.html %%DOCSDIR%%/html/qhostinfo.html %%DOCSDIR%%/html/qhoverevent.html %%DOCSDIR%%/html/qhttp.html %%DOCSDIR%%/html/qhttpheader.html %%DOCSDIR%%/html/qhttpmultipart.html %%DOCSDIR%%/html/qhttppart.html %%DOCSDIR%%/html/qhttprequestheader.html %%DOCSDIR%%/html/qhttpresponseheader.html %%DOCSDIR%%/html/qicon.html %%DOCSDIR%%/html/qicondragevent.html %%DOCSDIR%%/html/qiconengine.html %%DOCSDIR%%/html/qiconenginev2-availablesizesargument.html %%DOCSDIR%%/html/qiconenginev2.html %%DOCSDIR%%/html/qidentityproxymodel.html %%DOCSDIR%%/html/qimage.html %%DOCSDIR%%/html/qimageiohandler.html %%DOCSDIR%%/html/qimagereader.html %%DOCSDIR%%/html/qimagewriter.html %%DOCSDIR%%/html/qinputcontext.html %%DOCSDIR%%/html/qinputcontextfactory.html %%DOCSDIR%%/html/qinputdialog-inputdialogoptions.html %%DOCSDIR%%/html/qinputdialog.html %%DOCSDIR%%/html/qinputevent.html %%DOCSDIR%%/html/qinputmethodevent-attribute.html %%DOCSDIR%%/html/qinputmethodevent.html %%DOCSDIR%%/html/qintvalidator.html %%DOCSDIR%%/html/qiodevice-openmode.html %%DOCSDIR%%/html/qiodevice.html %%DOCSDIR%%/html/qitemdelegate.html %%DOCSDIR%%/html/qitemeditorcreatorbase.html %%DOCSDIR%%/html/qitemeditorfactory.html %%DOCSDIR%%/html/qitemselection.html %%DOCSDIR%%/html/qitemselectionmodel-selectionflags.html %%DOCSDIR%%/html/qitemselectionmodel.html %%DOCSDIR%%/html/qitemselectionrange.html %%DOCSDIR%%/html/qkeyevent.html %%DOCSDIR%%/html/qkeyeventtransition.html %%DOCSDIR%%/html/qkeysequence.html %%DOCSDIR%%/html/qlabel.html %%DOCSDIR%%/html/qlatin1char.html %%DOCSDIR%%/html/qlatin1string.html %%DOCSDIR%%/html/qlayout.html %%DOCSDIR%%/html/qlayoutitem.html %%DOCSDIR%%/html/qlcdnumber.html %%DOCSDIR%%/html/qlibrary-loadhints.html %%DOCSDIR%%/html/qlibrary.html %%DOCSDIR%%/html/qlibraryinfo.html %%DOCSDIR%%/html/qline.html %%DOCSDIR%%/html/qlineargradient.html %%DOCSDIR%%/html/qlineedit.html %%DOCSDIR%%/html/qlinef.html %%DOCSDIR%%/html/qlistview.html %%DOCSDIR%%/html/qlistwidget.html %%DOCSDIR%%/html/qlistwidgetitem.html %%DOCSDIR%%/html/qlocale-numberoptions.html %%DOCSDIR%%/html/qlocale.html %%DOCSDIR%%/html/qlocalserver.html %%DOCSDIR%%/html/qlocalsocket.html %%DOCSDIR%%/html/qmainwindow-dockoptions.html %%DOCSDIR%%/html/qmainwindow.html %%DOCSDIR%%/html/qmargins.html %%DOCSDIR%%/html/qmatrix.html %%DOCSDIR%%/html/qmatrix2x2.html %%DOCSDIR%%/html/qmatrix2x3.html %%DOCSDIR%%/html/qmatrix2x4.html %%DOCSDIR%%/html/qmatrix3x2.html %%DOCSDIR%%/html/qmatrix3x3.html %%DOCSDIR%%/html/qmatrix3x4.html %%DOCSDIR%%/html/qmatrix4x2.html %%DOCSDIR%%/html/qmatrix4x3.html %%DOCSDIR%%/html/qmatrix4x4.html %%DOCSDIR%%/html/qmdiarea-areaoptions.html %%DOCSDIR%%/html/qmdiarea.html %%DOCSDIR%%/html/qmdisubwindow-subwindowoptions.html %%DOCSDIR%%/html/qmdisubwindow.html %%DOCSDIR%%/html/qmenu.html %%DOCSDIR%%/html/qmenubar.html %%DOCSDIR%%/html/qmessagebox-standardbuttons.html %%DOCSDIR%%/html/qmessagebox.html %%DOCSDIR%%/html/qmetaclassinfo.html %%DOCSDIR%%/html/qmetaenum.html %%DOCSDIR%%/html/qmetamethod.html %%DOCSDIR%%/html/qmetaobject.html %%DOCSDIR%%/html/qmetaproperty.html %%DOCSDIR%%/html/qmetatype.html %%DOCSDIR%%/html/qmimedata.html %%DOCSDIR%%/html/qmimesource.html %%DOCSDIR%%/html/qml.html %%DOCSDIR%%/html/qmodelindex.html %%DOCSDIR%%/html/qmouseevent.html %%DOCSDIR%%/html/qmouseeventtransition.html %%DOCSDIR%%/html/qmoveevent.html %%DOCSDIR%%/html/qmovie.html %%DOCSDIR%%/html/qmutex.html %%DOCSDIR%%/html/qmutexlocker.html %%DOCSDIR%%/html/qnetworkaccessmanager.html %%DOCSDIR%%/html/qnetworkaddressentry.html %%DOCSDIR%%/html/qnetworkcachemetadata.html %%DOCSDIR%%/html/qnetworkconfiguration-stateflags.html %%DOCSDIR%%/html/qnetworkconfiguration.html %%DOCSDIR%%/html/qnetworkconfigurationmanager-capabilities.html %%DOCSDIR%%/html/qnetworkconfigurationmanager.html %%DOCSDIR%%/html/qnetworkcookie.html %%DOCSDIR%%/html/qnetworkcookiejar.html %%DOCSDIR%%/html/qnetworkdiskcache.html %%DOCSDIR%%/html/qnetworkinterface-interfaceflags.html %%DOCSDIR%%/html/qnetworkinterface.html %%DOCSDIR%%/html/qnetworkproxy-capabilities.html %%DOCSDIR%%/html/qnetworkproxy.html %%DOCSDIR%%/html/qnetworkproxyfactory.html %%DOCSDIR%%/html/qnetworkproxyquery.html %%DOCSDIR%%/html/qnetworkreply.html %%DOCSDIR%%/html/qnetworkrequest.html %%DOCSDIR%%/html/qnetworksession.html %%DOCSDIR%%/html/qobject.html %%DOCSDIR%%/html/qobjectcleanuphandler.html %%DOCSDIR%%/html/qpagesetupdialog-pagesetupdialogoptions.html %%DOCSDIR%%/html/qpagesetupdialog.html %%DOCSDIR%%/html/qpaintdevice.html %%DOCSDIR%%/html/qpaintengine-dirtyflags.html %%DOCSDIR%%/html/qpaintengine-paintenginefeatures.html %%DOCSDIR%%/html/qpaintengine.html %%DOCSDIR%%/html/qpaintenginestate.html %%DOCSDIR%%/html/qpainter-pixmapfragment.html %%DOCSDIR%%/html/qpainter-pixmapfragmenthints.html %%DOCSDIR%%/html/qpainter-renderhints.html %%DOCSDIR%%/html/qpainter.html %%DOCSDIR%%/html/qpainterpath-element.html %%DOCSDIR%%/html/qpainterpath.html %%DOCSDIR%%/html/qpainterpathstroker.html %%DOCSDIR%%/html/qpaintevent.html %%DOCSDIR%%/html/qpalette.html %%DOCSDIR%%/html/qpangesture.html %%DOCSDIR%%/html/qparallelanimationgroup.html %%DOCSDIR%%/html/qpauseanimation.html %%DOCSDIR%%/html/qpen.html %%DOCSDIR%%/html/qpersistentmodelindex.html %%DOCSDIR%%/html/qpicture.html %%DOCSDIR%%/html/qpictureio.html %%DOCSDIR%%/html/qpinchgesture-changeflags.html %%DOCSDIR%%/html/qpinchgesture.html %%DOCSDIR%%/html/qpixmap.html %%DOCSDIR%%/html/qpixmapcache-key.html %%DOCSDIR%%/html/qpixmapcache.html %%DOCSDIR%%/html/qplaintextdocumentlayout.html %%DOCSDIR%%/html/qplaintextedit.html %%DOCSDIR%%/html/qpluginloader.html %%DOCSDIR%%/html/qpoint.html %%DOCSDIR%%/html/qpointf.html %%DOCSDIR%%/html/qpolygon.html %%DOCSDIR%%/html/qpolygonf.html %%DOCSDIR%%/html/qprintdialog.html %%DOCSDIR%%/html/qprintengine.html %%DOCSDIR%%/html/qprinter.html %%DOCSDIR%%/html/qprinterinfo.html %%DOCSDIR%%/html/qprintpreviewdialog.html %%DOCSDIR%%/html/qprintpreviewwidget.html %%DOCSDIR%%/html/qprocess.html %%DOCSDIR%%/html/qprocessenvironment.html %%DOCSDIR%%/html/qprogressbar.html %%DOCSDIR%%/html/qprogressdialog.html %%DOCSDIR%%/html/qpropertyanimation.html %%DOCSDIR%%/html/qproxymodel.html %%DOCSDIR%%/html/qpushbutton.html %%DOCSDIR%%/html/qpydeclarativepropertyvaluesource.html %%DOCSDIR%%/html/qpydesignercontainerextension.html %%DOCSDIR%%/html/qpydesignercustomwidgetcollectionplugin.html %%DOCSDIR%%/html/qpydesignercustomwidgetplugin.html %%DOCSDIR%%/html/qpydesignermembersheetextension.html %%DOCSDIR%%/html/qpydesignerpropertysheetextension.html %%DOCSDIR%%/html/qpydesignertaskmenuextension.html %%DOCSDIR%%/html/qpynullvariant.html %%DOCSDIR%%/html/qpytextobject.html %%DOCSDIR%%/html/qquaternion.html %%DOCSDIR%%/html/qradialgradient.html %%DOCSDIR%%/html/qradiobutton.html %%DOCSDIR%%/html/qrawfont.html %%DOCSDIR%%/html/qreadlocker.html %%DOCSDIR%%/html/qreadwritelock.html %%DOCSDIR%%/html/qrect.html %%DOCSDIR%%/html/qrectf.html %%DOCSDIR%%/html/qregexp.html %%DOCSDIR%%/html/qregexpvalidator.html %%DOCSDIR%%/html/qregion.html %%DOCSDIR%%/html/qresizeevent.html %%DOCSDIR%%/html/qresource.html %%DOCSDIR%%/html/qrubberband.html %%DOCSDIR%%/html/qrunnable.html %%DOCSDIR%%/html/qscriptclass-queryflags.html %%DOCSDIR%%/html/qscriptclass.html %%DOCSDIR%%/html/qscriptclasspropertyiterator.html %%DOCSDIR%%/html/qscriptcontext.html %%DOCSDIR%%/html/qscriptcontextinfo.html %%DOCSDIR%%/html/qscriptengine-qobjectwrapoptions.html %%DOCSDIR%%/html/qscriptengine.html %%DOCSDIR%%/html/qscriptengineagent.html %%DOCSDIR%%/html/qscriptenginedebugger.html %%DOCSDIR%%/html/qscriptstring.html %%DOCSDIR%%/html/qscriptsyntaxcheckresult.html %%DOCSDIR%%/html/qscriptvalue-propertyflags.html %%DOCSDIR%%/html/qscriptvalue-resolveflags.html %%DOCSDIR%%/html/qscriptvalue.html %%DOCSDIR%%/html/qscriptvalueiterator.html %%DOCSDIR%%/html/qscrollarea.html %%DOCSDIR%%/html/qscrollbar.html %%DOCSDIR%%/html/qsemaphore.html %%DOCSDIR%%/html/qsequentialanimationgroup.html %%DOCSDIR%%/html/qsessionmanager.html %%DOCSDIR%%/html/qsettings.html %%DOCSDIR%%/html/qsharedmemory.html %%DOCSDIR%%/html/qshortcut.html %%DOCSDIR%%/html/qshortcutevent.html %%DOCSDIR%%/html/qshowevent.html %%DOCSDIR%%/html/qsignalmapper.html %%DOCSDIR%%/html/qsignaltransition.html %%DOCSDIR%%/html/qsimplexmlnodemodel.html %%DOCSDIR%%/html/qsize.html %%DOCSDIR%%/html/qsizef.html %%DOCSDIR%%/html/qsizegrip.html %%DOCSDIR%%/html/qsizepolicy-controltypes.html %%DOCSDIR%%/html/qsizepolicy.html %%DOCSDIR%%/html/qslider.html %%DOCSDIR%%/html/qsocketnotifier.html %%DOCSDIR%%/html/qsortfilterproxymodel.html %%DOCSDIR%%/html/qsound.html %%DOCSDIR%%/html/qsourcelocation.html %%DOCSDIR%%/html/qspaceritem.html %%DOCSDIR%%/html/qspinbox.html %%DOCSDIR%%/html/qsplashscreen.html %%DOCSDIR%%/html/qsplitter.html %%DOCSDIR%%/html/qsplitterhandle.html %%DOCSDIR%%/html/qsql-paramtype.html %%DOCSDIR%%/html/qsql.html %%DOCSDIR%%/html/qsqldatabase.html %%DOCSDIR%%/html/qsqldriver.html %%DOCSDIR%%/html/qsqldrivercreatorbase.html %%DOCSDIR%%/html/qsqlerror.html %%DOCSDIR%%/html/qsqlfield.html %%DOCSDIR%%/html/qsqlindex.html %%DOCSDIR%%/html/qsqlquery.html %%DOCSDIR%%/html/qsqlquerymodel.html %%DOCSDIR%%/html/qsqlrecord.html %%DOCSDIR%%/html/qsqlrelation.html %%DOCSDIR%%/html/qsqlrelationaldelegate.html %%DOCSDIR%%/html/qsqlrelationaltablemodel.html %%DOCSDIR%%/html/qsqlresult.html %%DOCSDIR%%/html/qsqltablemodel.html %%DOCSDIR%%/html/qssl-ssloptions.html %%DOCSDIR%%/html/qssl.html %%DOCSDIR%%/html/qsslcertificate.html %%DOCSDIR%%/html/qsslcipher.html %%DOCSDIR%%/html/qsslconfiguration.html %%DOCSDIR%%/html/qsslerror.html %%DOCSDIR%%/html/qsslkey.html %%DOCSDIR%%/html/qsslsocket.html %%DOCSDIR%%/html/qstackedlayout.html %%DOCSDIR%%/html/qstackedwidget.html %%DOCSDIR%%/html/qstandarditem.html %%DOCSDIR%%/html/qstandarditemmodel.html %%DOCSDIR%%/html/qstate.html %%DOCSDIR%%/html/qstatemachine-signalevent.html %%DOCSDIR%%/html/qstatemachine-wrappedevent.html %%DOCSDIR%%/html/qstatemachine.html %%DOCSDIR%%/html/qstatictext.html %%DOCSDIR%%/html/qstatusbar.html %%DOCSDIR%%/html/qstatustipevent.html %%DOCSDIR%%/html/qstring-sectionflags.html %%DOCSDIR%%/html/qstring.html %%DOCSDIR%%/html/qstringlist.html %%DOCSDIR%%/html/qstringlistmodel.html %%DOCSDIR%%/html/qstringmatcher.html %%DOCSDIR%%/html/qstringref.html %%DOCSDIR%%/html/qstyle-state.html %%DOCSDIR%%/html/qstyle-subcontrols.html %%DOCSDIR%%/html/qstyle.html %%DOCSDIR%%/html/qstyleditemdelegate.html %%DOCSDIR%%/html/qstylefactory.html %%DOCSDIR%%/html/qstylehintreturn.html %%DOCSDIR%%/html/qstylehintreturnmask.html %%DOCSDIR%%/html/qstylehintreturnvariant.html %%DOCSDIR%%/html/qstyleoption.html %%DOCSDIR%%/html/qstyleoptionbutton-buttonfeatures.html %%DOCSDIR%%/html/qstyleoptionbutton.html %%DOCSDIR%%/html/qstyleoptioncombobox.html %%DOCSDIR%%/html/qstyleoptioncomplex.html %%DOCSDIR%%/html/qstyleoptiondockwidget.html %%DOCSDIR%%/html/qstyleoptiondockwidgetv2.html %%DOCSDIR%%/html/qstyleoptionfocusrect.html %%DOCSDIR%%/html/qstyleoptionframe.html %%DOCSDIR%%/html/qstyleoptionframev2-framefeatures.html %%DOCSDIR%%/html/qstyleoptionframev2.html %%DOCSDIR%%/html/qstyleoptionframev3.html %%DOCSDIR%%/html/qstyleoptiongraphicsitem.html %%DOCSDIR%%/html/qstyleoptiongroupbox.html %%DOCSDIR%%/html/qstyleoptionheader.html %%DOCSDIR%%/html/qstyleoptionmenuitem.html %%DOCSDIR%%/html/qstyleoptionprogressbar.html %%DOCSDIR%%/html/qstyleoptionprogressbarv2.html %%DOCSDIR%%/html/qstyleoptionrubberband.html %%DOCSDIR%%/html/qstyleoptionsizegrip.html %%DOCSDIR%%/html/qstyleoptionslider.html %%DOCSDIR%%/html/qstyleoptionspinbox.html %%DOCSDIR%%/html/qstyleoptiontab-cornerwidgets.html %%DOCSDIR%%/html/qstyleoptiontab.html %%DOCSDIR%%/html/qstyleoptiontabbarbase.html %%DOCSDIR%%/html/qstyleoptiontabbarbasev2.html %%DOCSDIR%%/html/qstyleoptiontabv2.html %%DOCSDIR%%/html/qstyleoptiontabv3.html %%DOCSDIR%%/html/qstyleoptiontabwidgetframe.html %%DOCSDIR%%/html/qstyleoptiontabwidgetframev2.html %%DOCSDIR%%/html/qstyleoptiontitlebar.html %%DOCSDIR%%/html/qstyleoptiontoolbar-toolbarfeatures.html %%DOCSDIR%%/html/qstyleoptiontoolbar.html %%DOCSDIR%%/html/qstyleoptiontoolbox.html %%DOCSDIR%%/html/qstyleoptiontoolboxv2.html %%DOCSDIR%%/html/qstyleoptiontoolbutton-toolbuttonfeatures.html %%DOCSDIR%%/html/qstyleoptiontoolbutton.html %%DOCSDIR%%/html/qstyleoptionviewitem.html %%DOCSDIR%%/html/qstyleoptionviewitemv2-viewitemfeatures.html %%DOCSDIR%%/html/qstyleoptionviewitemv2.html %%DOCSDIR%%/html/qstyleoptionviewitemv3.html %%DOCSDIR%%/html/qstyleoptionviewitemv4.html %%DOCSDIR%%/html/qstylepainter.html %%DOCSDIR%%/html/qsvggenerator.html %%DOCSDIR%%/html/qsvgrenderer.html %%DOCSDIR%%/html/qsvgwidget.html %%DOCSDIR%%/html/qswipegesture.html %%DOCSDIR%%/html/qsyntaxhighlighter.html %%DOCSDIR%%/html/qsysinfo.html %%DOCSDIR%%/html/qsystemlocale.html %%DOCSDIR%%/html/qsystemsemaphore.html %%DOCSDIR%%/html/qsystemtrayicon.html %%DOCSDIR%%/html/qt-alignment.html %%DOCSDIR%%/html/qt-dockwidgetareas.html %%DOCSDIR%%/html/qt-dropactions.html %%DOCSDIR%%/html/qt-gestureflags.html %%DOCSDIR%%/html/qt-imageconversionflags.html %%DOCSDIR%%/html/qt-inputmethodhints.html %%DOCSDIR%%/html/qt-itemflags.html %%DOCSDIR%%/html/qt-keyboardmodifiers.html %%DOCSDIR%%/html/qt-matchflags.html %%DOCSDIR%%/html/qt-mousebuttons.html %%DOCSDIR%%/html/qt-orientations.html %%DOCSDIR%%/html/qt-textinteractionflags.html %%DOCSDIR%%/html/qt-toolbarareas.html %%DOCSDIR%%/html/qt-touchpointstates.html %%DOCSDIR%%/html/qt-windowflags.html %%DOCSDIR%%/html/qt-windowstates.html %%DOCSDIR%%/html/qt.html %%DOCSDIR%%/html/qt_properties.html %%DOCSDIR%%/html/qt_v5.html %%DOCSDIR%%/html/qtabbar.html %%DOCSDIR%%/html/qtabletevent.html %%DOCSDIR%%/html/qtableview.html %%DOCSDIR%%/html/qtablewidget.html %%DOCSDIR%%/html/qtablewidgetitem.html %%DOCSDIR%%/html/qtablewidgetselectionrange.html %%DOCSDIR%%/html/qtabwidget.html %%DOCSDIR%%/html/qtapandholdgesture.html %%DOCSDIR%%/html/qtapgesture.html %%DOCSDIR%%/html/qtassistant.html %%DOCSDIR%%/html/qtcore.html %%DOCSDIR%%/html/qtcpserver.html %%DOCSDIR%%/html/qtcpsocket.html %%DOCSDIR%%/html/qtdbus.html %%DOCSDIR%%/html/qtdeclarative.html %%DOCSDIR%%/html/qtdesigner.html %%DOCSDIR%%/html/qtemporaryfile.html %%DOCSDIR%%/html/qtest.html %%DOCSDIR%%/html/qtextblock-iterator.html %%DOCSDIR%%/html/qtextblock.html %%DOCSDIR%%/html/qtextblockformat.html %%DOCSDIR%%/html/qtextblockgroup.html %%DOCSDIR%%/html/qtextblockuserdata.html %%DOCSDIR%%/html/qtextboundaryfinder-boundaryreasons.html %%DOCSDIR%%/html/qtextboundaryfinder.html %%DOCSDIR%%/html/qtextbrowser.html %%DOCSDIR%%/html/qtextcharformat.html %%DOCSDIR%%/html/qtextcodec-conversionflags.html %%DOCSDIR%%/html/qtextcodec-converterstate.html %%DOCSDIR%%/html/qtextcodec.html %%DOCSDIR%%/html/qtextcursor.html %%DOCSDIR%%/html/qtextdecoder.html %%DOCSDIR%%/html/qtextdocument-findflags.html %%DOCSDIR%%/html/qtextdocument.html %%DOCSDIR%%/html/qtextdocumentfragment.html %%DOCSDIR%%/html/qtextdocumentwriter.html %%DOCSDIR%%/html/qtextedit-autoformatting.html %%DOCSDIR%%/html/qtextedit-extraselection.html %%DOCSDIR%%/html/qtextedit.html %%DOCSDIR%%/html/qtextencoder.html %%DOCSDIR%%/html/qtextformat-pagebreakflags.html %%DOCSDIR%%/html/qtextformat.html %%DOCSDIR%%/html/qtextfragment.html %%DOCSDIR%%/html/qtextframe-iterator.html %%DOCSDIR%%/html/qtextframe.html %%DOCSDIR%%/html/qtextframeformat.html %%DOCSDIR%%/html/qtextimageformat.html %%DOCSDIR%%/html/qtextinlineobject.html %%DOCSDIR%%/html/qtextitem-renderflags.html %%DOCSDIR%%/html/qtextitem.html %%DOCSDIR%%/html/qtextlayout-formatrange.html %%DOCSDIR%%/html/qtextlayout.html %%DOCSDIR%%/html/qtextlength.html %%DOCSDIR%%/html/qtextline.html %%DOCSDIR%%/html/qtextlist.html %%DOCSDIR%%/html/qtextlistformat.html %%DOCSDIR%%/html/qtextobject.html %%DOCSDIR%%/html/qtextobjectinterface.html %%DOCSDIR%%/html/qtextoption-flags.html %%DOCSDIR%%/html/qtextoption-tab.html %%DOCSDIR%%/html/qtextoption.html %%DOCSDIR%%/html/qtextstream-numberflags.html %%DOCSDIR%%/html/qtextstream.html %%DOCSDIR%%/html/qtexttable.html %%DOCSDIR%%/html/qtexttablecell.html %%DOCSDIR%%/html/qtexttablecellformat.html %%DOCSDIR%%/html/qtexttableformat.html %%DOCSDIR%%/html/qtgui.html %%DOCSDIR%%/html/qthelp.html %%DOCSDIR%%/html/qthread.html %%DOCSDIR%%/html/qthreadpool.html %%DOCSDIR%%/html/qtime.html %%DOCSDIR%%/html/qtimeedit.html %%DOCSDIR%%/html/qtimeline.html %%DOCSDIR%%/html/qtimer.html %%DOCSDIR%%/html/qtimerevent.html %%DOCSDIR%%/html/qtmultimedia.html %%DOCSDIR%%/html/qtnetwork.html %%DOCSDIR%%/html/qtoolbar.html %%DOCSDIR%%/html/qtoolbox.html %%DOCSDIR%%/html/qtoolbutton.html %%DOCSDIR%%/html/qtooltip.html %%DOCSDIR%%/html/qtopengl.html %%DOCSDIR%%/html/qtouchevent-touchpoint.html %%DOCSDIR%%/html/qtouchevent.html %%DOCSDIR%%/html/qtransform.html %%DOCSDIR%%/html/qtranslator.html %%DOCSDIR%%/html/qtreeview.html %%DOCSDIR%%/html/qtreewidget.html %%DOCSDIR%%/html/qtreewidgetitem.html %%DOCSDIR%%/html/qtreewidgetitemiterator-iteratorflags.html %%DOCSDIR%%/html/qtreewidgetitemiterator.html %%DOCSDIR%%/html/qtscript.html %%DOCSDIR%%/html/qtscripttools.html %%DOCSDIR%%/html/qtsql.html %%DOCSDIR%%/html/qtsvg.html %%DOCSDIR%%/html/qttest.html %%DOCSDIR%%/html/qtwebkit.html %%DOCSDIR%%/html/qtxml.html %%DOCSDIR%%/html/qtxmlpatterns.html %%DOCSDIR%%/html/qudpsocket-bindmode.html %%DOCSDIR%%/html/qudpsocket.html %%DOCSDIR%%/html/qundocommand.html %%DOCSDIR%%/html/qundogroup.html %%DOCSDIR%%/html/qundostack.html %%DOCSDIR%%/html/qundoview.html %%DOCSDIR%%/html/qurl-formattingoptions.html %%DOCSDIR%%/html/qurl.html %%DOCSDIR%%/html/qurlinfo.html %%DOCSDIR%%/html/quuid.html %%DOCSDIR%%/html/qvalidator.html %%DOCSDIR%%/html/qvariant.html %%DOCSDIR%%/html/qvariantanimation.html %%DOCSDIR%%/html/qvboxlayout.html %%DOCSDIR%%/html/qvector2d.html %%DOCSDIR%%/html/qvector3d.html %%DOCSDIR%%/html/qvector4d.html %%DOCSDIR%%/html/qvideoframe.html %%DOCSDIR%%/html/qvideosurfaceformat.html %%DOCSDIR%%/html/qwaitcondition.html %%DOCSDIR%%/html/qwebdatabase.html %%DOCSDIR%%/html/qwebelement.html %%DOCSDIR%%/html/qwebelementcollection.html %%DOCSDIR%%/html/qwebframe.html %%DOCSDIR%%/html/qwebhistory.html %%DOCSDIR%%/html/qwebhistoryinterface.html %%DOCSDIR%%/html/qwebhistoryitem.html %%DOCSDIR%%/html/qwebhittestresult.html %%DOCSDIR%%/html/qwebinspector.html %%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionoption.html %%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionreturn.html %%DOCSDIR%%/html/qwebpage-errorpageextensionoption.html %%DOCSDIR%%/html/qwebpage-errorpageextensionreturn.html %%DOCSDIR%%/html/qwebpage-extensionoption.html %%DOCSDIR%%/html/qwebpage-extensionreturn.html %%DOCSDIR%%/html/qwebpage-findflags.html %%DOCSDIR%%/html/qwebpage-viewportattributes.html %%DOCSDIR%%/html/qwebpage.html %%DOCSDIR%%/html/qwebpluginfactory-extensionoption.html %%DOCSDIR%%/html/qwebpluginfactory-extensionreturn.html %%DOCSDIR%%/html/qwebpluginfactory-mimetype.html %%DOCSDIR%%/html/qwebpluginfactory-plugin.html %%DOCSDIR%%/html/qwebpluginfactory.html %%DOCSDIR%%/html/qwebsecurityorigin.html %%DOCSDIR%%/html/qwebsettings.html %%DOCSDIR%%/html/qwebview.html %%DOCSDIR%%/html/qwhatsthis.html %%DOCSDIR%%/html/qwhatsthisclickedevent.html %%DOCSDIR%%/html/qwheelevent.html %%DOCSDIR%%/html/qwidget-renderflags.html %%DOCSDIR%%/html/qwidget.html %%DOCSDIR%%/html/qwidgetaction.html %%DOCSDIR%%/html/qwidgetitem.html %%DOCSDIR%%/html/qwindowstatechangeevent.html %%DOCSDIR%%/html/qwizard-wizardoptions.html %%DOCSDIR%%/html/qwizard.html %%DOCSDIR%%/html/qwizardpage.html %%DOCSDIR%%/html/qworkspace.html %%DOCSDIR%%/html/qwritelocker.html %%DOCSDIR%%/html/qx11embedcontainer.html %%DOCSDIR%%/html/qx11embedwidget.html %%DOCSDIR%%/html/qx11info.html %%DOCSDIR%%/html/qxmlattributes.html %%DOCSDIR%%/html/qxmlcontenthandler.html %%DOCSDIR%%/html/qxmldeclhandler.html %%DOCSDIR%%/html/qxmldefaulthandler.html %%DOCSDIR%%/html/qxmldtdhandler.html %%DOCSDIR%%/html/qxmlentityresolver.html %%DOCSDIR%%/html/qxmlerrorhandler.html %%DOCSDIR%%/html/qxmlformatter.html %%DOCSDIR%%/html/qxmlinputsource.html %%DOCSDIR%%/html/qxmlitem.html %%DOCSDIR%%/html/qxmllexicalhandler.html %%DOCSDIR%%/html/qxmllocator.html %%DOCSDIR%%/html/qxmlname.html %%DOCSDIR%%/html/qxmlnamepool.html %%DOCSDIR%%/html/qxmlnamespacesupport.html %%DOCSDIR%%/html/qxmlnodemodelindex.html %%DOCSDIR%%/html/qxmlparseexception.html %%DOCSDIR%%/html/qxmlquery.html %%DOCSDIR%%/html/qxmlreader.html %%DOCSDIR%%/html/qxmlresultitems.html %%DOCSDIR%%/html/qxmlschema.html %%DOCSDIR%%/html/qxmlschemavalidator.html %%DOCSDIR%%/html/qxmlserializer.html %%DOCSDIR%%/html/qxmlsimplereader.html %%DOCSDIR%%/html/qxmlstreamattribute.html %%DOCSDIR%%/html/qxmlstreamattributes.html %%DOCSDIR%%/html/qxmlstreamentitydeclaration.html %%DOCSDIR%%/html/qxmlstreamentityresolver.html %%DOCSDIR%%/html/qxmlstreamnamespacedeclaration.html %%DOCSDIR%%/html/qxmlstreamnotationdeclaration.html %%DOCSDIR%%/html/qxmlstreamreader.html %%DOCSDIR%%/html/qxmlstreamwriter.html %%DOCSDIR%%/html/resources.html %%DOCSDIR%%/html/search.html %%DOCSDIR%%/html/searchindex.js %%DOCSDIR%%/html/threads.html %%DOCSDIR%%/html/webkit.html Index: head/misc/py-qt5-demo/Makefile =================================================================== --- head/misc/py-qt5-demo/Makefile (revision 439793) +++ head/misc/py-qt5-demo/Makefile (revision 439794) @@ -1,38 +1,36 @@ # $FreeBSD$ PORTNAME= demo PORTVERSION= ${PYQT5_VERSION} CATEGORIES= misc devel python MASTER_SITES= ${MASTER_SITES_PYQT5} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- DISTNAME= ${PYQT_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, Qt demo and examples DISTINFO_FILE= ${PYQT_DISTINFO_FILE} - NO_BUILD= yes -USES= python pyqt:5 -USE_PYQT= # -EXAMPLESDIR= ${PREFIX}/share/examples/py-qt5 - +USES= python pyqt:5 USE_PYQT= core_run dbus_run designer_run \ designerplugin_run doc_run gui_run multimedia_run \ multimediawidgets_run network_run opengl_run qscintilla2_run \ sql_run svg_run test_run webkit_run xml_run \ xmlpatterns_run sip_run qscintilla2_run \ printsupport_run serialport_run webkitwidgets_run widgets_run + +EXAMPLESDIR= ${PREFIX}/share/examples/py-qt5 do-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR} ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ ${STAGEDIR}${EXAMPLESDIR} ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ ${STAGEDIR}${EXAMPLESDIR} .include Index: head/misc/py-qt5-doc/pkg-plist =================================================================== --- head/misc/py-qt5-doc/pkg-plist (revision 439793) +++ head/misc/py-qt5-doc/pkg-plist (revision 439794) @@ -1,2026 +1,2050 @@ %%DOCSDIR%%/LICENSE %%DOCSDIR%%/NEWS %%DOCSDIR%%/README -%%DOCSDIR%%/html/_sources/api/enginio.txt -%%DOCSDIR%%/html/_sources/api/enginioclient.txt -%%DOCSDIR%%/html/_sources/api/enginioclientconnection.txt -%%DOCSDIR%%/html/_sources/api/enginioidentity.txt -%%DOCSDIR%%/html/_sources/api/enginiomodel.txt -%%DOCSDIR%%/html/_sources/api/enginiooauth2authentication.txt -%%DOCSDIR%%/html/_sources/api/enginioreply.txt -%%DOCSDIR%%/html/_sources/api/qabstractanimation.txt -%%DOCSDIR%%/html/_sources/api/qabstractbutton.txt -%%DOCSDIR%%/html/_sources/api/qabstracteventdispatcher.txt -%%DOCSDIR%%/html/_sources/api/qabstractextensionfactory.txt -%%DOCSDIR%%/html/_sources/api/qabstractextensionmanager.txt -%%DOCSDIR%%/html/_sources/api/qabstractformbuilder.txt -%%DOCSDIR%%/html/_sources/api/qabstractgraphicsshapeitem.txt -%%DOCSDIR%%/html/_sources/api/qabstractitemdelegate.txt -%%DOCSDIR%%/html/_sources/api/qabstractitemmodel.txt -%%DOCSDIR%%/html/_sources/api/qabstractitemview.txt -%%DOCSDIR%%/html/_sources/api/qabstractlistmodel.txt -%%DOCSDIR%%/html/_sources/api/qabstractmessagehandler.txt -%%DOCSDIR%%/html/_sources/api/qabstractnativeeventfilter.txt -%%DOCSDIR%%/html/_sources/api/qabstractnetworkcache.txt -%%DOCSDIR%%/html/_sources/api/qabstractprintdialog.txt -%%DOCSDIR%%/html/_sources/api/qabstractproxymodel.txt -%%DOCSDIR%%/html/_sources/api/qabstractscrollarea.txt -%%DOCSDIR%%/html/_sources/api/qabstractslider.txt -%%DOCSDIR%%/html/_sources/api/qabstractsocket.txt -%%DOCSDIR%%/html/_sources/api/qabstractspinbox.txt -%%DOCSDIR%%/html/_sources/api/qabstractstate.txt -%%DOCSDIR%%/html/_sources/api/qabstracttablemodel.txt -%%DOCSDIR%%/html/_sources/api/qabstracttextdocumentlayout.txt -%%DOCSDIR%%/html/_sources/api/qabstracttransition.txt -%%DOCSDIR%%/html/_sources/api/qabstracturiresolver.txt -%%DOCSDIR%%/html/_sources/api/qabstractvideobuffer.txt -%%DOCSDIR%%/html/_sources/api/qabstractvideosurface.txt -%%DOCSDIR%%/html/_sources/api/qabstractxmlnodemodel.txt -%%DOCSDIR%%/html/_sources/api/qabstractxmlreceiver.txt -%%DOCSDIR%%/html/_sources/api/qaccelerometer.txt -%%DOCSDIR%%/html/_sources/api/qaccelerometerfilter.txt -%%DOCSDIR%%/html/_sources/api/qaccelerometerreading.txt -%%DOCSDIR%%/html/_sources/api/qaction.txt -%%DOCSDIR%%/html/_sources/api/qactionevent.txt -%%DOCSDIR%%/html/_sources/api/qactiongroup.txt -%%DOCSDIR%%/html/_sources/api/qaltimeter.txt -%%DOCSDIR%%/html/_sources/api/qaltimeterfilter.txt -%%DOCSDIR%%/html/_sources/api/qaltimeterreading.txt -%%DOCSDIR%%/html/_sources/api/qambientlightfilter.txt -%%DOCSDIR%%/html/_sources/api/qambientlightreading.txt -%%DOCSDIR%%/html/_sources/api/qambientlightsensor.txt -%%DOCSDIR%%/html/_sources/api/qambienttemperaturefilter.txt -%%DOCSDIR%%/html/_sources/api/qambienttemperaturereading.txt -%%DOCSDIR%%/html/_sources/api/qambienttemperaturesensor.txt -%%DOCSDIR%%/html/_sources/api/qanimationgroup.txt -%%DOCSDIR%%/html/_sources/api/qapplication.txt -%%DOCSDIR%%/html/_sources/api/qaudio.txt -%%DOCSDIR%%/html/_sources/api/qaudiobuffer.txt -%%DOCSDIR%%/html/_sources/api/qaudiodecoder.txt -%%DOCSDIR%%/html/_sources/api/qaudiodeviceinfo.txt -%%DOCSDIR%%/html/_sources/api/qaudioencodersettings.txt -%%DOCSDIR%%/html/_sources/api/qaudioformat.txt -%%DOCSDIR%%/html/_sources/api/qaudioinput.txt -%%DOCSDIR%%/html/_sources/api/qaudiooutput.txt -%%DOCSDIR%%/html/_sources/api/qaudioprobe.txt -%%DOCSDIR%%/html/_sources/api/qaudiorecorder.txt -%%DOCSDIR%%/html/_sources/api/qauthenticator.txt -%%DOCSDIR%%/html/_sources/api/qaxbase.txt -%%DOCSDIR%%/html/_sources/api/qaxobject.txt -%%DOCSDIR%%/html/_sources/api/qaxwidget.txt -%%DOCSDIR%%/html/_sources/api/qbackingstore.txt -%%DOCSDIR%%/html/_sources/api/qbasictimer.txt -%%DOCSDIR%%/html/_sources/api/qbitarray.txt -%%DOCSDIR%%/html/_sources/api/qbitmap.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothaddress.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothdevicediscoveryagent.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothdeviceinfo.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothhostinfo.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothlocaldevice.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothserver.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothservicediscoveryagent.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothserviceinfo.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothsocket.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothtransfermanager.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothtransferreply.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothtransferrequest.txt -%%DOCSDIR%%/html/_sources/api/qbluetoothuuid.txt -%%DOCSDIR%%/html/_sources/api/qboxlayout.txt -%%DOCSDIR%%/html/_sources/api/qbrush.txt -%%DOCSDIR%%/html/_sources/api/qbuffer.txt -%%DOCSDIR%%/html/_sources/api/qbuttongroup.txt -%%DOCSDIR%%/html/_sources/api/qbytearray.txt -%%DOCSDIR%%/html/_sources/api/qbytearraymatcher.txt -%%DOCSDIR%%/html/_sources/api/qcalendarwidget.txt -%%DOCSDIR%%/html/_sources/api/qcamera.txt -%%DOCSDIR%%/html/_sources/api/qcameraexposure.txt -%%DOCSDIR%%/html/_sources/api/qcamerafocus.txt -%%DOCSDIR%%/html/_sources/api/qcamerafocuszone.txt -%%DOCSDIR%%/html/_sources/api/qcameraimagecapture.txt -%%DOCSDIR%%/html/_sources/api/qcameraimageprocessing.txt -%%DOCSDIR%%/html/_sources/api/qcamerainfo.txt -%%DOCSDIR%%/html/_sources/api/qcameraviewfinder.txt -%%DOCSDIR%%/html/_sources/api/qcheckbox.txt -%%DOCSDIR%%/html/_sources/api/qchildevent.txt -%%DOCSDIR%%/html/_sources/api/qclipboard.txt -%%DOCSDIR%%/html/_sources/api/qcloseevent.txt -%%DOCSDIR%%/html/_sources/api/qcollator.txt -%%DOCSDIR%%/html/_sources/api/qcollatorsortkey.txt -%%DOCSDIR%%/html/_sources/api/qcolor.txt -%%DOCSDIR%%/html/_sources/api/qcolordialog.txt -%%DOCSDIR%%/html/_sources/api/qcolumnview.txt -%%DOCSDIR%%/html/_sources/api/qcombobox.txt -%%DOCSDIR%%/html/_sources/api/qcommandlineoption.txt -%%DOCSDIR%%/html/_sources/api/qcommandlineparser.txt -%%DOCSDIR%%/html/_sources/api/qcommandlinkbutton.txt -%%DOCSDIR%%/html/_sources/api/qcommonstyle.txt -%%DOCSDIR%%/html/_sources/api/qcompass.txt -%%DOCSDIR%%/html/_sources/api/qcompassfilter.txt -%%DOCSDIR%%/html/_sources/api/qcompassreading.txt -%%DOCSDIR%%/html/_sources/api/qcompleter.txt -%%DOCSDIR%%/html/_sources/api/qconicalgradient.txt -%%DOCSDIR%%/html/_sources/api/qcontextmenuevent.txt -%%DOCSDIR%%/html/_sources/api/qcoreapplication.txt -%%DOCSDIR%%/html/_sources/api/qcryptographichash.txt -%%DOCSDIR%%/html/_sources/api/qcursor.txt -%%DOCSDIR%%/html/_sources/api/qdatastream.txt -%%DOCSDIR%%/html/_sources/api/qdatawidgetmapper.txt -%%DOCSDIR%%/html/_sources/api/qdate.txt -%%DOCSDIR%%/html/_sources/api/qdateedit.txt -%%DOCSDIR%%/html/_sources/api/qdatetime.txt -%%DOCSDIR%%/html/_sources/api/qdatetimeedit.txt -%%DOCSDIR%%/html/_sources/api/qdbus.txt -%%DOCSDIR%%/html/_sources/api/qdbusabstractadaptor.txt -%%DOCSDIR%%/html/_sources/api/qdbusabstractinterface.txt -%%DOCSDIR%%/html/_sources/api/qdbusargument.txt -%%DOCSDIR%%/html/_sources/api/qdbusconnection.txt -%%DOCSDIR%%/html/_sources/api/qdbusconnectioninterface.txt -%%DOCSDIR%%/html/_sources/api/qdbuserror.txt -%%DOCSDIR%%/html/_sources/api/qdbusinterface.txt -%%DOCSDIR%%/html/_sources/api/qdbusmessage.txt -%%DOCSDIR%%/html/_sources/api/qdbusobjectpath.txt -%%DOCSDIR%%/html/_sources/api/qdbuspendingcall.txt -%%DOCSDIR%%/html/_sources/api/qdbuspendingcallwatcher.txt -%%DOCSDIR%%/html/_sources/api/qdbuspendingreply.txt -%%DOCSDIR%%/html/_sources/api/qdbusreply.txt -%%DOCSDIR%%/html/_sources/api/qdbusservicewatcher.txt -%%DOCSDIR%%/html/_sources/api/qdbussignature.txt -%%DOCSDIR%%/html/_sources/api/qdbusunixfiledescriptor.txt -%%DOCSDIR%%/html/_sources/api/qdbusvariant.txt -%%DOCSDIR%%/html/_sources/api/qdesigneractioneditorinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignercontainerextension.txt -%%DOCSDIR%%/html/_sources/api/qdesignercustomwidgetcollectioninterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignercustomwidgetinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignerformeditorinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignerformwindowcursorinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignerformwindowinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignerformwindowmanagerinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignermembersheetextension.txt -%%DOCSDIR%%/html/_sources/api/qdesignerobjectinspectorinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignerpropertyeditorinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesignerpropertysheetextension.txt -%%DOCSDIR%%/html/_sources/api/qdesignertaskmenuextension.txt -%%DOCSDIR%%/html/_sources/api/qdesignerwidgetboxinterface.txt -%%DOCSDIR%%/html/_sources/api/qdesktopservices.txt -%%DOCSDIR%%/html/_sources/api/qdesktopwidget.txt -%%DOCSDIR%%/html/_sources/api/qdial.txt -%%DOCSDIR%%/html/_sources/api/qdialog.txt -%%DOCSDIR%%/html/_sources/api/qdialogbuttonbox.txt -%%DOCSDIR%%/html/_sources/api/qdir.txt -%%DOCSDIR%%/html/_sources/api/qdiriterator.txt -%%DOCSDIR%%/html/_sources/api/qdirmodel.txt -%%DOCSDIR%%/html/_sources/api/qdistancefilter.txt -%%DOCSDIR%%/html/_sources/api/qdistancereading.txt -%%DOCSDIR%%/html/_sources/api/qdistancesensor.txt -%%DOCSDIR%%/html/_sources/api/qdnsdomainnamerecord.txt -%%DOCSDIR%%/html/_sources/api/qdnshostaddressrecord.txt -%%DOCSDIR%%/html/_sources/api/qdnslookup.txt -%%DOCSDIR%%/html/_sources/api/qdnsmailexchangerecord.txt -%%DOCSDIR%%/html/_sources/api/qdnsservicerecord.txt -%%DOCSDIR%%/html/_sources/api/qdnstextrecord.txt -%%DOCSDIR%%/html/_sources/api/qdockwidget.txt -%%DOCSDIR%%/html/_sources/api/qdomattr.txt -%%DOCSDIR%%/html/_sources/api/qdomcdatasection.txt -%%DOCSDIR%%/html/_sources/api/qdomcharacterdata.txt -%%DOCSDIR%%/html/_sources/api/qdomcomment.txt -%%DOCSDIR%%/html/_sources/api/qdomdocument.txt -%%DOCSDIR%%/html/_sources/api/qdomdocumentfragment.txt -%%DOCSDIR%%/html/_sources/api/qdomdocumenttype.txt -%%DOCSDIR%%/html/_sources/api/qdomelement.txt -%%DOCSDIR%%/html/_sources/api/qdomentity.txt -%%DOCSDIR%%/html/_sources/api/qdomentityreference.txt -%%DOCSDIR%%/html/_sources/api/qdomimplementation.txt -%%DOCSDIR%%/html/_sources/api/qdomnamednodemap.txt -%%DOCSDIR%%/html/_sources/api/qdomnode.txt -%%DOCSDIR%%/html/_sources/api/qdomnodelist.txt -%%DOCSDIR%%/html/_sources/api/qdomnotation.txt -%%DOCSDIR%%/html/_sources/api/qdomprocessinginstruction.txt -%%DOCSDIR%%/html/_sources/api/qdomtext.txt -%%DOCSDIR%%/html/_sources/api/qdoublespinbox.txt -%%DOCSDIR%%/html/_sources/api/qdoublevalidator.txt -%%DOCSDIR%%/html/_sources/api/qdrag.txt -%%DOCSDIR%%/html/_sources/api/qdragenterevent.txt -%%DOCSDIR%%/html/_sources/api/qdragleaveevent.txt -%%DOCSDIR%%/html/_sources/api/qdragmoveevent.txt -%%DOCSDIR%%/html/_sources/api/qdropevent.txt -%%DOCSDIR%%/html/_sources/api/qdynamicpropertychangeevent.txt -%%DOCSDIR%%/html/_sources/api/qeasingcurve.txt -%%DOCSDIR%%/html/_sources/api/qelapsedtimer.txt -%%DOCSDIR%%/html/_sources/api/qenterevent.txt -%%DOCSDIR%%/html/_sources/api/qerrormessage.txt -%%DOCSDIR%%/html/_sources/api/qevent.txt -%%DOCSDIR%%/html/_sources/api/qeventloop.txt -%%DOCSDIR%%/html/_sources/api/qeventlooplocker.txt -%%DOCSDIR%%/html/_sources/api/qeventtransition.txt -%%DOCSDIR%%/html/_sources/api/qexposeevent.txt -%%DOCSDIR%%/html/_sources/api/qextensionfactory.txt -%%DOCSDIR%%/html/_sources/api/qextensionmanager.txt -%%DOCSDIR%%/html/_sources/api/qfile.txt -%%DOCSDIR%%/html/_sources/api/qfiledevice.txt -%%DOCSDIR%%/html/_sources/api/qfiledialog.txt -%%DOCSDIR%%/html/_sources/api/qfileiconprovider.txt -%%DOCSDIR%%/html/_sources/api/qfileinfo.txt -%%DOCSDIR%%/html/_sources/api/qfileopenevent.txt -%%DOCSDIR%%/html/_sources/api/qfileselector.txt -%%DOCSDIR%%/html/_sources/api/qfilesystemmodel.txt -%%DOCSDIR%%/html/_sources/api/qfilesystemwatcher.txt -%%DOCSDIR%%/html/_sources/api/qfinalstate.txt -%%DOCSDIR%%/html/_sources/api/qfocusevent.txt -%%DOCSDIR%%/html/_sources/api/qfocusframe.txt -%%DOCSDIR%%/html/_sources/api/qfont.txt -%%DOCSDIR%%/html/_sources/api/qfontcombobox.txt -%%DOCSDIR%%/html/_sources/api/qfontdatabase.txt -%%DOCSDIR%%/html/_sources/api/qfontdialog.txt -%%DOCSDIR%%/html/_sources/api/qfontinfo.txt -%%DOCSDIR%%/html/_sources/api/qfontmetrics.txt -%%DOCSDIR%%/html/_sources/api/qfontmetricsf.txt -%%DOCSDIR%%/html/_sources/api/qformbuilder.txt -%%DOCSDIR%%/html/_sources/api/qformlayout.txt -%%DOCSDIR%%/html/_sources/api/qframe.txt -%%DOCSDIR%%/html/_sources/api/qgenericargument.txt -%%DOCSDIR%%/html/_sources/api/qgenericreturnargument.txt -%%DOCSDIR%%/html/_sources/api/qgeoaddress.txt -%%DOCSDIR%%/html/_sources/api/qgeoareamonitorinfo.txt -%%DOCSDIR%%/html/_sources/api/qgeoareamonitorsource.txt -%%DOCSDIR%%/html/_sources/api/qgeocircle.txt -%%DOCSDIR%%/html/_sources/api/qgeocodereply.txt -%%DOCSDIR%%/html/_sources/api/qgeocodingmanager.txt -%%DOCSDIR%%/html/_sources/api/qgeocodingmanagerengine.txt -%%DOCSDIR%%/html/_sources/api/qgeocoordinate.txt -%%DOCSDIR%%/html/_sources/api/qgeolocation.txt -%%DOCSDIR%%/html/_sources/api/qgeomaneuver.txt -%%DOCSDIR%%/html/_sources/api/qgeopositioninfo.txt -%%DOCSDIR%%/html/_sources/api/qgeopositioninfosource.txt -%%DOCSDIR%%/html/_sources/api/qgeorectangle.txt -%%DOCSDIR%%/html/_sources/api/qgeoroute.txt -%%DOCSDIR%%/html/_sources/api/qgeoroutereply.txt -%%DOCSDIR%%/html/_sources/api/qgeorouterequest.txt -%%DOCSDIR%%/html/_sources/api/qgeoroutesegment.txt -%%DOCSDIR%%/html/_sources/api/qgeoroutingmanager.txt -%%DOCSDIR%%/html/_sources/api/qgeoroutingmanagerengine.txt -%%DOCSDIR%%/html/_sources/api/qgeosatelliteinfo.txt -%%DOCSDIR%%/html/_sources/api/qgeosatelliteinfosource.txt -%%DOCSDIR%%/html/_sources/api/qgeoserviceprovider.txt -%%DOCSDIR%%/html/_sources/api/qgeoshape.txt -%%DOCSDIR%%/html/_sources/api/qgesture.txt -%%DOCSDIR%%/html/_sources/api/qgestureevent.txt -%%DOCSDIR%%/html/_sources/api/qgesturerecognizer.txt -%%DOCSDIR%%/html/_sources/api/qgl.txt -%%DOCSDIR%%/html/_sources/api/qglcontext.txt -%%DOCSDIR%%/html/_sources/api/qglformat.txt -%%DOCSDIR%%/html/_sources/api/qglwidget.txt -%%DOCSDIR%%/html/_sources/api/qglyphrun.txt -%%DOCSDIR%%/html/_sources/api/qgradient.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsanchor.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsanchorlayout.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsblureffect.txt -%%DOCSDIR%%/html/_sources/api/qgraphicscolorizeeffect.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsdropshadoweffect.txt -%%DOCSDIR%%/html/_sources/api/qgraphicseffect.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsellipseitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsgridlayout.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsitemgroup.txt -%%DOCSDIR%%/html/_sources/api/qgraphicslayout.txt -%%DOCSDIR%%/html/_sources/api/qgraphicslayoutitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicslinearlayout.txt -%%DOCSDIR%%/html/_sources/api/qgraphicslineitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsobject.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsopacityeffect.txt -%%DOCSDIR%%/html/_sources/api/qgraphicspathitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicspixmapitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicspolygonitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsproxywidget.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsrectitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsrotation.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscale.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscene.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscenecontextmenuevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscenedragdropevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicssceneevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscenehelpevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscenehoverevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscenemouseevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscenemoveevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicssceneresizeevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsscenewheelevent.txt -%%DOCSDIR%%/html/_sources/api/qgraphicssimpletextitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicssvgitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicstextitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicstransform.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsvideoitem.txt -%%DOCSDIR%%/html/_sources/api/qgraphicsview.txt -%%DOCSDIR%%/html/_sources/api/qgraphicswebview.txt -%%DOCSDIR%%/html/_sources/api/qgraphicswidget.txt -%%DOCSDIR%%/html/_sources/api/qgridlayout.txt -%%DOCSDIR%%/html/_sources/api/qgroupbox.txt -%%DOCSDIR%%/html/_sources/api/qguiapplication.txt -%%DOCSDIR%%/html/_sources/api/qgyroscope.txt -%%DOCSDIR%%/html/_sources/api/qgyroscopefilter.txt -%%DOCSDIR%%/html/_sources/api/qgyroscopereading.txt -%%DOCSDIR%%/html/_sources/api/qhboxlayout.txt -%%DOCSDIR%%/html/_sources/api/qheaderview.txt -%%DOCSDIR%%/html/_sources/api/qhelpcontentitem.txt -%%DOCSDIR%%/html/_sources/api/qhelpcontentmodel.txt -%%DOCSDIR%%/html/_sources/api/qhelpcontentwidget.txt -%%DOCSDIR%%/html/_sources/api/qhelpengine.txt -%%DOCSDIR%%/html/_sources/api/qhelpenginecore.txt -%%DOCSDIR%%/html/_sources/api/qhelpevent.txt -%%DOCSDIR%%/html/_sources/api/qhelpindexmodel.txt -%%DOCSDIR%%/html/_sources/api/qhelpindexwidget.txt -%%DOCSDIR%%/html/_sources/api/qhelpsearchengine.txt -%%DOCSDIR%%/html/_sources/api/qhelpsearchquery.txt -%%DOCSDIR%%/html/_sources/api/qhelpsearchquerywidget.txt -%%DOCSDIR%%/html/_sources/api/qhelpsearchresultwidget.txt -%%DOCSDIR%%/html/_sources/api/qhideevent.txt -%%DOCSDIR%%/html/_sources/api/qhistorystate.txt -%%DOCSDIR%%/html/_sources/api/qholsterfilter.txt -%%DOCSDIR%%/html/_sources/api/qholsterreading.txt -%%DOCSDIR%%/html/_sources/api/qholstersensor.txt -%%DOCSDIR%%/html/_sources/api/qhostaddress.txt -%%DOCSDIR%%/html/_sources/api/qhostinfo.txt -%%DOCSDIR%%/html/_sources/api/qhoverevent.txt -%%DOCSDIR%%/html/_sources/api/qhttpmultipart.txt -%%DOCSDIR%%/html/_sources/api/qhttppart.txt -%%DOCSDIR%%/html/_sources/api/qicon.txt -%%DOCSDIR%%/html/_sources/api/qicondragevent.txt -%%DOCSDIR%%/html/_sources/api/qiconengine.txt -%%DOCSDIR%%/html/_sources/api/qidentityproxymodel.txt -%%DOCSDIR%%/html/_sources/api/qimage.txt -%%DOCSDIR%%/html/_sources/api/qimageencodersettings.txt -%%DOCSDIR%%/html/_sources/api/qimageiohandler.txt -%%DOCSDIR%%/html/_sources/api/qimagereader.txt -%%DOCSDIR%%/html/_sources/api/qimagewriter.txt -%%DOCSDIR%%/html/_sources/api/qinputdialog.txt -%%DOCSDIR%%/html/_sources/api/qinputevent.txt -%%DOCSDIR%%/html/_sources/api/qinputmethod.txt -%%DOCSDIR%%/html/_sources/api/qinputmethodevent.txt -%%DOCSDIR%%/html/_sources/api/qinputmethodqueryevent.txt -%%DOCSDIR%%/html/_sources/api/qintvalidator.txt -%%DOCSDIR%%/html/_sources/api/qiodevice.txt -%%DOCSDIR%%/html/_sources/api/qirproximityfilter.txt -%%DOCSDIR%%/html/_sources/api/qirproximityreading.txt -%%DOCSDIR%%/html/_sources/api/qirproximitysensor.txt -%%DOCSDIR%%/html/_sources/api/qitemdelegate.txt -%%DOCSDIR%%/html/_sources/api/qitemeditorcreatorbase.txt -%%DOCSDIR%%/html/_sources/api/qitemeditorfactory.txt -%%DOCSDIR%%/html/_sources/api/qitemselection.txt -%%DOCSDIR%%/html/_sources/api/qitemselectionmodel.txt -%%DOCSDIR%%/html/_sources/api/qitemselectionrange.txt -%%DOCSDIR%%/html/_sources/api/qjsengine.txt -%%DOCSDIR%%/html/_sources/api/qjsonarray.txt -%%DOCSDIR%%/html/_sources/api/qjsondocument.txt -%%DOCSDIR%%/html/_sources/api/qjsonobject.txt -%%DOCSDIR%%/html/_sources/api/qjsonparseerror.txt -%%DOCSDIR%%/html/_sources/api/qjsonvalue.txt -%%DOCSDIR%%/html/_sources/api/qjsvalue.txt -%%DOCSDIR%%/html/_sources/api/qjsvalueiterator.txt -%%DOCSDIR%%/html/_sources/api/qkeyevent.txt -%%DOCSDIR%%/html/_sources/api/qkeyeventtransition.txt -%%DOCSDIR%%/html/_sources/api/qkeysequence.txt -%%DOCSDIR%%/html/_sources/api/qkeysequenceedit.txt -%%DOCSDIR%%/html/_sources/api/qlabel.txt -%%DOCSDIR%%/html/_sources/api/qlayout.txt -%%DOCSDIR%%/html/_sources/api/qlayoutitem.txt -%%DOCSDIR%%/html/_sources/api/qlcdnumber.txt -%%DOCSDIR%%/html/_sources/api/qlibrary.txt -%%DOCSDIR%%/html/_sources/api/qlibraryinfo.txt -%%DOCSDIR%%/html/_sources/api/qlightfilter.txt -%%DOCSDIR%%/html/_sources/api/qlightreading.txt -%%DOCSDIR%%/html/_sources/api/qlightsensor.txt -%%DOCSDIR%%/html/_sources/api/qline.txt -%%DOCSDIR%%/html/_sources/api/qlineargradient.txt -%%DOCSDIR%%/html/_sources/api/qlineedit.txt -%%DOCSDIR%%/html/_sources/api/qlinef.txt -%%DOCSDIR%%/html/_sources/api/qlistview.txt -%%DOCSDIR%%/html/_sources/api/qlistwidget.txt -%%DOCSDIR%%/html/_sources/api/qlistwidgetitem.txt -%%DOCSDIR%%/html/_sources/api/qlocale.txt -%%DOCSDIR%%/html/_sources/api/qlocalserver.txt -%%DOCSDIR%%/html/_sources/api/qlocalsocket.txt -%%DOCSDIR%%/html/_sources/api/qlocation.txt -%%DOCSDIR%%/html/_sources/api/qlockfile.txt -%%DOCSDIR%%/html/_sources/api/qlowenergycharacteristic.txt -%%DOCSDIR%%/html/_sources/api/qlowenergycontroller.txt -%%DOCSDIR%%/html/_sources/api/qlowenergydescriptor.txt -%%DOCSDIR%%/html/_sources/api/qlowenergyservice.txt -%%DOCSDIR%%/html/_sources/api/qmaccocoaviewcontainer.txt -%%DOCSDIR%%/html/_sources/api/qmacpasteboardmime.txt -%%DOCSDIR%%/html/_sources/api/qmactoolbar.txt -%%DOCSDIR%%/html/_sources/api/qmactoolbaritem.txt -%%DOCSDIR%%/html/_sources/api/qmagnetometer.txt -%%DOCSDIR%%/html/_sources/api/qmagnetometerfilter.txt -%%DOCSDIR%%/html/_sources/api/qmagnetometerreading.txt -%%DOCSDIR%%/html/_sources/api/qmainwindow.txt -%%DOCSDIR%%/html/_sources/api/qmargins.txt -%%DOCSDIR%%/html/_sources/api/qmarginsf.txt -%%DOCSDIR%%/html/_sources/api/qmaskgenerator.txt -%%DOCSDIR%%/html/_sources/api/qmatrix2x2.txt -%%DOCSDIR%%/html/_sources/api/qmatrix2x3.txt -%%DOCSDIR%%/html/_sources/api/qmatrix2x4.txt -%%DOCSDIR%%/html/_sources/api/qmatrix3x2.txt -%%DOCSDIR%%/html/_sources/api/qmatrix3x3.txt -%%DOCSDIR%%/html/_sources/api/qmatrix3x4.txt -%%DOCSDIR%%/html/_sources/api/qmatrix4x2.txt -%%DOCSDIR%%/html/_sources/api/qmatrix4x3.txt -%%DOCSDIR%%/html/_sources/api/qmatrix4x4.txt -%%DOCSDIR%%/html/_sources/api/qmdiarea.txt -%%DOCSDIR%%/html/_sources/api/qmdisubwindow.txt -%%DOCSDIR%%/html/_sources/api/qmediabindableinterface.txt -%%DOCSDIR%%/html/_sources/api/qmediacontent.txt -%%DOCSDIR%%/html/_sources/api/qmediacontrol.txt -%%DOCSDIR%%/html/_sources/api/qmediametadata.txt -%%DOCSDIR%%/html/_sources/api/qmediaobject.txt -%%DOCSDIR%%/html/_sources/api/qmediaplayer.txt -%%DOCSDIR%%/html/_sources/api/qmediaplaylist.txt -%%DOCSDIR%%/html/_sources/api/qmediarecorder.txt -%%DOCSDIR%%/html/_sources/api/qmediaresource.txt -%%DOCSDIR%%/html/_sources/api/qmediaservice.txt -%%DOCSDIR%%/html/_sources/api/qmediatimeinterval.txt -%%DOCSDIR%%/html/_sources/api/qmediatimerange.txt -%%DOCSDIR%%/html/_sources/api/qmenu.txt -%%DOCSDIR%%/html/_sources/api/qmenubar.txt -%%DOCSDIR%%/html/_sources/api/qmessageauthenticationcode.txt -%%DOCSDIR%%/html/_sources/api/qmessagebox.txt -%%DOCSDIR%%/html/_sources/api/qmessagelogcontext.txt -%%DOCSDIR%%/html/_sources/api/qmessagelogger.txt -%%DOCSDIR%%/html/_sources/api/qmetaclassinfo.txt -%%DOCSDIR%%/html/_sources/api/qmetaenum.txt -%%DOCSDIR%%/html/_sources/api/qmetamethod.txt -%%DOCSDIR%%/html/_sources/api/qmetaobject.txt -%%DOCSDIR%%/html/_sources/api/qmetaproperty.txt -%%DOCSDIR%%/html/_sources/api/qmetatype.txt -%%DOCSDIR%%/html/_sources/api/qmimedata.txt -%%DOCSDIR%%/html/_sources/api/qmimedatabase.txt -%%DOCSDIR%%/html/_sources/api/qmimetype.txt -%%DOCSDIR%%/html/_sources/api/qmodelindex.txt -%%DOCSDIR%%/html/_sources/api/qmouseevent.txt -%%DOCSDIR%%/html/_sources/api/qmouseeventtransition.txt -%%DOCSDIR%%/html/_sources/api/qmoveevent.txt -%%DOCSDIR%%/html/_sources/api/qmovie.txt -%%DOCSDIR%%/html/_sources/api/qmultimedia.txt -%%DOCSDIR%%/html/_sources/api/qmutex.txt -%%DOCSDIR%%/html/_sources/api/qmutexlocker.txt -%%DOCSDIR%%/html/_sources/api/qndeffilter.txt -%%DOCSDIR%%/html/_sources/api/qndefmessage.txt -%%DOCSDIR%%/html/_sources/api/qndefnfciconrecord.txt -%%DOCSDIR%%/html/_sources/api/qndefnfcsmartposterrecord.txt -%%DOCSDIR%%/html/_sources/api/qndefnfctextrecord.txt -%%DOCSDIR%%/html/_sources/api/qndefnfcurirecord.txt -%%DOCSDIR%%/html/_sources/api/qndefrecord.txt -%%DOCSDIR%%/html/_sources/api/qnearfieldmanager.txt -%%DOCSDIR%%/html/_sources/api/qnearfieldsharemanager.txt -%%DOCSDIR%%/html/_sources/api/qnearfieldsharetarget.txt -%%DOCSDIR%%/html/_sources/api/qnearfieldtarget.txt -%%DOCSDIR%%/html/_sources/api/qnetworkaccessmanager.txt -%%DOCSDIR%%/html/_sources/api/qnetworkaddressentry.txt -%%DOCSDIR%%/html/_sources/api/qnetworkcachemetadata.txt -%%DOCSDIR%%/html/_sources/api/qnetworkconfiguration.txt -%%DOCSDIR%%/html/_sources/api/qnetworkconfigurationmanager.txt -%%DOCSDIR%%/html/_sources/api/qnetworkcookie.txt -%%DOCSDIR%%/html/_sources/api/qnetworkcookiejar.txt -%%DOCSDIR%%/html/_sources/api/qnetworkdiskcache.txt -%%DOCSDIR%%/html/_sources/api/qnetworkinterface.txt -%%DOCSDIR%%/html/_sources/api/qnetworkproxy.txt -%%DOCSDIR%%/html/_sources/api/qnetworkproxyfactory.txt -%%DOCSDIR%%/html/_sources/api/qnetworkproxyquery.txt -%%DOCSDIR%%/html/_sources/api/qnetworkreply.txt -%%DOCSDIR%%/html/_sources/api/qnetworkrequest.txt -%%DOCSDIR%%/html/_sources/api/qnetworksession.txt -%%DOCSDIR%%/html/_sources/api/qnmeapositioninfosource.txt -%%DOCSDIR%%/html/_sources/api/qobject.txt -%%DOCSDIR%%/html/_sources/api/qobjectcleanuphandler.txt -%%DOCSDIR%%/html/_sources/api/qoffscreensurface.txt -%%DOCSDIR%%/html/_sources/api/qopenglbuffer.txt -%%DOCSDIR%%/html/_sources/api/qopenglcontext.txt -%%DOCSDIR%%/html/_sources/api/qopenglcontextgroup.txt -%%DOCSDIR%%/html/_sources/api/qopengldebuglogger.txt -%%DOCSDIR%%/html/_sources/api/qopengldebugmessage.txt -%%DOCSDIR%%/html/_sources/api/qopenglframebufferobject.txt -%%DOCSDIR%%/html/_sources/api/qopenglframebufferobjectformat.txt -%%DOCSDIR%%/html/_sources/api/qopenglpaintdevice.txt -%%DOCSDIR%%/html/_sources/api/qopenglshader.txt -%%DOCSDIR%%/html/_sources/api/qopenglshaderprogram.txt -%%DOCSDIR%%/html/_sources/api/qopengltexture.txt -%%DOCSDIR%%/html/_sources/api/qopengltimemonitor.txt -%%DOCSDIR%%/html/_sources/api/qopengltimerquery.txt -%%DOCSDIR%%/html/_sources/api/qopenglvertexarrayobject.txt -%%DOCSDIR%%/html/_sources/api/qopenglwidget.txt -%%DOCSDIR%%/html/_sources/api/qopenglwindow.txt -%%DOCSDIR%%/html/_sources/api/qorientationfilter.txt -%%DOCSDIR%%/html/_sources/api/qorientationreading.txt -%%DOCSDIR%%/html/_sources/api/qorientationsensor.txt -%%DOCSDIR%%/html/_sources/api/qpagedpaintdevice.txt -%%DOCSDIR%%/html/_sources/api/qpagelayout.txt -%%DOCSDIR%%/html/_sources/api/qpagesetupdialog.txt -%%DOCSDIR%%/html/_sources/api/qpagesize.txt -%%DOCSDIR%%/html/_sources/api/qpaintdevice.txt -%%DOCSDIR%%/html/_sources/api/qpaintdevicewindow.txt -%%DOCSDIR%%/html/_sources/api/qpaintengine.txt -%%DOCSDIR%%/html/_sources/api/qpaintenginestate.txt -%%DOCSDIR%%/html/_sources/api/qpainter.txt -%%DOCSDIR%%/html/_sources/api/qpainterpath.txt -%%DOCSDIR%%/html/_sources/api/qpainterpathstroker.txt -%%DOCSDIR%%/html/_sources/api/qpaintevent.txt -%%DOCSDIR%%/html/_sources/api/qpalette.txt -%%DOCSDIR%%/html/_sources/api/qpangesture.txt -%%DOCSDIR%%/html/_sources/api/qparallelanimationgroup.txt -%%DOCSDIR%%/html/_sources/api/qpauseanimation.txt -%%DOCSDIR%%/html/_sources/api/qpdfwriter.txt -%%DOCSDIR%%/html/_sources/api/qpen.txt -%%DOCSDIR%%/html/_sources/api/qpersistentmodelindex.txt -%%DOCSDIR%%/html/_sources/api/qpicture.txt -%%DOCSDIR%%/html/_sources/api/qpictureio.txt -%%DOCSDIR%%/html/_sources/api/qpinchgesture.txt -%%DOCSDIR%%/html/_sources/api/qpixelformat.txt -%%DOCSDIR%%/html/_sources/api/qpixmap.txt -%%DOCSDIR%%/html/_sources/api/qpixmapcache.txt -%%DOCSDIR%%/html/_sources/api/qplace.txt -%%DOCSDIR%%/html/_sources/api/qplaceattribute.txt -%%DOCSDIR%%/html/_sources/api/qplacecategory.txt -%%DOCSDIR%%/html/_sources/api/qplacecontactdetail.txt -%%DOCSDIR%%/html/_sources/api/qplacecontent.txt -%%DOCSDIR%%/html/_sources/api/qplacecontentreply.txt -%%DOCSDIR%%/html/_sources/api/qplacecontentrequest.txt -%%DOCSDIR%%/html/_sources/api/qplacedetailsreply.txt -%%DOCSDIR%%/html/_sources/api/qplaceeditorial.txt -%%DOCSDIR%%/html/_sources/api/qplaceicon.txt -%%DOCSDIR%%/html/_sources/api/qplaceidreply.txt -%%DOCSDIR%%/html/_sources/api/qplaceimage.txt -%%DOCSDIR%%/html/_sources/api/qplacemanager.txt -%%DOCSDIR%%/html/_sources/api/qplacemanagerengine.txt -%%DOCSDIR%%/html/_sources/api/qplacematchreply.txt -%%DOCSDIR%%/html/_sources/api/qplacematchrequest.txt -%%DOCSDIR%%/html/_sources/api/qplaceproposedsearchresult.txt -%%DOCSDIR%%/html/_sources/api/qplaceratings.txt -%%DOCSDIR%%/html/_sources/api/qplacereply.txt -%%DOCSDIR%%/html/_sources/api/qplaceresult.txt -%%DOCSDIR%%/html/_sources/api/qplacereview.txt -%%DOCSDIR%%/html/_sources/api/qplacesearchreply.txt -%%DOCSDIR%%/html/_sources/api/qplacesearchrequest.txt -%%DOCSDIR%%/html/_sources/api/qplacesearchresult.txt -%%DOCSDIR%%/html/_sources/api/qplacesearchsuggestionreply.txt -%%DOCSDIR%%/html/_sources/api/qplacesupplier.txt -%%DOCSDIR%%/html/_sources/api/qplaceuser.txt -%%DOCSDIR%%/html/_sources/api/qplaintextdocumentlayout.txt -%%DOCSDIR%%/html/_sources/api/qplaintextedit.txt -%%DOCSDIR%%/html/_sources/api/qpluginloader.txt -%%DOCSDIR%%/html/_sources/api/qpoint.txt -%%DOCSDIR%%/html/_sources/api/qpointf.txt -%%DOCSDIR%%/html/_sources/api/qpolygon.txt -%%DOCSDIR%%/html/_sources/api/qpolygonf.txt -%%DOCSDIR%%/html/_sources/api/qpressurefilter.txt -%%DOCSDIR%%/html/_sources/api/qpressurereading.txt -%%DOCSDIR%%/html/_sources/api/qpressuresensor.txt -%%DOCSDIR%%/html/_sources/api/qprintdialog.txt -%%DOCSDIR%%/html/_sources/api/qprintengine.txt -%%DOCSDIR%%/html/_sources/api/qprinter.txt -%%DOCSDIR%%/html/_sources/api/qprinterinfo.txt -%%DOCSDIR%%/html/_sources/api/qprintpreviewdialog.txt -%%DOCSDIR%%/html/_sources/api/qprintpreviewwidget.txt -%%DOCSDIR%%/html/_sources/api/qprocess.txt -%%DOCSDIR%%/html/_sources/api/qprocessenvironment.txt -%%DOCSDIR%%/html/_sources/api/qprogressbar.txt -%%DOCSDIR%%/html/_sources/api/qprogressdialog.txt -%%DOCSDIR%%/html/_sources/api/qpropertyanimation.txt -%%DOCSDIR%%/html/_sources/api/qproximityfilter.txt -%%DOCSDIR%%/html/_sources/api/qproximityreading.txt -%%DOCSDIR%%/html/_sources/api/qproximitysensor.txt -%%DOCSDIR%%/html/_sources/api/qproxystyle.txt -%%DOCSDIR%%/html/_sources/api/qpushbutton.txt -%%DOCSDIR%%/html/_sources/api/qqmlabstracturlinterceptor.txt -%%DOCSDIR%%/html/_sources/api/qqmlapplicationengine.txt -%%DOCSDIR%%/html/_sources/api/qqmlcomponent.txt -%%DOCSDIR%%/html/_sources/api/qqmlcontext.txt -%%DOCSDIR%%/html/_sources/api/qqmlengine.txt -%%DOCSDIR%%/html/_sources/api/qqmlerror.txt -%%DOCSDIR%%/html/_sources/api/qqmlexpression.txt -%%DOCSDIR%%/html/_sources/api/qqmlextensionplugin.txt -%%DOCSDIR%%/html/_sources/api/qqmlfileselector.txt -%%DOCSDIR%%/html/_sources/api/qqmlimageproviderbase.txt -%%DOCSDIR%%/html/_sources/api/qqmlincubator.txt -%%DOCSDIR%%/html/_sources/api/qqmlincubatorcontrol.txt -%%DOCSDIR%%/html/_sources/api/qqmllistproperty.txt -%%DOCSDIR%%/html/_sources/api/qqmllistreference.txt -%%DOCSDIR%%/html/_sources/api/qqmlndefrecord.txt -%%DOCSDIR%%/html/_sources/api/qqmlnetworkaccessmanagerfactory.txt -%%DOCSDIR%%/html/_sources/api/qqmlparserstatus.txt -%%DOCSDIR%%/html/_sources/api/qqmlproperty.txt -%%DOCSDIR%%/html/_sources/api/qqmlpropertymap.txt -%%DOCSDIR%%/html/_sources/api/qqmlpropertyvaluesource.txt -%%DOCSDIR%%/html/_sources/api/qqmlscriptstring.txt -%%DOCSDIR%%/html/_sources/api/qquaternion.txt -%%DOCSDIR%%/html/_sources/api/qquickasyncimageprovider.txt -%%DOCSDIR%%/html/_sources/api/qquickframebufferobject.txt -%%DOCSDIR%%/html/_sources/api/qquickimageprovider.txt -%%DOCSDIR%%/html/_sources/api/qquickimageresponse.txt -%%DOCSDIR%%/html/_sources/api/qquickitem.txt -%%DOCSDIR%%/html/_sources/api/qquickitemgrabresult.txt -%%DOCSDIR%%/html/_sources/api/qquickpainteditem.txt -%%DOCSDIR%%/html/_sources/api/qquickrendercontrol.txt -%%DOCSDIR%%/html/_sources/api/qquicktextdocument.txt -%%DOCSDIR%%/html/_sources/api/qquicktexturefactory.txt -%%DOCSDIR%%/html/_sources/api/qquickview.txt -%%DOCSDIR%%/html/_sources/api/qquickwidget.txt -%%DOCSDIR%%/html/_sources/api/qquickwindow.txt -%%DOCSDIR%%/html/_sources/api/qradialgradient.txt -%%DOCSDIR%%/html/_sources/api/qradiobutton.txt -%%DOCSDIR%%/html/_sources/api/qradiodata.txt -%%DOCSDIR%%/html/_sources/api/qradiotuner.txt -%%DOCSDIR%%/html/_sources/api/qrasterwindow.txt -%%DOCSDIR%%/html/_sources/api/qrawfont.txt -%%DOCSDIR%%/html/_sources/api/qreadlocker.txt -%%DOCSDIR%%/html/_sources/api/qreadwritelock.txt -%%DOCSDIR%%/html/_sources/api/qrect.txt -%%DOCSDIR%%/html/_sources/api/qrectf.txt -%%DOCSDIR%%/html/_sources/api/qregexp.txt -%%DOCSDIR%%/html/_sources/api/qregexpvalidator.txt -%%DOCSDIR%%/html/_sources/api/qregion.txt -%%DOCSDIR%%/html/_sources/api/qregularexpression.txt -%%DOCSDIR%%/html/_sources/api/qregularexpressionmatch.txt -%%DOCSDIR%%/html/_sources/api/qregularexpressionmatchiterator.txt -%%DOCSDIR%%/html/_sources/api/qregularexpressionvalidator.txt -%%DOCSDIR%%/html/_sources/api/qresizeevent.txt -%%DOCSDIR%%/html/_sources/api/qresource.txt -%%DOCSDIR%%/html/_sources/api/qrgba64.txt -%%DOCSDIR%%/html/_sources/api/qrotationfilter.txt -%%DOCSDIR%%/html/_sources/api/qrotationreading.txt -%%DOCSDIR%%/html/_sources/api/qrotationsensor.txt -%%DOCSDIR%%/html/_sources/api/qrubberband.txt -%%DOCSDIR%%/html/_sources/api/qrunnable.txt -%%DOCSDIR%%/html/_sources/api/qsavefile.txt -%%DOCSDIR%%/html/_sources/api/qscreen.txt -%%DOCSDIR%%/html/_sources/api/qscrollarea.txt -%%DOCSDIR%%/html/_sources/api/qscrollbar.txt -%%DOCSDIR%%/html/_sources/api/qscroller.txt -%%DOCSDIR%%/html/_sources/api/qscrollerproperties.txt -%%DOCSDIR%%/html/_sources/api/qscrollevent.txt -%%DOCSDIR%%/html/_sources/api/qscrollprepareevent.txt -%%DOCSDIR%%/html/_sources/api/qsemaphore.txt -%%DOCSDIR%%/html/_sources/api/qsensor.txt -%%DOCSDIR%%/html/_sources/api/qsensorfilter.txt -%%DOCSDIR%%/html/_sources/api/qsensorreading.txt -%%DOCSDIR%%/html/_sources/api/qsequentialanimationgroup.txt -%%DOCSDIR%%/html/_sources/api/qserialport.txt -%%DOCSDIR%%/html/_sources/api/qserialportinfo.txt -%%DOCSDIR%%/html/_sources/api/qsessionmanager.txt -%%DOCSDIR%%/html/_sources/api/qsettings.txt -%%DOCSDIR%%/html/_sources/api/qsgabstractrenderer.txt -%%DOCSDIR%%/html/_sources/api/qsgbasicgeometrynode.txt -%%DOCSDIR%%/html/_sources/api/qsgclipnode.txt -%%DOCSDIR%%/html/_sources/api/qsgdynamictexture.txt -%%DOCSDIR%%/html/_sources/api/qsgengine.txt -%%DOCSDIR%%/html/_sources/api/qsgflatcolormaterial.txt -%%DOCSDIR%%/html/_sources/api/qsggeometry.txt -%%DOCSDIR%%/html/_sources/api/qsggeometrynode.txt -%%DOCSDIR%%/html/_sources/api/qsgmaterial.txt -%%DOCSDIR%%/html/_sources/api/qsgmaterialshader.txt -%%DOCSDIR%%/html/_sources/api/qsgmaterialtype.txt -%%DOCSDIR%%/html/_sources/api/qsgnode.txt -%%DOCSDIR%%/html/_sources/api/qsgopacitynode.txt -%%DOCSDIR%%/html/_sources/api/qsgopaquetexturematerial.txt -%%DOCSDIR%%/html/_sources/api/qsgsimplerectnode.txt -%%DOCSDIR%%/html/_sources/api/qsgsimpletexturenode.txt -%%DOCSDIR%%/html/_sources/api/qsgtexture.txt -%%DOCSDIR%%/html/_sources/api/qsgtexturematerial.txt -%%DOCSDIR%%/html/_sources/api/qsgtextureprovider.txt -%%DOCSDIR%%/html/_sources/api/qsgtransformnode.txt -%%DOCSDIR%%/html/_sources/api/qsgvertexcolormaterial.txt -%%DOCSDIR%%/html/_sources/api/qsharedmemory.txt -%%DOCSDIR%%/html/_sources/api/qshortcut.txt -%%DOCSDIR%%/html/_sources/api/qshortcutevent.txt -%%DOCSDIR%%/html/_sources/api/qshowevent.txt -%%DOCSDIR%%/html/_sources/api/qsignalblocker.txt -%%DOCSDIR%%/html/_sources/api/qsignalmapper.txt -%%DOCSDIR%%/html/_sources/api/qsignalspy.txt -%%DOCSDIR%%/html/_sources/api/qsignaltransition.txt -%%DOCSDIR%%/html/_sources/api/qsimplexmlnodemodel.txt -%%DOCSDIR%%/html/_sources/api/qsize.txt -%%DOCSDIR%%/html/_sources/api/qsizef.txt -%%DOCSDIR%%/html/_sources/api/qsizegrip.txt -%%DOCSDIR%%/html/_sources/api/qsizepolicy.txt -%%DOCSDIR%%/html/_sources/api/qslider.txt -%%DOCSDIR%%/html/_sources/api/qsocketnotifier.txt -%%DOCSDIR%%/html/_sources/api/qsortfilterproxymodel.txt -%%DOCSDIR%%/html/_sources/api/qsound.txt -%%DOCSDIR%%/html/_sources/api/qsoundeffect.txt -%%DOCSDIR%%/html/_sources/api/qsourcelocation.txt -%%DOCSDIR%%/html/_sources/api/qspaceritem.txt -%%DOCSDIR%%/html/_sources/api/qspinbox.txt -%%DOCSDIR%%/html/_sources/api/qsplashscreen.txt -%%DOCSDIR%%/html/_sources/api/qsplitter.txt -%%DOCSDIR%%/html/_sources/api/qsplitterhandle.txt -%%DOCSDIR%%/html/_sources/api/qsql.txt -%%DOCSDIR%%/html/_sources/api/qsqldatabase.txt -%%DOCSDIR%%/html/_sources/api/qsqldriver.txt -%%DOCSDIR%%/html/_sources/api/qsqldrivercreatorbase.txt -%%DOCSDIR%%/html/_sources/api/qsqlerror.txt -%%DOCSDIR%%/html/_sources/api/qsqlfield.txt -%%DOCSDIR%%/html/_sources/api/qsqlindex.txt -%%DOCSDIR%%/html/_sources/api/qsqlquery.txt -%%DOCSDIR%%/html/_sources/api/qsqlquerymodel.txt -%%DOCSDIR%%/html/_sources/api/qsqlrecord.txt -%%DOCSDIR%%/html/_sources/api/qsqlrelation.txt -%%DOCSDIR%%/html/_sources/api/qsqlrelationaldelegate.txt -%%DOCSDIR%%/html/_sources/api/qsqlrelationaltablemodel.txt -%%DOCSDIR%%/html/_sources/api/qsqlresult.txt -%%DOCSDIR%%/html/_sources/api/qsqltablemodel.txt -%%DOCSDIR%%/html/_sources/api/qssl.txt -%%DOCSDIR%%/html/_sources/api/qsslcertificate.txt -%%DOCSDIR%%/html/_sources/api/qsslcertificateextension.txt -%%DOCSDIR%%/html/_sources/api/qsslcipher.txt -%%DOCSDIR%%/html/_sources/api/qsslconfiguration.txt -%%DOCSDIR%%/html/_sources/api/qsslerror.txt -%%DOCSDIR%%/html/_sources/api/qsslkey.txt -%%DOCSDIR%%/html/_sources/api/qsslsocket.txt -%%DOCSDIR%%/html/_sources/api/qstackedlayout.txt -%%DOCSDIR%%/html/_sources/api/qstackedwidget.txt -%%DOCSDIR%%/html/_sources/api/qstandarditem.txt -%%DOCSDIR%%/html/_sources/api/qstandarditemmodel.txt -%%DOCSDIR%%/html/_sources/api/qstandardpaths.txt -%%DOCSDIR%%/html/_sources/api/qstate.txt -%%DOCSDIR%%/html/_sources/api/qstatemachine.txt -%%DOCSDIR%%/html/_sources/api/qstatictext.txt -%%DOCSDIR%%/html/_sources/api/qstatusbar.txt -%%DOCSDIR%%/html/_sources/api/qstatustipevent.txt -%%DOCSDIR%%/html/_sources/api/qstorageinfo.txt -%%DOCSDIR%%/html/_sources/api/qstringlistmodel.txt -%%DOCSDIR%%/html/_sources/api/qstyle.txt -%%DOCSDIR%%/html/_sources/api/qstyleditemdelegate.txt -%%DOCSDIR%%/html/_sources/api/qstylefactory.txt -%%DOCSDIR%%/html/_sources/api/qstylehintreturn.txt -%%DOCSDIR%%/html/_sources/api/qstylehintreturnmask.txt -%%DOCSDIR%%/html/_sources/api/qstylehintreturnvariant.txt -%%DOCSDIR%%/html/_sources/api/qstylehints.txt -%%DOCSDIR%%/html/_sources/api/qstyleoption.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionbutton.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptioncombobox.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptioncomplex.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiondockwidget.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionfocusrect.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionframe.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiongraphicsitem.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiongroupbox.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionheader.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionmenuitem.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionprogressbar.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionrubberband.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionsizegrip.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionslider.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionspinbox.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiontab.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiontabbarbase.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiontabwidgetframe.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiontitlebar.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbar.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbox.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbutton.txt -%%DOCSDIR%%/html/_sources/api/qstyleoptionviewitem.txt -%%DOCSDIR%%/html/_sources/api/qstylepainter.txt -%%DOCSDIR%%/html/_sources/api/qsurface.txt -%%DOCSDIR%%/html/_sources/api/qsurfaceformat.txt -%%DOCSDIR%%/html/_sources/api/qsvggenerator.txt -%%DOCSDIR%%/html/_sources/api/qsvgrenderer.txt -%%DOCSDIR%%/html/_sources/api/qsvgwidget.txt -%%DOCSDIR%%/html/_sources/api/qswipegesture.txt -%%DOCSDIR%%/html/_sources/api/qsyntaxhighlighter.txt -%%DOCSDIR%%/html/_sources/api/qsysinfo.txt -%%DOCSDIR%%/html/_sources/api/qsystemsemaphore.txt -%%DOCSDIR%%/html/_sources/api/qsystemtrayicon.txt -%%DOCSDIR%%/html/_sources/api/qt.txt -%%DOCSDIR%%/html/_sources/api/qtabbar.txt -%%DOCSDIR%%/html/_sources/api/qtabletevent.txt -%%DOCSDIR%%/html/_sources/api/qtableview.txt -%%DOCSDIR%%/html/_sources/api/qtablewidget.txt -%%DOCSDIR%%/html/_sources/api/qtablewidgetitem.txt -%%DOCSDIR%%/html/_sources/api/qtablewidgetselectionrange.txt -%%DOCSDIR%%/html/_sources/api/qtabwidget.txt -%%DOCSDIR%%/html/_sources/api/qtapandholdgesture.txt -%%DOCSDIR%%/html/_sources/api/qtapfilter.txt -%%DOCSDIR%%/html/_sources/api/qtapgesture.txt -%%DOCSDIR%%/html/_sources/api/qtapreading.txt -%%DOCSDIR%%/html/_sources/api/qtapsensor.txt -%%DOCSDIR%%/html/_sources/api/qtcpserver.txt -%%DOCSDIR%%/html/_sources/api/qtcpsocket.txt -%%DOCSDIR%%/html/_sources/api/qtemporarydir.txt -%%DOCSDIR%%/html/_sources/api/qtemporaryfile.txt -%%DOCSDIR%%/html/_sources/api/qtest.txt -%%DOCSDIR%%/html/_sources/api/qtextblock.txt -%%DOCSDIR%%/html/_sources/api/qtextblockformat.txt -%%DOCSDIR%%/html/_sources/api/qtextblockgroup.txt -%%DOCSDIR%%/html/_sources/api/qtextblockuserdata.txt -%%DOCSDIR%%/html/_sources/api/qtextboundaryfinder.txt -%%DOCSDIR%%/html/_sources/api/qtextbrowser.txt -%%DOCSDIR%%/html/_sources/api/qtextcharformat.txt -%%DOCSDIR%%/html/_sources/api/qtextcodec.txt -%%DOCSDIR%%/html/_sources/api/qtextcursor.txt -%%DOCSDIR%%/html/_sources/api/qtextdecoder.txt -%%DOCSDIR%%/html/_sources/api/qtextdocument.txt -%%DOCSDIR%%/html/_sources/api/qtextdocumentfragment.txt -%%DOCSDIR%%/html/_sources/api/qtextdocumentwriter.txt -%%DOCSDIR%%/html/_sources/api/qtextedit.txt -%%DOCSDIR%%/html/_sources/api/qtextencoder.txt -%%DOCSDIR%%/html/_sources/api/qtextformat.txt -%%DOCSDIR%%/html/_sources/api/qtextfragment.txt -%%DOCSDIR%%/html/_sources/api/qtextframe.txt -%%DOCSDIR%%/html/_sources/api/qtextframeformat.txt -%%DOCSDIR%%/html/_sources/api/qtextimageformat.txt -%%DOCSDIR%%/html/_sources/api/qtextinlineobject.txt -%%DOCSDIR%%/html/_sources/api/qtextitem.txt -%%DOCSDIR%%/html/_sources/api/qtextlayout.txt -%%DOCSDIR%%/html/_sources/api/qtextlength.txt -%%DOCSDIR%%/html/_sources/api/qtextline.txt -%%DOCSDIR%%/html/_sources/api/qtextlist.txt -%%DOCSDIR%%/html/_sources/api/qtextlistformat.txt -%%DOCSDIR%%/html/_sources/api/qtextobject.txt -%%DOCSDIR%%/html/_sources/api/qtextobjectinterface.txt -%%DOCSDIR%%/html/_sources/api/qtextoption.txt -%%DOCSDIR%%/html/_sources/api/qtextstream.txt -%%DOCSDIR%%/html/_sources/api/qtextstreammanipulator.txt -%%DOCSDIR%%/html/_sources/api/qtexttable.txt -%%DOCSDIR%%/html/_sources/api/qtexttablecell.txt -%%DOCSDIR%%/html/_sources/api/qtexttablecellformat.txt -%%DOCSDIR%%/html/_sources/api/qtexttableformat.txt -%%DOCSDIR%%/html/_sources/api/qthread.txt -%%DOCSDIR%%/html/_sources/api/qthreadpool.txt -%%DOCSDIR%%/html/_sources/api/qtiltfilter.txt -%%DOCSDIR%%/html/_sources/api/qtiltreading.txt -%%DOCSDIR%%/html/_sources/api/qtiltsensor.txt -%%DOCSDIR%%/html/_sources/api/qtime.txt -%%DOCSDIR%%/html/_sources/api/qtimeedit.txt -%%DOCSDIR%%/html/_sources/api/qtimeline.txt -%%DOCSDIR%%/html/_sources/api/qtimer.txt -%%DOCSDIR%%/html/_sources/api/qtimerevent.txt -%%DOCSDIR%%/html/_sources/api/qtimezone.txt -%%DOCSDIR%%/html/_sources/api/qtoolbar.txt -%%DOCSDIR%%/html/_sources/api/qtoolbox.txt -%%DOCSDIR%%/html/_sources/api/qtoolbutton.txt -%%DOCSDIR%%/html/_sources/api/qtooltip.txt -%%DOCSDIR%%/html/_sources/api/qtouchdevice.txt -%%DOCSDIR%%/html/_sources/api/qtouchevent.txt -%%DOCSDIR%%/html/_sources/api/qtransform.txt -%%DOCSDIR%%/html/_sources/api/qtranslator.txt -%%DOCSDIR%%/html/_sources/api/qtreeview.txt -%%DOCSDIR%%/html/_sources/api/qtreewidget.txt -%%DOCSDIR%%/html/_sources/api/qtreewidgetitem.txt -%%DOCSDIR%%/html/_sources/api/qtreewidgetitemiterator.txt -%%DOCSDIR%%/html/_sources/api/qtwin.txt -%%DOCSDIR%%/html/_sources/api/qudpsocket.txt -%%DOCSDIR%%/html/_sources/api/qundocommand.txt -%%DOCSDIR%%/html/_sources/api/qundogroup.txt -%%DOCSDIR%%/html/_sources/api/qundostack.txt -%%DOCSDIR%%/html/_sources/api/qundoview.txt -%%DOCSDIR%%/html/_sources/api/qurl.txt -%%DOCSDIR%%/html/_sources/api/qurlquery.txt -%%DOCSDIR%%/html/_sources/api/quuid.txt -%%DOCSDIR%%/html/_sources/api/qvalidator.txt -%%DOCSDIR%%/html/_sources/api/qvariant.txt -%%DOCSDIR%%/html/_sources/api/qvariantanimation.txt -%%DOCSDIR%%/html/_sources/api/qvboxlayout.txt -%%DOCSDIR%%/html/_sources/api/qvector2d.txt -%%DOCSDIR%%/html/_sources/api/qvector3d.txt -%%DOCSDIR%%/html/_sources/api/qvector4d.txt -%%DOCSDIR%%/html/_sources/api/qvideoencodersettings.txt -%%DOCSDIR%%/html/_sources/api/qvideoframe.txt -%%DOCSDIR%%/html/_sources/api/qvideoprobe.txt -%%DOCSDIR%%/html/_sources/api/qvideosurfaceformat.txt -%%DOCSDIR%%/html/_sources/api/qvideowidget.txt -%%DOCSDIR%%/html/_sources/api/qwaitcondition.txt -%%DOCSDIR%%/html/_sources/api/qwebchannel.txt -%%DOCSDIR%%/html/_sources/api/qwebchannelabstracttransport.txt -%%DOCSDIR%%/html/_sources/api/qwebdatabase.txt -%%DOCSDIR%%/html/_sources/api/qwebelement.txt -%%DOCSDIR%%/html/_sources/api/qwebelementcollection.txt -%%DOCSDIR%%/html/_sources/api/qwebenginecertificateerror.txt -%%DOCSDIR%%/html/_sources/api/qwebenginecookiestore.txt -%%DOCSDIR%%/html/_sources/api/qwebenginedownloaditem.txt -%%DOCSDIR%%/html/_sources/api/qwebenginehistory.txt -%%DOCSDIR%%/html/_sources/api/qwebenginehistoryitem.txt -%%DOCSDIR%%/html/_sources/api/qwebenginepage.txt -%%DOCSDIR%%/html/_sources/api/qwebengineprofile.txt -%%DOCSDIR%%/html/_sources/api/qwebenginescript.txt -%%DOCSDIR%%/html/_sources/api/qwebenginescriptcollection.txt -%%DOCSDIR%%/html/_sources/api/qwebenginesettings.txt -%%DOCSDIR%%/html/_sources/api/qwebengineurlrequestinfo.txt -%%DOCSDIR%%/html/_sources/api/qwebengineurlrequestinterceptor.txt -%%DOCSDIR%%/html/_sources/api/qwebengineurlrequestjob.txt -%%DOCSDIR%%/html/_sources/api/qwebengineurlschemehandler.txt -%%DOCSDIR%%/html/_sources/api/qwebengineview.txt -%%DOCSDIR%%/html/_sources/api/qwebframe.txt -%%DOCSDIR%%/html/_sources/api/qwebhistory.txt -%%DOCSDIR%%/html/_sources/api/qwebhistoryinterface.txt -%%DOCSDIR%%/html/_sources/api/qwebhistoryitem.txt -%%DOCSDIR%%/html/_sources/api/qwebhittestresult.txt -%%DOCSDIR%%/html/_sources/api/qwebinspector.txt -%%DOCSDIR%%/html/_sources/api/qwebpage.txt -%%DOCSDIR%%/html/_sources/api/qwebpluginfactory.txt -%%DOCSDIR%%/html/_sources/api/qwebsecurityorigin.txt -%%DOCSDIR%%/html/_sources/api/qwebsettings.txt -%%DOCSDIR%%/html/_sources/api/qwebsocket.txt -%%DOCSDIR%%/html/_sources/api/qwebsocketcorsauthenticator.txt -%%DOCSDIR%%/html/_sources/api/qwebsocketprotocol.txt -%%DOCSDIR%%/html/_sources/api/qwebsocketserver.txt -%%DOCSDIR%%/html/_sources/api/qwebview.txt -%%DOCSDIR%%/html/_sources/api/qwhatsthis.txt -%%DOCSDIR%%/html/_sources/api/qwhatsthisclickedevent.txt -%%DOCSDIR%%/html/_sources/api/qwheelevent.txt -%%DOCSDIR%%/html/_sources/api/qwidget.txt -%%DOCSDIR%%/html/_sources/api/qwidgetaction.txt -%%DOCSDIR%%/html/_sources/api/qwidgetitem.txt -%%DOCSDIR%%/html/_sources/api/qwindow.txt -%%DOCSDIR%%/html/_sources/api/qwindowstatechangeevent.txt -%%DOCSDIR%%/html/_sources/api/qwinjumplist.txt -%%DOCSDIR%%/html/_sources/api/qwinjumplistcategory.txt -%%DOCSDIR%%/html/_sources/api/qwinjumplistitem.txt -%%DOCSDIR%%/html/_sources/api/qwintaskbarbutton.txt -%%DOCSDIR%%/html/_sources/api/qwintaskbarprogress.txt -%%DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbar.txt -%%DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbutton.txt -%%DOCSDIR%%/html/_sources/api/qwizard.txt -%%DOCSDIR%%/html/_sources/api/qwizardpage.txt -%%DOCSDIR%%/html/_sources/api/qwritelocker.txt -%%DOCSDIR%%/html/_sources/api/qx11info.txt -%%DOCSDIR%%/html/_sources/api/qxmlattributes.txt -%%DOCSDIR%%/html/_sources/api/qxmlcontenthandler.txt -%%DOCSDIR%%/html/_sources/api/qxmldeclhandler.txt -%%DOCSDIR%%/html/_sources/api/qxmldefaulthandler.txt -%%DOCSDIR%%/html/_sources/api/qxmldtdhandler.txt -%%DOCSDIR%%/html/_sources/api/qxmlentityresolver.txt -%%DOCSDIR%%/html/_sources/api/qxmlerrorhandler.txt -%%DOCSDIR%%/html/_sources/api/qxmlformatter.txt -%%DOCSDIR%%/html/_sources/api/qxmlinputsource.txt -%%DOCSDIR%%/html/_sources/api/qxmlitem.txt -%%DOCSDIR%%/html/_sources/api/qxmllexicalhandler.txt -%%DOCSDIR%%/html/_sources/api/qxmllocator.txt -%%DOCSDIR%%/html/_sources/api/qxmlname.txt -%%DOCSDIR%%/html/_sources/api/qxmlnamepool.txt -%%DOCSDIR%%/html/_sources/api/qxmlnamespacesupport.txt -%%DOCSDIR%%/html/_sources/api/qxmlnodemodelindex.txt -%%DOCSDIR%%/html/_sources/api/qxmlparseexception.txt -%%DOCSDIR%%/html/_sources/api/qxmlquery.txt -%%DOCSDIR%%/html/_sources/api/qxmlreader.txt -%%DOCSDIR%%/html/_sources/api/qxmlresultitems.txt -%%DOCSDIR%%/html/_sources/api/qxmlschema.txt -%%DOCSDIR%%/html/_sources/api/qxmlschemavalidator.txt -%%DOCSDIR%%/html/_sources/api/qxmlserializer.txt -%%DOCSDIR%%/html/_sources/api/qxmlsimplereader.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamattribute.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamattributes.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamentitydeclaration.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamentityresolver.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamnamespacedeclaration.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamnotationdeclaration.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamreader.txt -%%DOCSDIR%%/html/_sources/api/qxmlstreamwriter.txt -%%DOCSDIR%%/html/_sources/class_reference.txt -%%DOCSDIR%%/html/_sources/dbus.txt -%%DOCSDIR%%/html/_sources/deploy_commercial.txt -%%DOCSDIR%%/html/_sources/deprecations.txt -%%DOCSDIR%%/html/_sources/designer.txt -%%DOCSDIR%%/html/_sources/extension_api.txt -%%DOCSDIR%%/html/_sources/gotchas.txt -%%DOCSDIR%%/html/_sources/i18n.txt -%%DOCSDIR%%/html/_sources/incompatibilities.txt -%%DOCSDIR%%/html/_sources/index.txt -%%DOCSDIR%%/html/_sources/installation.txt -%%DOCSDIR%%/html/_sources/introduction.txt -%%DOCSDIR%%/html/_sources/metaobjects.txt -%%DOCSDIR%%/html/_sources/multiinheritance.txt -%%DOCSDIR%%/html/_sources/opengl.txt -%%DOCSDIR%%/html/_sources/pickle.txt -%%DOCSDIR%%/html/_sources/platforms.txt -%%DOCSDIR%%/html/_sources/pyqt4_differences.txt -%%DOCSDIR%%/html/_sources/pyqt_qsettings.txt -%%DOCSDIR%%/html/_sources/pyqt_qvariant.txt -%%DOCSDIR%%/html/_sources/python_shell.txt -%%DOCSDIR%%/html/_sources/qml.txt -%%DOCSDIR%%/html/_sources/qt_interfaces.txt -%%DOCSDIR%%/html/_sources/qt_properties.txt -%%DOCSDIR%%/html/_sources/resources.txt -%%DOCSDIR%%/html/_sources/signals_slots.txt +%%DOCSDIR%%/html/_sources/api/enginio.rst.txt +%%DOCSDIR%%/html/_sources/api/enginioclient.rst.txt +%%DOCSDIR%%/html/_sources/api/enginioclientconnection.rst.txt +%%DOCSDIR%%/html/_sources/api/enginioidentity.rst.txt +%%DOCSDIR%%/html/_sources/api/enginiomodel.rst.txt +%%DOCSDIR%%/html/_sources/api/enginiooauth2authentication.rst.txt +%%DOCSDIR%%/html/_sources/api/enginioreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractanimation.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstracteventdispatcher.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractextensionfactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractextensionmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractformbuilder.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractgraphicsshapeitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractitemdelegate.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractitemmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractitemview.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractlistmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractmessagehandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractnativeeventfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractnetworkcache.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractprintdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractproxymodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractscrollarea.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractslider.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractsocket.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractspinbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractstate.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstracttablemodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstracttextdocumentlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstracttransition.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstracturiresolver.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractvideobuffer.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractvideosurface.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractxmlnodemodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qabstractxmlreceiver.rst.txt +%%DOCSDIR%%/html/_sources/api/qaccelerometer.rst.txt +%%DOCSDIR%%/html/_sources/api/qaccelerometerfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qaccelerometerreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qaction.rst.txt +%%DOCSDIR%%/html/_sources/api/qactionevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qactiongroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qaltimeter.rst.txt +%%DOCSDIR%%/html/_sources/api/qaltimeterfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qaltimeterreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qambientlightfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qambientlightreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qambientlightsensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qambienttemperaturefilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qambienttemperaturereading.rst.txt +%%DOCSDIR%%/html/_sources/api/qambienttemperaturesensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qanimationgroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qapplication.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudio.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudiobuffer.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudiodecoder.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudiodeviceinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudioencodersettings.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudioformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudioinput.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudiooutput.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudioprobe.rst.txt +%%DOCSDIR%%/html/_sources/api/qaudiorecorder.rst.txt +%%DOCSDIR%%/html/_sources/api/qauthenticator.rst.txt +%%DOCSDIR%%/html/_sources/api/qaxbase.rst.txt +%%DOCSDIR%%/html/_sources/api/qaxobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qaxwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qbackingstore.rst.txt +%%DOCSDIR%%/html/_sources/api/qbasictimer.rst.txt +%%DOCSDIR%%/html/_sources/api/qbitarray.rst.txt +%%DOCSDIR%%/html/_sources/api/qbitmap.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothaddress.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothdevicediscoveryagent.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothdeviceinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothhostinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothlocaldevice.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothserver.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothservicediscoveryagent.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothserviceinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothsocket.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothtransfermanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothtransferreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothtransferrequest.rst.txt +%%DOCSDIR%%/html/_sources/api/qbluetoothuuid.rst.txt +%%DOCSDIR%%/html/_sources/api/qboxlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qbrush.rst.txt +%%DOCSDIR%%/html/_sources/api/qbuffer.rst.txt +%%DOCSDIR%%/html/_sources/api/qbuttongroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qbytearray.rst.txt +%%DOCSDIR%%/html/_sources/api/qbytearraymatcher.rst.txt +%%DOCSDIR%%/html/_sources/api/qcalendarwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qcamera.rst.txt +%%DOCSDIR%%/html/_sources/api/qcameraexposure.rst.txt +%%DOCSDIR%%/html/_sources/api/qcamerafocus.rst.txt +%%DOCSDIR%%/html/_sources/api/qcamerafocuszone.rst.txt +%%DOCSDIR%%/html/_sources/api/qcameraimagecapture.rst.txt +%%DOCSDIR%%/html/_sources/api/qcameraimageprocessing.rst.txt +%%DOCSDIR%%/html/_sources/api/qcamerainfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qcameraviewfinder.rst.txt +%%DOCSDIR%%/html/_sources/api/qcheckbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qchildevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qclipboard.rst.txt +%%DOCSDIR%%/html/_sources/api/qcloseevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qcollator.rst.txt +%%DOCSDIR%%/html/_sources/api/qcollatorsortkey.rst.txt +%%DOCSDIR%%/html/_sources/api/qcolor.rst.txt +%%DOCSDIR%%/html/_sources/api/qcolordialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qcolumnview.rst.txt +%%DOCSDIR%%/html/_sources/api/qcombobox.rst.txt +%%DOCSDIR%%/html/_sources/api/qcommandlineoption.rst.txt +%%DOCSDIR%%/html/_sources/api/qcommandlineparser.rst.txt +%%DOCSDIR%%/html/_sources/api/qcommandlinkbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qcommonstyle.rst.txt +%%DOCSDIR%%/html/_sources/api/qcompass.rst.txt +%%DOCSDIR%%/html/_sources/api/qcompassfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qcompassreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qcompleter.rst.txt +%%DOCSDIR%%/html/_sources/api/qconicalgradient.rst.txt +%%DOCSDIR%%/html/_sources/api/qcontextmenuevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qcoreapplication.rst.txt +%%DOCSDIR%%/html/_sources/api/qcryptographichash.rst.txt +%%DOCSDIR%%/html/_sources/api/qcursor.rst.txt +%%DOCSDIR%%/html/_sources/api/qdatastream.rst.txt +%%DOCSDIR%%/html/_sources/api/qdatawidgetmapper.rst.txt +%%DOCSDIR%%/html/_sources/api/qdate.rst.txt +%%DOCSDIR%%/html/_sources/api/qdateedit.rst.txt +%%DOCSDIR%%/html/_sources/api/qdatetime.rst.txt +%%DOCSDIR%%/html/_sources/api/qdatetimeedit.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbus.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusabstractadaptor.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusabstractinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusargument.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusconnection.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusconnectioninterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbuserror.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusmessage.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusobjectpath.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbuspendingcall.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbuspendingcallwatcher.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbuspendingreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusservicewatcher.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbussignature.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusunixfiledescriptor.rst.txt +%%DOCSDIR%%/html/_sources/api/qdbusvariant.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesigneractioneditorinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignercontainerextension.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignercustomwidgetcollectioninterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignercustomwidgetinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformeditorinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformwindowcursorinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformwindowinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerformwindowmanagerinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignermembersheetextension.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerobjectinspectorinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerpropertyeditorinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerpropertysheetextension.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignertaskmenuextension.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesignerwidgetboxinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesktopservices.rst.txt +%%DOCSDIR%%/html/_sources/api/qdesktopwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qdial.rst.txt +%%DOCSDIR%%/html/_sources/api/qdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qdialogbuttonbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qdir.rst.txt +%%DOCSDIR%%/html/_sources/api/qdiriterator.rst.txt +%%DOCSDIR%%/html/_sources/api/qdirmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qdistancefilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qdistancereading.rst.txt +%%DOCSDIR%%/html/_sources/api/qdistancesensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qdnsdomainnamerecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qdnshostaddressrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qdnslookup.rst.txt +%%DOCSDIR%%/html/_sources/api/qdnsmailexchangerecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qdnsservicerecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qdnstextrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qdockwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomattr.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomcdatasection.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomcharacterdata.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomcomment.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomdocument.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomdocumentfragment.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomdocumenttype.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomelement.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomentity.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomentityreference.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomimplementation.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomnamednodemap.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomnode.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomnodelist.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomnotation.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomprocessinginstruction.rst.txt +%%DOCSDIR%%/html/_sources/api/qdomtext.rst.txt +%%DOCSDIR%%/html/_sources/api/qdoublespinbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qdoublevalidator.rst.txt +%%DOCSDIR%%/html/_sources/api/qdrag.rst.txt +%%DOCSDIR%%/html/_sources/api/qdragenterevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qdragleaveevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qdragmoveevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qdropevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qdynamicpropertychangeevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qeasingcurve.rst.txt +%%DOCSDIR%%/html/_sources/api/qelapsedtimer.rst.txt +%%DOCSDIR%%/html/_sources/api/qenterevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qerrormessage.rst.txt +%%DOCSDIR%%/html/_sources/api/qevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qeventloop.rst.txt +%%DOCSDIR%%/html/_sources/api/qeventlooplocker.rst.txt +%%DOCSDIR%%/html/_sources/api/qeventtransition.rst.txt +%%DOCSDIR%%/html/_sources/api/qexposeevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qextensionfactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qextensionmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qfile.rst.txt +%%DOCSDIR%%/html/_sources/api/qfiledevice.rst.txt +%%DOCSDIR%%/html/_sources/api/qfiledialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qfileiconprovider.rst.txt +%%DOCSDIR%%/html/_sources/api/qfileinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qfileopenevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qfileselector.rst.txt +%%DOCSDIR%%/html/_sources/api/qfilesystemmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qfilesystemwatcher.rst.txt +%%DOCSDIR%%/html/_sources/api/qfinalstate.rst.txt +%%DOCSDIR%%/html/_sources/api/qfocusevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qfocusframe.rst.txt +%%DOCSDIR%%/html/_sources/api/qfont.rst.txt +%%DOCSDIR%%/html/_sources/api/qfontcombobox.rst.txt +%%DOCSDIR%%/html/_sources/api/qfontdatabase.rst.txt +%%DOCSDIR%%/html/_sources/api/qfontdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qfontinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qfontmetrics.rst.txt +%%DOCSDIR%%/html/_sources/api/qfontmetricsf.rst.txt +%%DOCSDIR%%/html/_sources/api/qformbuilder.rst.txt +%%DOCSDIR%%/html/_sources/api/qformlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qframe.rst.txt +%%DOCSDIR%%/html/_sources/api/qgenericargument.rst.txt +%%DOCSDIR%%/html/_sources/api/qgenericreturnargument.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoaddress.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoareamonitorinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoareamonitorsource.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeocircle.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeocodereply.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeocodingmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeocodingmanagerengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeocoordinate.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeolocation.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeomaneuver.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeopositioninfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeopositioninfosource.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeorectangle.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoroute.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutereply.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeorouterequest.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutesegment.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutingmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoroutingmanagerengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeosatelliteinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeosatelliteinfosource.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoserviceprovider.rst.txt +%%DOCSDIR%%/html/_sources/api/qgeoshape.rst.txt +%%DOCSDIR%%/html/_sources/api/qgesture.rst.txt +%%DOCSDIR%%/html/_sources/api/qgestureevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgesturerecognizer.rst.txt +%%DOCSDIR%%/html/_sources/api/qgl.rst.txt +%%DOCSDIR%%/html/_sources/api/qglcontext.rst.txt +%%DOCSDIR%%/html/_sources/api/qglformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qglwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qglyphrun.rst.txt +%%DOCSDIR%%/html/_sources/api/qgradient.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsanchor.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsanchorlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsblureffect.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicscolorizeeffect.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsdropshadoweffect.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicseffect.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsellipseitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsgridlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsitemgroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslayoutitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslinearlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicslineitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsopacityeffect.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicspathitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicspixmapitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicspolygonitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsproxywidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsrectitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsrotation.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscale.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscene.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenecontextmenuevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenedragdropevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssceneevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenehelpevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenehoverevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenemouseevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenemoveevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssceneresizeevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsscenewheelevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssimpletextitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicssvgitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicstextitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicstransform.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsvideoitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicsview.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicswebview.rst.txt +%%DOCSDIR%%/html/_sources/api/qgraphicswidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qgridlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qgroupbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qguiapplication.rst.txt +%%DOCSDIR%%/html/_sources/api/qgyroscope.rst.txt +%%DOCSDIR%%/html/_sources/api/qgyroscopefilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qgyroscopereading.rst.txt +%%DOCSDIR%%/html/_sources/api/qhboxlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qheaderview.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpcontentitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpcontentmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpcontentwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpenginecore.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpindexmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpindexwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchquery.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchquerywidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qhelpsearchresultwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qhideevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qhistorystate.rst.txt +%%DOCSDIR%%/html/_sources/api/qholsterfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qholsterreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qholstersensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qhostaddress.rst.txt +%%DOCSDIR%%/html/_sources/api/qhostinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qhoverevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qhttpmultipart.rst.txt +%%DOCSDIR%%/html/_sources/api/qhttppart.rst.txt +%%DOCSDIR%%/html/_sources/api/qicon.rst.txt +%%DOCSDIR%%/html/_sources/api/qicondragevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qiconengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qidentityproxymodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qimage.rst.txt +%%DOCSDIR%%/html/_sources/api/qimageencodersettings.rst.txt +%%DOCSDIR%%/html/_sources/api/qimageiohandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qimagereader.rst.txt +%%DOCSDIR%%/html/_sources/api/qimagewriter.rst.txt +%%DOCSDIR%%/html/_sources/api/qinputdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qinputevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qinputmethod.rst.txt +%%DOCSDIR%%/html/_sources/api/qinputmethodevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qinputmethodqueryevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qintvalidator.rst.txt +%%DOCSDIR%%/html/_sources/api/qiodevice.rst.txt +%%DOCSDIR%%/html/_sources/api/qirproximityfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qirproximityreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qirproximitysensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qitemdelegate.rst.txt +%%DOCSDIR%%/html/_sources/api/qitemeditorcreatorbase.rst.txt +%%DOCSDIR%%/html/_sources/api/qitemeditorfactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qitemselection.rst.txt +%%DOCSDIR%%/html/_sources/api/qitemselectionmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qitemselectionrange.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsonarray.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsondocument.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsonobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsonparseerror.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsonvalue.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsvalue.rst.txt +%%DOCSDIR%%/html/_sources/api/qjsvalueiterator.rst.txt +%%DOCSDIR%%/html/_sources/api/qkeyevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qkeyeventtransition.rst.txt +%%DOCSDIR%%/html/_sources/api/qkeysequence.rst.txt +%%DOCSDIR%%/html/_sources/api/qkeysequenceedit.rst.txt +%%DOCSDIR%%/html/_sources/api/qlabel.rst.txt +%%DOCSDIR%%/html/_sources/api/qlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qlayoutitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qlcdnumber.rst.txt +%%DOCSDIR%%/html/_sources/api/qlibrary.rst.txt +%%DOCSDIR%%/html/_sources/api/qlibraryinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qlightfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qlightreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qlightsensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qline.rst.txt +%%DOCSDIR%%/html/_sources/api/qlineargradient.rst.txt +%%DOCSDIR%%/html/_sources/api/qlineedit.rst.txt +%%DOCSDIR%%/html/_sources/api/qlinef.rst.txt +%%DOCSDIR%%/html/_sources/api/qlistview.rst.txt +%%DOCSDIR%%/html/_sources/api/qlistwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qlistwidgetitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qlocale.rst.txt +%%DOCSDIR%%/html/_sources/api/qlocalserver.rst.txt +%%DOCSDIR%%/html/_sources/api/qlocalsocket.rst.txt +%%DOCSDIR%%/html/_sources/api/qlocation.rst.txt +%%DOCSDIR%%/html/_sources/api/qlockfile.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergyadvertisingdata.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergyadvertisingparameters.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergycharacteristic.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergycharacteristicdata.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergyconnectionparameters.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergycontroller.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergydescriptor.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergydescriptordata.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergyservice.rst.txt +%%DOCSDIR%%/html/_sources/api/qlowenergyservicedata.rst.txt +%%DOCSDIR%%/html/_sources/api/qmaccocoaviewcontainer.rst.txt +%%DOCSDIR%%/html/_sources/api/qmacpasteboardmime.rst.txt +%%DOCSDIR%%/html/_sources/api/qmactoolbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qmactoolbaritem.rst.txt +%%DOCSDIR%%/html/_sources/api/qmagnetometer.rst.txt +%%DOCSDIR%%/html/_sources/api/qmagnetometerfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qmagnetometerreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qmainwindow.rst.txt +%%DOCSDIR%%/html/_sources/api/qmargins.rst.txt +%%DOCSDIR%%/html/_sources/api/qmarginsf.rst.txt +%%DOCSDIR%%/html/_sources/api/qmaskgenerator.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix2x2.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix2x3.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix2x4.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix3x2.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix3x3.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix3x4.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix4x2.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix4x3.rst.txt +%%DOCSDIR%%/html/_sources/api/qmatrix4x4.rst.txt +%%DOCSDIR%%/html/_sources/api/qmdiarea.rst.txt +%%DOCSDIR%%/html/_sources/api/qmdisubwindow.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediabindableinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediacontent.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediacontrol.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediametadata.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediaobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediaplayer.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediaplaylist.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediarecorder.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediaresource.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediaservice.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediatimeinterval.rst.txt +%%DOCSDIR%%/html/_sources/api/qmediatimerange.rst.txt +%%DOCSDIR%%/html/_sources/api/qmenu.rst.txt +%%DOCSDIR%%/html/_sources/api/qmenubar.rst.txt +%%DOCSDIR%%/html/_sources/api/qmessageauthenticationcode.rst.txt +%%DOCSDIR%%/html/_sources/api/qmessagebox.rst.txt +%%DOCSDIR%%/html/_sources/api/qmessagelogcontext.rst.txt +%%DOCSDIR%%/html/_sources/api/qmessagelogger.rst.txt +%%DOCSDIR%%/html/_sources/api/qmetaclassinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qmetaenum.rst.txt +%%DOCSDIR%%/html/_sources/api/qmetamethod.rst.txt +%%DOCSDIR%%/html/_sources/api/qmetaobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qmetaproperty.rst.txt +%%DOCSDIR%%/html/_sources/api/qmetatype.rst.txt +%%DOCSDIR%%/html/_sources/api/qmimedata.rst.txt +%%DOCSDIR%%/html/_sources/api/qmimedatabase.rst.txt +%%DOCSDIR%%/html/_sources/api/qmimetype.rst.txt +%%DOCSDIR%%/html/_sources/api/qmodelindex.rst.txt +%%DOCSDIR%%/html/_sources/api/qmouseevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qmouseeventtransition.rst.txt +%%DOCSDIR%%/html/_sources/api/qmoveevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qmovie.rst.txt +%%DOCSDIR%%/html/_sources/api/qmultimedia.rst.txt +%%DOCSDIR%%/html/_sources/api/qmutex.rst.txt +%%DOCSDIR%%/html/_sources/api/qmutexlocker.rst.txt +%%DOCSDIR%%/html/_sources/api/qndeffilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qndefmessage.rst.txt +%%DOCSDIR%%/html/_sources/api/qndefnfciconrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qndefnfcsmartposterrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qndefnfctextrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qndefnfcurirecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qndefrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldsharemanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldsharetarget.rst.txt +%%DOCSDIR%%/html/_sources/api/qnearfieldtarget.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkaccessmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkaddressentry.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkcachemetadata.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkconfiguration.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkconfigurationmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkcookie.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkcookiejar.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkdiskcache.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkproxy.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkproxyfactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkproxyquery.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworkrequest.rst.txt +%%DOCSDIR%%/html/_sources/api/qnetworksession.rst.txt +%%DOCSDIR%%/html/_sources/api/qnmeapositioninfosource.rst.txt +%%DOCSDIR%%/html/_sources/api/qobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qobjectcleanuphandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qoffscreensurface.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglbuffer.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglcontext.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglcontextgroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qopengldebuglogger.rst.txt +%%DOCSDIR%%/html/_sources/api/qopengldebugmessage.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglframebufferobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglframebufferobjectformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglpaintdevice.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglshader.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglshaderprogram.rst.txt +%%DOCSDIR%%/html/_sources/api/qopengltexture.rst.txt +%%DOCSDIR%%/html/_sources/api/qopengltimemonitor.rst.txt +%%DOCSDIR%%/html/_sources/api/qopengltimerquery.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglversionprofile.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglvertexarrayobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qopenglwindow.rst.txt +%%DOCSDIR%%/html/_sources/api/qorientationfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qorientationreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qorientationsensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qpagedpaintdevice.rst.txt +%%DOCSDIR%%/html/_sources/api/qpagelayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qpagesetupdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qpagesize.rst.txt +%%DOCSDIR%%/html/_sources/api/qpaintdevice.rst.txt +%%DOCSDIR%%/html/_sources/api/qpaintdevicewindow.rst.txt +%%DOCSDIR%%/html/_sources/api/qpaintengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qpaintenginestate.rst.txt +%%DOCSDIR%%/html/_sources/api/qpainter.rst.txt +%%DOCSDIR%%/html/_sources/api/qpainterpath.rst.txt +%%DOCSDIR%%/html/_sources/api/qpainterpathstroker.rst.txt +%%DOCSDIR%%/html/_sources/api/qpaintevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qpalette.rst.txt +%%DOCSDIR%%/html/_sources/api/qpangesture.rst.txt +%%DOCSDIR%%/html/_sources/api/qparallelanimationgroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qpauseanimation.rst.txt +%%DOCSDIR%%/html/_sources/api/qpdfwriter.rst.txt +%%DOCSDIR%%/html/_sources/api/qpen.rst.txt +%%DOCSDIR%%/html/_sources/api/qpersistentmodelindex.rst.txt +%%DOCSDIR%%/html/_sources/api/qpicture.rst.txt +%%DOCSDIR%%/html/_sources/api/qpictureio.rst.txt +%%DOCSDIR%%/html/_sources/api/qpinchgesture.rst.txt +%%DOCSDIR%%/html/_sources/api/qpixelformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qpixmap.rst.txt +%%DOCSDIR%%/html/_sources/api/qpixmapcache.rst.txt +%%DOCSDIR%%/html/_sources/api/qplace.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceattribute.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacecategory.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacecontactdetail.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacecontent.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacecontentreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacecontentrequest.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacedetailsreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceeditorial.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceicon.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceidreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceimage.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacemanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacemanagerengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacematchreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacematchrequest.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceproposedsearchresult.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceratings.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacereply.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceresult.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacereview.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchrequest.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchresult.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacesearchsuggestionreply.rst.txt +%%DOCSDIR%%/html/_sources/api/qplacesupplier.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaceuser.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaintextdocumentlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qplaintextedit.rst.txt +%%DOCSDIR%%/html/_sources/api/qpluginloader.rst.txt +%%DOCSDIR%%/html/_sources/api/qpoint.rst.txt +%%DOCSDIR%%/html/_sources/api/qpointf.rst.txt +%%DOCSDIR%%/html/_sources/api/qpolygon.rst.txt +%%DOCSDIR%%/html/_sources/api/qpolygonf.rst.txt +%%DOCSDIR%%/html/_sources/api/qpressurefilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qpressurereading.rst.txt +%%DOCSDIR%%/html/_sources/api/qpressuresensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qprintdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qprintengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qprinter.rst.txt +%%DOCSDIR%%/html/_sources/api/qprinterinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qprintpreviewdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qprintpreviewwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qprocess.rst.txt +%%DOCSDIR%%/html/_sources/api/qprocessenvironment.rst.txt +%%DOCSDIR%%/html/_sources/api/qprogressbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qprogressdialog.rst.txt +%%DOCSDIR%%/html/_sources/api/qpropertyanimation.rst.txt +%%DOCSDIR%%/html/_sources/api/qproximityfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qproximityreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qproximitysensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qproxystyle.rst.txt +%%DOCSDIR%%/html/_sources/api/qpushbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlabstracturlinterceptor.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlapplicationengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlcomponent.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlcontext.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlerror.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlexpression.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlextensionplugin.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlfileselector.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlimageproviderbase.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlincubator.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlincubatorcontrol.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmllistproperty.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmllistreference.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlndefrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlnetworkaccessmanagerfactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlparserstatus.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlproperty.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlpropertymap.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlpropertyvaluesource.rst.txt +%%DOCSDIR%%/html/_sources/api/qqmlscriptstring.rst.txt +%%DOCSDIR%%/html/_sources/api/qquaternion.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickasyncimageprovider.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickframebufferobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickimageprovider.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickimageresponse.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickitemgrabresult.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickpainteditem.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickrendercontrol.rst.txt +%%DOCSDIR%%/html/_sources/api/qquicktextdocument.rst.txt +%%DOCSDIR%%/html/_sources/api/qquicktexturefactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickview.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickwebengineprofile.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qquickwindow.rst.txt +%%DOCSDIR%%/html/_sources/api/qradialgradient.rst.txt +%%DOCSDIR%%/html/_sources/api/qradiobutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qradiodata.rst.txt +%%DOCSDIR%%/html/_sources/api/qradiotuner.rst.txt +%%DOCSDIR%%/html/_sources/api/qrasterwindow.rst.txt +%%DOCSDIR%%/html/_sources/api/qrawfont.rst.txt +%%DOCSDIR%%/html/_sources/api/qreadlocker.rst.txt +%%DOCSDIR%%/html/_sources/api/qreadwritelock.rst.txt +%%DOCSDIR%%/html/_sources/api/qrect.rst.txt +%%DOCSDIR%%/html/_sources/api/qrectf.rst.txt +%%DOCSDIR%%/html/_sources/api/qregexp.rst.txt +%%DOCSDIR%%/html/_sources/api/qregexpvalidator.rst.txt +%%DOCSDIR%%/html/_sources/api/qregion.rst.txt +%%DOCSDIR%%/html/_sources/api/qregularexpression.rst.txt +%%DOCSDIR%%/html/_sources/api/qregularexpressionmatch.rst.txt +%%DOCSDIR%%/html/_sources/api/qregularexpressionmatchiterator.rst.txt +%%DOCSDIR%%/html/_sources/api/qregularexpressionvalidator.rst.txt +%%DOCSDIR%%/html/_sources/api/qresizeevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qresource.rst.txt +%%DOCSDIR%%/html/_sources/api/qrgba64.rst.txt +%%DOCSDIR%%/html/_sources/api/qrotationfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qrotationreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qrotationsensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qrubberband.rst.txt +%%DOCSDIR%%/html/_sources/api/qrunnable.rst.txt +%%DOCSDIR%%/html/_sources/api/qsavefile.rst.txt +%%DOCSDIR%%/html/_sources/api/qscreen.rst.txt +%%DOCSDIR%%/html/_sources/api/qscrollarea.rst.txt +%%DOCSDIR%%/html/_sources/api/qscrollbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qscroller.rst.txt +%%DOCSDIR%%/html/_sources/api/qscrollerproperties.rst.txt +%%DOCSDIR%%/html/_sources/api/qscrollevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qscrollprepareevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qsemaphore.rst.txt +%%DOCSDIR%%/html/_sources/api/qsensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qsensorfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qsensorreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qsequentialanimationgroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qserialport.rst.txt +%%DOCSDIR%%/html/_sources/api/qserialportinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qsessionmanager.rst.txt +%%DOCSDIR%%/html/_sources/api/qsettings.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgabstractrenderer.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgbasicgeometrynode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgclipnode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgdynamictexture.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgengine.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgflatcolormaterial.rst.txt +%%DOCSDIR%%/html/_sources/api/qsggeometry.rst.txt +%%DOCSDIR%%/html/_sources/api/qsggeometrynode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgmaterial.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgmaterialshader.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgmaterialtype.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgnode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgopacitynode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgopaquetexturematerial.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgsimplerectnode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgsimpletexturenode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgtexture.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgtexturematerial.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgtextureprovider.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgtransformnode.rst.txt +%%DOCSDIR%%/html/_sources/api/qsgvertexcolormaterial.rst.txt +%%DOCSDIR%%/html/_sources/api/qsharedmemory.rst.txt +%%DOCSDIR%%/html/_sources/api/qshortcut.rst.txt +%%DOCSDIR%%/html/_sources/api/qshortcutevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qshowevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qsignalblocker.rst.txt +%%DOCSDIR%%/html/_sources/api/qsignalmapper.rst.txt +%%DOCSDIR%%/html/_sources/api/qsignalspy.rst.txt +%%DOCSDIR%%/html/_sources/api/qsignaltransition.rst.txt +%%DOCSDIR%%/html/_sources/api/qsimplexmlnodemodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qsize.rst.txt +%%DOCSDIR%%/html/_sources/api/qsizef.rst.txt +%%DOCSDIR%%/html/_sources/api/qsizegrip.rst.txt +%%DOCSDIR%%/html/_sources/api/qsizepolicy.rst.txt +%%DOCSDIR%%/html/_sources/api/qslider.rst.txt +%%DOCSDIR%%/html/_sources/api/qsocketnotifier.rst.txt +%%DOCSDIR%%/html/_sources/api/qsortfilterproxymodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qsound.rst.txt +%%DOCSDIR%%/html/_sources/api/qsoundeffect.rst.txt +%%DOCSDIR%%/html/_sources/api/qsourcelocation.rst.txt +%%DOCSDIR%%/html/_sources/api/qspaceritem.rst.txt +%%DOCSDIR%%/html/_sources/api/qspinbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qsplashscreen.rst.txt +%%DOCSDIR%%/html/_sources/api/qsplitter.rst.txt +%%DOCSDIR%%/html/_sources/api/qsplitterhandle.rst.txt +%%DOCSDIR%%/html/_sources/api/qsql.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqldatabase.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqldriver.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqldrivercreatorbase.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlerror.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlfield.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlindex.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlquery.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlquerymodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlrecord.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlrelation.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlrelationaldelegate.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlrelationaltablemodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqlresult.rst.txt +%%DOCSDIR%%/html/_sources/api/qsqltablemodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qssl.rst.txt +%%DOCSDIR%%/html/_sources/api/qsslcertificate.rst.txt +%%DOCSDIR%%/html/_sources/api/qsslcertificateextension.rst.txt +%%DOCSDIR%%/html/_sources/api/qsslcipher.rst.txt +%%DOCSDIR%%/html/_sources/api/qsslconfiguration.rst.txt +%%DOCSDIR%%/html/_sources/api/qsslerror.rst.txt +%%DOCSDIR%%/html/_sources/api/qsslkey.rst.txt +%%DOCSDIR%%/html/_sources/api/qsslsocket.rst.txt +%%DOCSDIR%%/html/_sources/api/qstackedlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qstackedwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qstandarditem.rst.txt +%%DOCSDIR%%/html/_sources/api/qstandarditemmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qstandardpaths.rst.txt +%%DOCSDIR%%/html/_sources/api/qstate.rst.txt +%%DOCSDIR%%/html/_sources/api/qstatemachine.rst.txt +%%DOCSDIR%%/html/_sources/api/qstatictext.rst.txt +%%DOCSDIR%%/html/_sources/api/qstatusbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qstatustipevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qstorageinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qstringlistmodel.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyle.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleditemdelegate.rst.txt +%%DOCSDIR%%/html/_sources/api/qstylefactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qstylehintreturn.rst.txt +%%DOCSDIR%%/html/_sources/api/qstylehintreturnmask.rst.txt +%%DOCSDIR%%/html/_sources/api/qstylehintreturnvariant.rst.txt +%%DOCSDIR%%/html/_sources/api/qstylehints.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoption.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptioncombobox.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptioncomplex.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiondockwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionfocusrect.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionframe.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiongraphicsitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiongroupbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionheader.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionmenuitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionprogressbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionrubberband.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionsizegrip.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionslider.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionspinbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontab.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontabbarbase.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontabwidgetframe.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontitlebar.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptiontoolbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qstyleoptionviewitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qstylepainter.rst.txt +%%DOCSDIR%%/html/_sources/api/qsurface.rst.txt +%%DOCSDIR%%/html/_sources/api/qsurfaceformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qsvggenerator.rst.txt +%%DOCSDIR%%/html/_sources/api/qsvgrenderer.rst.txt +%%DOCSDIR%%/html/_sources/api/qsvgwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qswipegesture.rst.txt +%%DOCSDIR%%/html/_sources/api/qsyntaxhighlighter.rst.txt +%%DOCSDIR%%/html/_sources/api/qsysinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qsystemsemaphore.rst.txt +%%DOCSDIR%%/html/_sources/api/qsystemtrayicon.rst.txt +%%DOCSDIR%%/html/_sources/api/qt.rst.txt +%%DOCSDIR%%/html/_sources/api/qtabbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qtabletevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qtableview.rst.txt +%%DOCSDIR%%/html/_sources/api/qtablewidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qtablewidgetitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qtablewidgetselectionrange.rst.txt +%%DOCSDIR%%/html/_sources/api/qtabwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qtapandholdgesture.rst.txt +%%DOCSDIR%%/html/_sources/api/qtapfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qtapgesture.rst.txt +%%DOCSDIR%%/html/_sources/api/qtapreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qtapsensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qtcpserver.rst.txt +%%DOCSDIR%%/html/_sources/api/qtcpsocket.rst.txt +%%DOCSDIR%%/html/_sources/api/qtemporarydir.rst.txt +%%DOCSDIR%%/html/_sources/api/qtemporaryfile.rst.txt +%%DOCSDIR%%/html/_sources/api/qtest.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextblock.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextblockformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextblockgroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextblockuserdata.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextboundaryfinder.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextbrowser.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextcharformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextcodec.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextcursor.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextdecoder.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextdocument.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextdocumentfragment.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextdocumentwriter.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextedit.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextencoder.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextfragment.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextframe.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextframeformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextimageformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextinlineobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextlength.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextline.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextlist.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextlistformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextobject.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextobjectinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextoption.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextstream.rst.txt +%%DOCSDIR%%/html/_sources/api/qtextstreammanipulator.rst.txt +%%DOCSDIR%%/html/_sources/api/qtexttable.rst.txt +%%DOCSDIR%%/html/_sources/api/qtexttablecell.rst.txt +%%DOCSDIR%%/html/_sources/api/qtexttablecellformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qtexttableformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qthread.rst.txt +%%DOCSDIR%%/html/_sources/api/qthreadpool.rst.txt +%%DOCSDIR%%/html/_sources/api/qtiltfilter.rst.txt +%%DOCSDIR%%/html/_sources/api/qtiltreading.rst.txt +%%DOCSDIR%%/html/_sources/api/qtiltsensor.rst.txt +%%DOCSDIR%%/html/_sources/api/qtime.rst.txt +%%DOCSDIR%%/html/_sources/api/qtimeedit.rst.txt +%%DOCSDIR%%/html/_sources/api/qtimeline.rst.txt +%%DOCSDIR%%/html/_sources/api/qtimer.rst.txt +%%DOCSDIR%%/html/_sources/api/qtimerevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qtimezone.rst.txt +%%DOCSDIR%%/html/_sources/api/qtoolbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qtoolbox.rst.txt +%%DOCSDIR%%/html/_sources/api/qtoolbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qtooltip.rst.txt +%%DOCSDIR%%/html/_sources/api/qtouchdevice.rst.txt +%%DOCSDIR%%/html/_sources/api/qtouchevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qtransform.rst.txt +%%DOCSDIR%%/html/_sources/api/qtranslator.rst.txt +%%DOCSDIR%%/html/_sources/api/qtreeview.rst.txt +%%DOCSDIR%%/html/_sources/api/qtreewidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qtreewidgetitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qtreewidgetitemiterator.rst.txt +%%DOCSDIR%%/html/_sources/api/qtwin.rst.txt +%%DOCSDIR%%/html/_sources/api/qudpsocket.rst.txt +%%DOCSDIR%%/html/_sources/api/qundocommand.rst.txt +%%DOCSDIR%%/html/_sources/api/qundogroup.rst.txt +%%DOCSDIR%%/html/_sources/api/qundostack.rst.txt +%%DOCSDIR%%/html/_sources/api/qundoview.rst.txt +%%DOCSDIR%%/html/_sources/api/qurl.rst.txt +%%DOCSDIR%%/html/_sources/api/qurlquery.rst.txt +%%DOCSDIR%%/html/_sources/api/quuid.rst.txt +%%DOCSDIR%%/html/_sources/api/qvalidator.rst.txt +%%DOCSDIR%%/html/_sources/api/qvariant.rst.txt +%%DOCSDIR%%/html/_sources/api/qvariantanimation.rst.txt +%%DOCSDIR%%/html/_sources/api/qvboxlayout.rst.txt +%%DOCSDIR%%/html/_sources/api/qvector2d.rst.txt +%%DOCSDIR%%/html/_sources/api/qvector3d.rst.txt +%%DOCSDIR%%/html/_sources/api/qvector4d.rst.txt +%%DOCSDIR%%/html/_sources/api/qvideoencodersettings.rst.txt +%%DOCSDIR%%/html/_sources/api/qvideoframe.rst.txt +%%DOCSDIR%%/html/_sources/api/qvideoprobe.rst.txt +%%DOCSDIR%%/html/_sources/api/qvideosurfaceformat.rst.txt +%%DOCSDIR%%/html/_sources/api/qvideowidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qwaitcondition.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebchannel.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebchannelabstracttransport.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebdatabase.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebelement.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebelementcollection.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginecertificateerror.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginecontextmenudata.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginecookiestore.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginedownloaditem.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginehistory.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginehistoryitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginepage.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebengineprofile.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginescript.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginescriptcollection.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebenginesettings.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebengineurlrequestinfo.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebengineurlrequestinterceptor.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebengineurlrequestjob.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebengineurlschemehandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebengineview.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebframe.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebhistory.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebhistoryinterface.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebhistoryitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebhittestresult.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebinspector.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebpage.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebpluginfactory.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebsecurityorigin.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebsettings.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebsocket.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebsocketcorsauthenticator.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebsocketprotocol.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebsocketserver.rst.txt +%%DOCSDIR%%/html/_sources/api/qwebview.rst.txt +%%DOCSDIR%%/html/_sources/api/qwhatsthis.rst.txt +%%DOCSDIR%%/html/_sources/api/qwhatsthisclickedevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qwheelevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qwidget.rst.txt +%%DOCSDIR%%/html/_sources/api/qwidgetaction.rst.txt +%%DOCSDIR%%/html/_sources/api/qwidgetitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qwindow.rst.txt +%%DOCSDIR%%/html/_sources/api/qwindowstatechangeevent.rst.txt +%%DOCSDIR%%/html/_sources/api/qwinjumplist.rst.txt +%%DOCSDIR%%/html/_sources/api/qwinjumplistcategory.rst.txt +%%DOCSDIR%%/html/_sources/api/qwinjumplistitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qwintaskbarbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qwintaskbarprogress.rst.txt +%%DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbar.rst.txt +%%DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbutton.rst.txt +%%DOCSDIR%%/html/_sources/api/qwizard.rst.txt +%%DOCSDIR%%/html/_sources/api/qwizardpage.rst.txt +%%DOCSDIR%%/html/_sources/api/qwritelocker.rst.txt +%%DOCSDIR%%/html/_sources/api/qx11info.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlattributes.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlcontenthandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmldeclhandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmldefaulthandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmldtdhandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlentityresolver.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlerrorhandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlformatter.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlinputsource.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlitem.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmllexicalhandler.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmllocator.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlname.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlnamepool.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlnamespacesupport.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlnodemodelindex.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlparseexception.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlquery.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlreader.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlresultitems.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlschema.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlschemavalidator.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlserializer.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlsimplereader.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamattribute.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamattributes.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamentitydeclaration.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamentityresolver.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamnamespacedeclaration.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamnotationdeclaration.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamreader.rst.txt +%%DOCSDIR%%/html/_sources/api/qxmlstreamwriter.rst.txt +%%DOCSDIR%%/html/_sources/api_details/qjsonarray.rst.txt +%%DOCSDIR%%/html/_sources/api_details/qjsonobject.rst.txt +%%DOCSDIR%%/html/_sources/api_details/qjsonvalue.rst.txt +%%DOCSDIR%%/html/_sources/class_reference.rst.txt +%%DOCSDIR%%/html/_sources/dbus.rst.txt +%%DOCSDIR%%/html/_sources/deploy_commercial.rst.txt +%%DOCSDIR%%/html/_sources/deprecations.rst.txt +%%DOCSDIR%%/html/_sources/designer.rst.txt +%%DOCSDIR%%/html/_sources/extension_api.rst.txt +%%DOCSDIR%%/html/_sources/gotchas.rst.txt +%%DOCSDIR%%/html/_sources/i18n.rst.txt +%%DOCSDIR%%/html/_sources/incompatibilities.rst.txt +%%DOCSDIR%%/html/_sources/index.rst.txt +%%DOCSDIR%%/html/_sources/installation.rst.txt +%%DOCSDIR%%/html/_sources/introduction.rst.txt +%%DOCSDIR%%/html/_sources/metaobjects.rst.txt +%%DOCSDIR%%/html/_sources/multiinheritance.rst.txt +%%DOCSDIR%%/html/_sources/opengl.rst.txt +%%DOCSDIR%%/html/_sources/pickle.rst.txt +%%DOCSDIR%%/html/_sources/platforms.rst.txt +%%DOCSDIR%%/html/_sources/pyqt4_differences.rst.txt +%%DOCSDIR%%/html/_sources/pyqt_qsettings.rst.txt +%%DOCSDIR%%/html/_sources/pyqt_qvariant.rst.txt +%%DOCSDIR%%/html/_sources/python_shell.rst.txt +%%DOCSDIR%%/html/_sources/qml.rst.txt +%%DOCSDIR%%/html/_sources/qt_interfaces.rst.txt +%%DOCSDIR%%/html/_sources/qt_properties.rst.txt +%%DOCSDIR%%/html/_sources/resources.rst.txt +%%DOCSDIR%%/html/_sources/signals_slots.rst.txt %%DOCSDIR%%/html/_static/ajax-loader.gif %%DOCSDIR%%/html/_static/basic.css %%DOCSDIR%%/html/_static/classic.css %%DOCSDIR%%/html/_static/comment-bright.png %%DOCSDIR%%/html/_static/comment-close.png %%DOCSDIR%%/html/_static/comment.png %%DOCSDIR%%/html/_static/doctools.js %%DOCSDIR%%/html/_static/down-pressed.png %%DOCSDIR%%/html/_static/down.png %%DOCSDIR%%/html/_static/file.png -%%DOCSDIR%%/html/_static/jquery-1.11.1.js +%%DOCSDIR%%/html/_static/jquery-3.1.0.js %%DOCSDIR%%/html/_static/jquery.js %%DOCSDIR%%/html/_static/logo.png %%DOCSDIR%%/html/_static/logo_tn.ico %%DOCSDIR%%/html/_static/minus.png %%DOCSDIR%%/html/_static/plus.png %%DOCSDIR%%/html/_static/pygments.css %%DOCSDIR%%/html/_static/searchtools.js %%DOCSDIR%%/html/_static/sidebar.js %%DOCSDIR%%/html/_static/underscore-1.3.1.js %%DOCSDIR%%/html/_static/underscore.js %%DOCSDIR%%/html/_static/up-pressed.png %%DOCSDIR%%/html/_static/up.png %%DOCSDIR%%/html/_static/websupport.js %%DOCSDIR%%/html/api/enginio.html %%DOCSDIR%%/html/api/enginioclient.html %%DOCSDIR%%/html/api/enginioclientconnection.html %%DOCSDIR%%/html/api/enginioidentity.html %%DOCSDIR%%/html/api/enginiomodel.html %%DOCSDIR%%/html/api/enginiooauth2authentication.html %%DOCSDIR%%/html/api/enginioreply.html %%DOCSDIR%%/html/api/qabstractanimation.html %%DOCSDIR%%/html/api/qabstractbutton.html %%DOCSDIR%%/html/api/qabstracteventdispatcher.html %%DOCSDIR%%/html/api/qabstractextensionfactory.html %%DOCSDIR%%/html/api/qabstractextensionmanager.html %%DOCSDIR%%/html/api/qabstractformbuilder.html %%DOCSDIR%%/html/api/qabstractgraphicsshapeitem.html %%DOCSDIR%%/html/api/qabstractitemdelegate.html %%DOCSDIR%%/html/api/qabstractitemmodel.html %%DOCSDIR%%/html/api/qabstractitemview.html %%DOCSDIR%%/html/api/qabstractlistmodel.html %%DOCSDIR%%/html/api/qabstractmessagehandler.html %%DOCSDIR%%/html/api/qabstractnativeeventfilter.html %%DOCSDIR%%/html/api/qabstractnetworkcache.html %%DOCSDIR%%/html/api/qabstractprintdialog.html %%DOCSDIR%%/html/api/qabstractproxymodel.html %%DOCSDIR%%/html/api/qabstractscrollarea.html %%DOCSDIR%%/html/api/qabstractslider.html %%DOCSDIR%%/html/api/qabstractsocket.html %%DOCSDIR%%/html/api/qabstractspinbox.html %%DOCSDIR%%/html/api/qabstractstate.html %%DOCSDIR%%/html/api/qabstracttablemodel.html %%DOCSDIR%%/html/api/qabstracttextdocumentlayout.html %%DOCSDIR%%/html/api/qabstracttransition.html %%DOCSDIR%%/html/api/qabstracturiresolver.html %%DOCSDIR%%/html/api/qabstractvideobuffer.html %%DOCSDIR%%/html/api/qabstractvideosurface.html %%DOCSDIR%%/html/api/qabstractxmlnodemodel.html %%DOCSDIR%%/html/api/qabstractxmlreceiver.html %%DOCSDIR%%/html/api/qaccelerometer.html %%DOCSDIR%%/html/api/qaccelerometerfilter.html %%DOCSDIR%%/html/api/qaccelerometerreading.html %%DOCSDIR%%/html/api/qaction.html %%DOCSDIR%%/html/api/qactionevent.html %%DOCSDIR%%/html/api/qactiongroup.html %%DOCSDIR%%/html/api/qaltimeter.html %%DOCSDIR%%/html/api/qaltimeterfilter.html %%DOCSDIR%%/html/api/qaltimeterreading.html %%DOCSDIR%%/html/api/qambientlightfilter.html %%DOCSDIR%%/html/api/qambientlightreading.html %%DOCSDIR%%/html/api/qambientlightsensor.html %%DOCSDIR%%/html/api/qambienttemperaturefilter.html %%DOCSDIR%%/html/api/qambienttemperaturereading.html %%DOCSDIR%%/html/api/qambienttemperaturesensor.html %%DOCSDIR%%/html/api/qanimationgroup.html %%DOCSDIR%%/html/api/qapplication.html %%DOCSDIR%%/html/api/qaudio.html %%DOCSDIR%%/html/api/qaudiobuffer.html %%DOCSDIR%%/html/api/qaudiodecoder.html %%DOCSDIR%%/html/api/qaudiodeviceinfo.html %%DOCSDIR%%/html/api/qaudioencodersettings.html %%DOCSDIR%%/html/api/qaudioformat.html %%DOCSDIR%%/html/api/qaudioinput.html %%DOCSDIR%%/html/api/qaudiooutput.html %%DOCSDIR%%/html/api/qaudioprobe.html %%DOCSDIR%%/html/api/qaudiorecorder.html %%DOCSDIR%%/html/api/qauthenticator.html %%DOCSDIR%%/html/api/qaxbase.html %%DOCSDIR%%/html/api/qaxobject.html %%DOCSDIR%%/html/api/qaxwidget.html %%DOCSDIR%%/html/api/qbackingstore.html %%DOCSDIR%%/html/api/qbasictimer.html %%DOCSDIR%%/html/api/qbitarray.html %%DOCSDIR%%/html/api/qbitmap.html %%DOCSDIR%%/html/api/qbluetoothaddress.html %%DOCSDIR%%/html/api/qbluetoothdevicediscoveryagent.html %%DOCSDIR%%/html/api/qbluetoothdeviceinfo.html %%DOCSDIR%%/html/api/qbluetoothhostinfo.html %%DOCSDIR%%/html/api/qbluetoothlocaldevice.html %%DOCSDIR%%/html/api/qbluetoothserver.html %%DOCSDIR%%/html/api/qbluetoothservicediscoveryagent.html %%DOCSDIR%%/html/api/qbluetoothserviceinfo.html %%DOCSDIR%%/html/api/qbluetoothsocket.html %%DOCSDIR%%/html/api/qbluetoothtransfermanager.html %%DOCSDIR%%/html/api/qbluetoothtransferreply.html %%DOCSDIR%%/html/api/qbluetoothtransferrequest.html %%DOCSDIR%%/html/api/qbluetoothuuid.html %%DOCSDIR%%/html/api/qboxlayout.html %%DOCSDIR%%/html/api/qbrush.html %%DOCSDIR%%/html/api/qbuffer.html %%DOCSDIR%%/html/api/qbuttongroup.html %%DOCSDIR%%/html/api/qbytearray.html %%DOCSDIR%%/html/api/qbytearraymatcher.html %%DOCSDIR%%/html/api/qcalendarwidget.html %%DOCSDIR%%/html/api/qcamera.html %%DOCSDIR%%/html/api/qcameraexposure.html %%DOCSDIR%%/html/api/qcamerafocus.html %%DOCSDIR%%/html/api/qcamerafocuszone.html %%DOCSDIR%%/html/api/qcameraimagecapture.html %%DOCSDIR%%/html/api/qcameraimageprocessing.html %%DOCSDIR%%/html/api/qcamerainfo.html %%DOCSDIR%%/html/api/qcameraviewfinder.html %%DOCSDIR%%/html/api/qcheckbox.html %%DOCSDIR%%/html/api/qchildevent.html %%DOCSDIR%%/html/api/qclipboard.html %%DOCSDIR%%/html/api/qcloseevent.html %%DOCSDIR%%/html/api/qcollator.html %%DOCSDIR%%/html/api/qcollatorsortkey.html %%DOCSDIR%%/html/api/qcolor.html %%DOCSDIR%%/html/api/qcolordialog.html %%DOCSDIR%%/html/api/qcolumnview.html %%DOCSDIR%%/html/api/qcombobox.html %%DOCSDIR%%/html/api/qcommandlineoption.html %%DOCSDIR%%/html/api/qcommandlineparser.html %%DOCSDIR%%/html/api/qcommandlinkbutton.html %%DOCSDIR%%/html/api/qcommonstyle.html %%DOCSDIR%%/html/api/qcompass.html %%DOCSDIR%%/html/api/qcompassfilter.html %%DOCSDIR%%/html/api/qcompassreading.html %%DOCSDIR%%/html/api/qcompleter.html %%DOCSDIR%%/html/api/qconicalgradient.html %%DOCSDIR%%/html/api/qcontextmenuevent.html %%DOCSDIR%%/html/api/qcoreapplication.html %%DOCSDIR%%/html/api/qcryptographichash.html %%DOCSDIR%%/html/api/qcursor.html %%DOCSDIR%%/html/api/qdatastream.html %%DOCSDIR%%/html/api/qdatawidgetmapper.html %%DOCSDIR%%/html/api/qdate.html %%DOCSDIR%%/html/api/qdateedit.html %%DOCSDIR%%/html/api/qdatetime.html %%DOCSDIR%%/html/api/qdatetimeedit.html %%DOCSDIR%%/html/api/qdbus.html %%DOCSDIR%%/html/api/qdbusabstractadaptor.html %%DOCSDIR%%/html/api/qdbusabstractinterface.html %%DOCSDIR%%/html/api/qdbusargument.html %%DOCSDIR%%/html/api/qdbusconnection.html %%DOCSDIR%%/html/api/qdbusconnectioninterface.html %%DOCSDIR%%/html/api/qdbuserror.html %%DOCSDIR%%/html/api/qdbusinterface.html %%DOCSDIR%%/html/api/qdbusmessage.html %%DOCSDIR%%/html/api/qdbusobjectpath.html %%DOCSDIR%%/html/api/qdbuspendingcall.html %%DOCSDIR%%/html/api/qdbuspendingcallwatcher.html %%DOCSDIR%%/html/api/qdbuspendingreply.html %%DOCSDIR%%/html/api/qdbusreply.html %%DOCSDIR%%/html/api/qdbusservicewatcher.html %%DOCSDIR%%/html/api/qdbussignature.html %%DOCSDIR%%/html/api/qdbusunixfiledescriptor.html %%DOCSDIR%%/html/api/qdbusvariant.html %%DOCSDIR%%/html/api/qdesigneractioneditorinterface.html %%DOCSDIR%%/html/api/qdesignercontainerextension.html %%DOCSDIR%%/html/api/qdesignercustomwidgetcollectioninterface.html %%DOCSDIR%%/html/api/qdesignercustomwidgetinterface.html %%DOCSDIR%%/html/api/qdesignerformeditorinterface.html %%DOCSDIR%%/html/api/qdesignerformwindowcursorinterface.html %%DOCSDIR%%/html/api/qdesignerformwindowinterface.html %%DOCSDIR%%/html/api/qdesignerformwindowmanagerinterface.html %%DOCSDIR%%/html/api/qdesignermembersheetextension.html %%DOCSDIR%%/html/api/qdesignerobjectinspectorinterface.html %%DOCSDIR%%/html/api/qdesignerpropertyeditorinterface.html %%DOCSDIR%%/html/api/qdesignerpropertysheetextension.html %%DOCSDIR%%/html/api/qdesignertaskmenuextension.html %%DOCSDIR%%/html/api/qdesignerwidgetboxinterface.html %%DOCSDIR%%/html/api/qdesktopservices.html %%DOCSDIR%%/html/api/qdesktopwidget.html %%DOCSDIR%%/html/api/qdial.html %%DOCSDIR%%/html/api/qdialog.html %%DOCSDIR%%/html/api/qdialogbuttonbox.html %%DOCSDIR%%/html/api/qdir.html %%DOCSDIR%%/html/api/qdiriterator.html %%DOCSDIR%%/html/api/qdirmodel.html %%DOCSDIR%%/html/api/qdistancefilter.html %%DOCSDIR%%/html/api/qdistancereading.html %%DOCSDIR%%/html/api/qdistancesensor.html %%DOCSDIR%%/html/api/qdnsdomainnamerecord.html %%DOCSDIR%%/html/api/qdnshostaddressrecord.html %%DOCSDIR%%/html/api/qdnslookup.html %%DOCSDIR%%/html/api/qdnsmailexchangerecord.html %%DOCSDIR%%/html/api/qdnsservicerecord.html %%DOCSDIR%%/html/api/qdnstextrecord.html %%DOCSDIR%%/html/api/qdockwidget.html %%DOCSDIR%%/html/api/qdomattr.html %%DOCSDIR%%/html/api/qdomcdatasection.html %%DOCSDIR%%/html/api/qdomcharacterdata.html %%DOCSDIR%%/html/api/qdomcomment.html %%DOCSDIR%%/html/api/qdomdocument.html %%DOCSDIR%%/html/api/qdomdocumentfragment.html %%DOCSDIR%%/html/api/qdomdocumenttype.html %%DOCSDIR%%/html/api/qdomelement.html %%DOCSDIR%%/html/api/qdomentity.html %%DOCSDIR%%/html/api/qdomentityreference.html %%DOCSDIR%%/html/api/qdomimplementation.html %%DOCSDIR%%/html/api/qdomnamednodemap.html %%DOCSDIR%%/html/api/qdomnode.html %%DOCSDIR%%/html/api/qdomnodelist.html %%DOCSDIR%%/html/api/qdomnotation.html %%DOCSDIR%%/html/api/qdomprocessinginstruction.html %%DOCSDIR%%/html/api/qdomtext.html %%DOCSDIR%%/html/api/qdoublespinbox.html %%DOCSDIR%%/html/api/qdoublevalidator.html %%DOCSDIR%%/html/api/qdrag.html %%DOCSDIR%%/html/api/qdragenterevent.html %%DOCSDIR%%/html/api/qdragleaveevent.html %%DOCSDIR%%/html/api/qdragmoveevent.html %%DOCSDIR%%/html/api/qdropevent.html %%DOCSDIR%%/html/api/qdynamicpropertychangeevent.html %%DOCSDIR%%/html/api/qeasingcurve.html %%DOCSDIR%%/html/api/qelapsedtimer.html %%DOCSDIR%%/html/api/qenterevent.html %%DOCSDIR%%/html/api/qerrormessage.html %%DOCSDIR%%/html/api/qevent.html %%DOCSDIR%%/html/api/qeventloop.html %%DOCSDIR%%/html/api/qeventlooplocker.html %%DOCSDIR%%/html/api/qeventtransition.html %%DOCSDIR%%/html/api/qexposeevent.html %%DOCSDIR%%/html/api/qextensionfactory.html %%DOCSDIR%%/html/api/qextensionmanager.html %%DOCSDIR%%/html/api/qfile.html %%DOCSDIR%%/html/api/qfiledevice.html %%DOCSDIR%%/html/api/qfiledialog.html %%DOCSDIR%%/html/api/qfileiconprovider.html %%DOCSDIR%%/html/api/qfileinfo.html %%DOCSDIR%%/html/api/qfileopenevent.html %%DOCSDIR%%/html/api/qfileselector.html %%DOCSDIR%%/html/api/qfilesystemmodel.html %%DOCSDIR%%/html/api/qfilesystemwatcher.html %%DOCSDIR%%/html/api/qfinalstate.html %%DOCSDIR%%/html/api/qfocusevent.html %%DOCSDIR%%/html/api/qfocusframe.html %%DOCSDIR%%/html/api/qfont.html %%DOCSDIR%%/html/api/qfontcombobox.html %%DOCSDIR%%/html/api/qfontdatabase.html %%DOCSDIR%%/html/api/qfontdialog.html %%DOCSDIR%%/html/api/qfontinfo.html %%DOCSDIR%%/html/api/qfontmetrics.html %%DOCSDIR%%/html/api/qfontmetricsf.html %%DOCSDIR%%/html/api/qformbuilder.html %%DOCSDIR%%/html/api/qformlayout.html %%DOCSDIR%%/html/api/qframe.html %%DOCSDIR%%/html/api/qgenericargument.html %%DOCSDIR%%/html/api/qgenericreturnargument.html %%DOCSDIR%%/html/api/qgeoaddress.html %%DOCSDIR%%/html/api/qgeoareamonitorinfo.html %%DOCSDIR%%/html/api/qgeoareamonitorsource.html %%DOCSDIR%%/html/api/qgeocircle.html %%DOCSDIR%%/html/api/qgeocodereply.html %%DOCSDIR%%/html/api/qgeocodingmanager.html %%DOCSDIR%%/html/api/qgeocodingmanagerengine.html %%DOCSDIR%%/html/api/qgeocoordinate.html %%DOCSDIR%%/html/api/qgeolocation.html %%DOCSDIR%%/html/api/qgeomaneuver.html %%DOCSDIR%%/html/api/qgeopositioninfo.html %%DOCSDIR%%/html/api/qgeopositioninfosource.html %%DOCSDIR%%/html/api/qgeorectangle.html %%DOCSDIR%%/html/api/qgeoroute.html %%DOCSDIR%%/html/api/qgeoroutereply.html %%DOCSDIR%%/html/api/qgeorouterequest.html %%DOCSDIR%%/html/api/qgeoroutesegment.html %%DOCSDIR%%/html/api/qgeoroutingmanager.html %%DOCSDIR%%/html/api/qgeoroutingmanagerengine.html %%DOCSDIR%%/html/api/qgeosatelliteinfo.html %%DOCSDIR%%/html/api/qgeosatelliteinfosource.html %%DOCSDIR%%/html/api/qgeoserviceprovider.html %%DOCSDIR%%/html/api/qgeoshape.html %%DOCSDIR%%/html/api/qgesture.html %%DOCSDIR%%/html/api/qgestureevent.html %%DOCSDIR%%/html/api/qgesturerecognizer.html %%DOCSDIR%%/html/api/qgl.html %%DOCSDIR%%/html/api/qglcontext.html %%DOCSDIR%%/html/api/qglformat.html %%DOCSDIR%%/html/api/qglwidget.html %%DOCSDIR%%/html/api/qglyphrun.html %%DOCSDIR%%/html/api/qgradient.html %%DOCSDIR%%/html/api/qgraphicsanchor.html %%DOCSDIR%%/html/api/qgraphicsanchorlayout.html %%DOCSDIR%%/html/api/qgraphicsblureffect.html %%DOCSDIR%%/html/api/qgraphicscolorizeeffect.html %%DOCSDIR%%/html/api/qgraphicsdropshadoweffect.html %%DOCSDIR%%/html/api/qgraphicseffect.html %%DOCSDIR%%/html/api/qgraphicsellipseitem.html %%DOCSDIR%%/html/api/qgraphicsgridlayout.html %%DOCSDIR%%/html/api/qgraphicsitem.html %%DOCSDIR%%/html/api/qgraphicsitemgroup.html %%DOCSDIR%%/html/api/qgraphicslayout.html %%DOCSDIR%%/html/api/qgraphicslayoutitem.html %%DOCSDIR%%/html/api/qgraphicslinearlayout.html %%DOCSDIR%%/html/api/qgraphicslineitem.html %%DOCSDIR%%/html/api/qgraphicsobject.html %%DOCSDIR%%/html/api/qgraphicsopacityeffect.html %%DOCSDIR%%/html/api/qgraphicspathitem.html %%DOCSDIR%%/html/api/qgraphicspixmapitem.html %%DOCSDIR%%/html/api/qgraphicspolygonitem.html %%DOCSDIR%%/html/api/qgraphicsproxywidget.html %%DOCSDIR%%/html/api/qgraphicsrectitem.html %%DOCSDIR%%/html/api/qgraphicsrotation.html %%DOCSDIR%%/html/api/qgraphicsscale.html %%DOCSDIR%%/html/api/qgraphicsscene.html %%DOCSDIR%%/html/api/qgraphicsscenecontextmenuevent.html %%DOCSDIR%%/html/api/qgraphicsscenedragdropevent.html %%DOCSDIR%%/html/api/qgraphicssceneevent.html %%DOCSDIR%%/html/api/qgraphicsscenehelpevent.html %%DOCSDIR%%/html/api/qgraphicsscenehoverevent.html %%DOCSDIR%%/html/api/qgraphicsscenemouseevent.html %%DOCSDIR%%/html/api/qgraphicsscenemoveevent.html %%DOCSDIR%%/html/api/qgraphicssceneresizeevent.html %%DOCSDIR%%/html/api/qgraphicsscenewheelevent.html %%DOCSDIR%%/html/api/qgraphicssimpletextitem.html %%DOCSDIR%%/html/api/qgraphicssvgitem.html %%DOCSDIR%%/html/api/qgraphicstextitem.html %%DOCSDIR%%/html/api/qgraphicstransform.html %%DOCSDIR%%/html/api/qgraphicsvideoitem.html %%DOCSDIR%%/html/api/qgraphicsview.html %%DOCSDIR%%/html/api/qgraphicswebview.html %%DOCSDIR%%/html/api/qgraphicswidget.html %%DOCSDIR%%/html/api/qgridlayout.html %%DOCSDIR%%/html/api/qgroupbox.html %%DOCSDIR%%/html/api/qguiapplication.html %%DOCSDIR%%/html/api/qgyroscope.html %%DOCSDIR%%/html/api/qgyroscopefilter.html %%DOCSDIR%%/html/api/qgyroscopereading.html %%DOCSDIR%%/html/api/qhboxlayout.html %%DOCSDIR%%/html/api/qheaderview.html %%DOCSDIR%%/html/api/qhelpcontentitem.html %%DOCSDIR%%/html/api/qhelpcontentmodel.html %%DOCSDIR%%/html/api/qhelpcontentwidget.html %%DOCSDIR%%/html/api/qhelpengine.html %%DOCSDIR%%/html/api/qhelpenginecore.html %%DOCSDIR%%/html/api/qhelpevent.html %%DOCSDIR%%/html/api/qhelpindexmodel.html %%DOCSDIR%%/html/api/qhelpindexwidget.html %%DOCSDIR%%/html/api/qhelpsearchengine.html %%DOCSDIR%%/html/api/qhelpsearchquery.html %%DOCSDIR%%/html/api/qhelpsearchquerywidget.html %%DOCSDIR%%/html/api/qhelpsearchresultwidget.html %%DOCSDIR%%/html/api/qhideevent.html %%DOCSDIR%%/html/api/qhistorystate.html %%DOCSDIR%%/html/api/qholsterfilter.html %%DOCSDIR%%/html/api/qholsterreading.html %%DOCSDIR%%/html/api/qholstersensor.html %%DOCSDIR%%/html/api/qhostaddress.html %%DOCSDIR%%/html/api/qhostinfo.html %%DOCSDIR%%/html/api/qhoverevent.html %%DOCSDIR%%/html/api/qhttpmultipart.html %%DOCSDIR%%/html/api/qhttppart.html %%DOCSDIR%%/html/api/qicon.html %%DOCSDIR%%/html/api/qicondragevent.html %%DOCSDIR%%/html/api/qiconengine.html %%DOCSDIR%%/html/api/qidentityproxymodel.html %%DOCSDIR%%/html/api/qimage.html %%DOCSDIR%%/html/api/qimageencodersettings.html %%DOCSDIR%%/html/api/qimageiohandler.html %%DOCSDIR%%/html/api/qimagereader.html %%DOCSDIR%%/html/api/qimagewriter.html %%DOCSDIR%%/html/api/qinputdialog.html %%DOCSDIR%%/html/api/qinputevent.html %%DOCSDIR%%/html/api/qinputmethod.html %%DOCSDIR%%/html/api/qinputmethodevent.html %%DOCSDIR%%/html/api/qinputmethodqueryevent.html %%DOCSDIR%%/html/api/qintvalidator.html %%DOCSDIR%%/html/api/qiodevice.html %%DOCSDIR%%/html/api/qirproximityfilter.html %%DOCSDIR%%/html/api/qirproximityreading.html %%DOCSDIR%%/html/api/qirproximitysensor.html %%DOCSDIR%%/html/api/qitemdelegate.html %%DOCSDIR%%/html/api/qitemeditorcreatorbase.html %%DOCSDIR%%/html/api/qitemeditorfactory.html %%DOCSDIR%%/html/api/qitemselection.html %%DOCSDIR%%/html/api/qitemselectionmodel.html %%DOCSDIR%%/html/api/qitemselectionrange.html %%DOCSDIR%%/html/api/qjsengine.html %%DOCSDIR%%/html/api/qjsonarray.html %%DOCSDIR%%/html/api/qjsondocument.html %%DOCSDIR%%/html/api/qjsonobject.html %%DOCSDIR%%/html/api/qjsonparseerror.html %%DOCSDIR%%/html/api/qjsonvalue.html %%DOCSDIR%%/html/api/qjsvalue.html %%DOCSDIR%%/html/api/qjsvalueiterator.html %%DOCSDIR%%/html/api/qkeyevent.html %%DOCSDIR%%/html/api/qkeyeventtransition.html %%DOCSDIR%%/html/api/qkeysequence.html %%DOCSDIR%%/html/api/qkeysequenceedit.html %%DOCSDIR%%/html/api/qlabel.html %%DOCSDIR%%/html/api/qlayout.html %%DOCSDIR%%/html/api/qlayoutitem.html %%DOCSDIR%%/html/api/qlcdnumber.html %%DOCSDIR%%/html/api/qlibrary.html %%DOCSDIR%%/html/api/qlibraryinfo.html %%DOCSDIR%%/html/api/qlightfilter.html %%DOCSDIR%%/html/api/qlightreading.html %%DOCSDIR%%/html/api/qlightsensor.html %%DOCSDIR%%/html/api/qline.html %%DOCSDIR%%/html/api/qlineargradient.html %%DOCSDIR%%/html/api/qlineedit.html %%DOCSDIR%%/html/api/qlinef.html %%DOCSDIR%%/html/api/qlistview.html %%DOCSDIR%%/html/api/qlistwidget.html %%DOCSDIR%%/html/api/qlistwidgetitem.html %%DOCSDIR%%/html/api/qlocale.html %%DOCSDIR%%/html/api/qlocalserver.html %%DOCSDIR%%/html/api/qlocalsocket.html %%DOCSDIR%%/html/api/qlocation.html %%DOCSDIR%%/html/api/qlockfile.html +%%DOCSDIR%%/html/api/qlowenergyadvertisingdata.html +%%DOCSDIR%%/html/api/qlowenergyadvertisingparameters.html %%DOCSDIR%%/html/api/qlowenergycharacteristic.html +%%DOCSDIR%%/html/api/qlowenergycharacteristicdata.html +%%DOCSDIR%%/html/api/qlowenergyconnectionparameters.html %%DOCSDIR%%/html/api/qlowenergycontroller.html %%DOCSDIR%%/html/api/qlowenergydescriptor.html +%%DOCSDIR%%/html/api/qlowenergydescriptordata.html %%DOCSDIR%%/html/api/qlowenergyservice.html +%%DOCSDIR%%/html/api/qlowenergyservicedata.html %%DOCSDIR%%/html/api/qmaccocoaviewcontainer.html %%DOCSDIR%%/html/api/qmacpasteboardmime.html %%DOCSDIR%%/html/api/qmactoolbar.html %%DOCSDIR%%/html/api/qmactoolbaritem.html %%DOCSDIR%%/html/api/qmagnetometer.html %%DOCSDIR%%/html/api/qmagnetometerfilter.html %%DOCSDIR%%/html/api/qmagnetometerreading.html %%DOCSDIR%%/html/api/qmainwindow.html %%DOCSDIR%%/html/api/qmargins.html %%DOCSDIR%%/html/api/qmarginsf.html %%DOCSDIR%%/html/api/qmaskgenerator.html %%DOCSDIR%%/html/api/qmatrix2x2.html %%DOCSDIR%%/html/api/qmatrix2x3.html %%DOCSDIR%%/html/api/qmatrix2x4.html %%DOCSDIR%%/html/api/qmatrix3x2.html %%DOCSDIR%%/html/api/qmatrix3x3.html %%DOCSDIR%%/html/api/qmatrix3x4.html %%DOCSDIR%%/html/api/qmatrix4x2.html %%DOCSDIR%%/html/api/qmatrix4x3.html %%DOCSDIR%%/html/api/qmatrix4x4.html %%DOCSDIR%%/html/api/qmdiarea.html %%DOCSDIR%%/html/api/qmdisubwindow.html %%DOCSDIR%%/html/api/qmediabindableinterface.html %%DOCSDIR%%/html/api/qmediacontent.html %%DOCSDIR%%/html/api/qmediacontrol.html %%DOCSDIR%%/html/api/qmediametadata.html %%DOCSDIR%%/html/api/qmediaobject.html %%DOCSDIR%%/html/api/qmediaplayer.html %%DOCSDIR%%/html/api/qmediaplaylist.html %%DOCSDIR%%/html/api/qmediarecorder.html %%DOCSDIR%%/html/api/qmediaresource.html %%DOCSDIR%%/html/api/qmediaservice.html %%DOCSDIR%%/html/api/qmediatimeinterval.html %%DOCSDIR%%/html/api/qmediatimerange.html %%DOCSDIR%%/html/api/qmenu.html %%DOCSDIR%%/html/api/qmenubar.html %%DOCSDIR%%/html/api/qmessageauthenticationcode.html %%DOCSDIR%%/html/api/qmessagebox.html %%DOCSDIR%%/html/api/qmessagelogcontext.html %%DOCSDIR%%/html/api/qmessagelogger.html %%DOCSDIR%%/html/api/qmetaclassinfo.html %%DOCSDIR%%/html/api/qmetaenum.html %%DOCSDIR%%/html/api/qmetamethod.html %%DOCSDIR%%/html/api/qmetaobject.html %%DOCSDIR%%/html/api/qmetaproperty.html %%DOCSDIR%%/html/api/qmetatype.html %%DOCSDIR%%/html/api/qmimedata.html %%DOCSDIR%%/html/api/qmimedatabase.html %%DOCSDIR%%/html/api/qmimetype.html %%DOCSDIR%%/html/api/qmodelindex.html %%DOCSDIR%%/html/api/qmouseevent.html %%DOCSDIR%%/html/api/qmouseeventtransition.html %%DOCSDIR%%/html/api/qmoveevent.html %%DOCSDIR%%/html/api/qmovie.html %%DOCSDIR%%/html/api/qmultimedia.html %%DOCSDIR%%/html/api/qmutex.html %%DOCSDIR%%/html/api/qmutexlocker.html %%DOCSDIR%%/html/api/qndeffilter.html %%DOCSDIR%%/html/api/qndefmessage.html %%DOCSDIR%%/html/api/qndefnfciconrecord.html %%DOCSDIR%%/html/api/qndefnfcsmartposterrecord.html %%DOCSDIR%%/html/api/qndefnfctextrecord.html %%DOCSDIR%%/html/api/qndefnfcurirecord.html %%DOCSDIR%%/html/api/qndefrecord.html %%DOCSDIR%%/html/api/qnearfieldmanager.html %%DOCSDIR%%/html/api/qnearfieldsharemanager.html %%DOCSDIR%%/html/api/qnearfieldsharetarget.html %%DOCSDIR%%/html/api/qnearfieldtarget.html %%DOCSDIR%%/html/api/qnetworkaccessmanager.html %%DOCSDIR%%/html/api/qnetworkaddressentry.html %%DOCSDIR%%/html/api/qnetworkcachemetadata.html %%DOCSDIR%%/html/api/qnetworkconfiguration.html %%DOCSDIR%%/html/api/qnetworkconfigurationmanager.html %%DOCSDIR%%/html/api/qnetworkcookie.html %%DOCSDIR%%/html/api/qnetworkcookiejar.html %%DOCSDIR%%/html/api/qnetworkdiskcache.html %%DOCSDIR%%/html/api/qnetworkinterface.html %%DOCSDIR%%/html/api/qnetworkproxy.html %%DOCSDIR%%/html/api/qnetworkproxyfactory.html %%DOCSDIR%%/html/api/qnetworkproxyquery.html %%DOCSDIR%%/html/api/qnetworkreply.html %%DOCSDIR%%/html/api/qnetworkrequest.html %%DOCSDIR%%/html/api/qnetworksession.html %%DOCSDIR%%/html/api/qnmeapositioninfosource.html %%DOCSDIR%%/html/api/qobject.html %%DOCSDIR%%/html/api/qobjectcleanuphandler.html %%DOCSDIR%%/html/api/qoffscreensurface.html %%DOCSDIR%%/html/api/qopenglbuffer.html %%DOCSDIR%%/html/api/qopenglcontext.html %%DOCSDIR%%/html/api/qopenglcontextgroup.html %%DOCSDIR%%/html/api/qopengldebuglogger.html %%DOCSDIR%%/html/api/qopengldebugmessage.html %%DOCSDIR%%/html/api/qopenglframebufferobject.html %%DOCSDIR%%/html/api/qopenglframebufferobjectformat.html %%DOCSDIR%%/html/api/qopenglpaintdevice.html %%DOCSDIR%%/html/api/qopenglshader.html %%DOCSDIR%%/html/api/qopenglshaderprogram.html %%DOCSDIR%%/html/api/qopengltexture.html %%DOCSDIR%%/html/api/qopengltimemonitor.html %%DOCSDIR%%/html/api/qopengltimerquery.html +%%DOCSDIR%%/html/api/qopenglversionprofile.html %%DOCSDIR%%/html/api/qopenglvertexarrayobject.html %%DOCSDIR%%/html/api/qopenglwidget.html %%DOCSDIR%%/html/api/qopenglwindow.html %%DOCSDIR%%/html/api/qorientationfilter.html %%DOCSDIR%%/html/api/qorientationreading.html %%DOCSDIR%%/html/api/qorientationsensor.html %%DOCSDIR%%/html/api/qpagedpaintdevice.html %%DOCSDIR%%/html/api/qpagelayout.html %%DOCSDIR%%/html/api/qpagesetupdialog.html %%DOCSDIR%%/html/api/qpagesize.html %%DOCSDIR%%/html/api/qpaintdevice.html %%DOCSDIR%%/html/api/qpaintdevicewindow.html %%DOCSDIR%%/html/api/qpaintengine.html %%DOCSDIR%%/html/api/qpaintenginestate.html %%DOCSDIR%%/html/api/qpainter.html %%DOCSDIR%%/html/api/qpainterpath.html %%DOCSDIR%%/html/api/qpainterpathstroker.html %%DOCSDIR%%/html/api/qpaintevent.html %%DOCSDIR%%/html/api/qpalette.html %%DOCSDIR%%/html/api/qpangesture.html %%DOCSDIR%%/html/api/qparallelanimationgroup.html %%DOCSDIR%%/html/api/qpauseanimation.html %%DOCSDIR%%/html/api/qpdfwriter.html %%DOCSDIR%%/html/api/qpen.html %%DOCSDIR%%/html/api/qpersistentmodelindex.html %%DOCSDIR%%/html/api/qpicture.html %%DOCSDIR%%/html/api/qpictureio.html %%DOCSDIR%%/html/api/qpinchgesture.html %%DOCSDIR%%/html/api/qpixelformat.html %%DOCSDIR%%/html/api/qpixmap.html %%DOCSDIR%%/html/api/qpixmapcache.html %%DOCSDIR%%/html/api/qplace.html %%DOCSDIR%%/html/api/qplaceattribute.html %%DOCSDIR%%/html/api/qplacecategory.html %%DOCSDIR%%/html/api/qplacecontactdetail.html %%DOCSDIR%%/html/api/qplacecontent.html %%DOCSDIR%%/html/api/qplacecontentreply.html %%DOCSDIR%%/html/api/qplacecontentrequest.html %%DOCSDIR%%/html/api/qplacedetailsreply.html %%DOCSDIR%%/html/api/qplaceeditorial.html %%DOCSDIR%%/html/api/qplaceicon.html %%DOCSDIR%%/html/api/qplaceidreply.html %%DOCSDIR%%/html/api/qplaceimage.html %%DOCSDIR%%/html/api/qplacemanager.html %%DOCSDIR%%/html/api/qplacemanagerengine.html %%DOCSDIR%%/html/api/qplacematchreply.html %%DOCSDIR%%/html/api/qplacematchrequest.html %%DOCSDIR%%/html/api/qplaceproposedsearchresult.html %%DOCSDIR%%/html/api/qplaceratings.html %%DOCSDIR%%/html/api/qplacereply.html %%DOCSDIR%%/html/api/qplaceresult.html %%DOCSDIR%%/html/api/qplacereview.html %%DOCSDIR%%/html/api/qplacesearchreply.html %%DOCSDIR%%/html/api/qplacesearchrequest.html %%DOCSDIR%%/html/api/qplacesearchresult.html %%DOCSDIR%%/html/api/qplacesearchsuggestionreply.html %%DOCSDIR%%/html/api/qplacesupplier.html %%DOCSDIR%%/html/api/qplaceuser.html %%DOCSDIR%%/html/api/qplaintextdocumentlayout.html %%DOCSDIR%%/html/api/qplaintextedit.html %%DOCSDIR%%/html/api/qpluginloader.html %%DOCSDIR%%/html/api/qpoint.html %%DOCSDIR%%/html/api/qpointf.html %%DOCSDIR%%/html/api/qpolygon.html %%DOCSDIR%%/html/api/qpolygonf.html %%DOCSDIR%%/html/api/qpressurefilter.html %%DOCSDIR%%/html/api/qpressurereading.html %%DOCSDIR%%/html/api/qpressuresensor.html %%DOCSDIR%%/html/api/qprintdialog.html %%DOCSDIR%%/html/api/qprintengine.html %%DOCSDIR%%/html/api/qprinter.html %%DOCSDIR%%/html/api/qprinterinfo.html %%DOCSDIR%%/html/api/qprintpreviewdialog.html %%DOCSDIR%%/html/api/qprintpreviewwidget.html %%DOCSDIR%%/html/api/qprocess.html %%DOCSDIR%%/html/api/qprocessenvironment.html %%DOCSDIR%%/html/api/qprogressbar.html %%DOCSDIR%%/html/api/qprogressdialog.html %%DOCSDIR%%/html/api/qpropertyanimation.html %%DOCSDIR%%/html/api/qproximityfilter.html %%DOCSDIR%%/html/api/qproximityreading.html %%DOCSDIR%%/html/api/qproximitysensor.html %%DOCSDIR%%/html/api/qproxystyle.html %%DOCSDIR%%/html/api/qpushbutton.html %%DOCSDIR%%/html/api/qqmlabstracturlinterceptor.html %%DOCSDIR%%/html/api/qqmlapplicationengine.html %%DOCSDIR%%/html/api/qqmlcomponent.html %%DOCSDIR%%/html/api/qqmlcontext.html %%DOCSDIR%%/html/api/qqmlengine.html %%DOCSDIR%%/html/api/qqmlerror.html %%DOCSDIR%%/html/api/qqmlexpression.html %%DOCSDIR%%/html/api/qqmlextensionplugin.html %%DOCSDIR%%/html/api/qqmlfileselector.html %%DOCSDIR%%/html/api/qqmlimageproviderbase.html %%DOCSDIR%%/html/api/qqmlincubator.html %%DOCSDIR%%/html/api/qqmlincubatorcontrol.html %%DOCSDIR%%/html/api/qqmllistproperty.html %%DOCSDIR%%/html/api/qqmllistreference.html %%DOCSDIR%%/html/api/qqmlndefrecord.html %%DOCSDIR%%/html/api/qqmlnetworkaccessmanagerfactory.html %%DOCSDIR%%/html/api/qqmlparserstatus.html %%DOCSDIR%%/html/api/qqmlproperty.html %%DOCSDIR%%/html/api/qqmlpropertymap.html %%DOCSDIR%%/html/api/qqmlpropertyvaluesource.html %%DOCSDIR%%/html/api/qqmlscriptstring.html %%DOCSDIR%%/html/api/qquaternion.html %%DOCSDIR%%/html/api/qquickasyncimageprovider.html %%DOCSDIR%%/html/api/qquickframebufferobject.html %%DOCSDIR%%/html/api/qquickimageprovider.html %%DOCSDIR%%/html/api/qquickimageresponse.html %%DOCSDIR%%/html/api/qquickitem.html %%DOCSDIR%%/html/api/qquickitemgrabresult.html %%DOCSDIR%%/html/api/qquickpainteditem.html %%DOCSDIR%%/html/api/qquickrendercontrol.html %%DOCSDIR%%/html/api/qquicktextdocument.html %%DOCSDIR%%/html/api/qquicktexturefactory.html %%DOCSDIR%%/html/api/qquickview.html +%%DOCSDIR%%/html/api/qquickwebengineprofile.html %%DOCSDIR%%/html/api/qquickwidget.html %%DOCSDIR%%/html/api/qquickwindow.html %%DOCSDIR%%/html/api/qradialgradient.html %%DOCSDIR%%/html/api/qradiobutton.html %%DOCSDIR%%/html/api/qradiodata.html %%DOCSDIR%%/html/api/qradiotuner.html %%DOCSDIR%%/html/api/qrasterwindow.html %%DOCSDIR%%/html/api/qrawfont.html %%DOCSDIR%%/html/api/qreadlocker.html %%DOCSDIR%%/html/api/qreadwritelock.html %%DOCSDIR%%/html/api/qrect.html %%DOCSDIR%%/html/api/qrectf.html %%DOCSDIR%%/html/api/qregexp.html %%DOCSDIR%%/html/api/qregexpvalidator.html %%DOCSDIR%%/html/api/qregion.html %%DOCSDIR%%/html/api/qregularexpression.html %%DOCSDIR%%/html/api/qregularexpressionmatch.html %%DOCSDIR%%/html/api/qregularexpressionmatchiterator.html %%DOCSDIR%%/html/api/qregularexpressionvalidator.html %%DOCSDIR%%/html/api/qresizeevent.html %%DOCSDIR%%/html/api/qresource.html %%DOCSDIR%%/html/api/qrgba64.html %%DOCSDIR%%/html/api/qrotationfilter.html %%DOCSDIR%%/html/api/qrotationreading.html %%DOCSDIR%%/html/api/qrotationsensor.html %%DOCSDIR%%/html/api/qrubberband.html %%DOCSDIR%%/html/api/qrunnable.html %%DOCSDIR%%/html/api/qsavefile.html %%DOCSDIR%%/html/api/qscreen.html %%DOCSDIR%%/html/api/qscrollarea.html %%DOCSDIR%%/html/api/qscrollbar.html %%DOCSDIR%%/html/api/qscroller.html %%DOCSDIR%%/html/api/qscrollerproperties.html %%DOCSDIR%%/html/api/qscrollevent.html %%DOCSDIR%%/html/api/qscrollprepareevent.html %%DOCSDIR%%/html/api/qsemaphore.html %%DOCSDIR%%/html/api/qsensor.html %%DOCSDIR%%/html/api/qsensorfilter.html %%DOCSDIR%%/html/api/qsensorreading.html %%DOCSDIR%%/html/api/qsequentialanimationgroup.html %%DOCSDIR%%/html/api/qserialport.html %%DOCSDIR%%/html/api/qserialportinfo.html %%DOCSDIR%%/html/api/qsessionmanager.html %%DOCSDIR%%/html/api/qsettings.html %%DOCSDIR%%/html/api/qsgabstractrenderer.html %%DOCSDIR%%/html/api/qsgbasicgeometrynode.html %%DOCSDIR%%/html/api/qsgclipnode.html %%DOCSDIR%%/html/api/qsgdynamictexture.html %%DOCSDIR%%/html/api/qsgengine.html %%DOCSDIR%%/html/api/qsgflatcolormaterial.html %%DOCSDIR%%/html/api/qsggeometry.html %%DOCSDIR%%/html/api/qsggeometrynode.html %%DOCSDIR%%/html/api/qsgmaterial.html %%DOCSDIR%%/html/api/qsgmaterialshader.html %%DOCSDIR%%/html/api/qsgmaterialtype.html %%DOCSDIR%%/html/api/qsgnode.html %%DOCSDIR%%/html/api/qsgopacitynode.html %%DOCSDIR%%/html/api/qsgopaquetexturematerial.html %%DOCSDIR%%/html/api/qsgsimplerectnode.html %%DOCSDIR%%/html/api/qsgsimpletexturenode.html %%DOCSDIR%%/html/api/qsgtexture.html %%DOCSDIR%%/html/api/qsgtexturematerial.html %%DOCSDIR%%/html/api/qsgtextureprovider.html %%DOCSDIR%%/html/api/qsgtransformnode.html %%DOCSDIR%%/html/api/qsgvertexcolormaterial.html %%DOCSDIR%%/html/api/qsharedmemory.html %%DOCSDIR%%/html/api/qshortcut.html %%DOCSDIR%%/html/api/qshortcutevent.html %%DOCSDIR%%/html/api/qshowevent.html %%DOCSDIR%%/html/api/qsignalblocker.html %%DOCSDIR%%/html/api/qsignalmapper.html %%DOCSDIR%%/html/api/qsignalspy.html %%DOCSDIR%%/html/api/qsignaltransition.html %%DOCSDIR%%/html/api/qsimplexmlnodemodel.html %%DOCSDIR%%/html/api/qsize.html %%DOCSDIR%%/html/api/qsizef.html %%DOCSDIR%%/html/api/qsizegrip.html %%DOCSDIR%%/html/api/qsizepolicy.html %%DOCSDIR%%/html/api/qslider.html %%DOCSDIR%%/html/api/qsocketnotifier.html %%DOCSDIR%%/html/api/qsortfilterproxymodel.html %%DOCSDIR%%/html/api/qsound.html %%DOCSDIR%%/html/api/qsoundeffect.html %%DOCSDIR%%/html/api/qsourcelocation.html %%DOCSDIR%%/html/api/qspaceritem.html %%DOCSDIR%%/html/api/qspinbox.html %%DOCSDIR%%/html/api/qsplashscreen.html %%DOCSDIR%%/html/api/qsplitter.html %%DOCSDIR%%/html/api/qsplitterhandle.html %%DOCSDIR%%/html/api/qsql.html %%DOCSDIR%%/html/api/qsqldatabase.html %%DOCSDIR%%/html/api/qsqldriver.html %%DOCSDIR%%/html/api/qsqldrivercreatorbase.html %%DOCSDIR%%/html/api/qsqlerror.html %%DOCSDIR%%/html/api/qsqlfield.html %%DOCSDIR%%/html/api/qsqlindex.html %%DOCSDIR%%/html/api/qsqlquery.html %%DOCSDIR%%/html/api/qsqlquerymodel.html %%DOCSDIR%%/html/api/qsqlrecord.html %%DOCSDIR%%/html/api/qsqlrelation.html %%DOCSDIR%%/html/api/qsqlrelationaldelegate.html %%DOCSDIR%%/html/api/qsqlrelationaltablemodel.html %%DOCSDIR%%/html/api/qsqlresult.html %%DOCSDIR%%/html/api/qsqltablemodel.html %%DOCSDIR%%/html/api/qssl.html %%DOCSDIR%%/html/api/qsslcertificate.html %%DOCSDIR%%/html/api/qsslcertificateextension.html %%DOCSDIR%%/html/api/qsslcipher.html %%DOCSDIR%%/html/api/qsslconfiguration.html %%DOCSDIR%%/html/api/qsslerror.html %%DOCSDIR%%/html/api/qsslkey.html %%DOCSDIR%%/html/api/qsslsocket.html %%DOCSDIR%%/html/api/qstackedlayout.html %%DOCSDIR%%/html/api/qstackedwidget.html %%DOCSDIR%%/html/api/qstandarditem.html %%DOCSDIR%%/html/api/qstandarditemmodel.html %%DOCSDIR%%/html/api/qstandardpaths.html %%DOCSDIR%%/html/api/qstate.html %%DOCSDIR%%/html/api/qstatemachine.html %%DOCSDIR%%/html/api/qstatictext.html %%DOCSDIR%%/html/api/qstatusbar.html %%DOCSDIR%%/html/api/qstatustipevent.html %%DOCSDIR%%/html/api/qstorageinfo.html %%DOCSDIR%%/html/api/qstringlistmodel.html %%DOCSDIR%%/html/api/qstyle.html %%DOCSDIR%%/html/api/qstyleditemdelegate.html %%DOCSDIR%%/html/api/qstylefactory.html %%DOCSDIR%%/html/api/qstylehintreturn.html %%DOCSDIR%%/html/api/qstylehintreturnmask.html %%DOCSDIR%%/html/api/qstylehintreturnvariant.html %%DOCSDIR%%/html/api/qstylehints.html %%DOCSDIR%%/html/api/qstyleoption.html %%DOCSDIR%%/html/api/qstyleoptionbutton.html %%DOCSDIR%%/html/api/qstyleoptioncombobox.html %%DOCSDIR%%/html/api/qstyleoptioncomplex.html %%DOCSDIR%%/html/api/qstyleoptiondockwidget.html %%DOCSDIR%%/html/api/qstyleoptionfocusrect.html %%DOCSDIR%%/html/api/qstyleoptionframe.html %%DOCSDIR%%/html/api/qstyleoptiongraphicsitem.html %%DOCSDIR%%/html/api/qstyleoptiongroupbox.html %%DOCSDIR%%/html/api/qstyleoptionheader.html %%DOCSDIR%%/html/api/qstyleoptionmenuitem.html %%DOCSDIR%%/html/api/qstyleoptionprogressbar.html %%DOCSDIR%%/html/api/qstyleoptionrubberband.html %%DOCSDIR%%/html/api/qstyleoptionsizegrip.html %%DOCSDIR%%/html/api/qstyleoptionslider.html %%DOCSDIR%%/html/api/qstyleoptionspinbox.html %%DOCSDIR%%/html/api/qstyleoptiontab.html %%DOCSDIR%%/html/api/qstyleoptiontabbarbase.html %%DOCSDIR%%/html/api/qstyleoptiontabwidgetframe.html %%DOCSDIR%%/html/api/qstyleoptiontitlebar.html %%DOCSDIR%%/html/api/qstyleoptiontoolbar.html %%DOCSDIR%%/html/api/qstyleoptiontoolbox.html %%DOCSDIR%%/html/api/qstyleoptiontoolbutton.html %%DOCSDIR%%/html/api/qstyleoptionviewitem.html %%DOCSDIR%%/html/api/qstylepainter.html %%DOCSDIR%%/html/api/qsurface.html %%DOCSDIR%%/html/api/qsurfaceformat.html %%DOCSDIR%%/html/api/qsvggenerator.html %%DOCSDIR%%/html/api/qsvgrenderer.html %%DOCSDIR%%/html/api/qsvgwidget.html %%DOCSDIR%%/html/api/qswipegesture.html %%DOCSDIR%%/html/api/qsyntaxhighlighter.html %%DOCSDIR%%/html/api/qsysinfo.html %%DOCSDIR%%/html/api/qsystemsemaphore.html %%DOCSDIR%%/html/api/qsystemtrayicon.html %%DOCSDIR%%/html/api/qt.html %%DOCSDIR%%/html/api/qtabbar.html %%DOCSDIR%%/html/api/qtabletevent.html %%DOCSDIR%%/html/api/qtableview.html %%DOCSDIR%%/html/api/qtablewidget.html %%DOCSDIR%%/html/api/qtablewidgetitem.html %%DOCSDIR%%/html/api/qtablewidgetselectionrange.html %%DOCSDIR%%/html/api/qtabwidget.html %%DOCSDIR%%/html/api/qtapandholdgesture.html %%DOCSDIR%%/html/api/qtapfilter.html %%DOCSDIR%%/html/api/qtapgesture.html %%DOCSDIR%%/html/api/qtapreading.html %%DOCSDIR%%/html/api/qtapsensor.html %%DOCSDIR%%/html/api/qtcpserver.html %%DOCSDIR%%/html/api/qtcpsocket.html %%DOCSDIR%%/html/api/qtemporarydir.html %%DOCSDIR%%/html/api/qtemporaryfile.html %%DOCSDIR%%/html/api/qtest.html %%DOCSDIR%%/html/api/qtextblock.html %%DOCSDIR%%/html/api/qtextblockformat.html %%DOCSDIR%%/html/api/qtextblockgroup.html %%DOCSDIR%%/html/api/qtextblockuserdata.html %%DOCSDIR%%/html/api/qtextboundaryfinder.html %%DOCSDIR%%/html/api/qtextbrowser.html %%DOCSDIR%%/html/api/qtextcharformat.html %%DOCSDIR%%/html/api/qtextcodec.html %%DOCSDIR%%/html/api/qtextcursor.html %%DOCSDIR%%/html/api/qtextdecoder.html %%DOCSDIR%%/html/api/qtextdocument.html %%DOCSDIR%%/html/api/qtextdocumentfragment.html %%DOCSDIR%%/html/api/qtextdocumentwriter.html %%DOCSDIR%%/html/api/qtextedit.html %%DOCSDIR%%/html/api/qtextencoder.html %%DOCSDIR%%/html/api/qtextformat.html %%DOCSDIR%%/html/api/qtextfragment.html %%DOCSDIR%%/html/api/qtextframe.html %%DOCSDIR%%/html/api/qtextframeformat.html %%DOCSDIR%%/html/api/qtextimageformat.html %%DOCSDIR%%/html/api/qtextinlineobject.html %%DOCSDIR%%/html/api/qtextitem.html %%DOCSDIR%%/html/api/qtextlayout.html %%DOCSDIR%%/html/api/qtextlength.html %%DOCSDIR%%/html/api/qtextline.html %%DOCSDIR%%/html/api/qtextlist.html %%DOCSDIR%%/html/api/qtextlistformat.html %%DOCSDIR%%/html/api/qtextobject.html %%DOCSDIR%%/html/api/qtextobjectinterface.html %%DOCSDIR%%/html/api/qtextoption.html %%DOCSDIR%%/html/api/qtextstream.html %%DOCSDIR%%/html/api/qtextstreammanipulator.html %%DOCSDIR%%/html/api/qtexttable.html %%DOCSDIR%%/html/api/qtexttablecell.html %%DOCSDIR%%/html/api/qtexttablecellformat.html %%DOCSDIR%%/html/api/qtexttableformat.html %%DOCSDIR%%/html/api/qthread.html %%DOCSDIR%%/html/api/qthreadpool.html %%DOCSDIR%%/html/api/qtiltfilter.html %%DOCSDIR%%/html/api/qtiltreading.html %%DOCSDIR%%/html/api/qtiltsensor.html %%DOCSDIR%%/html/api/qtime.html %%DOCSDIR%%/html/api/qtimeedit.html %%DOCSDIR%%/html/api/qtimeline.html %%DOCSDIR%%/html/api/qtimer.html %%DOCSDIR%%/html/api/qtimerevent.html %%DOCSDIR%%/html/api/qtimezone.html %%DOCSDIR%%/html/api/qtoolbar.html %%DOCSDIR%%/html/api/qtoolbox.html %%DOCSDIR%%/html/api/qtoolbutton.html %%DOCSDIR%%/html/api/qtooltip.html %%DOCSDIR%%/html/api/qtouchdevice.html %%DOCSDIR%%/html/api/qtouchevent.html %%DOCSDIR%%/html/api/qtransform.html %%DOCSDIR%%/html/api/qtranslator.html %%DOCSDIR%%/html/api/qtreeview.html %%DOCSDIR%%/html/api/qtreewidget.html %%DOCSDIR%%/html/api/qtreewidgetitem.html %%DOCSDIR%%/html/api/qtreewidgetitemiterator.html %%DOCSDIR%%/html/api/qtwin.html %%DOCSDIR%%/html/api/qudpsocket.html %%DOCSDIR%%/html/api/qundocommand.html %%DOCSDIR%%/html/api/qundogroup.html %%DOCSDIR%%/html/api/qundostack.html %%DOCSDIR%%/html/api/qundoview.html %%DOCSDIR%%/html/api/qurl.html %%DOCSDIR%%/html/api/qurlquery.html %%DOCSDIR%%/html/api/quuid.html %%DOCSDIR%%/html/api/qvalidator.html %%DOCSDIR%%/html/api/qvariant.html %%DOCSDIR%%/html/api/qvariantanimation.html %%DOCSDIR%%/html/api/qvboxlayout.html %%DOCSDIR%%/html/api/qvector2d.html %%DOCSDIR%%/html/api/qvector3d.html %%DOCSDIR%%/html/api/qvector4d.html %%DOCSDIR%%/html/api/qvideoencodersettings.html %%DOCSDIR%%/html/api/qvideoframe.html %%DOCSDIR%%/html/api/qvideoprobe.html %%DOCSDIR%%/html/api/qvideosurfaceformat.html %%DOCSDIR%%/html/api/qvideowidget.html %%DOCSDIR%%/html/api/qwaitcondition.html %%DOCSDIR%%/html/api/qwebchannel.html %%DOCSDIR%%/html/api/qwebchannelabstracttransport.html %%DOCSDIR%%/html/api/qwebdatabase.html %%DOCSDIR%%/html/api/qwebelement.html %%DOCSDIR%%/html/api/qwebelementcollection.html %%DOCSDIR%%/html/api/qwebenginecertificateerror.html +%%DOCSDIR%%/html/api/qwebenginecontextmenudata.html %%DOCSDIR%%/html/api/qwebenginecookiestore.html %%DOCSDIR%%/html/api/qwebenginedownloaditem.html %%DOCSDIR%%/html/api/qwebenginehistory.html %%DOCSDIR%%/html/api/qwebenginehistoryitem.html %%DOCSDIR%%/html/api/qwebenginepage.html %%DOCSDIR%%/html/api/qwebengineprofile.html %%DOCSDIR%%/html/api/qwebenginescript.html %%DOCSDIR%%/html/api/qwebenginescriptcollection.html %%DOCSDIR%%/html/api/qwebenginesettings.html %%DOCSDIR%%/html/api/qwebengineurlrequestinfo.html %%DOCSDIR%%/html/api/qwebengineurlrequestinterceptor.html %%DOCSDIR%%/html/api/qwebengineurlrequestjob.html %%DOCSDIR%%/html/api/qwebengineurlschemehandler.html %%DOCSDIR%%/html/api/qwebengineview.html %%DOCSDIR%%/html/api/qwebframe.html %%DOCSDIR%%/html/api/qwebhistory.html %%DOCSDIR%%/html/api/qwebhistoryinterface.html %%DOCSDIR%%/html/api/qwebhistoryitem.html %%DOCSDIR%%/html/api/qwebhittestresult.html %%DOCSDIR%%/html/api/qwebinspector.html %%DOCSDIR%%/html/api/qwebpage.html %%DOCSDIR%%/html/api/qwebpluginfactory.html %%DOCSDIR%%/html/api/qwebsecurityorigin.html %%DOCSDIR%%/html/api/qwebsettings.html %%DOCSDIR%%/html/api/qwebsocket.html %%DOCSDIR%%/html/api/qwebsocketcorsauthenticator.html %%DOCSDIR%%/html/api/qwebsocketprotocol.html %%DOCSDIR%%/html/api/qwebsocketserver.html %%DOCSDIR%%/html/api/qwebview.html %%DOCSDIR%%/html/api/qwhatsthis.html %%DOCSDIR%%/html/api/qwhatsthisclickedevent.html %%DOCSDIR%%/html/api/qwheelevent.html %%DOCSDIR%%/html/api/qwidget.html %%DOCSDIR%%/html/api/qwidgetaction.html %%DOCSDIR%%/html/api/qwidgetitem.html %%DOCSDIR%%/html/api/qwindow.html %%DOCSDIR%%/html/api/qwindowstatechangeevent.html %%DOCSDIR%%/html/api/qwinjumplist.html %%DOCSDIR%%/html/api/qwinjumplistcategory.html %%DOCSDIR%%/html/api/qwinjumplistitem.html %%DOCSDIR%%/html/api/qwintaskbarbutton.html %%DOCSDIR%%/html/api/qwintaskbarprogress.html %%DOCSDIR%%/html/api/qwinthumbnailtoolbar.html %%DOCSDIR%%/html/api/qwinthumbnailtoolbutton.html %%DOCSDIR%%/html/api/qwizard.html %%DOCSDIR%%/html/api/qwizardpage.html %%DOCSDIR%%/html/api/qwritelocker.html %%DOCSDIR%%/html/api/qx11info.html %%DOCSDIR%%/html/api/qxmlattributes.html %%DOCSDIR%%/html/api/qxmlcontenthandler.html %%DOCSDIR%%/html/api/qxmldeclhandler.html %%DOCSDIR%%/html/api/qxmldefaulthandler.html %%DOCSDIR%%/html/api/qxmldtdhandler.html %%DOCSDIR%%/html/api/qxmlentityresolver.html %%DOCSDIR%%/html/api/qxmlerrorhandler.html %%DOCSDIR%%/html/api/qxmlformatter.html %%DOCSDIR%%/html/api/qxmlinputsource.html %%DOCSDIR%%/html/api/qxmlitem.html %%DOCSDIR%%/html/api/qxmllexicalhandler.html %%DOCSDIR%%/html/api/qxmllocator.html %%DOCSDIR%%/html/api/qxmlname.html %%DOCSDIR%%/html/api/qxmlnamepool.html %%DOCSDIR%%/html/api/qxmlnamespacesupport.html %%DOCSDIR%%/html/api/qxmlnodemodelindex.html %%DOCSDIR%%/html/api/qxmlparseexception.html %%DOCSDIR%%/html/api/qxmlquery.html %%DOCSDIR%%/html/api/qxmlreader.html %%DOCSDIR%%/html/api/qxmlresultitems.html %%DOCSDIR%%/html/api/qxmlschema.html %%DOCSDIR%%/html/api/qxmlschemavalidator.html %%DOCSDIR%%/html/api/qxmlserializer.html %%DOCSDIR%%/html/api/qxmlsimplereader.html %%DOCSDIR%%/html/api/qxmlstreamattribute.html %%DOCSDIR%%/html/api/qxmlstreamattributes.html %%DOCSDIR%%/html/api/qxmlstreamentitydeclaration.html %%DOCSDIR%%/html/api/qxmlstreamentityresolver.html %%DOCSDIR%%/html/api/qxmlstreamnamespacedeclaration.html %%DOCSDIR%%/html/api/qxmlstreamnotationdeclaration.html %%DOCSDIR%%/html/api/qxmlstreamreader.html %%DOCSDIR%%/html/api/qxmlstreamwriter.html +%%DOCSDIR%%/html/api_details/qjsonarray.html +%%DOCSDIR%%/html/api_details/qjsonobject.html +%%DOCSDIR%%/html/api_details/qjsonvalue.html %%DOCSDIR%%/html/class_reference.html %%DOCSDIR%%/html/dbus.html %%DOCSDIR%%/html/deploy_commercial.html %%DOCSDIR%%/html/deprecations.html %%DOCSDIR%%/html/designer.html %%DOCSDIR%%/html/extension_api.html %%DOCSDIR%%/html/genindex.html %%DOCSDIR%%/html/gotchas.html %%DOCSDIR%%/html/i18n.html %%DOCSDIR%%/html/incompatibilities.html %%DOCSDIR%%/html/index.html %%DOCSDIR%%/html/installation.html %%DOCSDIR%%/html/introduction.html %%DOCSDIR%%/html/metaobjects.html %%DOCSDIR%%/html/multiinheritance.html %%DOCSDIR%%/html/objects.inv %%DOCSDIR%%/html/opengl.html %%DOCSDIR%%/html/pickle.html %%DOCSDIR%%/html/platforms.html %%DOCSDIR%%/html/py-modindex.html %%DOCSDIR%%/html/pyqt4_differences.html %%DOCSDIR%%/html/pyqt_qsettings.html %%DOCSDIR%%/html/pyqt_qvariant.html %%DOCSDIR%%/html/python_shell.html %%DOCSDIR%%/html/qml.html %%DOCSDIR%%/html/qt_interfaces.html %%DOCSDIR%%/html/qt_properties.html %%DOCSDIR%%/html/resources.html %%DOCSDIR%%/html/search.html %%DOCSDIR%%/html/searchindex.js %%DOCSDIR%%/html/signals_slots.html Index: head/textproc/py-qt5-xml/pkg-plist =================================================================== --- head/textproc/py-qt5-xml/pkg-plist (revision 439793) +++ head/textproc/py-qt5-xml/pkg-plist (revision 439794) @@ -1,7 +1,13 @@ bin/pylupdate5 bin/pyrcc5 %%PYTHON_SITELIBDIR%%/PyQt5/QtXml.so +%%PYTHON_SITELIBDIR%%/PyQt5/pylupdate.so +%%PYTHON_SITELIBDIR%%/PyQt5/pylupdate_main.py +%%PYTHON_SITELIBDIR%%/PyQt5/pyrcc.so +%%PYTHON_SITELIBDIR%%/PyQt5/pyrcc_main.py %%PYQT_SIPDIR%%/QtXml/QtXmlmod.sip %%PYQT_SIPDIR%%/QtXml/qdom.sip %%PYQT_SIPDIR%%/QtXml/qxml.sip +%%PYQT_SIPDIR%%/pylupdate/pylupdatemod.sip +%%PYQT_SIPDIR%%/pyrcc/pyrccmod.sip %%API%%share/qt5/qsci/api/python/QtXml.api