Index: head/Mk/Uses/pyqt.mk =================================================================== --- head/Mk/Uses/pyqt.mk (revision 426061) +++ head/Mk/Uses/pyqt.mk (revision 426062) @@ -1,257 +1,257 @@ # $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.17 +SIP_VERSION= 4.18 QSCI2_VERSION= 2.9.1 PYQT4_VERSION= 4.11.4 -PYQT5_VERSION= 5.5.1 +PYQT5_VERSION= 5.6 SIP_DISTNAME= sip-${SIP_VERSION} PYQT4_DISTNAME= PyQt-x11-gpl-${PYQT4_VERSION} PYQT4_DISTINFO_FILE= ${.CURDIR}/../../devel/${PYQT_RELNAME}/distinfo -PYQT5_DISTNAME= PyQt-gpl-${PYQT5_VERSION} +PYQT5_DISTNAME= PyQt5_gpl-${PYQT5_VERSION} PYQT5_DISTINFO_FILE= ${.CURDIR}/../../devel/py-qt5/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 .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-qt5/distinfo =================================================================== --- head/devel/py-qt5/distinfo (revision 426061) +++ head/devel/py-qt5/distinfo (revision 426062) @@ -1,2 +1,3 @@ -SHA256 (PyQt-gpl-5.5.1.tar.gz) = 0a70ef94fbffcf674b0dde024aae2a2a7a3f5a8c42806109ff7df2c941bd8386 -SIZE (PyQt-gpl-5.5.1.tar.gz) = 3705749 +TIMESTAMP = 1477759251 +SHA256 (PyQt5_gpl-5.6.tar.gz) = 2e481a6c4c41b96ed3b33449e5f9599987c63a5c8db93313bd57a6acbf20f0e1 +SIZE (PyQt5_gpl-5.6.tar.gz) = 3720782 Index: head/devel/py-qt5-core/files/patch-configure.py =================================================================== --- head/devel/py-qt5-core/files/patch-configure.py (revision 426061) +++ head/devel/py-qt5-core/files/patch-configure.py (revision 426062) @@ -1,94 +1,109 @@ 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. ---- configure.py.orig 2015-10-25 11:42:16 UTC -+++ configure.py -@@ -1458,13 +1458,13 @@ def generate_makefiles(target_config, ve + +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) - subdirs.append('Qt') if not target_config.no_tools: - # Generate pylupdate5 and pyrcc5. - for tool in ('pylupdate', 'pyrcc'): - generate_application_makefile(target_config, verbose, tool) - subdirs.append(tool) + if "QtXml" in target_config.pyqt_modules: + # Generate pylupdate5 and pyrcc5. + 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) -@@ -1483,22 +1483,6 @@ def generate_makefiles(target_config, ve +@@ -1507,22 +1507,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') - - for l in api: - f.write('PyQt5.' + l) - - api.close() - os.remove(mname + '.api') - - f.close() - # Generate the Python dbus module. if target_config.pydbus_module_dir != '': mname = 'dbus' -@@ -1526,21 +1510,24 @@ def generate_makefiles(target_config, ve +@@ -1548,21 +1532,24 @@ 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/PyQt5 + init_py.path = %s INSTALLS += init_py --''' % (' '.join(subdirs), source_path('__init__.py'), target_config.pyqt_module_dir)) -+''' % (source_path('__init__.py'), target_config.pyqt_module_dir)) +-''' % (' '.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. - out_f.write(''' + # Install the uic module and the pyuic5 wrapper. + out_f.write(''' uic_package.files = %s - uic_package.path = %s/PyQt5 + uic_package.path = %s INSTALLS += uic_package - ''' % (source_path('pyuic', 'uic'), target_config.pyqt_module_dir)) + ''' % (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 -@@ -1548,11 +1535,12 @@ INSTALLS += pyuic5 +@@ -1579,11 +1566,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/api/python + qscintilla_api.path = %s INSTALLS += qscintilla_api --''' % target_config.qsci_api_dir) -+''' % (api_list, target_config.qsci_api_dir)) +-''' % 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 426061) +++ head/devel/py-qt5-core/pkg-plist (revision 426062) @@ -1,219 +1,220 @@ bin/pyuic5 %%PYTHON_SITELIBDIR%%/PyQt5/Qt.py %%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyc %%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyo %%PYTHON_SITELIBDIR%%/PyQt5/QtCore.so %%PYTHON_SITELIBDIR%%/PyQt5/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyc %%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyo %%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/compiler.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyo %%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/misc.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyo %%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/qobjectcreator.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyo %%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/Loader/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyo %%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/qobjectcreator.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyo %%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyo %%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyo %%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyo %%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/objcreator.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyo %%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%%/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%%/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%%/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%%/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/properties.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyo %%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyo %%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyo %%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/qscintilla.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyo %%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/qtquickwidgets.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyo %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyo %%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/distinfo =================================================================== --- head/devel/py-sip/distinfo (revision 426061) +++ head/devel/py-sip/distinfo (revision 426062) @@ -1,2 +1,3 @@ -SHA256 (sip-4.17.tar.gz) = 603026822adf8673fca6e0ea20b02c3c4a2dccb309647656f7269adc8de89060 -SIZE (sip-4.17.tar.gz) = 959835 +TIMESTAMP = 1473848835 +SHA256 (sip-4.18.tar.gz) = f1dc5c81c07a9ad97edcd4a0af964a41e420024ba7ca165afd2b351efd249cb6 +SIZE (sip-4.18.tar.gz) = 991980 Index: head/devel/py-sip/pkg-plist =================================================================== --- head/devel/py-sip/pkg-plist (revision 426061) +++ head/devel/py-sip/pkg-plist (revision 426062) @@ -1,9 +1,10 @@ bin/sip %%PYTHON_INCLUDEDIR%%/sip.h %%PYTHON_SITELIBDIR%%/sip.so +%%PYTHON_SITELIBDIR%%/sip.pyi %%PYTHON_SITELIBDIR%%/sipconfig.py %%PYTHON_SITELIBDIR%%/sipconfig.pyc %%PYTHON_SITELIBDIR%%/sipconfig.pyo %%PYTHON_SITELIBDIR%%/sipdistutils.py %%PYTHON_SITELIBDIR%%/sipdistutils.pyc %%PYTHON_SITELIBDIR%%/sipdistutils.pyo Index: head/misc/py-qt5-demo/pkg-plist =================================================================== --- head/misc/py-qt5-demo/pkg-plist (revision 426061) +++ head/misc/py-qt5-demo/pkg-plist (revision 426062) @@ -1,1260 +1,1259 @@ %%EXAMPLESDIR%%/README %%EXAMPLESDIR%%/activeqt/README %%EXAMPLESDIR%%/activeqt/webbrowser/icons/image0.xpm %%EXAMPLESDIR%%/activeqt/webbrowser/icons/image1.xpm %%EXAMPLESDIR%%/activeqt/webbrowser/icons/image2.xpm %%EXAMPLESDIR%%/activeqt/webbrowser/icons/image3.xpm %%EXAMPLESDIR%%/activeqt/webbrowser/icons/image4.xpm %%EXAMPLESDIR%%/activeqt/webbrowser/icons/image5.xpm %%EXAMPLESDIR%%/activeqt/webbrowser/icons/image6.xpm %%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.qrc %%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.ui %%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.py %%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.pyc %%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.pyo %%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.py %%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyc %%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyo %%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.py %%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyc %%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyo %%EXAMPLESDIR%%/animation/README %%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.py %%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyc %%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyo %%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.qrc %%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.py %%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.pyc %%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.pyo %%EXAMPLESDIR%%/animation/animatedtiles/images/Time-For-Lunch-2.jpg %%EXAMPLESDIR%%/animation/animatedtiles/images/centered.png %%EXAMPLESDIR%%/animation/animatedtiles/images/ellipse.png %%EXAMPLESDIR%%/animation/animatedtiles/images/figure8.png %%EXAMPLESDIR%%/animation/animatedtiles/images/kinetic.png %%EXAMPLESDIR%%/animation/animatedtiles/images/random.png %%EXAMPLESDIR%%/animation/animatedtiles/images/tile.png %%EXAMPLESDIR%%/animation/appchooser/accessories-dictionary.png %%EXAMPLESDIR%%/animation/appchooser/akregator.png %%EXAMPLESDIR%%/animation/appchooser/appchooser.py %%EXAMPLESDIR%%/animation/appchooser/appchooser.pyc %%EXAMPLESDIR%%/animation/appchooser/appchooser.pyo %%EXAMPLESDIR%%/animation/appchooser/appchooser.qrc %%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.py %%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.pyc %%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.pyo %%EXAMPLESDIR%%/animation/appchooser/digikam.png %%EXAMPLESDIR%%/animation/appchooser/k3b.png %%EXAMPLESDIR%%/animation/easing/easing.py %%EXAMPLESDIR%%/animation/easing/easing.pyc %%EXAMPLESDIR%%/animation/easing/easing.pyo %%EXAMPLESDIR%%/animation/easing/easing.qrc %%EXAMPLESDIR%%/animation/easing/easing_rc.py %%EXAMPLESDIR%%/animation/easing/easing_rc.pyc %%EXAMPLESDIR%%/animation/easing/easing_rc.pyo %%EXAMPLESDIR%%/animation/easing/form.ui %%EXAMPLESDIR%%/animation/easing/images/qt-logo.png %%EXAMPLESDIR%%/animation/easing/ui_form.py %%EXAMPLESDIR%%/animation/easing/ui_form.pyc %%EXAMPLESDIR%%/animation/easing/ui_form.pyo %%EXAMPLESDIR%%/animation/moveblocks.py %%EXAMPLESDIR%%/animation/moveblocks.pyc %%EXAMPLESDIR%%/animation/moveblocks.pyo %%EXAMPLESDIR%%/animation/states/accessories-dictionary.png %%EXAMPLESDIR%%/animation/states/akregator.png %%EXAMPLESDIR%%/animation/states/digikam.png %%EXAMPLESDIR%%/animation/states/help-browser.png %%EXAMPLESDIR%%/animation/states/k3b.png %%EXAMPLESDIR%%/animation/states/kchart.png %%EXAMPLESDIR%%/animation/states/states.py %%EXAMPLESDIR%%/animation/states/states.pyc %%EXAMPLESDIR%%/animation/states/states.pyo %%EXAMPLESDIR%%/animation/states/states.qrc %%EXAMPLESDIR%%/animation/states/states_rc.py %%EXAMPLESDIR%%/animation/states/states_rc.pyc %%EXAMPLESDIR%%/animation/states/states_rc.pyo %%EXAMPLESDIR%%/animation/stickman/animations/chilling %%EXAMPLESDIR%%/animation/stickman/animations/dancing %%EXAMPLESDIR%%/animation/stickman/animations/dead %%EXAMPLESDIR%%/animation/stickman/animations/jumping %%EXAMPLESDIR%%/animation/stickman/stickman.py %%EXAMPLESDIR%%/animation/stickman/stickman.pyc %%EXAMPLESDIR%%/animation/stickman/stickman.pyo %%EXAMPLESDIR%%/animation/stickman/stickman.qrc %%EXAMPLESDIR%%/animation/stickman/stickman_rc.py %%EXAMPLESDIR%%/animation/stickman/stickman_rc.pyc %%EXAMPLESDIR%%/animation/stickman/stickman_rc.pyo %%EXAMPLESDIR%%/dbus/chat/chat.py %%EXAMPLESDIR%%/dbus/chat/chat.pyc %%EXAMPLESDIR%%/dbus/chat/chat.pyo %%EXAMPLESDIR%%/dbus/chat/chatmainwindow.ui %%EXAMPLESDIR%%/dbus/chat/chatsetnickname.ui %%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.py %%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyc %%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyo %%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.py %%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyc %%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyo %%EXAMPLESDIR%%/dbus/listnames.py %%EXAMPLESDIR%%/dbus/listnames.pyc %%EXAMPLESDIR%%/dbus/listnames.pyo %%EXAMPLESDIR%%/dbus/pingpong/ping.py %%EXAMPLESDIR%%/dbus/pingpong/ping.pyc %%EXAMPLESDIR%%/dbus/pingpong/ping.pyo %%EXAMPLESDIR%%/dbus/pingpong/pong.py %%EXAMPLESDIR%%/dbus/pingpong/pong.pyc %%EXAMPLESDIR%%/dbus/pingpong/pong.pyo %%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.py %%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyc %%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyo %%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.py %%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyc %%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyo %%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.ui %%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.py %%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyc %%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyo %%EXAMPLESDIR%%/designer/README %%EXAMPLESDIR%%/designer/calculatorform/calculatorform.py %%EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyc %%EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyo %%EXAMPLESDIR%%/designer/calculatorform/calculatorform.ui %%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.py %%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyc %%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyo %%EXAMPLESDIR%%/designer/plugins/plugins.py %%EXAMPLESDIR%%/designer/plugins/plugins.pyc %%EXAMPLESDIR%%/designer/plugins/plugins.pyo %%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.py %%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.py %%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.py %%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.py %%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.py %%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.py %%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.py %%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.py %%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyo %%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.py %%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyc %%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.py %%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.py %%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.py %%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.py %%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.py %%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.py %%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.py %%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.py %%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyo %%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.py %%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyc %%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyo %%EXAMPLESDIR%%/desktop/README %%EXAMPLESDIR%%/desktop/screenshot.py %%EXAMPLESDIR%%/desktop/screenshot.pyc %%EXAMPLESDIR%%/desktop/screenshot.pyo %%EXAMPLESDIR%%/desktop/systray/images/bad.png %%EXAMPLESDIR%%/desktop/systray/images/heart.png %%EXAMPLESDIR%%/desktop/systray/images/trash.png %%EXAMPLESDIR%%/desktop/systray/systray.py %%EXAMPLESDIR%%/desktop/systray/systray.pyc %%EXAMPLESDIR%%/desktop/systray/systray.pyo %%EXAMPLESDIR%%/desktop/systray/systray.qrc %%EXAMPLESDIR%%/desktop/systray/systray_rc.py %%EXAMPLESDIR%%/desktop/systray/systray_rc.pyc %%EXAMPLESDIR%%/desktop/systray/systray_rc.pyo %%EXAMPLESDIR%%/dialogs/README %%EXAMPLESDIR%%/dialogs/classwizard/classwizard.py %%EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyc %%EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyo %%EXAMPLESDIR%%/dialogs/classwizard/classwizard.qrc %%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.py %%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.pyc %%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.pyo %%EXAMPLESDIR%%/dialogs/classwizard/images/background.png %%EXAMPLESDIR%%/dialogs/classwizard/images/banner.png %%EXAMPLESDIR%%/dialogs/classwizard/images/logo1.png %%EXAMPLESDIR%%/dialogs/classwizard/images/logo2.png %%EXAMPLESDIR%%/dialogs/classwizard/images/logo3.png %%EXAMPLESDIR%%/dialogs/classwizard/images/watermark1.png %%EXAMPLESDIR%%/dialogs/classwizard/images/watermark2.png %%EXAMPLESDIR%%/dialogs/configdialog/configdialog.py %%EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyc %%EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyo %%EXAMPLESDIR%%/dialogs/configdialog/configdialog.qrc %%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.py %%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.pyc %%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.pyo %%EXAMPLESDIR%%/dialogs/configdialog/images/config.png %%EXAMPLESDIR%%/dialogs/configdialog/images/query.png %%EXAMPLESDIR%%/dialogs/configdialog/images/update.png %%EXAMPLESDIR%%/dialogs/extension.py %%EXAMPLESDIR%%/dialogs/extension.pyc %%EXAMPLESDIR%%/dialogs/extension.pyo %%EXAMPLESDIR%%/dialogs/findfiles.py %%EXAMPLESDIR%%/dialogs/findfiles.pyc %%EXAMPLESDIR%%/dialogs/findfiles.pyo %%EXAMPLESDIR%%/dialogs/standarddialogs.py %%EXAMPLESDIR%%/dialogs/standarddialogs.pyc %%EXAMPLESDIR%%/dialogs/standarddialogs.pyo %%EXAMPLESDIR%%/dialogs/tabdialog.py %%EXAMPLESDIR%%/dialogs/tabdialog.pyc %%EXAMPLESDIR%%/dialogs/tabdialog.pyo %%EXAMPLESDIR%%/dialogs/trivialwizard.py %%EXAMPLESDIR%%/dialogs/trivialwizard.pyc %%EXAMPLESDIR%%/dialogs/trivialwizard.pyo %%EXAMPLESDIR%%/draganddrop/README %%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.py %%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyc %%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyo %%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.qrc %%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.py %%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.pyc %%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.pyo %%EXAMPLESDIR%%/draganddrop/delayedencoding/images/drag.png %%EXAMPLESDIR%%/draganddrop/delayedencoding/images/example.svg %%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.py %%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyc %%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyo %%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.qrc %%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.py %%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.pyc %%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.pyo %%EXAMPLESDIR%%/draganddrop/draggableicons/images/boat.png %%EXAMPLESDIR%%/draganddrop/draggableicons/images/car.png %%EXAMPLESDIR%%/draganddrop/draggableicons/images/house.png %%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.py %%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyc %%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyo %%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.qrc %%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.py %%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.pyc %%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.pyo %%EXAMPLESDIR%%/draganddrop/draggabletext/words.txt %%EXAMPLESDIR%%/draganddrop/dropsite.py %%EXAMPLESDIR%%/draganddrop/dropsite.pyc %%EXAMPLESDIR%%/draganddrop/dropsite.pyo %%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.py %%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyc %%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyo %%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.qrc %%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.py %%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.pyc %%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.pyo %%EXAMPLESDIR%%/draganddrop/fridgemagnets/words.txt %%EXAMPLESDIR%%/draganddrop/puzzle/example.jpg %%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.py %%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyc %%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyo %%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.qrc %%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.py %%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.pyc %%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.pyo %%EXAMPLESDIR%%/effects/README %%EXAMPLESDIR%%/effects/lighting.py %%EXAMPLESDIR%%/effects/lighting.pyc %%EXAMPLESDIR%%/effects/lighting.pyo %%EXAMPLESDIR%%/graphicsview/README %%EXAMPLESDIR%%/graphicsview/anchorlayout.py %%EXAMPLESDIR%%/graphicsview/anchorlayout.pyc %%EXAMPLESDIR%%/graphicsview/anchorlayout.pyo %%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.py %%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyc %%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyo %%EXAMPLESDIR%%/graphicsview/collidingmice/images/cheese.jpg %%EXAMPLESDIR%%/graphicsview/collidingmice/mice.qrc %%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.py %%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.pyc %%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.pyo %%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.py %%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyc %%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyo %%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.qrc %%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.py %%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.pyc %%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.pyo %%EXAMPLESDIR%%/graphicsview/diagramscene/images/background1.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/background2.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/background3.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/background4.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/bold.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/bringtofront.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/delete.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/floodfill.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/italic.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/linecolor.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/linepointer.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/pointer.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/sendtoback.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/textpointer.png %%EXAMPLESDIR%%/graphicsview/diagramscene/images/underline.png %%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.py %%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyc %%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyo %%EXAMPLESDIR%%/graphicsview/dragdroprobot/images/head.png %%EXAMPLESDIR%%/graphicsview/elasticnodes.py %%EXAMPLESDIR%%/graphicsview/elasticnodes.pyc %%EXAMPLESDIR%%/graphicsview/elasticnodes.pyo %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/No-Ones-Laughing-3.jpg %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.py %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.pyc %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.pyo %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.ui %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.py %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.pyc %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.pyo %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.qrc %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.py %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.pyc %%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.pyo %%EXAMPLESDIR%%/graphicsview/padnavigator/form.ui %%EXAMPLESDIR%%/graphicsview/padnavigator/images/artsfftscope.png %%EXAMPLESDIR%%/graphicsview/padnavigator/images/blue_angle_swirl.jpg %%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_contacts.png %%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_journal.png %%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_mail.png %%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_notes.png %%EXAMPLESDIR%%/graphicsview/padnavigator/images/kopeteavailable.png %%EXAMPLESDIR%%/graphicsview/padnavigator/images/metacontact_online.png %%EXAMPLESDIR%%/graphicsview/padnavigator/images/minitools.png %%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.py %%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyc %%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyo %%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.qrc %%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.py %%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.pyc %%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.pyo %%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.py %%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.pyc %%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.pyo %%EXAMPLESDIR%%/ipc/README %%EXAMPLESDIR%%/ipc/localfortuneclient.py %%EXAMPLESDIR%%/ipc/localfortuneclient.pyc %%EXAMPLESDIR%%/ipc/localfortuneclient.pyo %%EXAMPLESDIR%%/ipc/localfortuneserver.py %%EXAMPLESDIR%%/ipc/localfortuneserver.pyc %%EXAMPLESDIR%%/ipc/localfortuneserver.pyo %%EXAMPLESDIR%%/ipc/sharedmemory/dialog.py %%EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyc %%EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyo %%EXAMPLESDIR%%/ipc/sharedmemory/dialog.ui %%EXAMPLESDIR%%/ipc/sharedmemory/image.png %%EXAMPLESDIR%%/ipc/sharedmemory/qt.png %%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.py %%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyc %%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyo %%EXAMPLESDIR%%/itemviews/README %%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.py %%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyc %%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyo %%EXAMPLESDIR%%/itemviews/chart/chart.py %%EXAMPLESDIR%%/itemviews/chart/chart.pyc %%EXAMPLESDIR%%/itemviews/chart/chart.pyo %%EXAMPLESDIR%%/itemviews/chart/chart.qrc %%EXAMPLESDIR%%/itemviews/chart/chart_rc.py %%EXAMPLESDIR%%/itemviews/chart/chart_rc.pyc %%EXAMPLESDIR%%/itemviews/chart/chart_rc.pyo %%EXAMPLESDIR%%/itemviews/chart/mydata.cht %%EXAMPLESDIR%%/itemviews/chart/qtdata.cht %%EXAMPLESDIR%%/itemviews/coloreditorfactory.py %%EXAMPLESDIR%%/itemviews/coloreditorfactory.pyc %%EXAMPLESDIR%%/itemviews/coloreditorfactory.pyo %%EXAMPLESDIR%%/itemviews/combowidgetmapper.py %%EXAMPLESDIR%%/itemviews/combowidgetmapper.pyc %%EXAMPLESDIR%%/itemviews/combowidgetmapper.pyo %%EXAMPLESDIR%%/itemviews/customsortfiltermodel.py %%EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyc %%EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyo %%EXAMPLESDIR%%/itemviews/dirview.py %%EXAMPLESDIR%%/itemviews/dirview.pyc %%EXAMPLESDIR%%/itemviews/dirview.pyo %%EXAMPLESDIR%%/itemviews/editabletreemodel/default.txt %%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.py %%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyc %%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyo %%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.qrc %%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.py %%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.pyc %%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.pyo %%EXAMPLESDIR%%/itemviews/editabletreemodel/mainwindow.ui %%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.py %%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyc %%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyo %%EXAMPLESDIR%%/itemviews/fetchmore.py %%EXAMPLESDIR%%/itemviews/fetchmore.pyc %%EXAMPLESDIR%%/itemviews/fetchmore.pyo %%EXAMPLESDIR%%/itemviews/pixelator/images/qt.png %%EXAMPLESDIR%%/itemviews/pixelator/pixelator.py %%EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyc %%EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyo %%EXAMPLESDIR%%/itemviews/pixelator/pixelator.qrc %%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.py %%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.pyc %%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.pyo %%EXAMPLESDIR%%/itemviews/puzzle/example.jpg %%EXAMPLESDIR%%/itemviews/puzzle/puzzle.py %%EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyc %%EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyo %%EXAMPLESDIR%%/itemviews/puzzle/puzzle.qrc %%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.py %%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.pyc %%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.pyo %%EXAMPLESDIR%%/itemviews/simpledommodel.py %%EXAMPLESDIR%%/itemviews/simpledommodel.pyc %%EXAMPLESDIR%%/itemviews/simpledommodel.pyo %%EXAMPLESDIR%%/itemviews/simpletreemodel/default.txt %%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.py %%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyc %%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyo %%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.qrc %%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.py %%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.pyc %%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.pyo %%EXAMPLESDIR%%/itemviews/simplewidgetmapper.py %%EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyc %%EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyo %%EXAMPLESDIR%%/itemviews/spinboxdelegate.py %%EXAMPLESDIR%%/itemviews/spinboxdelegate.pyc %%EXAMPLESDIR%%/itemviews/spinboxdelegate.pyo %%EXAMPLESDIR%%/itemviews/spreadsheet/images/interview.png %%EXAMPLESDIR%%/itemviews/spreadsheet/printview.py %%EXAMPLESDIR%%/itemviews/spreadsheet/printview.pyc %%EXAMPLESDIR%%/itemviews/spreadsheet/printview.pyo %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.py %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.pyc %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.pyo %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.qrc %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.py %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.pyc %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.pyo %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.py %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.pyc %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.pyo %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.py %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.pyc %%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.pyo %%EXAMPLESDIR%%/itemviews/spreadsheet/util.py %%EXAMPLESDIR%%/itemviews/spreadsheet/util.pyc %%EXAMPLESDIR%%/itemviews/spreadsheet/util.pyo %%EXAMPLESDIR%%/itemviews/stardelegate.py %%EXAMPLESDIR%%/itemviews/stardelegate.pyc %%EXAMPLESDIR%%/itemviews/stardelegate.pyo %%EXAMPLESDIR%%/layouts/README %%EXAMPLESDIR%%/layouts/basiclayouts.py %%EXAMPLESDIR%%/layouts/basiclayouts.pyc %%EXAMPLESDIR%%/layouts/basiclayouts.pyo %%EXAMPLESDIR%%/layouts/borderlayout.py %%EXAMPLESDIR%%/layouts/borderlayout.pyc %%EXAMPLESDIR%%/layouts/borderlayout.pyo %%EXAMPLESDIR%%/layouts/flowlayout.py %%EXAMPLESDIR%%/layouts/flowlayout.pyc %%EXAMPLESDIR%%/layouts/flowlayout.pyo %%EXAMPLESDIR%%/mainwindows/README %%EXAMPLESDIR%%/mainwindows/application/application.py %%EXAMPLESDIR%%/mainwindows/application/application.pyc %%EXAMPLESDIR%%/mainwindows/application/application.pyo %%EXAMPLESDIR%%/mainwindows/application/images/copy.png %%EXAMPLESDIR%%/mainwindows/application/images/cut.png %%EXAMPLESDIR%%/mainwindows/application/images/new.png %%EXAMPLESDIR%%/mainwindows/application/images/open.png %%EXAMPLESDIR%%/mainwindows/application/images/paste.png %%EXAMPLESDIR%%/mainwindows/application/images/save.png %%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.py %%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyc %%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyo %%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.qrc %%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.py %%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.pyc %%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.pyo %%EXAMPLESDIR%%/mainwindows/dockwidgets/images/new.png %%EXAMPLESDIR%%/mainwindows/dockwidgets/images/print.png %%EXAMPLESDIR%%/mainwindows/dockwidgets/images/save.png %%EXAMPLESDIR%%/mainwindows/dockwidgets/images/undo.png %%EXAMPLESDIR%%/mainwindows/mdi/images/copy.png %%EXAMPLESDIR%%/mainwindows/mdi/images/cut.png %%EXAMPLESDIR%%/mainwindows/mdi/images/new.png %%EXAMPLESDIR%%/mainwindows/mdi/images/open.png %%EXAMPLESDIR%%/mainwindows/mdi/images/paste.png %%EXAMPLESDIR%%/mainwindows/mdi/images/save.png %%EXAMPLESDIR%%/mainwindows/mdi/mdi.py %%EXAMPLESDIR%%/mainwindows/mdi/mdi.pyc %%EXAMPLESDIR%%/mainwindows/mdi/mdi.pyo %%EXAMPLESDIR%%/mainwindows/mdi/mdi.qrc %%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.py %%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.pyc %%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.pyo %%EXAMPLESDIR%%/mainwindows/menus.py %%EXAMPLESDIR%%/mainwindows/menus.pyc %%EXAMPLESDIR%%/mainwindows/menus.pyo %%EXAMPLESDIR%%/mainwindows/recentfiles.py %%EXAMPLESDIR%%/mainwindows/recentfiles.pyc %%EXAMPLESDIR%%/mainwindows/recentfiles.pyo %%EXAMPLESDIR%%/mainwindows/sdi/images/copy.png %%EXAMPLESDIR%%/mainwindows/sdi/images/cut.png %%EXAMPLESDIR%%/mainwindows/sdi/images/new.png %%EXAMPLESDIR%%/mainwindows/sdi/images/open.png %%EXAMPLESDIR%%/mainwindows/sdi/images/paste.png %%EXAMPLESDIR%%/mainwindows/sdi/images/save.png %%EXAMPLESDIR%%/mainwindows/sdi/sdi.py %%EXAMPLESDIR%%/mainwindows/sdi/sdi.pyc %%EXAMPLESDIR%%/mainwindows/sdi/sdi.pyo %%EXAMPLESDIR%%/mainwindows/sdi/sdi.qrc %%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.py %%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.pyc %%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.pyo %%EXAMPLESDIR%%/mainwindows/separations.py %%EXAMPLESDIR%%/mainwindows/separations.pyc %%EXAMPLESDIR%%/mainwindows/separations.pyo %%EXAMPLESDIR%%/multimedia/README %%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.py %%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.pyc %%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.pyo %%EXAMPLESDIR%%/multimedia/audiodevices/audiodevicesbase.ui %%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.py %%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.pyc %%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.pyo %%EXAMPLESDIR%%/multimedia/audiooutput.py %%EXAMPLESDIR%%/multimedia/audiooutput.pyc %%EXAMPLESDIR%%/multimedia/audiooutput.pyo %%EXAMPLESDIR%%/multimediawidgets/README %%EXAMPLESDIR%%/multimediawidgets/camera/camera.py %%EXAMPLESDIR%%/multimediawidgets/camera/camera.pyc %%EXAMPLESDIR%%/multimediawidgets/camera/camera.pyo %%EXAMPLESDIR%%/multimediawidgets/camera/camera.ui %%EXAMPLESDIR%%/multimediawidgets/camera/imagesettings.ui %%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.py %%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.pyc %%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.pyo %%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.py %%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.pyc %%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.pyo %%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.py %%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.pyc %%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.pyo %%EXAMPLESDIR%%/multimediawidgets/camera/videosettings.ui %%EXAMPLESDIR%%/multimediawidgets/player.py %%EXAMPLESDIR%%/multimediawidgets/player.pyc %%EXAMPLESDIR%%/multimediawidgets/player.pyo %%EXAMPLESDIR%%/multimediawidgets/videographicsitem.py %%EXAMPLESDIR%%/multimediawidgets/videographicsitem.pyc %%EXAMPLESDIR%%/multimediawidgets/videographicsitem.pyo %%EXAMPLESDIR%%/multimediawidgets/videowidget.py %%EXAMPLESDIR%%/multimediawidgets/videowidget.pyc %%EXAMPLESDIR%%/multimediawidgets/videowidget.pyo %%EXAMPLESDIR%%/network/README %%EXAMPLESDIR%%/network/blockingfortuneclient.py %%EXAMPLESDIR%%/network/blockingfortuneclient.pyc %%EXAMPLESDIR%%/network/blockingfortuneclient.pyo %%EXAMPLESDIR%%/network/broadcastreceiver.py %%EXAMPLESDIR%%/network/broadcastreceiver.pyc %%EXAMPLESDIR%%/network/broadcastreceiver.pyo %%EXAMPLESDIR%%/network/broadcastsender.py %%EXAMPLESDIR%%/network/broadcastsender.pyc %%EXAMPLESDIR%%/network/broadcastsender.pyo %%EXAMPLESDIR%%/network/fortuneclient.py %%EXAMPLESDIR%%/network/fortuneclient.pyc %%EXAMPLESDIR%%/network/fortuneclient.pyo %%EXAMPLESDIR%%/network/fortuneserver.py %%EXAMPLESDIR%%/network/fortuneserver.pyc %%EXAMPLESDIR%%/network/fortuneserver.pyo %%EXAMPLESDIR%%/network/http/authenticationdialog.ui %%EXAMPLESDIR%%/network/http/http.py %%EXAMPLESDIR%%/network/http/http.pyc %%EXAMPLESDIR%%/network/http/http.pyo %%EXAMPLESDIR%%/network/lightmaps.py %%EXAMPLESDIR%%/network/lightmaps.pyc %%EXAMPLESDIR%%/network/lightmaps.pyo %%EXAMPLESDIR%%/network/loopback.py %%EXAMPLESDIR%%/network/loopback.pyc %%EXAMPLESDIR%%/network/loopback.pyo %%EXAMPLESDIR%%/network/threadedfortuneserver.py %%EXAMPLESDIR%%/network/threadedfortuneserver.pyc %%EXAMPLESDIR%%/network/threadedfortuneserver.pyo %%EXAMPLESDIR%%/opengl/2dpainting.py %%EXAMPLESDIR%%/opengl/2dpainting.pyc %%EXAMPLESDIR%%/opengl/2dpainting.pyo %%EXAMPLESDIR%%/opengl/README %%EXAMPLESDIR%%/opengl/grabber.py %%EXAMPLESDIR%%/opengl/grabber.pyc %%EXAMPLESDIR%%/opengl/grabber.pyo %%EXAMPLESDIR%%/opengl/hellogl.py %%EXAMPLESDIR%%/opengl/hellogl.pyc %%EXAMPLESDIR%%/opengl/hellogl.pyo %%EXAMPLESDIR%%/opengl/openglwindow.py %%EXAMPLESDIR%%/opengl/openglwindow.pyc %%EXAMPLESDIR%%/opengl/openglwindow.pyo %%EXAMPLESDIR%%/opengl/overpainting.py %%EXAMPLESDIR%%/opengl/overpainting.pyc %%EXAMPLESDIR%%/opengl/overpainting.pyo %%EXAMPLESDIR%%/opengl/textures/images/side1.png %%EXAMPLESDIR%%/opengl/textures/images/side2.png %%EXAMPLESDIR%%/opengl/textures/images/side3.png %%EXAMPLESDIR%%/opengl/textures/images/side4.png %%EXAMPLESDIR%%/opengl/textures/images/side5.png %%EXAMPLESDIR%%/opengl/textures/images/side6.png %%EXAMPLESDIR%%/opengl/textures/textures.py %%EXAMPLESDIR%%/opengl/textures/textures.pyc %%EXAMPLESDIR%%/opengl/textures/textures.pyo %%EXAMPLESDIR%%/painting/README %%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.py %%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyc %%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyo %%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.qrc %%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.py %%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.pyc %%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.pyo %%EXAMPLESDIR%%/painting/basicdrawing/images/brick.png %%EXAMPLESDIR%%/painting/basicdrawing/images/qt-logo.png %%EXAMPLESDIR%%/painting/concentriccircles.py %%EXAMPLESDIR%%/painting/concentriccircles.pyc %%EXAMPLESDIR%%/painting/concentriccircles.pyo %%EXAMPLESDIR%%/painting/painterpaths.py %%EXAMPLESDIR%%/painting/painterpaths.pyc %%EXAMPLESDIR%%/painting/painterpaths.pyo %%EXAMPLESDIR%%/painting/svgviewer/files/bubbles.svg %%EXAMPLESDIR%%/painting/svgviewer/files/cubic.svg %%EXAMPLESDIR%%/painting/svgviewer/files/spheres.svg %%EXAMPLESDIR%%/painting/svgviewer/svgviewer.py %%EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyc %%EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyo %%EXAMPLESDIR%%/painting/svgviewer/svgviewer.qrc %%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.py %%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.pyc %%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.pyo %%EXAMPLESDIR%%/painting/transformations.py %%EXAMPLESDIR%%/painting/transformations.pyc %%EXAMPLESDIR%%/painting/transformations.pyo %%EXAMPLESDIR%%/pyuic/compile-on-the-fly.py %%EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyc %%EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyo %%EXAMPLESDIR%%/pyuic/demo.ui %%EXAMPLESDIR%%/pyuic/load_ui1.py %%EXAMPLESDIR%%/pyuic/load_ui1.pyc %%EXAMPLESDIR%%/pyuic/load_ui1.pyo %%EXAMPLESDIR%%/pyuic/load_ui2.py %%EXAMPLESDIR%%/pyuic/load_ui2.pyc %%EXAMPLESDIR%%/pyuic/load_ui2.pyo %%EXAMPLESDIR%%/qml/referenceexamples/adding.py %%EXAMPLESDIR%%/qml/referenceexamples/adding.pyc %%EXAMPLESDIR%%/qml/referenceexamples/adding.pyo %%EXAMPLESDIR%%/qml/referenceexamples/attached.py %%EXAMPLESDIR%%/qml/referenceexamples/attached.pyc %%EXAMPLESDIR%%/qml/referenceexamples/attached.pyo %%EXAMPLESDIR%%/qml/referenceexamples/binding.py %%EXAMPLESDIR%%/qml/referenceexamples/binding.pyc %%EXAMPLESDIR%%/qml/referenceexamples/binding.pyo %%EXAMPLESDIR%%/qml/referenceexamples/coercion.py %%EXAMPLESDIR%%/qml/referenceexamples/coercion.pyc %%EXAMPLESDIR%%/qml/referenceexamples/coercion.pyo %%EXAMPLESDIR%%/qml/referenceexamples/default.py %%EXAMPLESDIR%%/qml/referenceexamples/default.pyc %%EXAMPLESDIR%%/qml/referenceexamples/default.pyo %%EXAMPLESDIR%%/qml/referenceexamples/grouped.py %%EXAMPLESDIR%%/qml/referenceexamples/grouped.pyc %%EXAMPLESDIR%%/qml/referenceexamples/grouped.pyo %%EXAMPLESDIR%%/qml/referenceexamples/methods.py %%EXAMPLESDIR%%/qml/referenceexamples/methods.pyc %%EXAMPLESDIR%%/qml/referenceexamples/methods.pyo %%EXAMPLESDIR%%/qml/referenceexamples/properties.py %%EXAMPLESDIR%%/qml/referenceexamples/properties.pyc %%EXAMPLESDIR%%/qml/referenceexamples/properties.pyo %%EXAMPLESDIR%%/qml/referenceexamples/signal.py %%EXAMPLESDIR%%/qml/referenceexamples/signal.pyc %%EXAMPLESDIR%%/qml/referenceexamples/signal.pyo %%EXAMPLESDIR%%/qml/referenceexamples/valuesource.py %%EXAMPLESDIR%%/qml/referenceexamples/valuesource.pyc %%EXAMPLESDIR%%/qml/referenceexamples/valuesource.pyo %%EXAMPLESDIR%%/qtdemo/colors.py %%EXAMPLESDIR%%/qtdemo/colors.pyc %%EXAMPLESDIR%%/qtdemo/colors.pyo %%EXAMPLESDIR%%/qtdemo/demoitem.py %%EXAMPLESDIR%%/qtdemo/demoitem.pyc %%EXAMPLESDIR%%/qtdemo/demoitem.pyo %%EXAMPLESDIR%%/qtdemo/demoitemanimation.py %%EXAMPLESDIR%%/qtdemo/demoitemanimation.pyc %%EXAMPLESDIR%%/qtdemo/demoitemanimation.pyo %%EXAMPLESDIR%%/qtdemo/demotextitem.py %%EXAMPLESDIR%%/qtdemo/demotextitem.pyc %%EXAMPLESDIR%%/qtdemo/demotextitem.pyo %%EXAMPLESDIR%%/qtdemo/examplecontent.py %%EXAMPLESDIR%%/qtdemo/examplecontent.pyc %%EXAMPLESDIR%%/qtdemo/examplecontent.pyo %%EXAMPLESDIR%%/qtdemo/examples.xml %%EXAMPLESDIR%%/qtdemo/guide.py %%EXAMPLESDIR%%/qtdemo/guide.pyc %%EXAMPLESDIR%%/qtdemo/guide.pyo %%EXAMPLESDIR%%/qtdemo/guidecircle.py %%EXAMPLESDIR%%/qtdemo/guidecircle.pyc %%EXAMPLESDIR%%/qtdemo/guidecircle.pyo %%EXAMPLESDIR%%/qtdemo/guideline.py %%EXAMPLESDIR%%/qtdemo/guideline.pyc %%EXAMPLESDIR%%/qtdemo/guideline.pyo %%EXAMPLESDIR%%/qtdemo/headingitem.py %%EXAMPLESDIR%%/qtdemo/headingitem.pyc %%EXAMPLESDIR%%/qtdemo/headingitem.pyo %%EXAMPLESDIR%%/qtdemo/imageitem.py %%EXAMPLESDIR%%/qtdemo/imageitem.pyc %%EXAMPLESDIR%%/qtdemo/imageitem.pyo %%EXAMPLESDIR%%/qtdemo/images/demobg.png %%EXAMPLESDIR%%/qtdemo/images/qtlogo_small.png %%EXAMPLESDIR%%/qtdemo/images/trolltech-logo.png %%EXAMPLESDIR%%/qtdemo/itemcircleanimation.py %%EXAMPLESDIR%%/qtdemo/itemcircleanimation.pyc %%EXAMPLESDIR%%/qtdemo/itemcircleanimation.pyo %%EXAMPLESDIR%%/qtdemo/letteritem.py %%EXAMPLESDIR%%/qtdemo/letteritem.pyc %%EXAMPLESDIR%%/qtdemo/letteritem.pyo %%EXAMPLESDIR%%/qtdemo/mainwindow.py %%EXAMPLESDIR%%/qtdemo/mainwindow.pyc %%EXAMPLESDIR%%/qtdemo/mainwindow.pyo %%EXAMPLESDIR%%/qtdemo/menucontent.py %%EXAMPLESDIR%%/qtdemo/menucontent.pyc %%EXAMPLESDIR%%/qtdemo/menucontent.pyo %%EXAMPLESDIR%%/qtdemo/menumanager.py %%EXAMPLESDIR%%/qtdemo/menumanager.pyc %%EXAMPLESDIR%%/qtdemo/menumanager.pyo %%EXAMPLESDIR%%/qtdemo/qtdemo.py %%EXAMPLESDIR%%/qtdemo/qtdemo.pyc %%EXAMPLESDIR%%/qtdemo/qtdemo.pyo %%EXAMPLESDIR%%/qtdemo/scanitem.py %%EXAMPLESDIR%%/qtdemo/scanitem.pyc %%EXAMPLESDIR%%/qtdemo/scanitem.pyo %%EXAMPLESDIR%%/qtdemo/score.py %%EXAMPLESDIR%%/qtdemo/score.pyc %%EXAMPLESDIR%%/qtdemo/score.pyo %%EXAMPLESDIR%%/qtdemo/textbutton.py %%EXAMPLESDIR%%/qtdemo/textbutton.pyc %%EXAMPLESDIR%%/qtdemo/textbutton.pyo %%EXAMPLESDIR%%/quick/README %%EXAMPLESDIR%%/quick/animation/animation.py %%EXAMPLESDIR%%/quick/animation/animation.pyc %%EXAMPLESDIR%%/quick/animation/animation.pyo %%EXAMPLESDIR%%/quick/animation/animation.qml %%EXAMPLESDIR%%/quick/animation/animation.qrc %%EXAMPLESDIR%%/quick/animation/animation_rc.py %%EXAMPLESDIR%%/quick/animation/animation_rc.pyc %%EXAMPLESDIR%%/quick/animation/animation_rc.pyo %%EXAMPLESDIR%%/quick/animation/basics/color-animation.qml %%EXAMPLESDIR%%/quick/animation/basics/images/face-smile.png %%EXAMPLESDIR%%/quick/animation/basics/images/moon.png %%EXAMPLESDIR%%/quick/animation/basics/images/shadow.png %%EXAMPLESDIR%%/quick/animation/basics/images/star.png %%EXAMPLESDIR%%/quick/animation/basics/images/sun.png %%EXAMPLESDIR%%/quick/animation/basics/property-animation.qml %%EXAMPLESDIR%%/quick/animation/behaviors/SideRect.qml %%EXAMPLESDIR%%/quick/animation/behaviors/behavior-example.qml %%EXAMPLESDIR%%/quick/animation/behaviors/tvtennis.qml %%EXAMPLESDIR%%/quick/animation/behaviors/wigglytext.qml %%EXAMPLESDIR%%/quick/animation/easing/easing.qml %%EXAMPLESDIR%%/quick/animation/pathanimation/pathanimation.qml %%EXAMPLESDIR%%/quick/animation/pathinterpolator/pathinterpolator.qml %%EXAMPLESDIR%%/quick/animation/states/qt-logo.png %%EXAMPLESDIR%%/quick/animation/states/states.qml %%EXAMPLESDIR%%/quick/animation/states/transitions.qml %%EXAMPLESDIR%%/quick/canvas/bezierCurve/bezierCurve.qml %%EXAMPLESDIR%%/quick/canvas/canvas.py %%EXAMPLESDIR%%/quick/canvas/canvas.pyc %%EXAMPLESDIR%%/quick/canvas/canvas.pyo %%EXAMPLESDIR%%/quick/canvas/canvas.qml %%EXAMPLESDIR%%/quick/canvas/canvas.qrc %%EXAMPLESDIR%%/quick/canvas/canvas_rc.py %%EXAMPLESDIR%%/quick/canvas/canvas_rc.pyc %%EXAMPLESDIR%%/quick/canvas/canvas_rc.pyo %%EXAMPLESDIR%%/quick/canvas/clip/clip.qml %%EXAMPLESDIR%%/quick/canvas/contents/Button.qml %%EXAMPLESDIR%%/quick/canvas/contents/ScrollBar.qml %%EXAMPLESDIR%%/quick/canvas/contents/Slider.qml %%EXAMPLESDIR%%/quick/canvas/contents/TitleBar.qml %%EXAMPLESDIR%%/quick/canvas/contents/ToolBar.qml %%EXAMPLESDIR%%/quick/canvas/contents/images/button-pressed.png %%EXAMPLESDIR%%/quick/canvas/contents/images/button.png %%EXAMPLESDIR%%/quick/canvas/contents/images/default.svg %%EXAMPLESDIR%%/quick/canvas/contents/images/gloss.png %%EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.png %%EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.sci %%EXAMPLESDIR%%/quick/canvas/contents/images/quit.png %%EXAMPLESDIR%%/quick/canvas/contents/images/stripes.png %%EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.png %%EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.sci %%EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.png %%EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.sci %%EXAMPLESDIR%%/quick/canvas/contents/qt-logo.png %%EXAMPLESDIR%%/quick/canvas/quadraticCurveTo/quadraticCurveTo.qml %%EXAMPLESDIR%%/quick/canvas/roundedrect/roundedrect.qml %%EXAMPLESDIR%%/quick/canvas/smile/smile.qml %%EXAMPLESDIR%%/quick/canvas/squircle/squircle.png %%EXAMPLESDIR%%/quick/canvas/squircle/squircle.qml %%EXAMPLESDIR%%/quick/canvas/tiger/tiger.js %%EXAMPLESDIR%%/quick/canvas/tiger/tiger.qml %%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.py %%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pyc %%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pyo %%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.qrc %%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.py %%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.pyc %%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.pyo %%EXAMPLESDIR%%/quick/models/abstractitemmodel/view.qml %%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.py %%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.pyc %%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.pyo %%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.qrc %%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.py %%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.pyc %%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.pyo %%EXAMPLESDIR%%/quick/models/objectlistmodel/view.qml %%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.py %%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.pyc %%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.pyo %%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.qrc %%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.py %%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.pyc %%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.pyo %%EXAMPLESDIR%%/quick/models/stringlistmodel/view.qml %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.py %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.pyc %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.pyo %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.qrc %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.py %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.pyc %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.pyo %%EXAMPLESDIR%%/quick/scenegraph/customgeometry/main.qml %%EXAMPLESDIR%%/quick/shared/Button.qml %%EXAMPLESDIR%%/quick/shared/LauncherList.qml %%EXAMPLESDIR%%/quick/shared/SimpleLauncherDelegate.qml %%EXAMPLESDIR%%/quick/shared/images/back.png %%EXAMPLESDIR%%/quick/shared/images/next.png %%EXAMPLESDIR%%/quick/shared/shared.qrc %%EXAMPLESDIR%%/quick/shared/shared_rc.py %%EXAMPLESDIR%%/quick/shared/shared_rc.pyc %%EXAMPLESDIR%%/quick/shared/shared_rc.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/app.qml %%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/app.qml %%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/app.qml %%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/app.qml %%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/app.qml %%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.py %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.pyc %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.pyo %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/qmldir %%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/app.qml %%EXAMPLESDIR%%/richtext/README %%EXAMPLESDIR%%/richtext/calendar.py %%EXAMPLESDIR%%/richtext/calendar.pyc %%EXAMPLESDIR%%/richtext/calendar.pyo %%EXAMPLESDIR%%/richtext/orderform.py %%EXAMPLESDIR%%/richtext/orderform.pyc %%EXAMPLESDIR%%/richtext/orderform.pyo %%EXAMPLESDIR%%/richtext/syntaxhighlighter.py %%EXAMPLESDIR%%/richtext/syntaxhighlighter.pyc %%EXAMPLESDIR%%/richtext/syntaxhighlighter.pyo %%EXAMPLESDIR%%/richtext/textedit/example.html %%EXAMPLESDIR%%/richtext/textedit/images/logo.png %%EXAMPLESDIR%%/richtext/textedit/images/logo32.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/editcopy.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/editcut.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/editpaste.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/editredo.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/editundo.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/exportpdf.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/filenew.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/fileopen.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/fileprint.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/filesave.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/textbold.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/textcenter.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/textitalic.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/textjustify.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/textleft.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/textright.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/textunder.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/zoomin.png %%EXAMPLESDIR%%/richtext/textedit/images/mac/zoomout.png %%EXAMPLESDIR%%/richtext/textedit/images/win/editcopy.png %%EXAMPLESDIR%%/richtext/textedit/images/win/editcut.png %%EXAMPLESDIR%%/richtext/textedit/images/win/editpaste.png %%EXAMPLESDIR%%/richtext/textedit/images/win/editredo.png %%EXAMPLESDIR%%/richtext/textedit/images/win/editundo.png %%EXAMPLESDIR%%/richtext/textedit/images/win/exportpdf.png %%EXAMPLESDIR%%/richtext/textedit/images/win/filenew.png %%EXAMPLESDIR%%/richtext/textedit/images/win/fileopen.png %%EXAMPLESDIR%%/richtext/textedit/images/win/fileprint.png %%EXAMPLESDIR%%/richtext/textedit/images/win/filesave.png %%EXAMPLESDIR%%/richtext/textedit/images/win/textbold.png %%EXAMPLESDIR%%/richtext/textedit/images/win/textcenter.png %%EXAMPLESDIR%%/richtext/textedit/images/win/textitalic.png %%EXAMPLESDIR%%/richtext/textedit/images/win/textjustify.png %%EXAMPLESDIR%%/richtext/textedit/images/win/textleft.png %%EXAMPLESDIR%%/richtext/textedit/images/win/textright.png %%EXAMPLESDIR%%/richtext/textedit/images/win/textunder.png %%EXAMPLESDIR%%/richtext/textedit/images/win/zoomin.png %%EXAMPLESDIR%%/richtext/textedit/images/win/zoomout.png %%EXAMPLESDIR%%/richtext/textedit/textedit.py %%EXAMPLESDIR%%/richtext/textedit/textedit.pyc %%EXAMPLESDIR%%/richtext/textedit/textedit.pyo %%EXAMPLESDIR%%/richtext/textedit/textedit.qrc %%EXAMPLESDIR%%/richtext/textedit/textedit_rc.py %%EXAMPLESDIR%%/richtext/textedit/textedit_rc.pyc %%EXAMPLESDIR%%/richtext/textedit/textedit_rc.pyo %%EXAMPLESDIR%%/richtext/textobject/files/heart.svg %%EXAMPLESDIR%%/richtext/textobject/textobject.py %%EXAMPLESDIR%%/richtext/textobject/textobject.pyc %%EXAMPLESDIR%%/richtext/textobject/textobject.pyo %%EXAMPLESDIR%%/sql/README %%EXAMPLESDIR%%/sql/cachedtable.py %%EXAMPLESDIR%%/sql/cachedtable.pyc %%EXAMPLESDIR%%/sql/cachedtable.pyo %%EXAMPLESDIR%%/sql/connection.py %%EXAMPLESDIR%%/sql/connection.pyc %%EXAMPLESDIR%%/sql/connection.pyo %%EXAMPLESDIR%%/sql/querymodel.py %%EXAMPLESDIR%%/sql/querymodel.pyc %%EXAMPLESDIR%%/sql/querymodel.pyo %%EXAMPLESDIR%%/sql/relationaltablemodel.py %%EXAMPLESDIR%%/sql/relationaltablemodel.pyc %%EXAMPLESDIR%%/sql/relationaltablemodel.pyo %%EXAMPLESDIR%%/sql/tablemodel.py %%EXAMPLESDIR%%/sql/tablemodel.pyc %%EXAMPLESDIR%%/sql/tablemodel.pyo %%EXAMPLESDIR%%/threads/README %%EXAMPLESDIR%%/threads/mandelbrot.py %%EXAMPLESDIR%%/threads/mandelbrot.pyc %%EXAMPLESDIR%%/threads/mandelbrot.pyo %%EXAMPLESDIR%%/threads/semaphores.py %%EXAMPLESDIR%%/threads/semaphores.pyc %%EXAMPLESDIR%%/threads/semaphores.pyo %%EXAMPLESDIR%%/threads/waitconditions.py %%EXAMPLESDIR%%/threads/waitconditions.pyc %%EXAMPLESDIR%%/threads/waitconditions.pyo %%EXAMPLESDIR%%/tools/README %%EXAMPLESDIR%%/tools/codecs/codecs.py %%EXAMPLESDIR%%/tools/codecs/codecs.pyc %%EXAMPLESDIR%%/tools/codecs/codecs.pyo %%EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-1.txt %%EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-15.txt %%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16.txt %%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16be.txt %%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16le.txt %%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-8.txt %%EXAMPLESDIR%%/tools/customcompleter/customcompleter.py %%EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyc %%EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyo %%EXAMPLESDIR%%/tools/customcompleter/customcompleter.qrc %%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.py %%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.pyc %%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.pyo %%EXAMPLESDIR%%/tools/customcompleter/resources/wordlist.txt %%EXAMPLESDIR%%/tools/i18n/i18n.py %%EXAMPLESDIR%%/tools/i18n/i18n.pyc %%EXAMPLESDIR%%/tools/i18n/i18n.pyo %%EXAMPLESDIR%%/tools/i18n/i18n.qrc %%EXAMPLESDIR%%/tools/i18n/i18n_rc.py %%EXAMPLESDIR%%/tools/i18n/i18n_rc.pyc %%EXAMPLESDIR%%/tools/i18n/i18n_rc.pyo %%EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_de.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_de.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_el.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_el.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_en.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_en.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_it.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_it.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_no.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_no.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.ts %%EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.qm %%EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.ts %%EXAMPLESDIR%%/tools/regexp.py %%EXAMPLESDIR%%/tools/regexp.pyc %%EXAMPLESDIR%%/tools/regexp.pyo %%EXAMPLESDIR%%/tools/settingseditor/inifiles/licensepage.ini %%EXAMPLESDIR%%/tools/settingseditor/inifiles/qsa.ini %%EXAMPLESDIR%%/tools/settingseditor/settingseditor.py %%EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyc %%EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyo %%EXAMPLESDIR%%/tutorials/addressbook/README %%EXAMPLESDIR%%/tutorials/addressbook/part1.py %%EXAMPLESDIR%%/tutorials/addressbook/part1.pyc %%EXAMPLESDIR%%/tutorials/addressbook/part1.pyo %%EXAMPLESDIR%%/tutorials/addressbook/part2.py %%EXAMPLESDIR%%/tutorials/addressbook/part2.pyc %%EXAMPLESDIR%%/tutorials/addressbook/part2.pyo %%EXAMPLESDIR%%/tutorials/addressbook/part3.py %%EXAMPLESDIR%%/tutorials/addressbook/part3.pyc %%EXAMPLESDIR%%/tutorials/addressbook/part3.pyo %%EXAMPLESDIR%%/tutorials/addressbook/part4.py %%EXAMPLESDIR%%/tutorials/addressbook/part4.pyc %%EXAMPLESDIR%%/tutorials/addressbook/part4.pyo %%EXAMPLESDIR%%/tutorials/addressbook/part5.py %%EXAMPLESDIR%%/tutorials/addressbook/part5.pyc %%EXAMPLESDIR%%/tutorials/addressbook/part5.pyo %%EXAMPLESDIR%%/tutorials/addressbook/part6.py %%EXAMPLESDIR%%/tutorials/addressbook/part6.pyc %%EXAMPLESDIR%%/tutorials/addressbook/part6.pyo %%EXAMPLESDIR%%/tutorials/addressbook/part7.py %%EXAMPLESDIR%%/tutorials/addressbook/part7.pyc %%EXAMPLESDIR%%/tutorials/addressbook/part7.pyo %%EXAMPLESDIR%%/webkit/README %%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.py %%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyc %%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyo %%EXAMPLESDIR%%/webkit/domtraversal/ui_window.py %%EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyc %%EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyo %%EXAMPLESDIR%%/webkit/domtraversal/window.ui -%%EXAMPLESDIR%%/webkit/fancybrowser/__pycache__/jquery_rc.cpython-34.pyc %%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.py %%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyc %%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyo %%EXAMPLESDIR%%/webkit/fancybrowser/jquery.min.js %%EXAMPLESDIR%%/webkit/fancybrowser/jquery.qrc %%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.py %%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.pyc %%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.pyo %%EXAMPLESDIR%%/webkit/formextractor/form.html %%EXAMPLESDIR%%/webkit/formextractor/formextractor.py %%EXAMPLESDIR%%/webkit/formextractor/formextractor.pyc %%EXAMPLESDIR%%/webkit/formextractor/formextractor.pyo %%EXAMPLESDIR%%/webkit/formextractor/formextractor.qrc %%EXAMPLESDIR%%/webkit/formextractor/formextractor.ui %%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.py %%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.pyc %%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.pyo %%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.py %%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyc %%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyo %%EXAMPLESDIR%%/webkit/framecapture.py %%EXAMPLESDIR%%/webkit/framecapture.pyc %%EXAMPLESDIR%%/webkit/framecapture.pyo %%EXAMPLESDIR%%/webkit/previewer/previewer.py %%EXAMPLESDIR%%/webkit/previewer/previewer.pyc %%EXAMPLESDIR%%/webkit/previewer/previewer.pyo %%EXAMPLESDIR%%/webkit/previewer/previewer.ui %%EXAMPLESDIR%%/webkit/previewer/ui_previewer.py %%EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyc %%EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyo %%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.py %%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyc %%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyo %%EXAMPLESDIR%%/webkit/simpleselector/ui_window.py %%EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyc %%EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyo %%EXAMPLESDIR%%/webkit/simpleselector/window.ui %%EXAMPLESDIR%%/widgets/README %%EXAMPLESDIR%%/widgets/analogclock.py %%EXAMPLESDIR%%/widgets/analogclock.pyc %%EXAMPLESDIR%%/widgets/analogclock.pyo %%EXAMPLESDIR%%/widgets/calculator.py %%EXAMPLESDIR%%/widgets/calculator.pyc %%EXAMPLESDIR%%/widgets/calculator.pyo %%EXAMPLESDIR%%/widgets/calendarwidget.py %%EXAMPLESDIR%%/widgets/calendarwidget.pyc %%EXAMPLESDIR%%/widgets/calendarwidget.pyo %%EXAMPLESDIR%%/widgets/charactermap.py %%EXAMPLESDIR%%/widgets/charactermap.pyc %%EXAMPLESDIR%%/widgets/charactermap.pyo %%EXAMPLESDIR%%/widgets/digitalclock.py %%EXAMPLESDIR%%/widgets/digitalclock.pyc %%EXAMPLESDIR%%/widgets/digitalclock.pyo %%EXAMPLESDIR%%/widgets/groupbox.py %%EXAMPLESDIR%%/widgets/groupbox.pyc %%EXAMPLESDIR%%/widgets/groupbox.pyo %%EXAMPLESDIR%%/widgets/icons/icons.py %%EXAMPLESDIR%%/widgets/icons/icons.pyc %%EXAMPLESDIR%%/widgets/icons/icons.pyo %%EXAMPLESDIR%%/widgets/icons/images/designer.png %%EXAMPLESDIR%%/widgets/icons/images/find_disabled.png %%EXAMPLESDIR%%/widgets/icons/images/find_normal.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_off_128x128.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_off_16x16.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_off_32x32.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_off_64x64.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_on_128x128.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_on_16x16.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_on_32x32.png %%EXAMPLESDIR%%/widgets/icons/images/monkey_on_64x64.png %%EXAMPLESDIR%%/widgets/icons/images/qt_extended_16x16.png %%EXAMPLESDIR%%/widgets/icons/images/qt_extended_32x32.png %%EXAMPLESDIR%%/widgets/icons/images/qt_extended_48x48.png %%EXAMPLESDIR%%/widgets/imageviewer.py %%EXAMPLESDIR%%/widgets/imageviewer.pyc %%EXAMPLESDIR%%/widgets/imageviewer.pyo %%EXAMPLESDIR%%/widgets/lineedits.py %%EXAMPLESDIR%%/widgets/lineedits.pyc %%EXAMPLESDIR%%/widgets/lineedits.pyo %%EXAMPLESDIR%%/widgets/movie/animation.mng %%EXAMPLESDIR%%/widgets/movie/movie.py %%EXAMPLESDIR%%/widgets/movie/movie.pyc %%EXAMPLESDIR%%/widgets/movie/movie.pyo %%EXAMPLESDIR%%/widgets/scribble.py %%EXAMPLESDIR%%/widgets/scribble.pyc %%EXAMPLESDIR%%/widgets/scribble.pyo %%EXAMPLESDIR%%/widgets/shapedclock.py %%EXAMPLESDIR%%/widgets/shapedclock.pyc %%EXAMPLESDIR%%/widgets/shapedclock.pyo %%EXAMPLESDIR%%/widgets/sliders.py %%EXAMPLESDIR%%/widgets/sliders.pyc %%EXAMPLESDIR%%/widgets/sliders.pyo %%EXAMPLESDIR%%/widgets/spinboxes.py %%EXAMPLESDIR%%/widgets/spinboxes.pyc %%EXAMPLESDIR%%/widgets/spinboxes.pyo %%EXAMPLESDIR%%/widgets/styles.py %%EXAMPLESDIR%%/widgets/styles.pyc %%EXAMPLESDIR%%/widgets/styles.pyo %%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked.png %%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_hover.png %%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_pressed.png %%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked.png %%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_hover.png %%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_pressed.png %%EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow.png %%EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow_disabled.png %%EXAMPLESDIR%%/widgets/stylesheet/images/frame.png %%EXAMPLESDIR%%/widgets/stylesheet/images/pagefold.png %%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton.png %%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_hover.png %%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_pressed.png %%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked.png %%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_hover.png %%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_pressed.png %%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked.png %%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_hover.png %%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_pressed.png %%EXAMPLESDIR%%/widgets/stylesheet/images/sizegrip.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spindown.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_hover.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_off.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_pressed.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spinup.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_hover.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_off.png %%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_pressed.png %%EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow.png %%EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow_disabled.png %%EXAMPLESDIR%%/widgets/stylesheet/mainwindow.ui %%EXAMPLESDIR%%/widgets/stylesheet/qss/coffee.qss %%EXAMPLESDIR%%/widgets/stylesheet/qss/default.qss %%EXAMPLESDIR%%/widgets/stylesheet/qss/pagefold.qss %%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.py %%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyc %%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyo %%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.qrc %%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.py %%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.pyc %%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.pyo %%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.py %%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyc %%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyo %%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.ui %%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.py %%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyc %%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyo %%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.py %%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyc %%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyo %%EXAMPLESDIR%%/widgets/tetrix.py %%EXAMPLESDIR%%/widgets/tetrix.pyc %%EXAMPLESDIR%%/widgets/tetrix.pyo %%EXAMPLESDIR%%/widgets/tooltips/images/circle.png %%EXAMPLESDIR%%/widgets/tooltips/images/square.png %%EXAMPLESDIR%%/widgets/tooltips/images/triangle.png %%EXAMPLESDIR%%/widgets/tooltips/tooltips.py %%EXAMPLESDIR%%/widgets/tooltips/tooltips.pyc %%EXAMPLESDIR%%/widgets/tooltips/tooltips.pyo %%EXAMPLESDIR%%/widgets/tooltips/tooltips.qrc %%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.py %%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.pyc %%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.pyo %%EXAMPLESDIR%%/widgets/wiggly.py %%EXAMPLESDIR%%/widgets/wiggly.pyc %%EXAMPLESDIR%%/widgets/wiggly.pyo %%EXAMPLESDIR%%/widgets/windowflags.py %%EXAMPLESDIR%%/widgets/windowflags.pyc %%EXAMPLESDIR%%/widgets/windowflags.pyo %%EXAMPLESDIR%%/xmlpatterns/README %%EXAMPLESDIR%%/xmlpatterns/schema/files/contact.xsd %%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_contact.xml %%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_order.xml %%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_recipe.xml %%EXAMPLESDIR%%/xmlpatterns/schema/files/order.xsd %%EXAMPLESDIR%%/xmlpatterns/schema/files/recipe.xsd %%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_contact.xml %%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_order.xml %%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_recipe.xml %%EXAMPLESDIR%%/xmlpatterns/schema/schema.py %%EXAMPLESDIR%%/xmlpatterns/schema/schema.pyc %%EXAMPLESDIR%%/xmlpatterns/schema/schema.pyo %%EXAMPLESDIR%%/xmlpatterns/schema/schema.qrc %%EXAMPLESDIR%%/xmlpatterns/schema/schema.ui %%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.py %%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.pyc %%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.pyo %%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.py %%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyc %%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyo Index: head/misc/py-qt5-doc/pkg-plist =================================================================== --- head/misc/py-qt5-doc/pkg-plist (revision 426061) +++ head/misc/py-qt5-doc/pkg-plist (revision 426062) @@ -1,2010 +1,2026 @@ %%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/_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.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/qlowenergycharacteristic.html %%DOCSDIR%%/html/api/qlowenergycontroller.html %%DOCSDIR%%/html/api/qlowenergydescriptor.html %%DOCSDIR%%/html/api/qlowenergyservice.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/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/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/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/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/x11-toolkits/py-qt5-gui/pkg-plist =================================================================== --- head/x11-toolkits/py-qt5-gui/pkg-plist (revision 426061) +++ head/x11-toolkits/py-qt5-gui/pkg-plist (revision 426062) @@ -1,94 +1,95 @@ %%PYTHON_SITELIBDIR%%/PyQt5/QtGui.so %%PYQT_SIPDIR%%/QtGui/QtGuimod.sip %%PYQT_SIPDIR%%/QtGui/opengl_types.sip %%PYQT_SIPDIR%%/QtGui/qabstracttextdocumentlayout.sip %%PYQT_SIPDIR%%/QtGui/qbackingstore.sip %%PYQT_SIPDIR%%/QtGui/qbitmap.sip %%PYQT_SIPDIR%%/QtGui/qbrush.sip %%PYQT_SIPDIR%%/QtGui/qclipboard.sip %%PYQT_SIPDIR%%/QtGui/qcolor.sip %%PYQT_SIPDIR%%/QtGui/qcursor.sip %%PYQT_SIPDIR%%/QtGui/qdesktopservices.sip %%PYQT_SIPDIR%%/QtGui/qdrag.sip %%PYQT_SIPDIR%%/QtGui/qevent.sip %%PYQT_SIPDIR%%/QtGui/qfont.sip %%PYQT_SIPDIR%%/QtGui/qfontdatabase.sip %%PYQT_SIPDIR%%/QtGui/qfontinfo.sip %%PYQT_SIPDIR%%/QtGui/qfontmetrics.sip %%PYQT_SIPDIR%%/QtGui/qgenericmatrix.sip %%PYQT_SIPDIR%%/QtGui/qglyphrun.sip %%PYQT_SIPDIR%%/QtGui/qguiapplication.sip %%PYQT_SIPDIR%%/QtGui/qicon.sip %%PYQT_SIPDIR%%/QtGui/qiconengine.sip %%PYQT_SIPDIR%%/QtGui/qimage.sip %%PYQT_SIPDIR%%/QtGui/qimageiohandler.sip %%PYQT_SIPDIR%%/QtGui/qimagereader.sip %%PYQT_SIPDIR%%/QtGui/qimagewriter.sip %%PYQT_SIPDIR%%/QtGui/qinputmethod.sip %%PYQT_SIPDIR%%/QtGui/qkeysequence.sip %%PYQT_SIPDIR%%/QtGui/qmatrix4x4.sip %%PYQT_SIPDIR%%/QtGui/qmovie.sip %%PYQT_SIPDIR%%/QtGui/qoffscreensurface.sip %%PYQT_SIPDIR%%/QtGui/qopenglbuffer.sip %%PYQT_SIPDIR%%/QtGui/qopenglcontext.sip %%PYQT_SIPDIR%%/QtGui/qopengldebug.sip %%PYQT_SIPDIR%%/QtGui/qopenglframebufferobject.sip %%PYQT_SIPDIR%%/QtGui/qopenglpaintdevice.sip %%PYQT_SIPDIR%%/QtGui/qopenglpixeltransferoptions.sip %%PYQT_SIPDIR%%/QtGui/qopenglshaderprogram.sip %%PYQT_SIPDIR%%/QtGui/qopengltexture.sip %%PYQT_SIPDIR%%/QtGui/qopengltimerquery.sip %%PYQT_SIPDIR%%/QtGui/qopenglversionfunctions.sip %%PYQT_SIPDIR%%/QtGui/qopenglvertexarrayobject.sip %%PYQT_SIPDIR%%/QtGui/qopenglwindow.sip %%PYQT_SIPDIR%%/QtGui/qpagedpaintdevice.sip %%PYQT_SIPDIR%%/QtGui/qpagelayout.sip %%PYQT_SIPDIR%%/QtGui/qpagesize.sip %%PYQT_SIPDIR%%/QtGui/qpaintdevice.sip %%PYQT_SIPDIR%%/QtGui/qpaintdevicewindow.sip %%PYQT_SIPDIR%%/QtGui/qpaintengine.sip %%PYQT_SIPDIR%%/QtGui/qpainter.sip %%PYQT_SIPDIR%%/QtGui/qpainterpath.sip %%PYQT_SIPDIR%%/QtGui/qpalette.sip %%PYQT_SIPDIR%%/QtGui/qpdfwriter.sip %%PYQT_SIPDIR%%/QtGui/qpen.sip %%PYQT_SIPDIR%%/QtGui/qpicture.sip %%PYQT_SIPDIR%%/QtGui/qpixelformat.sip %%PYQT_SIPDIR%%/QtGui/qpixmap.sip %%PYQT_SIPDIR%%/QtGui/qpixmapcache.sip %%PYQT_SIPDIR%%/QtGui/qpolygon.sip %%PYQT_SIPDIR%%/QtGui/qpygui_qlist.sip %%PYQT_SIPDIR%%/QtGui/qpygui_qpair.sip %%PYQT_SIPDIR%%/QtGui/qpygui_qvector.sip %%PYQT_SIPDIR%%/QtGui/qquaternion.sip %%PYQT_SIPDIR%%/QtGui/qrasterwindow.sip %%PYQT_SIPDIR%%/QtGui/qrawfont.sip %%PYQT_SIPDIR%%/QtGui/qregion.sip %%PYQT_SIPDIR%%/QtGui/qrgb.sip +%%PYQT_SIPDIR%%/QtGui/qrgba64.sip %%PYQT_SIPDIR%%/QtGui/qscreen.sip %%PYQT_SIPDIR%%/QtGui/qsessionmanager.sip %%PYQT_SIPDIR%%/QtGui/qstandarditemmodel.sip %%PYQT_SIPDIR%%/QtGui/qstatictext.sip %%PYQT_SIPDIR%%/QtGui/qstylehints.sip %%PYQT_SIPDIR%%/QtGui/qsurface.sip %%PYQT_SIPDIR%%/QtGui/qsurfaceformat.sip %%PYQT_SIPDIR%%/QtGui/qsyntaxhighlighter.sip %%PYQT_SIPDIR%%/QtGui/qtextcursor.sip %%PYQT_SIPDIR%%/QtGui/qtextdocument.sip %%PYQT_SIPDIR%%/QtGui/qtextdocumentfragment.sip %%PYQT_SIPDIR%%/QtGui/qtextdocumentwriter.sip %%PYQT_SIPDIR%%/QtGui/qtextformat.sip %%PYQT_SIPDIR%%/QtGui/qtextlayout.sip %%PYQT_SIPDIR%%/QtGui/qtextlist.sip %%PYQT_SIPDIR%%/QtGui/qtextobject.sip %%PYQT_SIPDIR%%/QtGui/qtextoption.sip %%PYQT_SIPDIR%%/QtGui/qtexttable.sip %%PYQT_SIPDIR%%/QtGui/qtouchdevice.sip %%PYQT_SIPDIR%%/QtGui/qtransform.sip %%PYQT_SIPDIR%%/QtGui/qvalidator.sip %%PYQT_SIPDIR%%/QtGui/qvector2d.sip %%PYQT_SIPDIR%%/QtGui/qvector3d.sip %%PYQT_SIPDIR%%/QtGui/qvector4d.sip %%PYQT_SIPDIR%%/QtGui/qwindow.sip %%PYQT_SIPDIR%%/QtGui/qwindowdefs.sip %%API%%share/qt5/qsci/api/python/QtGui.api