Index: Mk/Uses/pyqt.mk =================================================================== --- Mk/Uses/pyqt.mk +++ Mk/Uses/pyqt.mk @@ -192,9 +192,23 @@ py-webkitwidgets_DESC= Python bindings for QtWebKitWidgets module py-widgets_DESC= Python bindings for QTWidgets module -SIPDIR_REL= share/py-sip/PyQt${_PYQT_VERSION} +# To make concurrent installation easier, put sip and api files into +# versioned subdirectories: +# * sip files go to share/PyQt[45]/py(27|35|..)/sip +SIPDIR_REL= share/PyQt${_PYQT_VERSION}/py${PYTHON_SUFFIX}/sip +# * api files go to share/PyQt[45]/py(27|35|..)/api +# note: the api subdirectory gets added by the buildsystem +APIDIR_REL= share/PyQt${_PYQT_VERSION}/py${PYTHON_SUFFIX} +# +DOCDIR_REL= share/doc/PyQt${_PYQT_VERSION}/py${PYTHON_SUFFIX} +EXAMPLEDIR_REL= share/examples/PyQt${_PYQT_VERSION}/py${PYTHON_SUFFIX} + SIPDIR= ${PREFIX}/${SIPDIR_REL} -PLIST_SUB+= PYQT_SIPDIR=${SIPDIR_REL} +APIDIR= ${PREFIX}/${APIDIR_REL} + +PLIST_SUB+= PYQT_SIPDIR=${SIPDIR_REL} \ + PYQT_APIDIR=${APIDIR_REL} \ + PYQT_DOCSDIR=${PREFIX}/${DOCDIR_REL} .if defined(PYQT_DIST) PORTVERSION= ${PYQT_VERSION} @@ -214,11 +228,11 @@ .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 \ + --sip=${PREFIX}/bin/sip-${PYTHON_VER} \ --sipdir ${SIPDIR} # One of the things PyQt looks for to determine whether to build the Qt DBus Index: comms/py-qt5-serialport/Makefile =================================================================== --- comms/py-qt5-serialport/Makefile +++ comms/py-qt5-serialport/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= serialport +PORTREVISION= 1 CATEGORIES= comms devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui serialport qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtSerialPort API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: comms/py-qt5-serialport/pkg-plist =================================================================== --- comms/py-qt5-serialport/pkg-plist +++ comms/py-qt5-serialport/pkg-plist @@ -2,4 +2,4 @@ %%PYQT_SIPDIR%%/QtSerialPort/QtSerialPortmod.sip %%PYQT_SIPDIR%%/QtSerialPort/qserialport.sip %%PYQT_SIPDIR%%/QtSerialPort/qserialportinfo.sip -%%API%%share/qt5/qsci/api/python/QtSerialPort.api +%%API%%%%PYQT_APIDIR%%/api/python/QtSerialPort.api Index: databases/py-qt4-sql/Makefile =================================================================== --- databases/py-qt4-sql/Makefile +++ databases/py-qt4-sql/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= sql +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= databases devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui sql \ moc_build qmake_build @@ -21,7 +23,7 @@ OPTIONS_SUB= yes API_DESC= Install QtSql API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: databases/py-qt4-sql/pkg-plist =================================================================== --- databases/py-qt4-sql/pkg-plist +++ databases/py-qt4-sql/pkg-plist @@ -13,4 +13,4 @@ %%PYQT_SIPDIR%%/QtSql/qsqlrelationaltablemodel.sip %%PYQT_SIPDIR%%/QtSql/qsqlresult.sip %%PYQT_SIPDIR%%/QtSql/qsqltablemodel.sip -%%API%%share/qt4/qsci/api/python/QtSql.api +%%API%%%%PYQT_APIDIR%%/api/python/QtSql.api Index: databases/py-qt5-sql/Makefile =================================================================== --- databases/py-qt5-sql/Makefile +++ databases/py-qt5-sql/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= sql +PORTREVISION= 1 CATEGORIES= databases devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui sql widgets buildtools_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtSql API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: databases/py-qt5-sql/pkg-plist =================================================================== --- databases/py-qt5-sql/pkg-plist +++ databases/py-qt5-sql/pkg-plist @@ -13,4 +13,4 @@ %%PYQT_SIPDIR%%/QtSql/qsqlrelationaltablemodel.sip %%PYQT_SIPDIR%%/QtSql/qsqlresult.sip %%PYQT_SIPDIR%%/QtSql/qsqltablemodel.sip -%%API%%share/qt5/qsci/api/python/QtSql.api +%%API%%%%PYQT_APIDIR%%/api/python/QtSql.api Index: deskutils/calibre/Makefile =================================================================== --- deskutils/calibre/Makefile +++ deskutils/calibre/Makefile @@ -67,7 +67,8 @@ XDG_DATA_DIRS=${STAGEDIR}${PREFIX}/share \ XDG_CONFIG_HOME=${WRKDIR}/xdg-config \ XDG_UTILS_INSTALL_MODE=system \ - QMAKE=${QMAKE} + QMAKE=${QMAKE} \ + SIP_DIR=${SIPDIR} .include Index: devel/py-qt4-assistant/Makefile =================================================================== --- devel/py-qt4-assistant/Makefile +++ devel/py-qt4-assistant/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= assistant +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT4= assistantclient corelib gui network \ moc_build qmake_build @@ -21,7 +23,7 @@ OPTIONS_SUB= yes API_DESC= Install QtAssistant API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-assistant/pkg-plist =================================================================== --- devel/py-qt4-assistant/pkg-plist +++ devel/py-qt4-assistant/pkg-plist @@ -1,4 +1,4 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtAssistant.so %%PYQT_SIPDIR%%/QtAssistant/QtAssistantmod.sip %%PYQT_SIPDIR%%/QtAssistant/qassistantclient.sip -%%API%%share/qt4/qsci/api/python/QtAssistant.api +%%API%%%%PYQT_APIDIR%%/api/python/QtAssistant.api Index: devel/py-qt4-core/Makefile =================================================================== --- devel/py-qt4-core/Makefile +++ devel/py-qt4-core/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= core +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -12,7 +13,7 @@ PYQT_DIST= yes USES= python pyqt:4 -USE_PYTHON= py3kplist +USE_PYTHON= concurrent py3kplist USE_PYQT= sip USE_QT4= corelib qmake_build moc_build @@ -21,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtCore API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-core/files/patch-configure.py =================================================================== --- devel/py-qt4-core/files/patch-configure.py +++ devel/py-qt4-core/files/patch-configure.py @@ -1,6 +1,6 @@ ---- configure.py.orig 2014-07-03 17:00:02.000000000 +0300 -+++ configure.py 2014-07-19 23:51:03.000000000 +0300 -@@ -343,7 +343,7 @@ +--- configure.py.orig 2015-06-11 15:28:16 UTC ++++ configure.py +@@ -338,7 +338,7 @@ class ConfigurePyQt4: # Note that the order in which we check is important for the # consolidated module - a module's dependencies must be checked first. @@ -9,7 +9,7 @@ check_module("QtGui", "qwidget.h", "new QWidget()") check_module("QtHelp", "qhelpengine.h", "new QHelpEngine(\"foo\")") -@@ -372,8 +372,8 @@ +@@ -367,8 +367,8 @@ class ConfigurePyQt4: check_module("QtTest", "QtTest", "QTest::qSleep(0)") check_module("QtWebKit", "qwebpage.h", "new QWebPage()") check_module("QtXmlPatterns", "qxmlname.h", "new QXmlName()") @@ -20,7 +20,7 @@ check_module("QtAssistant", "qassistantclient.h", "new QAssistantClient(\"foo\")", extra_lib_dirs=ass_lib_dirs, extra_libs=ass_libs) -@@ -635,21 +635,6 @@ +@@ -630,21 +630,6 @@ class ConfigurePyQt4: if opts.staticplugins: sipconfig.inform("Unable to find the following static plugins: %s" % ", ".join(opts.staticplugins)) @@ -42,7 +42,7 @@ def _qpy_directories(self, mname, lib_name): """Return a 3-tuple of the directories containing the header files, the directory containing the library, and the name of the support library -@@ -740,6 +725,9 @@ +@@ -735,6 +720,9 @@ class ConfigurePyQt4: return libs, libdirs def module_installs(self): @@ -52,7 +52,7 @@ return [os.path.join(src_dir, "__init__.py"), "pyqtconfig.py"] def qpy_libs(self): -@@ -875,80 +863,82 @@ +@@ -870,80 +858,82 @@ include(%s) makefile.generate() tool.append("elementtree") @@ -146,16 +146,6 @@ - arch=sipcfg.arch, - deployment_target=sipcfg.deployment_target - ) -- -- makefile.extra_include_dirs.append(os.path.join(src_dir, "pylupdate")) -- -- if cxxflags_app != "": -- makefile.extra_cxxflags.append(cxxflags_app) -- -- makefile.generate() -- tool.append("pylupdate") -- -- sipconfig.inform("Creating pyrcc4 Makefile...") + makefile = sipconfig.ProgramMakefile( + configuration=sipcfg, + build_file=os.path.join(src_dir, "pylupdate", "pylupdate.sbf"), @@ -169,33 +159,39 @@ + arch=sipcfg.arch, + deployment_target=sipcfg.deployment_target + ) -+ + +- makefile.extra_include_dirs.append(os.path.join(src_dir, "pylupdate")) + makefile.extra_include_dirs.append(os.path.join(src_dir, "pylupdate")) -+ + +- if cxxflags_app != "": +- makefile.extra_cxxflags.append(cxxflags_app) + if cxxflags_app != "": + makefile.extra_cxxflags.append(cxxflags_app) -+ + +- makefile.generate() +- tool.append("pylupdate") + makefile.generate() + tool.append("pylupdate") -- makefile = pyrccMakefile() +- sipconfig.inform("Creating pyrcc4 Makefile...") + sipconfig.inform("Creating pyrcc4 Makefile...") +- makefile = pyrccMakefile() ++ makefile = pyrccMakefile() + - if cxxflags_app != "": - makefile.extra_cxxflags.append(cxxflags_app) -+ makefile = pyrccMakefile() ++ if cxxflags_app != "": ++ makefile.extra_cxxflags.append(cxxflags_app) - makefile.generate() - tool.append("pyrcc") -+ if cxxflags_app != "": -+ makefile.extra_cxxflags.append(cxxflags_app) -+ + makefile.generate() + tool.append("pyrcc") if opts.designer_plugin and "QtDesigner" in pyqt_modules: py_major = sipcfg.py_version >> 16 -@@ -2301,9 +2285,9 @@ +@@ -2284,9 +2274,9 @@ def main(): installs=[(pyqt.module_installs(), pyqt_modroot)] if opts.api: Index: devel/py-qt4-core/files/patch-designer_designer.pro-in =================================================================== --- /dev/null +++ devel/py-qt4-core/files/patch-designer_designer.pro-in @@ -0,0 +1,11 @@ +--- designer/designer.pro-in.orig 2016-12-30 16:31:39 UTC ++++ designer/designer.pro-in +@@ -11,7 +11,7 @@ lessThan(QT_MAJOR_VERSION, 5) { + CONFIG += designer + } + +-TARGET = pyqt4 ++TARGET = py%%PYTHON_VERSION%%qt4 + TEMPLATE = lib + + INCLUDEPATH += @PYINCDIR@ Index: devel/py-qt4-core/pkg-plist =================================================================== --- devel/py-qt4-core/pkg-plist +++ devel/py-qt4-core/pkg-plist @@ -197,4 +197,4 @@ %%PYQT_SIPDIR%%/QtCore/qwaitcondition.sip %%PYQT_SIPDIR%%/QtCore/qwineventnotifier.sip %%PYQT_SIPDIR%%/QtCore/qxmlstream.sip -%%API%%share/qt4/qsci/api/python/QtCore.api +%%API%%%%PYQT_APIDIR%%/api/python/QtCore.api Index: devel/py-qt4-dbus/Makefile =================================================================== --- devel/py-qt4-dbus/Makefile +++ devel/py-qt4-dbus/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= dbus +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib dbus moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtDBus API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-dbus/pkg-plist =================================================================== --- devel/py-qt4-dbus/pkg-plist +++ devel/py-qt4-dbus/pkg-plist @@ -14,4 +14,4 @@ %%PYQT_SIPDIR%%/QtDBus/qdbusunixfiledescriptor.sip %%PYQT_SIPDIR%%/QtDBus/qpydbuspendingreply.sip %%PYQT_SIPDIR%%/QtDBus/qpydbusreply.sip -%%API%%share/qt4/qsci/api/python/QtDBus.api +%%API%%%%PYQT_APIDIR%%/api/python/QtDBus.api Index: devel/py-qt4-dbussupport/Makefile =================================================================== --- devel/py-qt4-dbussupport/Makefile +++ devel/py-qt4-dbussupport/Makefile @@ -2,6 +2,7 @@ PORTNAME= dbussupport PORTREVISION= 1 +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -15,6 +16,7 @@ USES= pkgconfig python pyqt:4 USE_PYQT= sip_build +USE_PYTHON= concurrent py3kplist USE_QT4= corelib qmake_build moc_build OPTIONS_DEFINE= DEBUG Index: devel/py-qt4-declarative/Makefile =================================================================== --- devel/py-qt4-declarative/Makefile +++ devel/py-qt4-declarative/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= declarative +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run network_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib declarative gui network script sql svg xmlpatterns \ qmake_build moc_build @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtDeclarative API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-declarative/pkg-plist =================================================================== --- devel/py-qt4-declarative/pkg-plist +++ devel/py-qt4-declarative/pkg-plist @@ -18,4 +18,4 @@ %%PYQT_SIPDIR%%/QtDeclarative/qdeclarativeview.sip %%PYQT_SIPDIR%%/QtDeclarative/qpydeclarativelistproperty.sip %%PYQT_SIPDIR%%/QtDeclarative/qpydeclarativepropertyvaluesource.sip -%%API%%share/qt4/qsci/api/python/QtDeclarative.api +%%API%%%%PYQT_APIDIR%%/api/python/QtDeclarative.api Index: devel/py-qt4-designer/Makefile =================================================================== --- devel/py-qt4-designer/Makefile +++ devel/py-qt4-designer/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= designer +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib designer gui moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtDesigner API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-designer/pkg-plist =================================================================== --- devel/py-qt4-designer/pkg-plist +++ devel/py-qt4-designer/pkg-plist @@ -24,4 +24,4 @@ %%PYQT_SIPDIR%%/QtDesigner/qpydesignerpropertysheetextension.sip %%PYQT_SIPDIR%%/QtDesigner/qpydesignertaskmenuextension.sip %%PYQT_SIPDIR%%/QtDesigner/taskmenu.sip -%%API%%share/qt4/qsci/api/python/QtDesigner.api +%%API%%%%PYQT_APIDIR%%/api/python/QtDesigner.api Index: devel/py-qt4-designerplugin/Makefile =================================================================== --- devel/py-qt4-designerplugin/Makefile +++ devel/py-qt4-designerplugin/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= designerplugin +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -17,11 +18,16 @@ USES= python pyqt:4 USE_PYQT= sip_build +USE_PYTHON= py3kplist USE_QT4= corelib designer gui script xml moc_build qmake_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace -PLIST_FILES= %%QT_PLUGINDIR%%/designer/libpyqt4.so +PLIST_FILES= %%QT_PLUGINDIR%%/designer/libpy${PYTHON_SUFFIX}qt4.so + +post-patch: + ${REINPLACE_CMD} 's|%%PYTHON_VERSION%%|${PYTHON_SUFFIX}|g' \ + ${PATCH_WRKSRC}/designer/designer.pro-in .include Index: devel/py-qt4-help/Makefile =================================================================== --- devel/py-qt4-help/Makefile +++ devel/py-qt4-help/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= help +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui help network sql moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -18,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install QtHelp API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-help/pkg-plist =================================================================== --- devel/py-qt4-help/pkg-plist +++ devel/py-qt4-help/pkg-plist @@ -7,4 +7,4 @@ %%PYQT_SIPDIR%%/QtHelp/qhelpsearchengine.sip %%PYQT_SIPDIR%%/QtHelp/qhelpsearchquerywidget.sip %%PYQT_SIPDIR%%/QtHelp/qhelpsearchresultwidget.sip -%%API%%share/qt4/qsci/api/python/QtHelp.api +%%API%%%%PYQT_APIDIR%%/api/python/QtHelp.api Index: devel/py-qt4-qscintilla2/Makefile =================================================================== --- devel/py-qt4-qscintilla2/Makefile +++ devel/py-qt4-qscintilla2/Makefile @@ -3,6 +3,7 @@ PORTNAME= qscintilla2 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITES_QSCI2} @@ -22,14 +23,15 @@ USES= python pyqt:4 USE_PYQT= sip core gui +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui moc_build qmake_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace -QSCIDIR= ${PREFIX}/share/qt4/qsci +APIDIR= ${PREFIX}/share/qt4/qsci CONFIGURE_ARGS= --pyqt PyQt4 -d ${PYTHONPREFIX_SITELIBDIR}/PyQt4 -v ${SIPDIR} \ - --apidir ${QSCIDIR} --qmake ${QMAKE} --pyqt-sipdir ${SIPDIR} + --apidir ${APIDIR} --qmake ${QMAKE} --pyqt-sipdir ${SIPDIR} WRKSRC= ${WRKDIR}/${DISTNAME}/Python ALL_TARGET= #empty Index: devel/py-qt4-qscintilla2/pkg-plist =================================================================== --- devel/py-qt4-qscintilla2/pkg-plist +++ devel/py-qt4-qscintilla2/pkg-plist @@ -51,4 +51,4 @@ %%PYQT_SIPDIR%%/Qsci/qsciscintillabase.sip %%PYQT_SIPDIR%%/Qsci/qscistyle.sip %%PYQT_SIPDIR%%/Qsci/qscistyledtext.sip -share/qt4/qsci/api/python/QScintilla2.api +%%PYQT_APIDIR%%/api/python/QScintilla2.api Index: devel/py-qt4-script/Makefile =================================================================== --- devel/py-qt4-script/Makefile +++ devel/py-qt4-script/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= script +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib script moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtScript API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-script/pkg-plist =================================================================== --- devel/py-qt4-script/pkg-plist +++ devel/py-qt4-script/pkg-plist @@ -9,4 +9,4 @@ %%PYQT_SIPDIR%%/QtScript/qscriptstring.sip %%PYQT_SIPDIR%%/QtScript/qscriptvalue.sip %%PYQT_SIPDIR%%/QtScript/qscriptvalueiterator.sip -%%API%%share/qt4/qsci/api/python/QtScript.api +%%API%%%%PYQT_APIDIR%%/api/python/QtScript.api Index: devel/py-qt4-scripttools/Makefile =================================================================== --- devel/py-qt4-scripttools/Makefile +++ devel/py-qt4-scripttools/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= scripttools +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -12,6 +13,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run script_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui script scripttools moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtScriptTools API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-scripttools/pkg-plist =================================================================== --- devel/py-qt4-scripttools/pkg-plist +++ devel/py-qt4-scripttools/pkg-plist @@ -1,4 +1,4 @@ %%PYTHON_SITELIBDIR%%/PyQt4/QtScriptTools.so %%PYQT_SIPDIR%%/QtScriptTools/QtScriptToolsmod.sip %%PYQT_SIPDIR%%/QtScriptTools/qscriptenginedebugger.sip -%%API%%share/qt4/qsci/api/python/QtScriptTools.api +%%API%%%%PYQT_APIDIR%%/api/python/QtScriptTools.api Index: devel/py-qt4-test/Makefile =================================================================== --- devel/py-qt4-test/Makefile +++ devel/py-qt4-test/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= test +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui qtestlib moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtTest API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt4-test/pkg-plist =================================================================== --- devel/py-qt4-test/pkg-plist +++ devel/py-qt4-test/pkg-plist @@ -4,4 +4,4 @@ %%PYQT_SIPDIR%%/QtTest/qtestkeyboard.sip %%PYQT_SIPDIR%%/QtTest/qtestmouse.sip %%PYQT_SIPDIR%%/QtTest/qtestsystem.sip -%%API%%share/qt4/qsci/api/python/QtTest.api +%%API%%%%PYQT_APIDIR%%/api/python/QtTest.api Index: devel/py-qt4/Makefile =================================================================== --- devel/py-qt4/Makefile +++ devel/py-qt4/Makefile @@ -3,6 +3,7 @@ PORTNAME= qt4 PORTVERSION= ${PYQT4_VERSION} +PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Index: devel/py-qt5-core/Makefile =================================================================== --- devel/py-qt5-core/Makefile +++ devel/py-qt5-core/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= core +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -10,7 +11,7 @@ PYQT_DIST= yes USES= python pyqt:5 -USE_PYTHON= py3kplist +USE_PYTHON= concurrent py3kplist USE_PYQT= sip_build USE_QT5= core qmake_build @@ -19,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install QtCore API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 Index: devel/py-qt5-core/files/patch-configure.py =================================================================== --- devel/py-qt5-core/files/patch-configure.py +++ devel/py-qt5-core/files/patch-configure.py @@ -7,9 +7,9 @@ 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 @@ +--- configure.py.orig 2016-04-24 10:55:08 UTC ++++ configure.py +@@ -1482,13 +1482,13 @@ def generate_makefiles(target_config, ve generate_sip_module_code(target_config, verbose, no_timestamp, parts, tracing, 'Qt', sip_flags) @@ -28,7 +28,7 @@ # Generate the pyuic5 wrapper. pyuic_wrapper = generate_pyuic5_wrapper(target_config) -@@ -1507,22 +1507,6 @@ +@@ -1507,22 +1507,6 @@ def generate_makefiles(target_config, ve source_path('examples', 'quick', 'tutorials', 'extending', 'chapter6-plugins')) @@ -51,7 +51,7 @@ # Generate the Python dbus module. if target_config.pydbus_module_dir != '': mname = 'dbus' -@@ -1548,21 +1532,24 @@ +@@ -1548,21 +1532,24 @@ def generate_makefiles(target_config, ve out_f.write('''TEMPLATE = subdirs CONFIG += ordered nostrip SUBDIRS = %s @@ -81,7 +81,7 @@ pyuic5.files = %s pyuic5.path = %s INSTALLS += pyuic5 -@@ -1579,11 +1566,12 @@ +@@ -1579,11 +1566,12 @@ INSTALLS += pep484_stubs # Install the QScintilla .api file. if target_config.qsci_api: @@ -96,7 +96,7 @@ out_f.close() -@@ -2140,7 +2128,9 @@ +@@ -2140,7 +2128,9 @@ def check_dbus(target_config, verbose): else: dlist = target_config.dbus_inc_dirs Index: devel/py-qt5-core/files/patch-designer_designer.pro-in =================================================================== --- /dev/null +++ devel/py-qt5-core/files/patch-designer_designer.pro-in @@ -0,0 +1,11 @@ +--- designer/designer.pro-in.orig 2016-04-24 10:55:17 UTC ++++ designer/designer.pro-in +@@ -4,7 +4,7 @@ QT += designer + # Work around QTBUG-39300. + CONFIG -= android_install + +-TARGET = pyqt5 ++TARGET = py%%PYTHON_VERSION%%qt5 + TEMPLATE = lib + + INCLUDEPATH += @PYINCDIR@ Index: devel/py-qt5-core/files/patch-qmlscene_qmlscene.pro-in =================================================================== --- /dev/null +++ devel/py-qt5-core/files/patch-qmlscene_qmlscene.pro-in @@ -0,0 +1,11 @@ +--- qmlscene/qmlscene.pro-in.orig 2016-12-30 16:36:34 UTC ++++ qmlscene/qmlscene.pro-in +@@ -4,7 +4,7 @@ QT += qml + # Work around QTBUG-39300. + CONFIG -= android_install + +-TARGET = pyqt5qmlplugin ++TARGET = py%%PYTHON_VERSION%%qt5qmlplugin + TEMPLATE = lib + + INCLUDEPATH += @PYINCDIR@ @SIPINCDIR@ Index: devel/py-qt5-core/pkg-plist =================================================================== --- devel/py-qt5-core/pkg-plist +++ devel/py-qt5-core/pkg-plist @@ -217,4 +217,4 @@ %%PYQT_SIPDIR%%/QtCore/qwaitcondition.sip %%PYQT_SIPDIR%%/QtCore/qwineventnotifier.sip %%PYQT_SIPDIR%%/QtCore/qxmlstream.sip -%%API%%share/qt5/qsci/api/python/QtCore.api +%%API%%%%PYQT_APIDIR%%/api/python/QtCore.api Index: devel/py-qt5-dbus/Makefile =================================================================== --- devel/py-qt5-dbus/Makefile +++ devel/py-qt5-dbus/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= dbus +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:5 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT5= core dbus qmake_build OPTIONS_DEFINE= API DEBUG @@ -18,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install QtDBus API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt5-dbus/pkg-plist =================================================================== --- devel/py-qt5-dbus/pkg-plist +++ devel/py-qt5-dbus/pkg-plist @@ -14,4 +14,4 @@ %%PYQT_SIPDIR%%/QtDBus/qdbusunixfiledescriptor.sip %%PYQT_SIPDIR%%/QtDBus/qpydbuspendingreply.sip %%PYQT_SIPDIR%%/QtDBus/qpydbusreply.sip -%%API%%share/qt5/qsci/api/python/QtDBus.api +%%API%%%%PYQT_APIDIR%%/api/python/QtDBus.api Index: devel/py-qt5-dbussupport/Makefile =================================================================== --- devel/py-qt5-dbussupport/Makefile +++ devel/py-qt5-dbussupport/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= dbussupport +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -14,6 +15,7 @@ USES= pkgconfig python pyqt:5 USE_PYQT= sip_build +USE_PYTHON= concurrent py3kplist USE_QT5= core buildtools_build qmake_build OPTIONS_DEFINE= DEBUG Index: devel/py-qt5-designer/Makefile =================================================================== --- devel/py-qt5-designer/Makefile +++ devel/py-qt5-designer/Makefile @@ -2,6 +2,7 @@ PORTNAME= designer PORTREVISION= 1 +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -13,6 +14,7 @@ USES= python pyqt:5 USE_GL= yes USE_PYQT= sip_build core_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui designer widgets xml \ buildtools_build qmake_build @@ -21,7 +23,7 @@ OPTIONS_SUB= yes API_DESC= Install QtDesigner API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt5-designer/pkg-plist =================================================================== --- devel/py-qt5-designer/pkg-plist +++ devel/py-qt5-designer/pkg-plist @@ -24,4 +24,4 @@ %%PYQT_SIPDIR%%/QtDesigner/qpydesignerpropertysheetextension.sip %%PYQT_SIPDIR%%/QtDesigner/qpydesignertaskmenuextension.sip %%PYQT_SIPDIR%%/QtDesigner/taskmenu.sip -%%API%%share/qt5/qsci/api/python/QtDesigner.api +%%API%%%%PYQT_APIDIR%%/api/python/QtDesigner.api Index: devel/py-qt5-designerplugin/Makefile =================================================================== --- devel/py-qt5-designerplugin/Makefile +++ devel/py-qt5-designerplugin/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= designerplugin +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -16,12 +17,17 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build +USE_PYTHON= py3kplist USE_QT5= core designer gui xml widgets \ buildtools_build qmake_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace -PLIST_FILES= %%QT_PLUGINDIR%%/designer/libpyqt5.so +PLIST_FILES= %%QT_PLUGINDIR%%/designer/libpy${PYTHON_SUFFIX}qt5.so + +post-patch: + ${REINPLACE_CMD} 's|%%PYTHON_VERSION%%|${PYTHON_SUFFIX}|g' \ + ${PATCH_WRKSRC}/designer/designer.pro-in .include Index: devel/py-qt5-help/Makefile =================================================================== --- devel/py-qt5-help/Makefile +++ devel/py-qt5-help/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= help +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -12,14 +13,15 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run -USE_QT5= core gui widgets help network sql buildtools_build qmake_build xml +USE_PYTHON= concurrent py3kplist +USE_QT5= core gui widgets help network sql buildtools_build qmake_build xml OPTIONS_DEFINE= API DEBUG OPTIONS_DEFAULT=API OPTIONS_SUB= yes API_DESC= Install QtHelp API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt5-help/pkg-plist =================================================================== --- devel/py-qt5-help/pkg-plist +++ devel/py-qt5-help/pkg-plist @@ -7,4 +7,4 @@ %%PYQT_SIPDIR%%/QtHelp/qhelpsearchengine.sip %%PYQT_SIPDIR%%/QtHelp/qhelpsearchquerywidget.sip %%PYQT_SIPDIR%%/QtHelp/qhelpsearchresultwidget.sip -%%API%%share/qt5/qsci/api/python/QtHelp.api +%%API%%%%PYQT_APIDIR%%/api/python/QtHelp.api Index: devel/py-qt5-qscintilla2/Makefile =================================================================== --- devel/py-qt5-qscintilla2/Makefile +++ devel/py-qt5-qscintilla2/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= qscintilla2 +PORTREVISION= 1 PORTVERSION= ${QSCI2_VERSION} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITES_QSCI2} @@ -21,14 +22,15 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip core gui printsupport widgets +USE_PYTHON= concurrent py3kplist USE_QT5= core gui printsupport widgets buildtools_build qmake_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace -QSCIDIR= ${PREFIX}/share/qt5/qsci +APIDIR= ${PREFIX}/share/qt5/qsci CONFIGURE_ARGS= --pyqt PyQt5 -d ${PYTHONPREFIX_SITELIBDIR}/PyQt5 -v ${SIPDIR} \ - --apidir ${QSCIDIR} --qmake ${QMAKE} --pyqt-sipdir ${SIPDIR} + --apidir ${APIDIR} --qmake ${QMAKE} --pyqt-sipdir ${SIPDIR} WRKSRC= ${WRKDIR}/${DISTNAME}/Python ALL_TARGET= #empty Index: devel/py-qt5-qscintilla2/pkg-plist =================================================================== --- devel/py-qt5-qscintilla2/pkg-plist +++ devel/py-qt5-qscintilla2/pkg-plist @@ -51,4 +51,4 @@ %%PYQT_SIPDIR%%/Qsci/qsciscintillabase.sip %%PYQT_SIPDIR%%/Qsci/qscistyle.sip %%PYQT_SIPDIR%%/Qsci/qscistyledtext.sip -%%QT_DATADIR%%/qsci/api/python/QScintilla2.api +%%PYQT_APIDIR%%/api/python/QScintilla2.api Index: devel/py-qt5-test/Makefile =================================================================== --- devel/py-qt5-test/Makefile +++ devel/py-qt5-test/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= test +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui testlib widgets \ buildtools_build qmake_build @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtTest API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: devel/py-qt5-test/pkg-plist =================================================================== --- devel/py-qt5-test/pkg-plist +++ devel/py-qt5-test/pkg-plist @@ -6,4 +6,4 @@ %%PYQT_SIPDIR%%/QtTest/qtestmouse.sip %%PYQT_SIPDIR%%/QtTest/qtestsystem.sip %%PYQT_SIPDIR%%/QtTest/qtesttouch.sip -%%API%%share/qt5/qsci/api/python/QtTest.api +%%API%%%%PYQT_APIDIR%%/api/python/QtTest.api Index: devel/py-qt5/Makefile =================================================================== --- devel/py-qt5/Makefile +++ devel/py-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= qt5 PORTVERSION= ${PYQT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,8 +11,8 @@ USES= metaport python pyqt:5 -OPTIONS_DEFINE= core dbus dbussupport demo designer \ - designerplugin doc gui multimedia multimediawidgets \ +OPTIONS_DEFINE= core dbus dbussupport demo designer designerplugin \ + doc gui multimedia multimediawidgets \ network opengl printsupport qml qscintilla2 sql \ serialport svg test webkit webkitwidgets \ widgets xml xmlpatterns Index: devel/py-sip/Makefile =================================================================== --- devel/py-sip/Makefile +++ devel/py-sip/Makefile @@ -3,6 +3,7 @@ PORTNAME= sip PORTVERSION= ${SIP_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITES_SIP} Index: devel/qscintilla2-designerplugin-qt5/Makefile =================================================================== --- devel/qscintilla2-designerplugin-qt5/Makefile +++ devel/qscintilla2-designerplugin-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= designerplugin-qt5 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} PKGNAMEPREFIX= qscintilla2- Index: devel/qscintilla2-designerplugin/Makefile =================================================================== --- devel/qscintilla2-designerplugin/Makefile +++ devel/qscintilla2-designerplugin/Makefile @@ -3,6 +3,7 @@ PORTNAME= designerplugin PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} Index: devel/qscintilla2-qt5/Makefile =================================================================== --- devel/qscintilla2-qt5/Makefile +++ devel/qscintilla2-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= qscintilla2-qt5 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} DISTNAME= ${QSCI2_DISTNAME} Index: devel/qscintilla2/Makefile =================================================================== --- devel/qscintilla2/Makefile +++ devel/qscintilla2/Makefile @@ -3,6 +3,7 @@ PORTNAME= qscintilla2 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} Index: graphics/py-qt4-svg/Makefile =================================================================== --- graphics/py-qt4-svg/Makefile +++ graphics/py-qt4-svg/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= svg +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui svg moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtSvg API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: graphics/py-qt4-svg/pkg-plist =================================================================== --- graphics/py-qt4-svg/pkg-plist +++ graphics/py-qt4-svg/pkg-plist @@ -4,4 +4,4 @@ %%PYQT_SIPDIR%%/QtSvg/qsvggenerator.sip %%PYQT_SIPDIR%%/QtSvg/qsvgrenderer.sip %%PYQT_SIPDIR%%/QtSvg/qsvgwidget.sip -%%API%%share/qt4/qsci/api/python/QtSvg.api +%%API%%%%PYQT_APIDIR%%/api/python/QtSvg.api Index: graphics/py-qt5-svg/Makefile =================================================================== --- graphics/py-qt5-svg/Makefile +++ graphics/py-qt5-svg/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= svg +PORTREVISION= 1 CATEGORIES= graphics devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui svg widgets qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtSvg API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: graphics/py-qt5-svg/pkg-plist =================================================================== --- graphics/py-qt5-svg/pkg-plist +++ graphics/py-qt5-svg/pkg-plist @@ -4,4 +4,4 @@ %%PYQT_SIPDIR%%/QtSvg/qsvggenerator.sip %%PYQT_SIPDIR%%/QtSvg/qsvgrenderer.sip %%PYQT_SIPDIR%%/QtSvg/qsvgwidget.sip -%%API%%share/qt5/qsci/api/python/QtSvg.api +%%API%%%%PYQT_APIDIR%%/api/python/QtSvg.api Index: lang/py-qt5-qml/Makefile =================================================================== --- lang/py-qt5-qml/Makefile +++ lang/py-qt5-qml/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= qml +PORTREVISION= 1 CATEGORIES= lang devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run network_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui network qml buildtools_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,9 +21,16 @@ OPTIONS_SUB= yes API_DESC= Install QtQml API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace +PLIST_SUB+= PYTHON_SUFFIX=${PYTHON_SUFFIX} + +post-patch: + ${REINPLACE_CMD} 's|%%PYTHON_VERSION%%|${PYTHON_SUFFIX}|g' \ + ${PATCH_WRKSRC}/qmlscene/qmlscene.pro-in + + .include Index: lang/py-qt5-qml/pkg-plist =================================================================== --- lang/py-qt5-qml/pkg-plist +++ lang/py-qt5-qml/pkg-plist @@ -1,5 +1,5 @@ %%PYTHON_SITELIBDIR%%/PyQt5/QtQml.so -%%QT_PLUGINDIR%%/PyQt5/libpyqt5qmlplugin.so +%%QT_PLUGINDIR%%/PyQt5/libpy%%PYTHON_SUFFIX%%qt5qmlplugin.so %%PYQT_SIPDIR%%/QtQml/QtQmlmod.sip %%PYQT_SIPDIR%%/QtQml/qjsengine.sip %%PYQT_SIPDIR%%/QtQml/qjsvalue.sip @@ -24,4 +24,4 @@ %%PYQT_SIPDIR%%/QtQml/qqmlpropertymap.sip %%PYQT_SIPDIR%%/QtQml/qqmlpropertyvaluesource.sip %%PYQT_SIPDIR%%/QtQml/qqmlscriptstring.sip -%%API%%share/qt5/qsci/api/python/QtQml.api +%%API%%%%PYQT_APIDIR%%/api/python/QtQml.api Index: misc/py-qt4-demo/Makefile =================================================================== --- misc/py-qt4-demo/Makefile +++ misc/py-qt4-demo/Makefile @@ -3,6 +3,7 @@ PORTNAME= demo PORTVERSION= ${PYQT4_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= misc devel python MASTER_SITES= ${MASTER_SITES_PYQT4} @@ -16,8 +17,12 @@ NO_BUILD= yes USES= python pyqt:4 +USE_PYTHON= concurrent py3kplist -EXAMPLESDIR= ${PREFIX}/share/examples/py-qt4 +# EXAMPLESDIR gets overritten by concurrent, but UNIQUE_SUFFIX does not take... +# so do it manually. +PYQT_EXAMPLESDIR= ${PREFIX}/${EXAMPLEDIR_REL} +PLIST_SUB+= PYQT_EXAMPLESDIR="${PYQT_EXAMPLESDIR}" USE_PYQT= assistant_run core_run dbus_run dbussupport_run declarative_run \ designer_run designerplugin_run doc_run gui_run help_run \ @@ -27,13 +32,13 @@ do-install: ${RM} ${WRKSRC}/examples/designer/plugins/plugins.py.orig - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${PYQT_EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${PYQT_EXAMPLESDIR} ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ - ${STAGEDIR}${EXAMPLESDIR} + ${STAGEDIR}${PYQT_EXAMPLESDIR} ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ - ${STAGEDIR}${EXAMPLESDIR} + ${STAGEDIR}${PYQT_EXAMPLESDIR} .include Index: misc/py-qt4-demo/pkg-plist =================================================================== --- misc/py-qt4-demo/pkg-plist +++ misc/py-qt4-demo/pkg-plist @@ -1,1381 +1,1381 @@ -%%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_rc2.py -%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc2.pyc -%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc2.pyo -%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc3.py -%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc3.pyc -%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc3.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_rc2.py -%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc2.pyc -%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc2.pyo -%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc3.py -%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc3.pyc -%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc3.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_rc2.py -%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc2.pyc -%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc2.pyo -%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc3.py -%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc3.pyc -%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc3.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_rc2.py -%%EXAMPLESDIR%%/animation/easing/easing_rc2.pyc -%%EXAMPLESDIR%%/animation/easing/easing_rc2.pyo -%%EXAMPLESDIR%%/animation/easing/easing_rc3.py -%%EXAMPLESDIR%%/animation/easing/easing_rc3.pyc -%%EXAMPLESDIR%%/animation/easing/easing_rc3.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_rc2.py -%%EXAMPLESDIR%%/animation/states/states_rc2.pyc -%%EXAMPLESDIR%%/animation/states/states_rc2.pyo -%%EXAMPLESDIR%%/animation/states/states_rc3.py -%%EXAMPLESDIR%%/animation/states/states_rc3.pyc -%%EXAMPLESDIR%%/animation/states/states_rc3.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_rc2.py -%%EXAMPLESDIR%%/animation/stickman/stickman_rc2.pyc -%%EXAMPLESDIR%%/animation/stickman/stickman_rc2.pyo -%%EXAMPLESDIR%%/animation/stickman/stickman_rc3.py -%%EXAMPLESDIR%%/animation/stickman/stickman_rc3.pyc -%%EXAMPLESDIR%%/animation/stickman/stickman_rc3.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%%/declarative/modelviews/objectlistmodel/objectlistmodel.py -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel.pyc -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel.pyo -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel.qrc -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc2.py -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc2.pyc -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc2.pyo -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc3.py -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc3.pyc -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc3.pyo -%%EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/view.qml -%%EXAMPLESDIR%%/declarative/toys/README -%%EXAMPLESDIR%%/declarative/toys/clocks/clocks.qml -%%EXAMPLESDIR%%/declarative/toys/clocks/content/Clock.qml -%%EXAMPLESDIR%%/declarative/toys/clocks/content/QuitButton.qml -%%EXAMPLESDIR%%/declarative/toys/clocks/content/background.png -%%EXAMPLESDIR%%/declarative/toys/clocks/content/center.png -%%EXAMPLESDIR%%/declarative/toys/clocks/content/clock-night.png -%%EXAMPLESDIR%%/declarative/toys/clocks/content/clock.png -%%EXAMPLESDIR%%/declarative/toys/clocks/content/hour.png -%%EXAMPLESDIR%%/declarative/toys/clocks/content/minute.png -%%EXAMPLESDIR%%/declarative/toys/clocks/content/quit.png -%%EXAMPLESDIR%%/declarative/toys/clocks/content/second.png -%%EXAMPLESDIR%%/declarative/toys/corkboards/Day.qml -%%EXAMPLESDIR%%/declarative/toys/corkboards/cork.jpg -%%EXAMPLESDIR%%/declarative/toys/corkboards/corkboards.qml -%%EXAMPLESDIR%%/declarative/toys/corkboards/note-yellow.png -%%EXAMPLESDIR%%/declarative/toys/corkboards/tack.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/Button.qml -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/GenericSceneItem.qml -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/PaletteItem.qml -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/PerspectiveItem.qml -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/Sun.qml -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/dynamicscene.qml -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/images/face-smile.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/images/moon.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/images/rabbit_brown.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/images/rabbit_bw.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/images/star.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/images/sun.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/images/tree_s.png -%%EXAMPLESDIR%%/declarative/toys/dynamicscene/itemCreation.js -%%EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/Button.qml -%%EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/TicTac.qml -%%EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/pics/board.png -%%EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/pics/o.png -%%EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/pics/x.png -%%EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/tic-tac-toe.js -%%EXAMPLESDIR%%/declarative/toys/tic-tac-toe/tic-tac-toe.qml -%%EXAMPLESDIR%%/declarative/toys/tvtennis/tvtennis.qml -%%EXAMPLESDIR%%/declarative/ui-components/README -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/Dial.qml -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/QuitButton.qml -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/background.png -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/needle.png -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/needle_shadow.png -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/overlay.png -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/quit.png -%%EXAMPLESDIR%%/declarative/ui-components/dialcontrol/dialcontrol.qml -%%EXAMPLESDIR%%/declarative/ui-components/flipable/content/5_heart.png -%%EXAMPLESDIR%%/declarative/ui-components/flipable/content/9_club.png -%%EXAMPLESDIR%%/declarative/ui-components/flipable/content/Card.qml -%%EXAMPLESDIR%%/declarative/ui-components/flipable/content/back.png -%%EXAMPLESDIR%%/declarative/ui-components/flipable/flipable.qml -%%EXAMPLESDIR%%/declarative/ui-components/progressbar/content/ProgressBar.qml -%%EXAMPLESDIR%%/declarative/ui-components/progressbar/content/background.png -%%EXAMPLESDIR%%/declarative/ui-components/progressbar/main.qml -%%EXAMPLESDIR%%/declarative/ui-components/scrollbar/ScrollBar.qml -%%EXAMPLESDIR%%/declarative/ui-components/scrollbar/main.qml -%%EXAMPLESDIR%%/declarative/ui-components/scrollbar/niagara_falls.jpg -%%EXAMPLESDIR%%/declarative/ui-components/searchbox/SearchBox.qml -%%EXAMPLESDIR%%/declarative/ui-components/searchbox/images/clear.png -%%EXAMPLESDIR%%/declarative/ui-components/searchbox/images/lineedit-bg-focus.png -%%EXAMPLESDIR%%/declarative/ui-components/searchbox/images/lineedit-bg.png -%%EXAMPLESDIR%%/declarative/ui-components/searchbox/main.qml -%%EXAMPLESDIR%%/declarative/ui-components/slideswitch/content/Switch.qml -%%EXAMPLESDIR%%/declarative/ui-components/slideswitch/content/background.svg -%%EXAMPLESDIR%%/declarative/ui-components/slideswitch/content/knob.svg -%%EXAMPLESDIR%%/declarative/ui-components/slideswitch/slideswitch.qml -%%EXAMPLESDIR%%/declarative/ui-components/spinner/content/Spinner.qml -%%EXAMPLESDIR%%/declarative/ui-components/spinner/content/spinner-bg.png -%%EXAMPLESDIR%%/declarative/ui-components/spinner/content/spinner-select.png -%%EXAMPLESDIR%%/declarative/ui-components/spinner/main.qml -%%EXAMPLESDIR%%/declarative/ui-components/tabwidget/TabWidget.qml -%%EXAMPLESDIR%%/declarative/ui-components/tabwidget/main.qml -%%EXAMPLESDIR%%/declarative/ui-components/tabwidget/tab.png -%%EXAMPLESDIR%%/demos/README -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/Explosion.qml -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/Tile.qml -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/No-Ones-Laughing-3.jpg -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/back.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/bomb-color.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/bomb.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/face-sad.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/face-smile-big.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/face-smile.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/flag-color.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/flag.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/front.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/quit.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/star.png -%%EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/qmldir -%%EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.py -%%EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.pyc -%%EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.pyo -%%EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.qml -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/BoomBlock.qml -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/Button.qml -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/Dialog.qml -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/background.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/blueStar.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/blueStone.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/greenStar.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/greenStone.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/redStar.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/redStone.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/star.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/yellowStone.png -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/qmldir -%%EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/samegame.js -%%EXAMPLESDIR%%/demos/declarative/samegame/highscores/README -%%EXAMPLESDIR%%/demos/declarative/samegame/highscores/score_data.xml -%%EXAMPLESDIR%%/demos/declarative/samegame/highscores/score_style.xsl -%%EXAMPLESDIR%%/demos/declarative/samegame/highscores/scores.php -%%EXAMPLESDIR%%/demos/declarative/samegame/samegame.qml -%%EXAMPLESDIR%%/demos/embedded/lightmaps.py -%%EXAMPLESDIR%%/demos/embedded/lightmaps.pyc -%%EXAMPLESDIR%%/demos/embedded/lightmaps.pyo -%%EXAMPLESDIR%%/demos/embeddeddialogs/No-Ones-Laughing-3.jpg -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.py -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.pyc -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.pyo -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.ui -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.py -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.pyc -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.pyo -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.qrc -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc2.py -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc2.pyc -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc2.pyo -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc3.py -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc3.pyc -%%EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc3.pyo -%%EXAMPLESDIR%%/demos/qtdemo/colors.py -%%EXAMPLESDIR%%/demos/qtdemo/colors.pyc -%%EXAMPLESDIR%%/demos/qtdemo/colors.pyo -%%EXAMPLESDIR%%/demos/qtdemo/demoitem.py -%%EXAMPLESDIR%%/demos/qtdemo/demoitem.pyc -%%EXAMPLESDIR%%/demos/qtdemo/demoitem.pyo -%%EXAMPLESDIR%%/demos/qtdemo/demoitemanimation.py -%%EXAMPLESDIR%%/demos/qtdemo/demoitemanimation.pyc -%%EXAMPLESDIR%%/demos/qtdemo/demoitemanimation.pyo -%%EXAMPLESDIR%%/demos/qtdemo/demoscene.py -%%EXAMPLESDIR%%/demos/qtdemo/demoscene.pyc -%%EXAMPLESDIR%%/demos/qtdemo/demoscene.pyo -%%EXAMPLESDIR%%/demos/qtdemo/demotextitem.py -%%EXAMPLESDIR%%/demos/qtdemo/demotextitem.pyc -%%EXAMPLESDIR%%/demos/qtdemo/demotextitem.pyo -%%EXAMPLESDIR%%/demos/qtdemo/dockitem.py -%%EXAMPLESDIR%%/demos/qtdemo/dockitem.pyc -%%EXAMPLESDIR%%/demos/qtdemo/dockitem.pyo -%%EXAMPLESDIR%%/demos/qtdemo/examplecontent.py -%%EXAMPLESDIR%%/demos/qtdemo/examplecontent.pyc -%%EXAMPLESDIR%%/demos/qtdemo/examplecontent.pyo -%%EXAMPLESDIR%%/demos/qtdemo/guide.py -%%EXAMPLESDIR%%/demos/qtdemo/guide.pyc -%%EXAMPLESDIR%%/demos/qtdemo/guide.pyo -%%EXAMPLESDIR%%/demos/qtdemo/guidecircle.py -%%EXAMPLESDIR%%/demos/qtdemo/guidecircle.pyc -%%EXAMPLESDIR%%/demos/qtdemo/guidecircle.pyo -%%EXAMPLESDIR%%/demos/qtdemo/guideline.py -%%EXAMPLESDIR%%/demos/qtdemo/guideline.pyc -%%EXAMPLESDIR%%/demos/qtdemo/guideline.pyo -%%EXAMPLESDIR%%/demos/qtdemo/headingitem.py -%%EXAMPLESDIR%%/demos/qtdemo/headingitem.pyc -%%EXAMPLESDIR%%/demos/qtdemo/headingitem.pyo -%%EXAMPLESDIR%%/demos/qtdemo/imageitem.py -%%EXAMPLESDIR%%/demos/qtdemo/imageitem.pyc -%%EXAMPLESDIR%%/demos/qtdemo/imageitem.pyo -%%EXAMPLESDIR%%/demos/qtdemo/images/demobg.png -%%EXAMPLESDIR%%/demos/qtdemo/images/qtlogo_small.png -%%EXAMPLESDIR%%/demos/qtdemo/images/trolltech-logo.png -%%EXAMPLESDIR%%/demos/qtdemo/itemcircleanimation.py -%%EXAMPLESDIR%%/demos/qtdemo/itemcircleanimation.pyc -%%EXAMPLESDIR%%/demos/qtdemo/itemcircleanimation.pyo -%%EXAMPLESDIR%%/demos/qtdemo/letteritem.py -%%EXAMPLESDIR%%/demos/qtdemo/letteritem.pyc -%%EXAMPLESDIR%%/demos/qtdemo/letteritem.pyo -%%EXAMPLESDIR%%/demos/qtdemo/mainwindow.py -%%EXAMPLESDIR%%/demos/qtdemo/mainwindow.pyc -%%EXAMPLESDIR%%/demos/qtdemo/mainwindow.pyo -%%EXAMPLESDIR%%/demos/qtdemo/menucontent.py -%%EXAMPLESDIR%%/demos/qtdemo/menucontent.pyc -%%EXAMPLESDIR%%/demos/qtdemo/menucontent.pyo -%%EXAMPLESDIR%%/demos/qtdemo/menumanager.py -%%EXAMPLESDIR%%/demos/qtdemo/menumanager.pyc -%%EXAMPLESDIR%%/demos/qtdemo/menumanager.pyo -%%EXAMPLESDIR%%/demos/qtdemo/qmlShell.qml -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo.py -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo.pyc -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo.pyo -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo.qrc -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc2.py -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc2.pyc -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc2.pyo -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc3.py -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc3.pyc -%%EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc3.pyo -%%EXAMPLESDIR%%/demos/qtdemo/scanitem.py -%%EXAMPLESDIR%%/demos/qtdemo/scanitem.pyc -%%EXAMPLESDIR%%/demos/qtdemo/scanitem.pyo -%%EXAMPLESDIR%%/demos/qtdemo/score.py -%%EXAMPLESDIR%%/demos/qtdemo/score.pyc -%%EXAMPLESDIR%%/demos/qtdemo/score.pyo -%%EXAMPLESDIR%%/demos/qtdemo/textbutton.py -%%EXAMPLESDIR%%/demos/qtdemo/textbutton.pyc -%%EXAMPLESDIR%%/demos/qtdemo/textbutton.pyo -%%EXAMPLESDIR%%/demos/qtdemo/xml/examples.xml -%%EXAMPLESDIR%%/demos/spreadsheet/images/interview.png -%%EXAMPLESDIR%%/demos/spreadsheet/printview.py -%%EXAMPLESDIR%%/demos/spreadsheet/printview.pyc -%%EXAMPLESDIR%%/demos/spreadsheet/printview.pyo -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.py -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.pyc -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.pyo -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.qrc -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc2.py -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc2.pyc -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc2.pyo -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc3.py -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc3.pyc -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc3.pyo -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheetdelegate.py -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheetdelegate.pyc -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheetdelegate.pyo -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheetitem.py -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheetitem.pyc -%%EXAMPLESDIR%%/demos/spreadsheet/spreadsheetitem.pyo -%%EXAMPLESDIR%%/demos/spreadsheet/util.py -%%EXAMPLESDIR%%/demos/spreadsheet/util.pyc -%%EXAMPLESDIR%%/demos/spreadsheet/util.pyo -%%EXAMPLESDIR%%/demos/textedit/example.html -%%EXAMPLESDIR%%/demos/textedit/images/logo.png -%%EXAMPLESDIR%%/demos/textedit/images/logo32.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/editcopy.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/editcut.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/editpaste.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/editredo.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/editundo.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/exportpdf.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/filenew.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/fileopen.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/fileprint.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/filesave.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/textbold.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/textcenter.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/textitalic.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/textjustify.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/textleft.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/textright.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/textunder.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/zoomin.png -%%EXAMPLESDIR%%/demos/textedit/images/mac/zoomout.png -%%EXAMPLESDIR%%/demos/textedit/images/win/editcopy.png -%%EXAMPLESDIR%%/demos/textedit/images/win/editcut.png -%%EXAMPLESDIR%%/demos/textedit/images/win/editpaste.png -%%EXAMPLESDIR%%/demos/textedit/images/win/editredo.png -%%EXAMPLESDIR%%/demos/textedit/images/win/editundo.png -%%EXAMPLESDIR%%/demos/textedit/images/win/exportpdf.png -%%EXAMPLESDIR%%/demos/textedit/images/win/filenew.png -%%EXAMPLESDIR%%/demos/textedit/images/win/fileopen.png -%%EXAMPLESDIR%%/demos/textedit/images/win/fileprint.png -%%EXAMPLESDIR%%/demos/textedit/images/win/filesave.png -%%EXAMPLESDIR%%/demos/textedit/images/win/textbold.png -%%EXAMPLESDIR%%/demos/textedit/images/win/textcenter.png -%%EXAMPLESDIR%%/demos/textedit/images/win/textitalic.png -%%EXAMPLESDIR%%/demos/textedit/images/win/textjustify.png -%%EXAMPLESDIR%%/demos/textedit/images/win/textleft.png -%%EXAMPLESDIR%%/demos/textedit/images/win/textright.png -%%EXAMPLESDIR%%/demos/textedit/images/win/textunder.png -%%EXAMPLESDIR%%/demos/textedit/images/win/zoomin.png -%%EXAMPLESDIR%%/demos/textedit/images/win/zoomout.png -%%EXAMPLESDIR%%/demos/textedit/textedit.py -%%EXAMPLESDIR%%/demos/textedit/textedit.pyc -%%EXAMPLESDIR%%/demos/textedit/textedit.pyo -%%EXAMPLESDIR%%/demos/textedit/textedit.qrc -%%EXAMPLESDIR%%/demos/textedit/textedit_rc2.py -%%EXAMPLESDIR%%/demos/textedit/textedit_rc2.pyc -%%EXAMPLESDIR%%/demos/textedit/textedit_rc2.pyo -%%EXAMPLESDIR%%/demos/textedit/textedit_rc3.py -%%EXAMPLESDIR%%/demos/textedit/textedit_rc3.pyc -%%EXAMPLESDIR%%/demos/textedit/textedit_rc3.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/highlightedtexteditplugin.py -%%EXAMPLESDIR%%/designer/plugins/python/highlightedtexteditplugin.pyc -%%EXAMPLESDIR%%/designer/plugins/python/highlightedtexteditplugin.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/highlightedtextedit.py -%%EXAMPLESDIR%%/designer/plugins/widgets/highlightedtextedit.pyc -%%EXAMPLESDIR%%/designer/plugins/widgets/highlightedtextedit.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.svg -%%EXAMPLESDIR%%/desktop/systray/images/heart.svg -%%EXAMPLESDIR%%/desktop/systray/images/trash.svg -%%EXAMPLESDIR%%/desktop/systray/systray.py -%%EXAMPLESDIR%%/desktop/systray/systray.pyc -%%EXAMPLESDIR%%/desktop/systray/systray.pyo -%%EXAMPLESDIR%%/desktop/systray/systray.qrc -%%EXAMPLESDIR%%/desktop/systray/systray_rc2.py -%%EXAMPLESDIR%%/desktop/systray/systray_rc2.pyc -%%EXAMPLESDIR%%/desktop/systray/systray_rc2.pyo -%%EXAMPLESDIR%%/desktop/systray/systray_rc3.py -%%EXAMPLESDIR%%/desktop/systray/systray_rc3.pyc -%%EXAMPLESDIR%%/desktop/systray/systray_rc3.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_rc2.py -%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc2.pyc -%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc2.pyo -%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc3.py -%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc3.pyc -%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc3.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_rc2.py -%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc2.pyc -%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc2.pyo -%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc3.py -%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc3.pyc -%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc3.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_rc2.py -%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc2.pyc -%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc2.pyo -%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc3.py -%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc3.pyc -%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc3.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_rc2.py -%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc2.pyc -%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc2.pyo -%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc3.py -%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc3.pyc -%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc3.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_rc2.py -%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc2.pyc -%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc2.pyo -%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc3.py -%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc3.pyc -%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc3.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_rc2.py -%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc2.pyc -%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc2.pyo -%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc3.py -%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc3.pyc -%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc3.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_rc2.py -%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc2.pyc -%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc2.pyo -%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc3.py -%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc3.pyc -%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc3.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_rc2.py -%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc2.pyc -%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc2.pyo -%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc3.py -%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc3.pyc -%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc3.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_rc2.py -%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc2.pyc -%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc2.pyo -%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc3.py -%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc3.pyc -%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc3.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/dragdroprobot.qrc -%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc2.py -%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc2.pyc -%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc2.pyo -%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc3.py -%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc3.pyc -%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc3.pyo -%%EXAMPLESDIR%%/graphicsview/dragdroprobot/images/head.png -%%EXAMPLESDIR%%/graphicsview/elasticnodes.py -%%EXAMPLESDIR%%/graphicsview/elasticnodes.pyc -%%EXAMPLESDIR%%/graphicsview/elasticnodes.pyo -%%EXAMPLESDIR%%/graphicsview/padnavigator/backside.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_rc2.py -%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc2.pyc -%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc2.pyo -%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc3.py -%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc3.pyc -%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc3.pyo -%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_backside.py -%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_backside.pyc -%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_backside.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_rc2.py -%%EXAMPLESDIR%%/itemviews/chart/chart_rc2.pyc -%%EXAMPLESDIR%%/itemviews/chart/chart_rc2.pyo -%%EXAMPLESDIR%%/itemviews/chart/chart_rc3.py -%%EXAMPLESDIR%%/itemviews/chart/chart_rc3.pyc -%%EXAMPLESDIR%%/itemviews/chart/chart_rc3.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_rc2.py -%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc2.pyc -%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc2.pyo -%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc3.py -%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc3.pyc -%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc3.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_rc2.py -%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc2.pyc -%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc2.pyo -%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc3.py -%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc3.pyc -%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc3.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_rc2.py -%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc2.pyc -%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc2.pyo -%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc3.py -%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc3.pyc -%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc3.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_rc2.py -%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc2.pyc -%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc2.pyo -%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc3.py -%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc3.pyc -%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc3.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/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/application.qrc -%%EXAMPLESDIR%%/mainwindows/application/application_rc2.py -%%EXAMPLESDIR%%/mainwindows/application/application_rc2.pyc -%%EXAMPLESDIR%%/mainwindows/application/application_rc2.pyo -%%EXAMPLESDIR%%/mainwindows/application/application_rc3.py -%%EXAMPLESDIR%%/mainwindows/application/application_rc3.pyc -%%EXAMPLESDIR%%/mainwindows/application/application_rc3.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_rc2.py -%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc2.pyc -%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc2.pyo -%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc3.py -%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc3.pyc -%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc3.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_rc2.py -%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc2.pyc -%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc2.pyo -%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc3.py -%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc3.pyc -%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc3.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_rc2.py -%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc2.pyc -%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc2.pyo -%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc3.py -%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc3.pyc -%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc3.pyo -%%EXAMPLESDIR%%/mainwindows/separations.py -%%EXAMPLESDIR%%/mainwindows/separations.pyc -%%EXAMPLESDIR%%/mainwindows/separations.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/ftp/ftp.py -%%EXAMPLESDIR%%/network/ftp/ftp.pyc -%%EXAMPLESDIR%%/network/ftp/ftp.pyo -%%EXAMPLESDIR%%/network/ftp/ftp.qrc -%%EXAMPLESDIR%%/network/ftp/ftp_rc2.py -%%EXAMPLESDIR%%/network/ftp/ftp_rc2.pyc -%%EXAMPLESDIR%%/network/ftp/ftp_rc2.pyo -%%EXAMPLESDIR%%/network/ftp/ftp_rc3.py -%%EXAMPLESDIR%%/network/ftp/ftp_rc3.pyc -%%EXAMPLESDIR%%/network/ftp/ftp_rc3.pyo -%%EXAMPLESDIR%%/network/ftp/images/cdtoparent.png -%%EXAMPLESDIR%%/network/ftp/images/dir.png -%%EXAMPLESDIR%%/network/ftp/images/file.png -%%EXAMPLESDIR%%/network/http/authenticationdialog.ui -%%EXAMPLESDIR%%/network/http/http.py -%%EXAMPLESDIR%%/network/http/http.pyc -%%EXAMPLESDIR%%/network/http/http.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/overpainting.py -%%EXAMPLESDIR%%/opengl/overpainting.pyc -%%EXAMPLESDIR%%/opengl/overpainting.pyo -%%EXAMPLESDIR%%/opengl/samplebuffers.py -%%EXAMPLESDIR%%/opengl/samplebuffers.pyc -%%EXAMPLESDIR%%/opengl/samplebuffers.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%%/opengl/textures/textures.qrc -%%EXAMPLESDIR%%/opengl/textures/textures_rc2.py -%%EXAMPLESDIR%%/opengl/textures/textures_rc2.pyc -%%EXAMPLESDIR%%/opengl/textures/textures_rc2.pyo -%%EXAMPLESDIR%%/opengl/textures/textures_rc3.py -%%EXAMPLESDIR%%/opengl/textures/textures_rc3.pyc -%%EXAMPLESDIR%%/opengl/textures/textures_rc3.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_rc2.py -%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc2.pyc -%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc2.pyo -%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc3.py -%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc3.pyc -%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc3.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_rc2.py -%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc2.pyc -%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc2.pyo -%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc3.py -%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc3.pyc -%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc3.pyo -%%EXAMPLESDIR%%/painting/transformations.py -%%EXAMPLESDIR%%/painting/transformations.pyc -%%EXAMPLESDIR%%/painting/transformations.pyo -%%EXAMPLESDIR%%/phonon/README -%%EXAMPLESDIR%%/phonon/capabilities.py -%%EXAMPLESDIR%%/phonon/capabilities.pyc -%%EXAMPLESDIR%%/phonon/capabilities.pyo -%%EXAMPLESDIR%%/phonon/musicplayer.py -%%EXAMPLESDIR%%/phonon/musicplayer.pyc -%%EXAMPLESDIR%%/phonon/musicplayer.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%%/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/textobject/files/heart.svg -%%EXAMPLESDIR%%/richtext/textobject/textobject.py -%%EXAMPLESDIR%%/richtext/textobject/textobject.pyc -%%EXAMPLESDIR%%/richtext/textobject/textobject.pyo -%%EXAMPLESDIR%%/script/README -%%EXAMPLESDIR%%/script/helloscript.py -%%EXAMPLESDIR%%/script/helloscript.pyc -%%EXAMPLESDIR%%/script/helloscript.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_rc2.py -%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc2.pyc -%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc2.pyo -%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc3.py -%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc3.pyc -%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc3.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_rc2.py -%%EXAMPLESDIR%%/tools/i18n/i18n_rc2.pyc -%%EXAMPLESDIR%%/tools/i18n/i18n_rc2.pyo -%%EXAMPLESDIR%%/tools/i18n/i18n_rc3.py -%%EXAMPLESDIR%%/tools/i18n/i18n_rc3.pyc -%%EXAMPLESDIR%%/tools/i18n/i18n_rc3.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/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/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_rc2.py -%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc2.pyc -%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc2.pyo -%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc3.py -%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc3.pyc -%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc3.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_rc2.py -%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc2.pyc -%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc2.pyo -%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc3.py -%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc3.pyc -%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc3.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/googlechat/form.ui -%%EXAMPLESDIR%%/webkit/googlechat/googlechat.py -%%EXAMPLESDIR%%/webkit/googlechat/googlechat.pyc -%%EXAMPLESDIR%%/webkit/googlechat/googlechat.pyo -%%EXAMPLESDIR%%/webkit/googlechat/ui_form.py -%%EXAMPLESDIR%%/webkit/googlechat/ui_form.pyc -%%EXAMPLESDIR%%/webkit/googlechat/ui_form.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%%/webkit/webftpclient.py -%%EXAMPLESDIR%%/webkit/webftpclient.pyc -%%EXAMPLESDIR%%/webkit/webftpclient.pyo -%%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_rc2.py -%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc2.pyc -%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc2.pyo -%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc3.py -%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc3.pyc -%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc3.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_rc2.py -%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc2.pyc -%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc2.pyo -%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc3.py -%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc3.pyc -%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc3.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%%/xml/README -%%EXAMPLESDIR%%/xml/dombookmarks/dombookmarks.py -%%EXAMPLESDIR%%/xml/dombookmarks/dombookmarks.pyc -%%EXAMPLESDIR%%/xml/dombookmarks/dombookmarks.pyo -%%EXAMPLESDIR%%/xml/dombookmarks/frank.xbel -%%EXAMPLESDIR%%/xml/dombookmarks/jennifer.xbel -%%EXAMPLESDIR%%/xml/saxbookmarks/frank.xbel -%%EXAMPLESDIR%%/xml/saxbookmarks/jennifer.xbel -%%EXAMPLESDIR%%/xml/saxbookmarks/saxbookmarks.py -%%EXAMPLESDIR%%/xml/saxbookmarks/saxbookmarks.pyc -%%EXAMPLESDIR%%/xml/saxbookmarks/saxbookmarks.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_rc2.py -%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc2.pyc -%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc2.pyo -%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc3.py -%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc3.pyc -%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc3.pyo -%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.py -%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyc -%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyo +%%PYQT_EXAMPLESDIR%%/README +%%PYQT_EXAMPLESDIR%%/activeqt/README +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image0.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image1.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image2.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image3.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image4.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image5.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image6.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.qrc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.ui +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc2.py +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc2.pyc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc2.pyo +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc3.py +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc3.pyc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc3.pyo +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.py +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.py +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyo +%%PYQT_EXAMPLESDIR%%/animation/README +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.py +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyc +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyo +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.qrc +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc2.py +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc2.pyc +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc2.pyo +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc3.py +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc3.pyc +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc3.pyo +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/Time-For-Lunch-2.jpg +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/centered.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/ellipse.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/figure8.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/kinetic.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/random.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/tile.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/accessories-dictionary.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/akregator.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.py +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.pyc +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.pyo +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.qrc +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc2.py +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc2.pyc +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc2.pyo +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc3.py +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc3.pyc +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc3.pyo +%%PYQT_EXAMPLESDIR%%/animation/appchooser/digikam.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/k3b.png +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.py +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.pyc +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.pyo +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.qrc +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc2.py +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc2.pyc +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc2.pyo +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc3.py +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc3.pyc +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc3.pyo +%%PYQT_EXAMPLESDIR%%/animation/easing/form.ui +%%PYQT_EXAMPLESDIR%%/animation/easing/images/qt-logo.png +%%PYQT_EXAMPLESDIR%%/animation/easing/ui_form.py +%%PYQT_EXAMPLESDIR%%/animation/easing/ui_form.pyc +%%PYQT_EXAMPLESDIR%%/animation/easing/ui_form.pyo +%%PYQT_EXAMPLESDIR%%/animation/moveblocks.py +%%PYQT_EXAMPLESDIR%%/animation/moveblocks.pyc +%%PYQT_EXAMPLESDIR%%/animation/moveblocks.pyo +%%PYQT_EXAMPLESDIR%%/animation/states/accessories-dictionary.png +%%PYQT_EXAMPLESDIR%%/animation/states/akregator.png +%%PYQT_EXAMPLESDIR%%/animation/states/digikam.png +%%PYQT_EXAMPLESDIR%%/animation/states/help-browser.png +%%PYQT_EXAMPLESDIR%%/animation/states/k3b.png +%%PYQT_EXAMPLESDIR%%/animation/states/kchart.png +%%PYQT_EXAMPLESDIR%%/animation/states/states.py +%%PYQT_EXAMPLESDIR%%/animation/states/states.pyc +%%PYQT_EXAMPLESDIR%%/animation/states/states.pyo +%%PYQT_EXAMPLESDIR%%/animation/states/states.qrc +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc2.py +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc2.pyc +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc2.pyo +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc3.py +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc3.pyc +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc3.pyo +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/chilling +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/dancing +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/dead +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/jumping +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.py +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.pyc +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.pyo +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.qrc +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc2.py +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc2.pyc +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc2.pyo +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc3.py +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc3.pyc +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc3.pyo +%%PYQT_EXAMPLESDIR%%/dbus/chat/chat.py +%%PYQT_EXAMPLESDIR%%/dbus/chat/chat.pyc +%%PYQT_EXAMPLESDIR%%/dbus/chat/chat.pyo +%%PYQT_EXAMPLESDIR%%/dbus/chat/chatmainwindow.ui +%%PYQT_EXAMPLESDIR%%/dbus/chat/chatsetnickname.ui +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.py +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyc +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyo +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.py +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyc +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyo +%%PYQT_EXAMPLESDIR%%/dbus/listnames.py +%%PYQT_EXAMPLESDIR%%/dbus/listnames.pyc +%%PYQT_EXAMPLESDIR%%/dbus/listnames.pyo +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/ping.py +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/ping.pyc +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/ping.pyo +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/pong.py +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/pong.pyc +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/pong.pyo +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.py +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyc +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyo +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.py +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyc +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyo +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.ui +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.py +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyc +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyo +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel.py +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel.pyc +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel.pyo +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel.qrc +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc2.py +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc2.pyc +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc2.pyo +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc3.py +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc3.pyc +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/objectlistmodel_rc3.pyo +%%PYQT_EXAMPLESDIR%%/declarative/modelviews/objectlistmodel/view.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/README +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/clocks.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/Clock.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/QuitButton.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/background.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/center.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/clock-night.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/clock.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/hour.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/minute.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/quit.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/clocks/content/second.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/corkboards/Day.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/corkboards/cork.jpg +%%PYQT_EXAMPLESDIR%%/declarative/toys/corkboards/corkboards.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/corkboards/note-yellow.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/corkboards/tack.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/Button.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/GenericSceneItem.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/PaletteItem.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/PerspectiveItem.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/Sun.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/dynamicscene.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/images/face-smile.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/images/moon.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/images/rabbit_brown.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/images/rabbit_bw.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/images/star.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/images/sun.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/images/tree_s.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/dynamicscene/itemCreation.js +%%PYQT_EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/Button.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/TicTac.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/pics/board.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/pics/o.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/pics/x.png +%%PYQT_EXAMPLESDIR%%/declarative/toys/tic-tac-toe/content/tic-tac-toe.js +%%PYQT_EXAMPLESDIR%%/declarative/toys/tic-tac-toe/tic-tac-toe.qml +%%PYQT_EXAMPLESDIR%%/declarative/toys/tvtennis/tvtennis.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/README +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/Dial.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/QuitButton.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/background.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/needle.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/needle_shadow.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/overlay.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/content/quit.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/dialcontrol/dialcontrol.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/flipable/content/5_heart.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/flipable/content/9_club.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/flipable/content/Card.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/flipable/content/back.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/flipable/flipable.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/progressbar/content/ProgressBar.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/progressbar/content/background.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/progressbar/main.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/scrollbar/ScrollBar.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/scrollbar/main.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/scrollbar/niagara_falls.jpg +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/searchbox/SearchBox.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/searchbox/images/clear.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/searchbox/images/lineedit-bg-focus.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/searchbox/images/lineedit-bg.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/searchbox/main.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/slideswitch/content/Switch.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/slideswitch/content/background.svg +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/slideswitch/content/knob.svg +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/slideswitch/slideswitch.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/spinner/content/Spinner.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/spinner/content/spinner-bg.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/spinner/content/spinner-select.png +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/spinner/main.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/tabwidget/TabWidget.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/tabwidget/main.qml +%%PYQT_EXAMPLESDIR%%/declarative/ui-components/tabwidget/tab.png +%%PYQT_EXAMPLESDIR%%/demos/README +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/Explosion.qml +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/Tile.qml +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/No-Ones-Laughing-3.jpg +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/back.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/bomb-color.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/bomb.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/face-sad.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/face-smile-big.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/face-smile.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/flag-color.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/flag.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/front.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/quit.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/pics/star.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/MinehuntCore/qmldir +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.py +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.pyc +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.pyo +%%PYQT_EXAMPLESDIR%%/demos/declarative/minehunt/minehunt.qml +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/BoomBlock.qml +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/Button.qml +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/Dialog.qml +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/background.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/blueStar.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/blueStone.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/greenStar.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/greenStone.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/redStar.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/redStone.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/star.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/pics/yellowStone.png +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/qmldir +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/SamegameCore/samegame.js +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/highscores/README +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/highscores/score_data.xml +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/highscores/score_style.xsl +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/highscores/scores.php +%%PYQT_EXAMPLESDIR%%/demos/declarative/samegame/samegame.qml +%%PYQT_EXAMPLESDIR%%/demos/embedded/lightmaps.py +%%PYQT_EXAMPLESDIR%%/demos/embedded/lightmaps.pyc +%%PYQT_EXAMPLESDIR%%/demos/embedded/lightmaps.pyo +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/No-Ones-Laughing-3.jpg +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.py +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.pyc +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.pyo +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialog.ui +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.py +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.pyc +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.pyo +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs.qrc +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc2.py +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc2.pyc +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc2.pyo +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc3.py +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc3.pyc +%%PYQT_EXAMPLESDIR%%/demos/embeddeddialogs/embeddeddialogs_rc3.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/colors.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/colors.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/colors.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoitem.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoitem.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoitem.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoitemanimation.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoitemanimation.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoitemanimation.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoscene.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoscene.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demoscene.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demotextitem.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demotextitem.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/demotextitem.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/dockitem.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/dockitem.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/dockitem.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/examplecontent.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/examplecontent.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/examplecontent.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guide.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guide.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guide.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guidecircle.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guidecircle.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guidecircle.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guideline.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guideline.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/guideline.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/headingitem.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/headingitem.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/headingitem.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/imageitem.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/imageitem.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/imageitem.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/images/demobg.png +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/images/qtlogo_small.png +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/images/trolltech-logo.png +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/itemcircleanimation.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/itemcircleanimation.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/itemcircleanimation.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/letteritem.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/letteritem.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/letteritem.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/mainwindow.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/menucontent.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/menucontent.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/menucontent.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/menumanager.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/menumanager.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/menumanager.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qmlShell.qml +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo.qrc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc2.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc2.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc2.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc3.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc3.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/qtdemo_rc3.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/scanitem.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/scanitem.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/scanitem.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/score.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/score.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/score.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/textbutton.py +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/textbutton.pyc +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/textbutton.pyo +%%PYQT_EXAMPLESDIR%%/demos/qtdemo/xml/examples.xml +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/images/interview.png +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/printview.py +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/printview.pyc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/printview.pyo +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.py +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.pyc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.pyo +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet.qrc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc2.py +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc2.pyc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc2.pyo +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc3.py +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc3.pyc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheet_rc3.pyo +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheetdelegate.py +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheetdelegate.pyc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheetdelegate.pyo +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheetitem.py +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheetitem.pyc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/spreadsheetitem.pyo +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/util.py +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/util.pyc +%%PYQT_EXAMPLESDIR%%/demos/spreadsheet/util.pyo +%%PYQT_EXAMPLESDIR%%/demos/textedit/example.html +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/logo.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/logo32.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/editcopy.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/editcut.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/editpaste.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/editredo.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/editundo.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/exportpdf.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/filenew.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/fileopen.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/fileprint.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/filesave.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/textbold.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/textcenter.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/textitalic.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/textjustify.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/textleft.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/textright.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/textunder.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/zoomin.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/mac/zoomout.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/editcopy.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/editcut.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/editpaste.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/editredo.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/editundo.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/exportpdf.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/filenew.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/fileopen.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/fileprint.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/filesave.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/textbold.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/textcenter.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/textitalic.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/textjustify.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/textleft.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/textright.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/textunder.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/zoomin.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/images/win/zoomout.png +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit.py +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit.pyc +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit.pyo +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit.qrc +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit_rc2.py +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit_rc2.pyc +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit_rc2.pyo +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit_rc3.py +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit_rc3.pyc +%%PYQT_EXAMPLESDIR%%/demos/textedit/textedit_rc3.pyo +%%PYQT_EXAMPLESDIR%%/designer/README +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.py +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyc +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyo +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.ui +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.py +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyc +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/plugins.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/plugins.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/plugins.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/highlightedtexteditplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/highlightedtexteditplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/highlightedtexteditplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/analogclock.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/highlightedtextedit.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/highlightedtextedit.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/highlightedtextedit.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pydemo.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyo +%%PYQT_EXAMPLESDIR%%/desktop/README +%%PYQT_EXAMPLESDIR%%/desktop/screenshot.py +%%PYQT_EXAMPLESDIR%%/desktop/screenshot.pyc +%%PYQT_EXAMPLESDIR%%/desktop/screenshot.pyo +%%PYQT_EXAMPLESDIR%%/desktop/systray/images/bad.svg +%%PYQT_EXAMPLESDIR%%/desktop/systray/images/heart.svg +%%PYQT_EXAMPLESDIR%%/desktop/systray/images/trash.svg +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.py +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.pyc +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.pyo +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.qrc +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc2.py +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc2.pyc +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc2.pyo +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc3.py +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc3.pyc +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc3.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/README +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.py +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.qrc +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc2.py +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc2.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc2.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc3.py +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc3.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc3.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/background.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/banner.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/logo1.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/logo2.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/logo3.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/watermark1.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/watermark2.png +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.py +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.qrc +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc2.py +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc2.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc2.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc3.py +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc3.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc3.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/images/config.png +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/images/query.png +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/images/update.png +%%PYQT_EXAMPLESDIR%%/dialogs/extension.py +%%PYQT_EXAMPLESDIR%%/dialogs/extension.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/extension.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/findfiles.py +%%PYQT_EXAMPLESDIR%%/dialogs/findfiles.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/findfiles.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/standarddialogs.py +%%PYQT_EXAMPLESDIR%%/dialogs/standarddialogs.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/standarddialogs.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/tabdialog.py +%%PYQT_EXAMPLESDIR%%/dialogs/tabdialog.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/tabdialog.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/trivialwizard.py +%%PYQT_EXAMPLESDIR%%/dialogs/trivialwizard.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/trivialwizard.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/README +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.py +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc2.py +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc2.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc2.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc3.py +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc3.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc3.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/images/drag.png +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/images/example.svg +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc2.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc2.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc2.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc3.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc3.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc3.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/images/boat.png +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/images/car.png +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/images/house.png +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc2.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc2.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc2.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc3.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc3.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc3.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/words.txt +%%PYQT_EXAMPLESDIR%%/draganddrop/dropsite.py +%%PYQT_EXAMPLESDIR%%/draganddrop/dropsite.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/dropsite.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.py +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc2.py +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc2.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc2.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc3.py +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc3.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc3.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/words.txt +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/example.jpg +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.py +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc2.py +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc2.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc2.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc3.py +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc3.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc3.pyo +%%PYQT_EXAMPLESDIR%%/effects/README +%%PYQT_EXAMPLESDIR%%/effects/lighting.py +%%PYQT_EXAMPLESDIR%%/effects/lighting.pyc +%%PYQT_EXAMPLESDIR%%/effects/lighting.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/README +%%PYQT_EXAMPLESDIR%%/graphicsview/anchorlayout.py +%%PYQT_EXAMPLESDIR%%/graphicsview/anchorlayout.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/anchorlayout.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.py +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/images/cheese.jpg +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc2.py +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc2.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc2.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc3.py +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc3.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc3.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.py +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc2.py +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc2.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc2.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc3.py +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc3.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc3.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background1.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background2.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background3.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background4.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/bold.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/bringtofront.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/delete.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/floodfill.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/italic.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/linecolor.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/linepointer.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/pointer.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/sendtoback.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/textpointer.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/underline.png +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.py +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc2.py +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc2.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc2.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc3.py +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc3.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot_rc3.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/images/head.png +%%PYQT_EXAMPLESDIR%%/graphicsview/elasticnodes.py +%%PYQT_EXAMPLESDIR%%/graphicsview/elasticnodes.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/elasticnodes.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/backside.ui +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/artsfftscope.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/blue_angle_swirl.jpg +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_contacts.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_journal.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_mail.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_notes.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kopeteavailable.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/metacontact_online.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/minitools.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.py +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc2.py +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc2.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc2.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc3.py +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc3.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc3.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/ui_backside.py +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/ui_backside.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/ui_backside.pyo +%%PYQT_EXAMPLESDIR%%/ipc/README +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneclient.py +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneclient.pyc +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneclient.pyo +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneserver.py +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneserver.pyc +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneserver.pyo +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.py +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyc +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyo +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.ui +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/image.png +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/qt.png +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.py +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyc +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/README +%%PYQT_EXAMPLESDIR%%/itemviews/basicsortfiltermodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.py +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc2.py +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc2.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc2.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc3.py +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc3.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc3.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/chart/mydata.cht +%%PYQT_EXAMPLESDIR%%/itemviews/chart/qtdata.cht +%%PYQT_EXAMPLESDIR%%/itemviews/coloreditorfactory.py +%%PYQT_EXAMPLESDIR%%/itemviews/coloreditorfactory.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/coloreditorfactory.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/combowidgetmapper.py +%%PYQT_EXAMPLESDIR%%/itemviews/combowidgetmapper.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/combowidgetmapper.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/customsortfiltermodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/dirview.py +%%PYQT_EXAMPLESDIR%%/itemviews/dirview.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/dirview.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/default.txt +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc2.py +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc2.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc2.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc3.py +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc3.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc3.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/mainwindow.ui +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.py +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/fetchmore.py +%%PYQT_EXAMPLESDIR%%/itemviews/fetchmore.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/fetchmore.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/images/qt.png +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.py +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc2.py +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc2.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc2.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc3.py +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc3.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc3.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/example.jpg +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.py +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc2.py +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc2.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc2.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc3.py +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc3.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc3.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simpledommodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/simpledommodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simpledommodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/default.txt +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc2.py +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc2.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc2.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc3.py +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc3.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc3.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simplewidgetmapper.py +%%PYQT_EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spinboxdelegate.py +%%PYQT_EXAMPLESDIR%%/itemviews/spinboxdelegate.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spinboxdelegate.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/stardelegate.py +%%PYQT_EXAMPLESDIR%%/itemviews/stardelegate.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/stardelegate.pyo +%%PYQT_EXAMPLESDIR%%/layouts/README +%%PYQT_EXAMPLESDIR%%/layouts/basiclayouts.py +%%PYQT_EXAMPLESDIR%%/layouts/basiclayouts.pyc +%%PYQT_EXAMPLESDIR%%/layouts/basiclayouts.pyo +%%PYQT_EXAMPLESDIR%%/layouts/borderlayout.py +%%PYQT_EXAMPLESDIR%%/layouts/borderlayout.pyc +%%PYQT_EXAMPLESDIR%%/layouts/borderlayout.pyo +%%PYQT_EXAMPLESDIR%%/layouts/flowlayout.py +%%PYQT_EXAMPLESDIR%%/layouts/flowlayout.pyc +%%PYQT_EXAMPLESDIR%%/layouts/flowlayout.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/README +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application.py +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application.qrc +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application_rc2.py +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application_rc2.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application_rc2.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application_rc3.py +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application_rc3.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application_rc3.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/copy.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/cut.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/open.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/paste.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.py +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.qrc +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc2.py +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc2.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc2.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc3.py +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc3.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc3.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/print.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/undo.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/copy.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/cut.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/open.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/paste.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.py +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.qrc +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc2.py +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc2.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc2.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc3.py +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc3.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc3.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/menus.py +%%PYQT_EXAMPLESDIR%%/mainwindows/menus.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/menus.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/recentfiles.py +%%PYQT_EXAMPLESDIR%%/mainwindows/recentfiles.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/recentfiles.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/copy.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/cut.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/open.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/paste.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.py +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.qrc +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc2.py +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc2.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc2.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc3.py +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc3.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc3.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/separations.py +%%PYQT_EXAMPLESDIR%%/mainwindows/separations.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/separations.pyo +%%PYQT_EXAMPLESDIR%%/network/README +%%PYQT_EXAMPLESDIR%%/network/blockingfortuneclient.py +%%PYQT_EXAMPLESDIR%%/network/blockingfortuneclient.pyc +%%PYQT_EXAMPLESDIR%%/network/blockingfortuneclient.pyo +%%PYQT_EXAMPLESDIR%%/network/broadcastreceiver.py +%%PYQT_EXAMPLESDIR%%/network/broadcastreceiver.pyc +%%PYQT_EXAMPLESDIR%%/network/broadcastreceiver.pyo +%%PYQT_EXAMPLESDIR%%/network/broadcastsender.py +%%PYQT_EXAMPLESDIR%%/network/broadcastsender.pyc +%%PYQT_EXAMPLESDIR%%/network/broadcastsender.pyo +%%PYQT_EXAMPLESDIR%%/network/fortuneclient.py +%%PYQT_EXAMPLESDIR%%/network/fortuneclient.pyc +%%PYQT_EXAMPLESDIR%%/network/fortuneclient.pyo +%%PYQT_EXAMPLESDIR%%/network/fortuneserver.py +%%PYQT_EXAMPLESDIR%%/network/fortuneserver.pyc +%%PYQT_EXAMPLESDIR%%/network/fortuneserver.pyo +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp.py +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp.pyc +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp.pyo +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp.qrc +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp_rc2.py +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp_rc2.pyc +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp_rc2.pyo +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp_rc3.py +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp_rc3.pyc +%%PYQT_EXAMPLESDIR%%/network/ftp/ftp_rc3.pyo +%%PYQT_EXAMPLESDIR%%/network/ftp/images/cdtoparent.png +%%PYQT_EXAMPLESDIR%%/network/ftp/images/dir.png +%%PYQT_EXAMPLESDIR%%/network/ftp/images/file.png +%%PYQT_EXAMPLESDIR%%/network/http/authenticationdialog.ui +%%PYQT_EXAMPLESDIR%%/network/http/http.py +%%PYQT_EXAMPLESDIR%%/network/http/http.pyc +%%PYQT_EXAMPLESDIR%%/network/http/http.pyo +%%PYQT_EXAMPLESDIR%%/network/loopback.py +%%PYQT_EXAMPLESDIR%%/network/loopback.pyc +%%PYQT_EXAMPLESDIR%%/network/loopback.pyo +%%PYQT_EXAMPLESDIR%%/network/threadedfortuneserver.py +%%PYQT_EXAMPLESDIR%%/network/threadedfortuneserver.pyc +%%PYQT_EXAMPLESDIR%%/network/threadedfortuneserver.pyo +%%PYQT_EXAMPLESDIR%%/opengl/2dpainting.py +%%PYQT_EXAMPLESDIR%%/opengl/2dpainting.pyc +%%PYQT_EXAMPLESDIR%%/opengl/2dpainting.pyo +%%PYQT_EXAMPLESDIR%%/opengl/README +%%PYQT_EXAMPLESDIR%%/opengl/grabber.py +%%PYQT_EXAMPLESDIR%%/opengl/grabber.pyc +%%PYQT_EXAMPLESDIR%%/opengl/grabber.pyo +%%PYQT_EXAMPLESDIR%%/opengl/hellogl.py +%%PYQT_EXAMPLESDIR%%/opengl/hellogl.pyc +%%PYQT_EXAMPLESDIR%%/opengl/hellogl.pyo +%%PYQT_EXAMPLESDIR%%/opengl/overpainting.py +%%PYQT_EXAMPLESDIR%%/opengl/overpainting.pyc +%%PYQT_EXAMPLESDIR%%/opengl/overpainting.pyo +%%PYQT_EXAMPLESDIR%%/opengl/samplebuffers.py +%%PYQT_EXAMPLESDIR%%/opengl/samplebuffers.pyc +%%PYQT_EXAMPLESDIR%%/opengl/samplebuffers.pyo +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side1.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side2.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side3.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side4.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side5.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side6.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures.py +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures.pyc +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures.pyo +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures.qrc +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures_rc2.py +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures_rc2.pyc +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures_rc2.pyo +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures_rc3.py +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures_rc3.pyc +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures_rc3.pyo +%%PYQT_EXAMPLESDIR%%/painting/README +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.py +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyc +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyo +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.qrc +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc2.py +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc2.pyc +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc2.pyo +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc3.py +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc3.pyc +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc3.pyo +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/images/brick.png +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/images/qt-logo.png +%%PYQT_EXAMPLESDIR%%/painting/concentriccircles.py +%%PYQT_EXAMPLESDIR%%/painting/concentriccircles.pyc +%%PYQT_EXAMPLESDIR%%/painting/concentriccircles.pyo +%%PYQT_EXAMPLESDIR%%/painting/painterpaths.py +%%PYQT_EXAMPLESDIR%%/painting/painterpaths.pyc +%%PYQT_EXAMPLESDIR%%/painting/painterpaths.pyo +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/files/bubbles.svg +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/files/cubic.svg +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/files/spheres.svg +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.py +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyc +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyo +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.qrc +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc2.py +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc2.pyc +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc2.pyo +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc3.py +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc3.pyc +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc3.pyo +%%PYQT_EXAMPLESDIR%%/painting/transformations.py +%%PYQT_EXAMPLESDIR%%/painting/transformations.pyc +%%PYQT_EXAMPLESDIR%%/painting/transformations.pyo +%%PYQT_EXAMPLESDIR%%/phonon/README +%%PYQT_EXAMPLESDIR%%/phonon/capabilities.py +%%PYQT_EXAMPLESDIR%%/phonon/capabilities.pyc +%%PYQT_EXAMPLESDIR%%/phonon/capabilities.pyo +%%PYQT_EXAMPLESDIR%%/phonon/musicplayer.py +%%PYQT_EXAMPLESDIR%%/phonon/musicplayer.pyc +%%PYQT_EXAMPLESDIR%%/phonon/musicplayer.pyo +%%PYQT_EXAMPLESDIR%%/pyuic/compile-on-the-fly.py +%%PYQT_EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyc +%%PYQT_EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyo +%%PYQT_EXAMPLESDIR%%/pyuic/demo.ui +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui1.py +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui1.pyc +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui1.pyo +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui2.py +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui2.pyc +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui2.pyo +%%PYQT_EXAMPLESDIR%%/richtext/README +%%PYQT_EXAMPLESDIR%%/richtext/calendar.py +%%PYQT_EXAMPLESDIR%%/richtext/calendar.pyc +%%PYQT_EXAMPLESDIR%%/richtext/calendar.pyo +%%PYQT_EXAMPLESDIR%%/richtext/orderform.py +%%PYQT_EXAMPLESDIR%%/richtext/orderform.pyc +%%PYQT_EXAMPLESDIR%%/richtext/orderform.pyo +%%PYQT_EXAMPLESDIR%%/richtext/syntaxhighlighter.py +%%PYQT_EXAMPLESDIR%%/richtext/syntaxhighlighter.pyc +%%PYQT_EXAMPLESDIR%%/richtext/syntaxhighlighter.pyo +%%PYQT_EXAMPLESDIR%%/richtext/textobject/files/heart.svg +%%PYQT_EXAMPLESDIR%%/richtext/textobject/textobject.py +%%PYQT_EXAMPLESDIR%%/richtext/textobject/textobject.pyc +%%PYQT_EXAMPLESDIR%%/richtext/textobject/textobject.pyo +%%PYQT_EXAMPLESDIR%%/script/README +%%PYQT_EXAMPLESDIR%%/script/helloscript.py +%%PYQT_EXAMPLESDIR%%/script/helloscript.pyc +%%PYQT_EXAMPLESDIR%%/script/helloscript.pyo +%%PYQT_EXAMPLESDIR%%/sql/README +%%PYQT_EXAMPLESDIR%%/sql/cachedtable.py +%%PYQT_EXAMPLESDIR%%/sql/cachedtable.pyc +%%PYQT_EXAMPLESDIR%%/sql/cachedtable.pyo +%%PYQT_EXAMPLESDIR%%/sql/connection.py +%%PYQT_EXAMPLESDIR%%/sql/connection.pyc +%%PYQT_EXAMPLESDIR%%/sql/connection.pyo +%%PYQT_EXAMPLESDIR%%/sql/querymodel.py +%%PYQT_EXAMPLESDIR%%/sql/querymodel.pyc +%%PYQT_EXAMPLESDIR%%/sql/querymodel.pyo +%%PYQT_EXAMPLESDIR%%/sql/relationaltablemodel.py +%%PYQT_EXAMPLESDIR%%/sql/relationaltablemodel.pyc +%%PYQT_EXAMPLESDIR%%/sql/relationaltablemodel.pyo +%%PYQT_EXAMPLESDIR%%/sql/tablemodel.py +%%PYQT_EXAMPLESDIR%%/sql/tablemodel.pyc +%%PYQT_EXAMPLESDIR%%/sql/tablemodel.pyo +%%PYQT_EXAMPLESDIR%%/threads/README +%%PYQT_EXAMPLESDIR%%/threads/mandelbrot.py +%%PYQT_EXAMPLESDIR%%/threads/mandelbrot.pyc +%%PYQT_EXAMPLESDIR%%/threads/mandelbrot.pyo +%%PYQT_EXAMPLESDIR%%/threads/semaphores.py +%%PYQT_EXAMPLESDIR%%/threads/semaphores.pyc +%%PYQT_EXAMPLESDIR%%/threads/semaphores.pyo +%%PYQT_EXAMPLESDIR%%/threads/waitconditions.py +%%PYQT_EXAMPLESDIR%%/threads/waitconditions.pyc +%%PYQT_EXAMPLESDIR%%/threads/waitconditions.pyo +%%PYQT_EXAMPLESDIR%%/tools/README +%%PYQT_EXAMPLESDIR%%/tools/codecs/codecs.py +%%PYQT_EXAMPLESDIR%%/tools/codecs/codecs.pyc +%%PYQT_EXAMPLESDIR%%/tools/codecs/codecs.pyo +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-1.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-15.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16be.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16le.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-8.txt +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.py +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyc +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyo +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.qrc +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc2.py +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc2.pyc +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc2.pyo +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc3.py +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc3.pyc +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc3.pyo +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/resources/wordlist.txt +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.py +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.pyc +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.pyo +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.qrc +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc2.py +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc2.pyc +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc2.pyo +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc3.py +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc3.pyc +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc3.pyo +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_de.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_de.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_el.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_el.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_en.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_en.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_it.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_it.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_no.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_no.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.ts +%%PYQT_EXAMPLESDIR%%/tools/regexp.py +%%PYQT_EXAMPLESDIR%%/tools/regexp.pyc +%%PYQT_EXAMPLESDIR%%/tools/regexp.pyo +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/inifiles/licensepage.ini +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/inifiles/qsa.ini +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/settingseditor.py +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyc +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/README +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part1.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part1.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part1.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part2.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part2.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part2.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part3.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part3.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part3.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part4.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part4.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part4.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part5.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part5.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part5.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part6.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part6.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part6.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part7.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part7.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part7.pyo +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/domtraversal.py +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyc +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyo +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/ui_window.py +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyc +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyo +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/window.ui +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.py +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyc +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyo +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery.min.js +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery.qrc +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc2.py +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc2.pyc +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc2.pyo +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc3.py +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc3.pyc +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc3.pyo +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/form.html +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.py +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.pyc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.pyo +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.qrc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.ui +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc2.py +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc2.pyc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc2.pyo +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc3.py +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc3.pyc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc3.pyo +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.py +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyo +%%PYQT_EXAMPLESDIR%%/webkit/framecapture.py +%%PYQT_EXAMPLESDIR%%/webkit/framecapture.pyc +%%PYQT_EXAMPLESDIR%%/webkit/framecapture.pyo +%%PYQT_EXAMPLESDIR%%/webkit/googlechat/form.ui +%%PYQT_EXAMPLESDIR%%/webkit/googlechat/googlechat.py +%%PYQT_EXAMPLESDIR%%/webkit/googlechat/googlechat.pyc +%%PYQT_EXAMPLESDIR%%/webkit/googlechat/googlechat.pyo +%%PYQT_EXAMPLESDIR%%/webkit/googlechat/ui_form.py +%%PYQT_EXAMPLESDIR%%/webkit/googlechat/ui_form.pyc +%%PYQT_EXAMPLESDIR%%/webkit/googlechat/ui_form.pyo +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.py +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.pyc +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.pyo +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.ui +%%PYQT_EXAMPLESDIR%%/webkit/previewer/ui_previewer.py +%%PYQT_EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyc +%%PYQT_EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyo +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/simpleselector.py +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyc +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyo +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/ui_window.py +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyc +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyo +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/window.ui +%%PYQT_EXAMPLESDIR%%/webkit/webftpclient.py +%%PYQT_EXAMPLESDIR%%/webkit/webftpclient.pyc +%%PYQT_EXAMPLESDIR%%/webkit/webftpclient.pyo +%%PYQT_EXAMPLESDIR%%/widgets/README +%%PYQT_EXAMPLESDIR%%/widgets/analogclock.py +%%PYQT_EXAMPLESDIR%%/widgets/analogclock.pyc +%%PYQT_EXAMPLESDIR%%/widgets/analogclock.pyo +%%PYQT_EXAMPLESDIR%%/widgets/calculator.py +%%PYQT_EXAMPLESDIR%%/widgets/calculator.pyc +%%PYQT_EXAMPLESDIR%%/widgets/calculator.pyo +%%PYQT_EXAMPLESDIR%%/widgets/calendarwidget.py +%%PYQT_EXAMPLESDIR%%/widgets/calendarwidget.pyc +%%PYQT_EXAMPLESDIR%%/widgets/calendarwidget.pyo +%%PYQT_EXAMPLESDIR%%/widgets/charactermap.py +%%PYQT_EXAMPLESDIR%%/widgets/charactermap.pyc +%%PYQT_EXAMPLESDIR%%/widgets/charactermap.pyo +%%PYQT_EXAMPLESDIR%%/widgets/digitalclock.py +%%PYQT_EXAMPLESDIR%%/widgets/digitalclock.pyc +%%PYQT_EXAMPLESDIR%%/widgets/digitalclock.pyo +%%PYQT_EXAMPLESDIR%%/widgets/groupbox.py +%%PYQT_EXAMPLESDIR%%/widgets/groupbox.pyc +%%PYQT_EXAMPLESDIR%%/widgets/groupbox.pyo +%%PYQT_EXAMPLESDIR%%/widgets/icons/icons.py +%%PYQT_EXAMPLESDIR%%/widgets/icons/icons.pyc +%%PYQT_EXAMPLESDIR%%/widgets/icons/icons.pyo +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/designer.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/find_disabled.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/find_normal.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_128x128.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_16x16.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_32x32.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_64x64.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_128x128.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_16x16.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_32x32.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_64x64.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/qt_extended_16x16.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/qt_extended_32x32.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/qt_extended_48x48.png +%%PYQT_EXAMPLESDIR%%/widgets/imageviewer.py +%%PYQT_EXAMPLESDIR%%/widgets/imageviewer.pyc +%%PYQT_EXAMPLESDIR%%/widgets/imageviewer.pyo +%%PYQT_EXAMPLESDIR%%/widgets/lineedits.py +%%PYQT_EXAMPLESDIR%%/widgets/lineedits.pyc +%%PYQT_EXAMPLESDIR%%/widgets/lineedits.pyo +%%PYQT_EXAMPLESDIR%%/widgets/movie/animation.mng +%%PYQT_EXAMPLESDIR%%/widgets/movie/movie.py +%%PYQT_EXAMPLESDIR%%/widgets/movie/movie.pyc +%%PYQT_EXAMPLESDIR%%/widgets/movie/movie.pyo +%%PYQT_EXAMPLESDIR%%/widgets/scribble.py +%%PYQT_EXAMPLESDIR%%/widgets/scribble.pyc +%%PYQT_EXAMPLESDIR%%/widgets/scribble.pyo +%%PYQT_EXAMPLESDIR%%/widgets/shapedclock.py +%%PYQT_EXAMPLESDIR%%/widgets/shapedclock.pyc +%%PYQT_EXAMPLESDIR%%/widgets/shapedclock.pyo +%%PYQT_EXAMPLESDIR%%/widgets/sliders.py +%%PYQT_EXAMPLESDIR%%/widgets/sliders.pyc +%%PYQT_EXAMPLESDIR%%/widgets/sliders.pyo +%%PYQT_EXAMPLESDIR%%/widgets/spinboxes.py +%%PYQT_EXAMPLESDIR%%/widgets/spinboxes.pyc +%%PYQT_EXAMPLESDIR%%/widgets/spinboxes.pyo +%%PYQT_EXAMPLESDIR%%/widgets/styles.py +%%PYQT_EXAMPLESDIR%%/widgets/styles.pyc +%%PYQT_EXAMPLESDIR%%/widgets/styles.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow_disabled.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/frame.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pagefold.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/sizegrip.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown_off.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup_off.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow_disabled.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/mainwindow.ui +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/qss/coffee.qss +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/qss/default.qss +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/qss/pagefold.qss +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.qrc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc2.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc2.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc2.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc3.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc3.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc3.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.ui +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyo +%%PYQT_EXAMPLESDIR%%/widgets/tetrix.py +%%PYQT_EXAMPLESDIR%%/widgets/tetrix.pyc +%%PYQT_EXAMPLESDIR%%/widgets/tetrix.pyo +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/images/circle.png +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/images/square.png +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/images/triangle.png +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.py +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.pyc +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.pyo +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.qrc +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc2.py +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc2.pyc +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc2.pyo +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc3.py +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc3.pyc +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc3.pyo +%%PYQT_EXAMPLESDIR%%/widgets/wiggly.py +%%PYQT_EXAMPLESDIR%%/widgets/wiggly.pyc +%%PYQT_EXAMPLESDIR%%/widgets/wiggly.pyo +%%PYQT_EXAMPLESDIR%%/widgets/windowflags.py +%%PYQT_EXAMPLESDIR%%/widgets/windowflags.pyc +%%PYQT_EXAMPLESDIR%%/widgets/windowflags.pyo +%%PYQT_EXAMPLESDIR%%/xml/README +%%PYQT_EXAMPLESDIR%%/xml/dombookmarks/dombookmarks.py +%%PYQT_EXAMPLESDIR%%/xml/dombookmarks/dombookmarks.pyc +%%PYQT_EXAMPLESDIR%%/xml/dombookmarks/dombookmarks.pyo +%%PYQT_EXAMPLESDIR%%/xml/dombookmarks/frank.xbel +%%PYQT_EXAMPLESDIR%%/xml/dombookmarks/jennifer.xbel +%%PYQT_EXAMPLESDIR%%/xml/saxbookmarks/frank.xbel +%%PYQT_EXAMPLESDIR%%/xml/saxbookmarks/jennifer.xbel +%%PYQT_EXAMPLESDIR%%/xml/saxbookmarks/saxbookmarks.py +%%PYQT_EXAMPLESDIR%%/xml/saxbookmarks/saxbookmarks.pyc +%%PYQT_EXAMPLESDIR%%/xml/saxbookmarks/saxbookmarks.pyo +%%PYQT_EXAMPLESDIR%%/xmlpatterns/README +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/contact.xsd +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_contact.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_order.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_recipe.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/order.xsd +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/recipe.xsd +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/valid_contact.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/valid_order.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/valid_recipe.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.py +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.pyc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.pyo +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.qrc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.ui +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc2.py +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc2.pyc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc2.pyo +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc3.py +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc3.pyc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc3.pyo +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.py +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyo Index: misc/py-qt4-doc/Makefile =================================================================== --- misc/py-qt4-doc/Makefile +++ misc/py-qt4-doc/Makefile @@ -3,6 +3,7 @@ PORTNAME= doc PORTVERSION= ${PYQT4_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= misc devel python MASTER_SITES= ${MASTER_SITES_PYQT4} @@ -16,18 +17,21 @@ NO_BUILD= yes USES= python pyqt:4 -USE_PYQT= # +USE_PYTHON= concurrent py3kplist -DOCSDIR= ${PREFIX}/share/doc/py-qt4 +# DOCSDIR gets overritten by concurrent, but UNIQUE_SUFFIX does not take... +# so do it manually. +PYQT_DOCSDIR= ${PREFIX}/${DOCDIR_REL} +PLIST_SUB+= PYQT_DOCSDIR="${PYQT_DOCSDIR}" do-install: cd ${WRKSRC} &&\ - ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ + ${MKDIR} ${STAGEDIR}${PYQT_DOCSDIR} &&\ ${INSTALL_DATA} LICENSE \ NEWS \ README \ THANKS\ - ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} + ${STAGEDIR}${PYQT_DOCSDIR} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${PYQT_DOCSDIR} .include Index: misc/py-qt4-doc/pkg-plist =================================================================== --- misc/py-qt4-doc/pkg-plist +++ misc/py-qt4-doc/pkg-plist @@ -1,1335 +1,1335 @@ -%%DOCSDIR%%/LICENSE -%%DOCSDIR%%/NEWS -%%DOCSDIR%%/README -%%DOCSDIR%%/THANKS -%%DOCSDIR%%/html/_sources/buffer_interface.txt -%%DOCSDIR%%/html/_sources/build_system.txt -%%DOCSDIR%%/html/_sources/dbus.txt -%%DOCSDIR%%/html/_sources/deploy_commercial.txt -%%DOCSDIR%%/html/_sources/designer.txt -%%DOCSDIR%%/html/_sources/gotchas.txt -%%DOCSDIR%%/html/_sources/i18n.txt -%%DOCSDIR%%/html/_sources/incompatibilities.txt -%%DOCSDIR%%/html/_sources/incompatible_apis.txt -%%DOCSDIR%%/html/_sources/index.txt -%%DOCSDIR%%/html/_sources/installation.txt -%%DOCSDIR%%/html/_sources/introduction.txt -%%DOCSDIR%%/html/_sources/keyword_arguments.txt -%%DOCSDIR%%/html/_sources/new_style_signals_slots.txt -%%DOCSDIR%%/html/_sources/old_style_signals_slots.txt -%%DOCSDIR%%/html/_sources/pickle.txt -%%DOCSDIR%%/html/_sources/pyqt_qsettings.txt -%%DOCSDIR%%/html/_sources/pyqt_qvariant.txt -%%DOCSDIR%%/html/_sources/python_shell.txt -%%DOCSDIR%%/html/_sources/python_v3.txt -%%DOCSDIR%%/html/_sources/qml.txt -%%DOCSDIR%%/html/_sources/qt_properties.txt -%%DOCSDIR%%/html/_sources/qt_v5.txt -%%DOCSDIR%%/html/_sources/resources.txt -%%DOCSDIR%%/html/_sources/webkit.txt -%%DOCSDIR%%/html/_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.js -%%DOCSDIR%%/html/_static/jquery-1.11.1.js -%%DOCSDIR%%/html/_static/logo.png -%%DOCSDIR%%/html/_static/logo_tn.ico -%%DOCSDIR%%/html/_static/minus.png -%%DOCSDIR%%/html/_static/plus.png -%%DOCSDIR%%/html/_static/pygments.css -%%DOCSDIR%%/html/_static/searchtools.js -%%DOCSDIR%%/html/_static/sidebar.js -%%DOCSDIR%%/html/_static/underscore.js -%%DOCSDIR%%/html/_static/underscore-1.3.1.js -%%DOCSDIR%%/html/_static/up-pressed.png -%%DOCSDIR%%/html/_static/up.png -%%DOCSDIR%%/html/_static/websupport.js -%%DOCSDIR%%/html/assistant-manual.html -%%DOCSDIR%%/html/buffer_interface.html -%%DOCSDIR%%/html/build_system.html -%%DOCSDIR%%/html/classes.html -%%DOCSDIR%%/html/dbus.html -%%DOCSDIR%%/html/deploy_commercial.html -%%DOCSDIR%%/html/designer.html -%%DOCSDIR%%/html/genindex.html -%%DOCSDIR%%/html/gotchas.html -%%DOCSDIR%%/html/i18n.html -%%DOCSDIR%%/html/images/alphafill.png -%%DOCSDIR%%/html/images/assistant-toolbar.png -%%DOCSDIR%%/html/images/bearings.png -%%DOCSDIR%%/html/images/brush-outline.png -%%DOCSDIR%%/html/images/brush-styles.png -%%DOCSDIR%%/html/images/buttonbox-gnomelayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-gnomelayout-vertical.png -%%DOCSDIR%%/html/images/buttonbox-kdelayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-kdelayout-vertical.png -%%DOCSDIR%%/html/images/buttonbox-mac-modeless-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-maclayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-maclayout-vertical.png -%%DOCSDIR%%/html/images/buttonbox-winlayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-winlayout-vertical.png -%%DOCSDIR%%/html/images/cde-lcdnumber.png -%%DOCSDIR%%/html/images/checkboxes-exclusive.png -%%DOCSDIR%%/html/images/checkboxes-non-exclusive.png -%%DOCSDIR%%/html/images/cleanlooks-calendarwidget.png -%%DOCSDIR%%/html/images/cleanlooks-pushbutton-menu.png -%%DOCSDIR%%/html/images/conceptaudio.png -%%DOCSDIR%%/html/images/conceptvideo.png -%%DOCSDIR%%/html/images/containerextension-example.png -%%DOCSDIR%%/html/images/cursor-arrow.png -%%DOCSDIR%%/html/images/cursor-busy.png -%%DOCSDIR%%/html/images/cursor-closedhand.png -%%DOCSDIR%%/html/images/cursor-cross.png -%%DOCSDIR%%/html/images/cursor-forbidden.png -%%DOCSDIR%%/html/images/cursor-hand.png -%%DOCSDIR%%/html/images/cursor-hsplit.png -%%DOCSDIR%%/html/images/cursor-ibeam.png -%%DOCSDIR%%/html/images/cursor-openhand.png -%%DOCSDIR%%/html/images/cursor-sizeall.png -%%DOCSDIR%%/html/images/cursor-sizeb.png -%%DOCSDIR%%/html/images/cursor-sizef.png -%%DOCSDIR%%/html/images/cursor-sizeh.png -%%DOCSDIR%%/html/images/cursor-sizev.png -%%DOCSDIR%%/html/images/cursor-uparrow.png -%%DOCSDIR%%/html/images/cursor-vsplit.png -%%DOCSDIR%%/html/images/cursor-wait.png -%%DOCSDIR%%/html/images/cursor-whatsthis.png -%%DOCSDIR%%/html/images/effectwidget.png -%%DOCSDIR%%/html/images/filedialogurls.png -%%DOCSDIR%%/html/images/foreignkeys.png -%%DOCSDIR%%/html/images/frames.png -%%DOCSDIR%%/html/images/graphicseffect-blur.png -%%DOCSDIR%%/html/images/graphicseffect-colorize.png -%%DOCSDIR%%/html/images/graphicseffect-drop-shadow.png -%%DOCSDIR%%/html/images/graphicseffect-opacity.png -%%DOCSDIR%%/html/images/graphicseffect-plain.png -%%DOCSDIR%%/html/images/graphicseffect-widget.png -%%DOCSDIR%%/html/images/graphicsview-ellipseitem-pie.png -%%DOCSDIR%%/html/images/graphicsview-ellipseitem.png -%%DOCSDIR%%/html/images/graphicsview-items.png -%%DOCSDIR%%/html/images/graphicsview-lineitem.png -%%DOCSDIR%%/html/images/graphicsview-parentchild.png -%%DOCSDIR%%/html/images/graphicsview-pathitem.png -%%DOCSDIR%%/html/images/graphicsview-pixmapitem.png -%%DOCSDIR%%/html/images/graphicsview-polygonitem.png -%%DOCSDIR%%/html/images/graphicsview-rectitem.png -%%DOCSDIR%%/html/images/graphicsview-simpletextitem.png -%%DOCSDIR%%/html/images/graphicsview-textitem.png -%%DOCSDIR%%/html/images/graphicsview-view.png -%%DOCSDIR%%/html/images/graphicsview-zorder.png -%%DOCSDIR%%/html/images/gridlayout.png -%%DOCSDIR%%/html/images/hoverevents.png -%%DOCSDIR%%/html/images/httpstack.png -%%DOCSDIR%%/html/images/icon.png -%%DOCSDIR%%/html/images/imageprovider.png -%%DOCSDIR%%/html/images/inputdialogs.png -%%DOCSDIR%%/html/images/insertrowinmodelview.png -%%DOCSDIR%%/html/images/licensewizard-flow.png -%%DOCSDIR%%/html/images/macintosh-checkbox.png -%%DOCSDIR%%/html/images/macintosh-dateedit.png -%%DOCSDIR%%/html/images/macintosh-datetimeedit.png -%%DOCSDIR%%/html/images/macintosh-dial.png -%%DOCSDIR%%/html/images/macintosh-groupbox.png -%%DOCSDIR%%/html/images/macintosh-horizontalscrollbar.png -%%DOCSDIR%%/html/images/macintosh-label.png -%%DOCSDIR%%/html/images/macintosh-lcdnumber.png -%%DOCSDIR%%/html/images/macintosh-lineedit.png -%%DOCSDIR%%/html/images/macintosh-listview.png -%%DOCSDIR%%/html/images/macintosh-menu.png -%%DOCSDIR%%/html/images/macintosh-progressbar.png -%%DOCSDIR%%/html/images/macintosh-pushbutton.png -%%DOCSDIR%%/html/images/macintosh-radiobutton.png -%%DOCSDIR%%/html/images/macintosh-slider.png -%%DOCSDIR%%/html/images/macintosh-spinbox.png -%%DOCSDIR%%/html/images/macintosh-tableview.png -%%DOCSDIR%%/html/images/macintosh-tabwidget.png -%%DOCSDIR%%/html/images/macintosh-timeedit.png -%%DOCSDIR%%/html/images/macintosh-treeview.png -%%DOCSDIR%%/html/images/mainwindow-docks.png -%%DOCSDIR%%/html/images/mainwindowlayout.png -%%DOCSDIR%%/html/images/mdi-cascade.png -%%DOCSDIR%%/html/images/mdi-tile.png -%%DOCSDIR%%/html/images/modelindex-no-parent.png -%%DOCSDIR%%/html/images/modelview-begin-append-columns.png -%%DOCSDIR%%/html/images/modelview-begin-append-rows.png -%%DOCSDIR%%/html/images/modelview-begin-insert-columns.png -%%DOCSDIR%%/html/images/modelview-begin-insert-rows.png -%%DOCSDIR%%/html/images/modelview-begin-remove-columns.png -%%DOCSDIR%%/html/images/modelview-begin-remove-rows.png -%%DOCSDIR%%/html/images/modelview-move-rows-1.png -%%DOCSDIR%%/html/images/modelview-move-rows-2.png -%%DOCSDIR%%/html/images/modelview-move-rows-3.png -%%DOCSDIR%%/html/images/modelview-move-rows-4.png -%%DOCSDIR%%/html/images/motif-lcdnumber.png -%%DOCSDIR%%/html/images/motif-menubar.png -%%DOCSDIR%%/html/images/msgbox1.png -%%DOCSDIR%%/html/images/msgbox2.png -%%DOCSDIR%%/html/images/msgbox3.png -%%DOCSDIR%%/html/images/msgbox4.png -%%DOCSDIR%%/html/images/noforeignkeys.png -%%DOCSDIR%%/html/images/palette.png -%%DOCSDIR%%/html/images/pangesture.png -%%DOCSDIR%%/html/images/parent-child-widgets.png -%%DOCSDIR%%/html/images/patternist-wordProcessor.png -%%DOCSDIR%%/html/images/pinchgesture.png -%%DOCSDIR%%/html/images/plastique-checkbox.png -%%DOCSDIR%%/html/images/plastique-colordialog.png -%%DOCSDIR%%/html/images/plastique-dateedit.png -%%DOCSDIR%%/html/images/plastique-datetimeedit.png -%%DOCSDIR%%/html/images/plastique-dial.png -%%DOCSDIR%%/html/images/plastique-fontdialog.png -%%DOCSDIR%%/html/images/plastique-groupbox.png -%%DOCSDIR%%/html/images/plastique-horizontalscrollbar.png -%%DOCSDIR%%/html/images/plastique-label.png -%%DOCSDIR%%/html/images/plastique-lcdnumber.png -%%DOCSDIR%%/html/images/plastique-lineedit.png -%%DOCSDIR%%/html/images/plastique-listview.png -%%DOCSDIR%%/html/images/plastique-menu.png -%%DOCSDIR%%/html/images/plastique-menubar.png -%%DOCSDIR%%/html/images/plastique-printdialog-properties.png -%%DOCSDIR%%/html/images/plastique-printdialog.png -%%DOCSDIR%%/html/images/plastique-progressbar.png -%%DOCSDIR%%/html/images/plastique-progressdialog.png -%%DOCSDIR%%/html/images/plastique-pushbutton-menu.png -%%DOCSDIR%%/html/images/plastique-pushbutton.png -%%DOCSDIR%%/html/images/plastique-radiobutton.png -%%DOCSDIR%%/html/images/plastique-sizegrip.png -%%DOCSDIR%%/html/images/plastique-slider.png -%%DOCSDIR%%/html/images/plastique-spinbox.png -%%DOCSDIR%%/html/images/plastique-statusbar.png -%%DOCSDIR%%/html/images/plastique-tabbar-truncated.png -%%DOCSDIR%%/html/images/plastique-tabbar.png -%%DOCSDIR%%/html/images/plastique-tableview.png -%%DOCSDIR%%/html/images/plastique-tabwidget.png -%%DOCSDIR%%/html/images/plastique-timeedit.png -%%DOCSDIR%%/html/images/plastique-treeview.png -%%DOCSDIR%%/html/images/propagation-custom.png -%%DOCSDIR%%/html/images/propagation-standard.png -%%DOCSDIR%%/html/images/qactiongroup-align.png -%%DOCSDIR%%/html/images/qcalendarwidget-grid.png -%%DOCSDIR%%/html/images/qcolor-cmyk.png -%%DOCSDIR%%/html/images/qcolor-hsv.png -%%DOCSDIR%%/html/images/qcolor-hue.png -%%DOCSDIR%%/html/images/qcolor-rgb.png -%%DOCSDIR%%/html/images/qcolor-saturation.png -%%DOCSDIR%%/html/images/qcolor-value.png -%%DOCSDIR%%/html/images/qcolumnview.png -%%DOCSDIR%%/html/images/qconicalgradient.png -%%DOCSDIR%%/html/images/qdesktopwidget.png -%%DOCSDIR%%/html/images/qeasingcurve-inback.png -%%DOCSDIR%%/html/images/qeasingcurve-inbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-incirc.png -%%DOCSDIR%%/html/images/qeasingcurve-incubic.png -%%DOCSDIR%%/html/images/qeasingcurve-inelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-inexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutback.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutcirc.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutcubic.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutquad.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutquart.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutquint.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutsine.png -%%DOCSDIR%%/html/images/qeasingcurve-inquad.png -%%DOCSDIR%%/html/images/qeasingcurve-inquart.png -%%DOCSDIR%%/html/images/qeasingcurve-inquint.png -%%DOCSDIR%%/html/images/qeasingcurve-insine.png -%%DOCSDIR%%/html/images/qeasingcurve-linear.png -%%DOCSDIR%%/html/images/qeasingcurve-outback.png -%%DOCSDIR%%/html/images/qeasingcurve-outbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-outcirc.png -%%DOCSDIR%%/html/images/qeasingcurve-outcubic.png -%%DOCSDIR%%/html/images/qeasingcurve-outelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-outexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-outinback.png -%%DOCSDIR%%/html/images/qeasingcurve-outinbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-outincirc.png -%%DOCSDIR%%/html/images/qeasingcurve-outincubic.png -%%DOCSDIR%%/html/images/qeasingcurve-outinelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-outinexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-outinquad.png -%%DOCSDIR%%/html/images/qeasingcurve-outinquart.png -%%DOCSDIR%%/html/images/qeasingcurve-outinquint.png -%%DOCSDIR%%/html/images/qeasingcurve-outinsine.png -%%DOCSDIR%%/html/images/qeasingcurve-outquad.png -%%DOCSDIR%%/html/images/qeasingcurve-outquart.png -%%DOCSDIR%%/html/images/qeasingcurve-outquint.png -%%DOCSDIR%%/html/images/qeasingcurve-outsine.png -%%DOCSDIR%%/html/images/qerrormessage.png -%%DOCSDIR%%/html/images/qformlayout-kde.png -%%DOCSDIR%%/html/images/qformlayout-mac.png -%%DOCSDIR%%/html/images/qformlayout-qpe.png -%%DOCSDIR%%/html/images/qformlayout-win.png -%%DOCSDIR%%/html/images/qgradient-conical.png -%%DOCSDIR%%/html/images/qgradient-linear.png -%%DOCSDIR%%/html/images/qgradient-radial.png -%%DOCSDIR%%/html/images/qgraphicsproxywidget-embed.png -%%DOCSDIR%%/html/images/qhboxlayout-with-5-children.png -%%DOCSDIR%%/html/images/qimage-32bit_scaled.png -%%DOCSDIR%%/html/images/qimage-8bit_scaled.png -%%DOCSDIR%%/html/images/qimage-scaling.png -%%DOCSDIR%%/html/images/qline-coordinates.png -%%DOCSDIR%%/html/images/qline-point.png -%%DOCSDIR%%/html/images/qlineargradient-pad.png -%%DOCSDIR%%/html/images/qlineargradient-reflect.png -%%DOCSDIR%%/html/images/qlineargradient-repeat.png -%%DOCSDIR%%/html/images/qlinef-bounded.png -%%DOCSDIR%%/html/images/qlinef-normalvector.png -%%DOCSDIR%%/html/images/qlinef-unbounded.png -%%DOCSDIR%%/html/images/qmatrix-combinedtransformation.png -%%DOCSDIR%%/html/images/qmatrix-representation.png -%%DOCSDIR%%/html/images/qmatrix-simpletransformation.png -%%DOCSDIR%%/html/images/qmdisubwindowlayout.png -%%DOCSDIR%%/html/images/qmessagebox-crit.png -%%DOCSDIR%%/html/images/qmessagebox-info.png -%%DOCSDIR%%/html/images/qmessagebox-quest.png -%%DOCSDIR%%/html/images/qmessagebox-warn.png -%%DOCSDIR%%/html/images/qpainter-affinetransformations.png -%%DOCSDIR%%/html/images/qpainter-arc.png -%%DOCSDIR%%/html/images/qpainter-basicdrawing.png -%%DOCSDIR%%/html/images/qpainter-chord.png -%%DOCSDIR%%/html/images/qpainter-clock.png -%%DOCSDIR%%/html/images/qpainter-compositiondemo.png -%%DOCSDIR%%/html/images/qpainter-compositionmode1.png -%%DOCSDIR%%/html/images/qpainter-compositionmode2.png -%%DOCSDIR%%/html/images/qpainter-concentriccircles.png -%%DOCSDIR%%/html/images/qpainter-ellipse.png -%%DOCSDIR%%/html/images/qpainter-gradients.png -%%DOCSDIR%%/html/images/qpainter-line.png -%%DOCSDIR%%/html/images/qpainter-painterpaths.png -%%DOCSDIR%%/html/images/qpainter-path.png -%%DOCSDIR%%/html/images/qpainter-pathstroking.png -%%DOCSDIR%%/html/images/qpainter-pie.png -%%DOCSDIR%%/html/images/qpainter-polygon.png -%%DOCSDIR%%/html/images/qpainter-rectangle.png -%%DOCSDIR%%/html/images/qpainter-rotation.png -%%DOCSDIR%%/html/images/qpainter-roundrect.png -%%DOCSDIR%%/html/images/qpainter-scale.png -%%DOCSDIR%%/html/images/qpainter-translation.png -%%DOCSDIR%%/html/images/qpainter-vectordeformation.png -%%DOCSDIR%%/html/images/qpainterpath-addellipse.png -%%DOCSDIR%%/html/images/qpainterpath-addpolygon.png -%%DOCSDIR%%/html/images/qpainterpath-addrectangle.png -%%DOCSDIR%%/html/images/qpainterpath-addtext.png -%%DOCSDIR%%/html/images/qpainterpath-arcto.png -%%DOCSDIR%%/html/images/qpainterpath-construction.png -%%DOCSDIR%%/html/images/qpainterpath-cubicto.png -%%DOCSDIR%%/html/images/qpainterpath-demo.png -%%DOCSDIR%%/html/images/qpainterpath-example.png -%%DOCSDIR%%/html/images/qpen-bevel.png -%%DOCSDIR%%/html/images/qpen-custom.png -%%DOCSDIR%%/html/images/qpen-dash.png -%%DOCSDIR%%/html/images/qpen-dashdot.png -%%DOCSDIR%%/html/images/qpen-dashdotdot.png -%%DOCSDIR%%/html/images/qpen-dashpattern.png -%%DOCSDIR%%/html/images/qpen-demo.png -%%DOCSDIR%%/html/images/qpen-dot.png -%%DOCSDIR%%/html/images/qpen-flat.png -%%DOCSDIR%%/html/images/qpen-miter.png -%%DOCSDIR%%/html/images/qpen-miterlimit.png -%%DOCSDIR%%/html/images/qpen-roundcap.png -%%DOCSDIR%%/html/images/qpen-roundjoin.png -%%DOCSDIR%%/html/images/qpen-solid.png -%%DOCSDIR%%/html/images/qpen-square.png -%%DOCSDIR%%/html/images/qradialgradient-pad.png -%%DOCSDIR%%/html/images/qradialgradient-reflect.png -%%DOCSDIR%%/html/images/qradialgradient-repeat.png -%%DOCSDIR%%/html/images/qrect-coordinates.png -%%DOCSDIR%%/html/images/qrect-diagram-one.png -%%DOCSDIR%%/html/images/qrect-diagram-three.png -%%DOCSDIR%%/html/images/qrect-diagram-two.png -%%DOCSDIR%%/html/images/qrect-diagram-zero.png -%%DOCSDIR%%/html/images/qrect-intersect.png -%%DOCSDIR%%/html/images/qrect-unite.png -%%DOCSDIR%%/html/images/qrectf-coordinates.png -%%DOCSDIR%%/html/images/qrectf-diagram-one.png -%%DOCSDIR%%/html/images/qrectf-diagram-three.png -%%DOCSDIR%%/html/images/qrectf-diagram-two.png -%%DOCSDIR%%/html/images/qscrollarea-noscrollbars.png -%%DOCSDIR%%/html/images/qscrollarea-onescrollbar.png -%%DOCSDIR%%/html/images/qscrollarea-twoscrollbars.png -%%DOCSDIR%%/html/images/qscrollbar-picture.png -%%DOCSDIR%%/html/images/qscrollbar-values.png -%%DOCSDIR%%/html/images/qsortfilterproxymodel-sorting.png -%%DOCSDIR%%/html/images/qspinbox-plusminus.png -%%DOCSDIR%%/html/images/qspinbox-updown.png -%%DOCSDIR%%/html/images/qstatustipevent-action.png -%%DOCSDIR%%/html/images/qstatustipevent-widget.png -%%DOCSDIR%%/html/images/qstyle-comboboxes.png -%%DOCSDIR%%/html/images/qstyleoptiontoolbar-position.png -%%DOCSDIR%%/html/images/qt-colors.png -%%DOCSDIR%%/html/images/qt-fillrule-oddeven.png -%%DOCSDIR%%/html/images/qt-fillrule-winding.png -%%DOCSDIR%%/html/images/qtabletevent-tilt.png -%%DOCSDIR%%/html/images/qtableview-resized.png -%%DOCSDIR%%/html/images/qtextblock-sequence.png -%%DOCSDIR%%/html/images/qtextfragment-split.png -%%DOCSDIR%%/html/images/qtextframe-style.png -%%DOCSDIR%%/html/images/qtexttableformat-cell.png -%%DOCSDIR%%/html/images/qtransform-combinedtransformation.png -%%DOCSDIR%%/html/images/qtransform-combinedtransformation2.png -%%DOCSDIR%%/html/images/qtransform-representation.png -%%DOCSDIR%%/html/images/qtransform-simpletransformation.png -%%DOCSDIR%%/html/images/qtwizard-aero1.png -%%DOCSDIR%%/html/images/qtwizard-aero2.png -%%DOCSDIR%%/html/images/qtwizard-classic1.png -%%DOCSDIR%%/html/images/qtwizard-classic2.png -%%DOCSDIR%%/html/images/qtwizard-mac1.png -%%DOCSDIR%%/html/images/qtwizard-mac2.png -%%DOCSDIR%%/html/images/qtwizard-macpage.png -%%DOCSDIR%%/html/images/qtwizard-modern1.png -%%DOCSDIR%%/html/images/qtwizard-modern2.png -%%DOCSDIR%%/html/images/qtwizard-nonmacpage.png -%%DOCSDIR%%/html/images/qundoview.png -%%DOCSDIR%%/html/images/qurl-authority.png -%%DOCSDIR%%/html/images/qurl-authority2.png -%%DOCSDIR%%/html/images/qurl-authority3.png -%%DOCSDIR%%/html/images/qurl-fragment.png -%%DOCSDIR%%/html/images/qurl-ftppath.png -%%DOCSDIR%%/html/images/qurl-mailtopath.png -%%DOCSDIR%%/html/images/qurl-querystring.png -%%DOCSDIR%%/html/images/qvboxlayout-with-5-children.png -%%DOCSDIR%%/html/images/qwebview-diagram.png -%%DOCSDIR%%/html/images/rb-logo.png -%%DOCSDIR%%/html/images/relationaltable.png -%%DOCSDIR%%/html/images/rintersect.png -%%DOCSDIR%%/html/images/roaming-states.png -%%DOCSDIR%%/html/images/rsubtract.png -%%DOCSDIR%%/html/images/runion.png -%%DOCSDIR%%/html/images/rxor.png -%%DOCSDIR%%/html/images/simpleanchorlayout-example.png -%%DOCSDIR%%/html/images/swipegesture.png -%%DOCSDIR%%/html/images/system-tray.png -%%DOCSDIR%%/html/images/taskmenuextension-example-faded.png -%%DOCSDIR%%/html/images/tcpstream.png -%%DOCSDIR%%/html/images/texttable-merge.png -%%DOCSDIR%%/html/images/texttable-split.png -%%DOCSDIR%%/html/images/udppackets.png -%%DOCSDIR%%/html/images/whatsthis.png -%%DOCSDIR%%/html/images/widgetdelegate.png -%%DOCSDIR%%/html/images/windows-checkbox.png -%%DOCSDIR%%/html/images/windows-lcdnumber.png -%%DOCSDIR%%/html/images/windows-lineedit.png -%%DOCSDIR%%/html/images/windows-radiobutton.png -%%DOCSDIR%%/html/images/windows-slider.png -%%DOCSDIR%%/html/images/windowsxp-dateedit.png -%%DOCSDIR%%/html/images/windowsxp-datetimeedit.png -%%DOCSDIR%%/html/images/windowsxp-dial.png -%%DOCSDIR%%/html/images/windowsxp-fontcombobox.png -%%DOCSDIR%%/html/images/windowsxp-groupbox.png -%%DOCSDIR%%/html/images/windowsxp-horizontalscrollbar.png -%%DOCSDIR%%/html/images/windowsxp-label.png -%%DOCSDIR%%/html/images/windowsxp-lcdnumber.png -%%DOCSDIR%%/html/images/windowsxp-listview.png -%%DOCSDIR%%/html/images/windowsxp-menu.png -%%DOCSDIR%%/html/images/windowsxp-progressbar.png -%%DOCSDIR%%/html/images/windowsxp-pushbutton.png -%%DOCSDIR%%/html/images/windowsxp-spinbox.png -%%DOCSDIR%%/html/images/windowsxp-tableview.png -%%DOCSDIR%%/html/images/windowsxp-tabwidget.png -%%DOCSDIR%%/html/images/windowsxp-timeedit.png -%%DOCSDIR%%/html/images/windowsxp-treeview.png -%%DOCSDIR%%/html/incompatibilities.html -%%DOCSDIR%%/html/incompatible_apis.html -%%DOCSDIR%%/html/index.html -%%DOCSDIR%%/html/installation.html -%%DOCSDIR%%/html/introduction.html -%%DOCSDIR%%/html/keyword_arguments.html -%%DOCSDIR%%/html/modules.html -%%DOCSDIR%%/html/new_style_signals_slots.html -%%DOCSDIR%%/html/objects.inv -%%DOCSDIR%%/html/old_style_signals_slots.html -%%DOCSDIR%%/html/phonon-abstractaudiooutput.html -%%DOCSDIR%%/html/phonon-abstractvideooutput.html -%%DOCSDIR%%/html/phonon-audiocapturedevice.html -%%DOCSDIR%%/html/phonon-audiochanneldescription.html -%%DOCSDIR%%/html/phonon-audiooutput.html -%%DOCSDIR%%/html/phonon-audiooutputdevice.html -%%DOCSDIR%%/html/phonon-audiooutputdevicemodel.html -%%DOCSDIR%%/html/phonon-backendcapabilities-notifier.html -%%DOCSDIR%%/html/phonon-backendcapabilities.html -%%DOCSDIR%%/html/phonon-effect.html -%%DOCSDIR%%/html/phonon-effectdescription.html -%%DOCSDIR%%/html/phonon-effectdescriptionmodel.html -%%DOCSDIR%%/html/phonon-effectparameter-hints.html -%%DOCSDIR%%/html/phonon-effectparameter.html -%%DOCSDIR%%/html/phonon-effectwidget.html -%%DOCSDIR%%/html/phonon-mediacontroller-features.html -%%DOCSDIR%%/html/phonon-mediacontroller.html -%%DOCSDIR%%/html/phonon-medianode.html -%%DOCSDIR%%/html/phonon-mediaobject.html -%%DOCSDIR%%/html/phonon-mediasource.html -%%DOCSDIR%%/html/phonon-module.html -%%DOCSDIR%%/html/phonon-path.html -%%DOCSDIR%%/html/phonon-seekslider.html -%%DOCSDIR%%/html/phonon-subtitledescription.html -%%DOCSDIR%%/html/phonon-videoplayer.html -%%DOCSDIR%%/html/phonon-videowidget.html -%%DOCSDIR%%/html/phonon-volumeslider.html -%%DOCSDIR%%/html/phonon.html -%%DOCSDIR%%/html/pickle.html -%%DOCSDIR%%/html/py-modindex.html -%%DOCSDIR%%/html/pyqt_qsettings.html -%%DOCSDIR%%/html/pyqt_qvariant.html -%%DOCSDIR%%/html/python_shell.html -%%DOCSDIR%%/html/python_v3.html -%%DOCSDIR%%/html/qabstractanimation.html -%%DOCSDIR%%/html/qabstractbutton.html -%%DOCSDIR%%/html/qabstracteventdispatcher.html -%%DOCSDIR%%/html/qabstractextensionfactory.html -%%DOCSDIR%%/html/qabstractextensionmanager.html -%%DOCSDIR%%/html/qabstractfileengine-fileflags.html -%%DOCSDIR%%/html/qabstractfileengine.html -%%DOCSDIR%%/html/qabstractfileenginehandler.html -%%DOCSDIR%%/html/qabstractfileengineiterator.html -%%DOCSDIR%%/html/qabstractformbuilder.html -%%DOCSDIR%%/html/qabstractgraphicsshapeitem.html -%%DOCSDIR%%/html/qabstractitemdelegate.html -%%DOCSDIR%%/html/qabstractitemmodel.html -%%DOCSDIR%%/html/qabstractitemview-edittriggers.html -%%DOCSDIR%%/html/qabstractitemview.html -%%DOCSDIR%%/html/qabstractlistmodel.html -%%DOCSDIR%%/html/qabstractmessagehandler.html -%%DOCSDIR%%/html/qabstractnetworkcache.html -%%DOCSDIR%%/html/qabstractprintdialog-printdialogoptions.html -%%DOCSDIR%%/html/qabstractprintdialog.html -%%DOCSDIR%%/html/qabstractproxymodel.html -%%DOCSDIR%%/html/qabstractscrollarea.html -%%DOCSDIR%%/html/qabstractslider.html -%%DOCSDIR%%/html/qabstractsocket.html -%%DOCSDIR%%/html/qabstractspinbox-stepenabled.html -%%DOCSDIR%%/html/qabstractspinbox.html -%%DOCSDIR%%/html/qabstractstate.html -%%DOCSDIR%%/html/qabstracttablemodel.html -%%DOCSDIR%%/html/qabstracttextdocumentlayout-paintcontext.html -%%DOCSDIR%%/html/qabstracttextdocumentlayout-selection.html -%%DOCSDIR%%/html/qabstracttextdocumentlayout.html -%%DOCSDIR%%/html/qabstracttransition.html -%%DOCSDIR%%/html/qabstracturiresolver.html -%%DOCSDIR%%/html/qabstractvideobuffer.html -%%DOCSDIR%%/html/qabstractvideosurface.html -%%DOCSDIR%%/html/qabstractxmlnodemodel.html -%%DOCSDIR%%/html/qabstractxmlreceiver.html -%%DOCSDIR%%/html/qaction.html -%%DOCSDIR%%/html/qactionevent.html -%%DOCSDIR%%/html/qactiongroup.html -%%DOCSDIR%%/html/qanimationgroup.html -%%DOCSDIR%%/html/qapplication.html -%%DOCSDIR%%/html/qassistantclient.html -%%DOCSDIR%%/html/qaudio.html -%%DOCSDIR%%/html/qaudiodeviceinfo.html -%%DOCSDIR%%/html/qaudioformat.html -%%DOCSDIR%%/html/qaudioinput.html -%%DOCSDIR%%/html/qaudiooutput.html -%%DOCSDIR%%/html/qauthenticator.html -%%DOCSDIR%%/html/qaxcontainer.html -%%DOCSDIR%%/html/qbasictimer.html -%%DOCSDIR%%/html/qbitarray.html -%%DOCSDIR%%/html/qbitmap.html -%%DOCSDIR%%/html/qboxlayout.html -%%DOCSDIR%%/html/qbrush.html -%%DOCSDIR%%/html/qbuffer.html -%%DOCSDIR%%/html/qbuttongroup.html -%%DOCSDIR%%/html/qbytearray.html -%%DOCSDIR%%/html/qbytearraymatcher.html -%%DOCSDIR%%/html/qcalendarwidget.html -%%DOCSDIR%%/html/qchar.html -%%DOCSDIR%%/html/qcheckbox.html -%%DOCSDIR%%/html/qchildevent.html -%%DOCSDIR%%/html/qclipboard.html -%%DOCSDIR%%/html/qcloseevent.html -%%DOCSDIR%%/html/qcolor.html -%%DOCSDIR%%/html/qcolordialog-colordialogoptions.html -%%DOCSDIR%%/html/qcolordialog.html -%%DOCSDIR%%/html/qcolumnview.html -%%DOCSDIR%%/html/qcombobox.html -%%DOCSDIR%%/html/qcommandlinkbutton.html -%%DOCSDIR%%/html/qcommonstyle.html -%%DOCSDIR%%/html/qcompleter.html -%%DOCSDIR%%/html/qconicalgradient.html -%%DOCSDIR%%/html/qcontextmenuevent.html -%%DOCSDIR%%/html/qcoreapplication.html -%%DOCSDIR%%/html/qcryptographichash.html -%%DOCSDIR%%/html/qcursor.html -%%DOCSDIR%%/html/qdatastream.html -%%DOCSDIR%%/html/qdatawidgetmapper.html -%%DOCSDIR%%/html/qdate.html -%%DOCSDIR%%/html/qdateedit.html -%%DOCSDIR%%/html/qdatetime.html -%%DOCSDIR%%/html/qdatetimeedit-sections.html -%%DOCSDIR%%/html/qdatetimeedit.html -%%DOCSDIR%%/html/qdbus.html -%%DOCSDIR%%/html/qdbusabstractadaptor.html -%%DOCSDIR%%/html/qdbusabstractinterface.html -%%DOCSDIR%%/html/qdbusargument.html -%%DOCSDIR%%/html/qdbusconnection-connectioncapabilities.html -%%DOCSDIR%%/html/qdbusconnection-registeroptions.html -%%DOCSDIR%%/html/qdbusconnection.html -%%DOCSDIR%%/html/qdbusconnectioninterface.html -%%DOCSDIR%%/html/qdbuserror.html -%%DOCSDIR%%/html/qdbusinterface.html -%%DOCSDIR%%/html/qdbusmessage.html -%%DOCSDIR%%/html/qdbusobjectpath.html -%%DOCSDIR%%/html/qdbuspendingcall.html -%%DOCSDIR%%/html/qdbuspendingcallwatcher.html -%%DOCSDIR%%/html/qdbuspendingreply.html -%%DOCSDIR%%/html/qdbusreply.html -%%DOCSDIR%%/html/qdbusservicewatcher-watchmode.html -%%DOCSDIR%%/html/qdbusservicewatcher.html -%%DOCSDIR%%/html/qdbussignature.html -%%DOCSDIR%%/html/qdbusunixfiledescriptor.html -%%DOCSDIR%%/html/qdbusvariant.html -%%DOCSDIR%%/html/qdeclarativecomponent.html -%%DOCSDIR%%/html/qdeclarativecontext.html -%%DOCSDIR%%/html/qdeclarativeengine.html -%%DOCSDIR%%/html/qdeclarativeerror.html -%%DOCSDIR%%/html/qdeclarativeexpression.html -%%DOCSDIR%%/html/qdeclarativeextensionplugin.html -%%DOCSDIR%%/html/qdeclarativeimageprovider.html -%%DOCSDIR%%/html/qdeclarativeitem.html -%%DOCSDIR%%/html/qdeclarativelistreference.html -%%DOCSDIR%%/html/qdeclarativenetworkaccessmanagerfactory.html -%%DOCSDIR%%/html/qdeclarativeparserstatus.html -%%DOCSDIR%%/html/qdeclarativeproperty.html -%%DOCSDIR%%/html/qdeclarativepropertymap.html -%%DOCSDIR%%/html/qdeclarativepropertyvaluesource.html -%%DOCSDIR%%/html/qdeclarativescriptstring.html -%%DOCSDIR%%/html/qdeclarativeview.html -%%DOCSDIR%%/html/qdesigneractioneditorinterface.html -%%DOCSDIR%%/html/qdesignercontainerextension.html -%%DOCSDIR%%/html/qdesignercustomwidgetcollectioninterface.html -%%DOCSDIR%%/html/qdesignercustomwidgetinterface.html -%%DOCSDIR%%/html/qdesignerformeditorinterface.html -%%DOCSDIR%%/html/qdesignerformwindowcursorinterface.html -%%DOCSDIR%%/html/qdesignerformwindowinterface-feature.html -%%DOCSDIR%%/html/qdesignerformwindowinterface.html -%%DOCSDIR%%/html/qdesignerformwindowmanagerinterface.html -%%DOCSDIR%%/html/qdesignermembersheetextension.html -%%DOCSDIR%%/html/qdesignerobjectinspectorinterface.html -%%DOCSDIR%%/html/qdesignerpropertyeditorinterface.html -%%DOCSDIR%%/html/qdesignerpropertysheetextension.html -%%DOCSDIR%%/html/qdesignertaskmenuextension.html -%%DOCSDIR%%/html/qdesignerwidgetboxinterface.html -%%DOCSDIR%%/html/qdesktopservices.html -%%DOCSDIR%%/html/qdesktopwidget.html -%%DOCSDIR%%/html/qdial.html -%%DOCSDIR%%/html/qdialog.html -%%DOCSDIR%%/html/qdialogbuttonbox-standardbuttons.html -%%DOCSDIR%%/html/qdialogbuttonbox.html -%%DOCSDIR%%/html/qdir-filters.html -%%DOCSDIR%%/html/qdir-sortflags.html -%%DOCSDIR%%/html/qdir.html -%%DOCSDIR%%/html/qdiriterator-iteratorflags.html -%%DOCSDIR%%/html/qdiriterator.html -%%DOCSDIR%%/html/qdirmodel.html -%%DOCSDIR%%/html/qdockwidget-dockwidgetfeatures.html -%%DOCSDIR%%/html/qdockwidget.html -%%DOCSDIR%%/html/qdomattr.html -%%DOCSDIR%%/html/qdomcdatasection.html -%%DOCSDIR%%/html/qdomcharacterdata.html -%%DOCSDIR%%/html/qdomcomment.html -%%DOCSDIR%%/html/qdomdocument.html -%%DOCSDIR%%/html/qdomdocumentfragment.html -%%DOCSDIR%%/html/qdomdocumenttype.html -%%DOCSDIR%%/html/qdomelement.html -%%DOCSDIR%%/html/qdomentity.html -%%DOCSDIR%%/html/qdomentityreference.html -%%DOCSDIR%%/html/qdomimplementation.html -%%DOCSDIR%%/html/qdomnamednodemap.html -%%DOCSDIR%%/html/qdomnode.html -%%DOCSDIR%%/html/qdomnodelist.html -%%DOCSDIR%%/html/qdomnotation.html -%%DOCSDIR%%/html/qdomprocessinginstruction.html -%%DOCSDIR%%/html/qdomtext.html -%%DOCSDIR%%/html/qdoublespinbox.html -%%DOCSDIR%%/html/qdoublevalidator.html -%%DOCSDIR%%/html/qdrag.html -%%DOCSDIR%%/html/qdragenterevent.html -%%DOCSDIR%%/html/qdragleaveevent.html -%%DOCSDIR%%/html/qdragmoveevent.html -%%DOCSDIR%%/html/qdropevent.html -%%DOCSDIR%%/html/qdynamicpropertychangeevent.html -%%DOCSDIR%%/html/qeasingcurve.html -%%DOCSDIR%%/html/qelapsedtimer.html -%%DOCSDIR%%/html/qerrormessage.html -%%DOCSDIR%%/html/qevent.html -%%DOCSDIR%%/html/qeventloop-processeventsflags.html -%%DOCSDIR%%/html/qeventloop.html -%%DOCSDIR%%/html/qeventtransition.html -%%DOCSDIR%%/html/qextensionfactory.html -%%DOCSDIR%%/html/qextensionmanager.html -%%DOCSDIR%%/html/qfile-filehandleflags.html -%%DOCSDIR%%/html/qfile-permissions.html -%%DOCSDIR%%/html/qfile.html -%%DOCSDIR%%/html/qfiledialog-options.html -%%DOCSDIR%%/html/qfiledialog.html -%%DOCSDIR%%/html/qfileiconprovider.html -%%DOCSDIR%%/html/qfileinfo.html -%%DOCSDIR%%/html/qfileopenevent.html -%%DOCSDIR%%/html/qfilesystemmodel.html -%%DOCSDIR%%/html/qfilesystemwatcher.html -%%DOCSDIR%%/html/qfinalstate.html -%%DOCSDIR%%/html/qfocusevent.html -%%DOCSDIR%%/html/qfocusframe.html -%%DOCSDIR%%/html/qfont.html -%%DOCSDIR%%/html/qfontcombobox-fontfilters.html -%%DOCSDIR%%/html/qfontcombobox.html -%%DOCSDIR%%/html/qfontdatabase.html -%%DOCSDIR%%/html/qfontdialog-fontdialogoptions.html -%%DOCSDIR%%/html/qfontdialog.html -%%DOCSDIR%%/html/qfontinfo.html -%%DOCSDIR%%/html/qfontmetrics.html -%%DOCSDIR%%/html/qfontmetricsf.html -%%DOCSDIR%%/html/qformbuilder.html -%%DOCSDIR%%/html/qformlayout.html -%%DOCSDIR%%/html/qframe.html -%%DOCSDIR%%/html/qfsfileengine.html -%%DOCSDIR%%/html/qftp.html -%%DOCSDIR%%/html/qgenericargument.html -%%DOCSDIR%%/html/qgenericreturnargument.html -%%DOCSDIR%%/html/qgesture.html -%%DOCSDIR%%/html/qgestureevent.html -%%DOCSDIR%%/html/qgesturerecognizer-result.html -%%DOCSDIR%%/html/qgesturerecognizer.html -%%DOCSDIR%%/html/qgl-formatoptions.html -%%DOCSDIR%%/html/qgl.html -%%DOCSDIR%%/html/qglbuffer.html -%%DOCSDIR%%/html/qglcolormap.html -%%DOCSDIR%%/html/qglcontext-bindoptions.html -%%DOCSDIR%%/html/qglcontext.html -%%DOCSDIR%%/html/qglformat-openglversionflags.html -%%DOCSDIR%%/html/qglformat.html -%%DOCSDIR%%/html/qglframebufferobject.html -%%DOCSDIR%%/html/qglframebufferobjectformat.html -%%DOCSDIR%%/html/qglpixelbuffer.html -%%DOCSDIR%%/html/qglshader-shadertype.html -%%DOCSDIR%%/html/qglshader.html -%%DOCSDIR%%/html/qglshaderprogram.html -%%DOCSDIR%%/html/qglwidget.html -%%DOCSDIR%%/html/qglyphrun.html -%%DOCSDIR%%/html/qgradient.html -%%DOCSDIR%%/html/qgraphicsanchor.html -%%DOCSDIR%%/html/qgraphicsanchorlayout.html -%%DOCSDIR%%/html/qgraphicsblureffect-blurhints.html -%%DOCSDIR%%/html/qgraphicsblureffect.html -%%DOCSDIR%%/html/qgraphicscolorizeeffect.html -%%DOCSDIR%%/html/qgraphicsdropshadoweffect.html -%%DOCSDIR%%/html/qgraphicseffect-changeflags.html -%%DOCSDIR%%/html/qgraphicseffect.html -%%DOCSDIR%%/html/qgraphicsellipseitem.html -%%DOCSDIR%%/html/qgraphicsgridlayout.html -%%DOCSDIR%%/html/qgraphicsitem-graphicsitemflags.html -%%DOCSDIR%%/html/qgraphicsitem.html -%%DOCSDIR%%/html/qgraphicsitemanimation.html -%%DOCSDIR%%/html/qgraphicsitemgroup.html -%%DOCSDIR%%/html/qgraphicslayout.html -%%DOCSDIR%%/html/qgraphicslayoutitem.html -%%DOCSDIR%%/html/qgraphicslinearlayout.html -%%DOCSDIR%%/html/qgraphicslineitem.html -%%DOCSDIR%%/html/qgraphicsobject.html -%%DOCSDIR%%/html/qgraphicsopacityeffect.html -%%DOCSDIR%%/html/qgraphicspathitem.html -%%DOCSDIR%%/html/qgraphicspixmapitem.html -%%DOCSDIR%%/html/qgraphicspolygonitem.html -%%DOCSDIR%%/html/qgraphicsproxywidget.html -%%DOCSDIR%%/html/qgraphicsrectitem.html -%%DOCSDIR%%/html/qgraphicsrotation.html -%%DOCSDIR%%/html/qgraphicsscale.html -%%DOCSDIR%%/html/qgraphicsscene-scenelayers.html -%%DOCSDIR%%/html/qgraphicsscene.html -%%DOCSDIR%%/html/qgraphicsscenecontextmenuevent.html -%%DOCSDIR%%/html/qgraphicsscenedragdropevent.html -%%DOCSDIR%%/html/qgraphicssceneevent.html -%%DOCSDIR%%/html/qgraphicsscenehelpevent.html -%%DOCSDIR%%/html/qgraphicsscenehoverevent.html -%%DOCSDIR%%/html/qgraphicsscenemouseevent.html -%%DOCSDIR%%/html/qgraphicsscenemoveevent.html -%%DOCSDIR%%/html/qgraphicssceneresizeevent.html -%%DOCSDIR%%/html/qgraphicsscenewheelevent.html -%%DOCSDIR%%/html/qgraphicssimpletextitem.html -%%DOCSDIR%%/html/qgraphicssvgitem.html -%%DOCSDIR%%/html/qgraphicstextitem.html -%%DOCSDIR%%/html/qgraphicstransform.html -%%DOCSDIR%%/html/qgraphicsview-cachemode.html -%%DOCSDIR%%/html/qgraphicsview-optimizationflags.html -%%DOCSDIR%%/html/qgraphicsview.html -%%DOCSDIR%%/html/qgraphicswebview.html -%%DOCSDIR%%/html/qgraphicswidget.html -%%DOCSDIR%%/html/qgridlayout.html -%%DOCSDIR%%/html/qgroupbox.html -%%DOCSDIR%%/html/qhboxlayout.html -%%DOCSDIR%%/html/qheaderview.html -%%DOCSDIR%%/html/qhelpcontentitem.html -%%DOCSDIR%%/html/qhelpcontentmodel.html -%%DOCSDIR%%/html/qhelpcontentwidget.html -%%DOCSDIR%%/html/qhelpengine.html -%%DOCSDIR%%/html/qhelpenginecore.html -%%DOCSDIR%%/html/qhelpevent.html -%%DOCSDIR%%/html/qhelpindexmodel.html -%%DOCSDIR%%/html/qhelpindexwidget.html -%%DOCSDIR%%/html/qhelpsearchengine.html -%%DOCSDIR%%/html/qhelpsearchquery.html -%%DOCSDIR%%/html/qhelpsearchquerywidget.html -%%DOCSDIR%%/html/qhelpsearchresultwidget.html -%%DOCSDIR%%/html/qhideevent.html -%%DOCSDIR%%/html/qhistorystate.html -%%DOCSDIR%%/html/qhostaddress.html -%%DOCSDIR%%/html/qhostinfo.html -%%DOCSDIR%%/html/qhoverevent.html -%%DOCSDIR%%/html/qhttp.html -%%DOCSDIR%%/html/qhttpheader.html -%%DOCSDIR%%/html/qhttpmultipart.html -%%DOCSDIR%%/html/qhttppart.html -%%DOCSDIR%%/html/qhttprequestheader.html -%%DOCSDIR%%/html/qhttpresponseheader.html -%%DOCSDIR%%/html/qicon.html -%%DOCSDIR%%/html/qicondragevent.html -%%DOCSDIR%%/html/qiconengine.html -%%DOCSDIR%%/html/qiconenginev2-availablesizesargument.html -%%DOCSDIR%%/html/qiconenginev2.html -%%DOCSDIR%%/html/qidentityproxymodel.html -%%DOCSDIR%%/html/qimage.html -%%DOCSDIR%%/html/qimageiohandler.html -%%DOCSDIR%%/html/qimagereader.html -%%DOCSDIR%%/html/qimagewriter.html -%%DOCSDIR%%/html/qinputcontext.html -%%DOCSDIR%%/html/qinputcontextfactory.html -%%DOCSDIR%%/html/qinputdialog-inputdialogoptions.html -%%DOCSDIR%%/html/qinputdialog.html -%%DOCSDIR%%/html/qinputevent.html -%%DOCSDIR%%/html/qinputmethodevent-attribute.html -%%DOCSDIR%%/html/qinputmethodevent.html -%%DOCSDIR%%/html/qintvalidator.html -%%DOCSDIR%%/html/qiodevice-openmode.html -%%DOCSDIR%%/html/qiodevice.html -%%DOCSDIR%%/html/qitemdelegate.html -%%DOCSDIR%%/html/qitemeditorcreatorbase.html -%%DOCSDIR%%/html/qitemeditorfactory.html -%%DOCSDIR%%/html/qitemselection.html -%%DOCSDIR%%/html/qitemselectionmodel-selectionflags.html -%%DOCSDIR%%/html/qitemselectionmodel.html -%%DOCSDIR%%/html/qitemselectionrange.html -%%DOCSDIR%%/html/qkeyevent.html -%%DOCSDIR%%/html/qkeyeventtransition.html -%%DOCSDIR%%/html/qkeysequence.html -%%DOCSDIR%%/html/qlabel.html -%%DOCSDIR%%/html/qlatin1char.html -%%DOCSDIR%%/html/qlatin1string.html -%%DOCSDIR%%/html/qlayout.html -%%DOCSDIR%%/html/qlayoutitem.html -%%DOCSDIR%%/html/qlcdnumber.html -%%DOCSDIR%%/html/qlibrary-loadhints.html -%%DOCSDIR%%/html/qlibrary.html -%%DOCSDIR%%/html/qlibraryinfo.html -%%DOCSDIR%%/html/qline.html -%%DOCSDIR%%/html/qlineargradient.html -%%DOCSDIR%%/html/qlineedit.html -%%DOCSDIR%%/html/qlinef.html -%%DOCSDIR%%/html/qlistview.html -%%DOCSDIR%%/html/qlistwidget.html -%%DOCSDIR%%/html/qlistwidgetitem.html -%%DOCSDIR%%/html/qlocale-numberoptions.html -%%DOCSDIR%%/html/qlocale.html -%%DOCSDIR%%/html/qlocalserver.html -%%DOCSDIR%%/html/qlocalsocket.html -%%DOCSDIR%%/html/qmainwindow-dockoptions.html -%%DOCSDIR%%/html/qmainwindow.html -%%DOCSDIR%%/html/qmargins.html -%%DOCSDIR%%/html/qmatrix.html -%%DOCSDIR%%/html/qmatrix2x2.html -%%DOCSDIR%%/html/qmatrix2x3.html -%%DOCSDIR%%/html/qmatrix2x4.html -%%DOCSDIR%%/html/qmatrix3x2.html -%%DOCSDIR%%/html/qmatrix3x3.html -%%DOCSDIR%%/html/qmatrix3x4.html -%%DOCSDIR%%/html/qmatrix4x2.html -%%DOCSDIR%%/html/qmatrix4x3.html -%%DOCSDIR%%/html/qmatrix4x4.html -%%DOCSDIR%%/html/qmdiarea-areaoptions.html -%%DOCSDIR%%/html/qmdiarea.html -%%DOCSDIR%%/html/qmdisubwindow-subwindowoptions.html -%%DOCSDIR%%/html/qmdisubwindow.html -%%DOCSDIR%%/html/qmenu.html -%%DOCSDIR%%/html/qmenubar.html -%%DOCSDIR%%/html/qmessagebox-standardbuttons.html -%%DOCSDIR%%/html/qmessagebox.html -%%DOCSDIR%%/html/qmetaclassinfo.html -%%DOCSDIR%%/html/qmetaenum.html -%%DOCSDIR%%/html/qmetamethod.html -%%DOCSDIR%%/html/qmetaobject.html -%%DOCSDIR%%/html/qmetaproperty.html -%%DOCSDIR%%/html/qmetatype.html -%%DOCSDIR%%/html/qmimedata.html -%%DOCSDIR%%/html/qmimesource.html -%%DOCSDIR%%/html/qml.html -%%DOCSDIR%%/html/qmodelindex.html -%%DOCSDIR%%/html/qmouseevent.html -%%DOCSDIR%%/html/qmouseeventtransition.html -%%DOCSDIR%%/html/qmoveevent.html -%%DOCSDIR%%/html/qmovie.html -%%DOCSDIR%%/html/qmutex.html -%%DOCSDIR%%/html/qmutexlocker.html -%%DOCSDIR%%/html/qnetworkaccessmanager.html -%%DOCSDIR%%/html/qnetworkaddressentry.html -%%DOCSDIR%%/html/qnetworkcachemetadata.html -%%DOCSDIR%%/html/qnetworkconfiguration-stateflags.html -%%DOCSDIR%%/html/qnetworkconfiguration.html -%%DOCSDIR%%/html/qnetworkconfigurationmanager-capabilities.html -%%DOCSDIR%%/html/qnetworkconfigurationmanager.html -%%DOCSDIR%%/html/qnetworkcookie.html -%%DOCSDIR%%/html/qnetworkcookiejar.html -%%DOCSDIR%%/html/qnetworkdiskcache.html -%%DOCSDIR%%/html/qnetworkinterface-interfaceflags.html -%%DOCSDIR%%/html/qnetworkinterface.html -%%DOCSDIR%%/html/qnetworkproxy-capabilities.html -%%DOCSDIR%%/html/qnetworkproxy.html -%%DOCSDIR%%/html/qnetworkproxyfactory.html -%%DOCSDIR%%/html/qnetworkproxyquery.html -%%DOCSDIR%%/html/qnetworkreply.html -%%DOCSDIR%%/html/qnetworkrequest.html -%%DOCSDIR%%/html/qnetworksession.html -%%DOCSDIR%%/html/qobject.html -%%DOCSDIR%%/html/qobjectcleanuphandler.html -%%DOCSDIR%%/html/qpagesetupdialog-pagesetupdialogoptions.html -%%DOCSDIR%%/html/qpagesetupdialog.html -%%DOCSDIR%%/html/qpaintdevice.html -%%DOCSDIR%%/html/qpaintengine-dirtyflags.html -%%DOCSDIR%%/html/qpaintengine-paintenginefeatures.html -%%DOCSDIR%%/html/qpaintengine.html -%%DOCSDIR%%/html/qpaintenginestate.html -%%DOCSDIR%%/html/qpainter-pixmapfragment.html -%%DOCSDIR%%/html/qpainter-pixmapfragmenthints.html -%%DOCSDIR%%/html/qpainter-renderhints.html -%%DOCSDIR%%/html/qpainter.html -%%DOCSDIR%%/html/qpainterpath-element.html -%%DOCSDIR%%/html/qpainterpath.html -%%DOCSDIR%%/html/qpainterpathstroker.html -%%DOCSDIR%%/html/qpaintevent.html -%%DOCSDIR%%/html/qpalette.html -%%DOCSDIR%%/html/qpangesture.html -%%DOCSDIR%%/html/qparallelanimationgroup.html -%%DOCSDIR%%/html/qpauseanimation.html -%%DOCSDIR%%/html/qpen.html -%%DOCSDIR%%/html/qpersistentmodelindex.html -%%DOCSDIR%%/html/qpicture.html -%%DOCSDIR%%/html/qpictureio.html -%%DOCSDIR%%/html/qpinchgesture-changeflags.html -%%DOCSDIR%%/html/qpinchgesture.html -%%DOCSDIR%%/html/qpixmap.html -%%DOCSDIR%%/html/qpixmapcache-key.html -%%DOCSDIR%%/html/qpixmapcache.html -%%DOCSDIR%%/html/qplaintextdocumentlayout.html -%%DOCSDIR%%/html/qplaintextedit.html -%%DOCSDIR%%/html/qpluginloader.html -%%DOCSDIR%%/html/qpoint.html -%%DOCSDIR%%/html/qpointf.html -%%DOCSDIR%%/html/qpolygon.html -%%DOCSDIR%%/html/qpolygonf.html -%%DOCSDIR%%/html/qprintdialog.html -%%DOCSDIR%%/html/qprintengine.html -%%DOCSDIR%%/html/qprinter.html -%%DOCSDIR%%/html/qprinterinfo.html -%%DOCSDIR%%/html/qprintpreviewdialog.html -%%DOCSDIR%%/html/qprintpreviewwidget.html -%%DOCSDIR%%/html/qprocess.html -%%DOCSDIR%%/html/qprocessenvironment.html -%%DOCSDIR%%/html/qprogressbar.html -%%DOCSDIR%%/html/qprogressdialog.html -%%DOCSDIR%%/html/qpropertyanimation.html -%%DOCSDIR%%/html/qproxymodel.html -%%DOCSDIR%%/html/qpushbutton.html -%%DOCSDIR%%/html/qpydeclarativepropertyvaluesource.html -%%DOCSDIR%%/html/qpydesignercontainerextension.html -%%DOCSDIR%%/html/qpydesignercustomwidgetcollectionplugin.html -%%DOCSDIR%%/html/qpydesignercustomwidgetplugin.html -%%DOCSDIR%%/html/qpydesignermembersheetextension.html -%%DOCSDIR%%/html/qpydesignerpropertysheetextension.html -%%DOCSDIR%%/html/qpydesignertaskmenuextension.html -%%DOCSDIR%%/html/qpynullvariant.html -%%DOCSDIR%%/html/qpytextobject.html -%%DOCSDIR%%/html/qquaternion.html -%%DOCSDIR%%/html/qradialgradient.html -%%DOCSDIR%%/html/qradiobutton.html -%%DOCSDIR%%/html/qrawfont.html -%%DOCSDIR%%/html/qreadlocker.html -%%DOCSDIR%%/html/qreadwritelock.html -%%DOCSDIR%%/html/qrect.html -%%DOCSDIR%%/html/qrectf.html -%%DOCSDIR%%/html/qregexp.html -%%DOCSDIR%%/html/qregexpvalidator.html -%%DOCSDIR%%/html/qregion.html -%%DOCSDIR%%/html/qresizeevent.html -%%DOCSDIR%%/html/qresource.html -%%DOCSDIR%%/html/qrubberband.html -%%DOCSDIR%%/html/qrunnable.html -%%DOCSDIR%%/html/qscriptclass-queryflags.html -%%DOCSDIR%%/html/qscriptclass.html -%%DOCSDIR%%/html/qscriptclasspropertyiterator.html -%%DOCSDIR%%/html/qscriptcontext.html -%%DOCSDIR%%/html/qscriptcontextinfo.html -%%DOCSDIR%%/html/qscriptengine-qobjectwrapoptions.html -%%DOCSDIR%%/html/qscriptengine.html -%%DOCSDIR%%/html/qscriptengineagent.html -%%DOCSDIR%%/html/qscriptenginedebugger.html -%%DOCSDIR%%/html/qscriptstring.html -%%DOCSDIR%%/html/qscriptsyntaxcheckresult.html -%%DOCSDIR%%/html/qscriptvalue-propertyflags.html -%%DOCSDIR%%/html/qscriptvalue-resolveflags.html -%%DOCSDIR%%/html/qscriptvalue.html -%%DOCSDIR%%/html/qscriptvalueiterator.html -%%DOCSDIR%%/html/qscrollarea.html -%%DOCSDIR%%/html/qscrollbar.html -%%DOCSDIR%%/html/qsemaphore.html -%%DOCSDIR%%/html/qsequentialanimationgroup.html -%%DOCSDIR%%/html/qsessionmanager.html -%%DOCSDIR%%/html/qsettings.html -%%DOCSDIR%%/html/qsharedmemory.html -%%DOCSDIR%%/html/qshortcut.html -%%DOCSDIR%%/html/qshortcutevent.html -%%DOCSDIR%%/html/qshowevent.html -%%DOCSDIR%%/html/qsignalmapper.html -%%DOCSDIR%%/html/qsignaltransition.html -%%DOCSDIR%%/html/qsimplexmlnodemodel.html -%%DOCSDIR%%/html/qsize.html -%%DOCSDIR%%/html/qsizef.html -%%DOCSDIR%%/html/qsizegrip.html -%%DOCSDIR%%/html/qsizepolicy-controltypes.html -%%DOCSDIR%%/html/qsizepolicy.html -%%DOCSDIR%%/html/qslider.html -%%DOCSDIR%%/html/qsocketnotifier.html -%%DOCSDIR%%/html/qsortfilterproxymodel.html -%%DOCSDIR%%/html/qsound.html -%%DOCSDIR%%/html/qsourcelocation.html -%%DOCSDIR%%/html/qspaceritem.html -%%DOCSDIR%%/html/qspinbox.html -%%DOCSDIR%%/html/qsplashscreen.html -%%DOCSDIR%%/html/qsplitter.html -%%DOCSDIR%%/html/qsplitterhandle.html -%%DOCSDIR%%/html/qsql-paramtype.html -%%DOCSDIR%%/html/qsql.html -%%DOCSDIR%%/html/qsqldatabase.html -%%DOCSDIR%%/html/qsqldriver.html -%%DOCSDIR%%/html/qsqldrivercreatorbase.html -%%DOCSDIR%%/html/qsqlerror.html -%%DOCSDIR%%/html/qsqlfield.html -%%DOCSDIR%%/html/qsqlindex.html -%%DOCSDIR%%/html/qsqlquery.html -%%DOCSDIR%%/html/qsqlquerymodel.html -%%DOCSDIR%%/html/qsqlrecord.html -%%DOCSDIR%%/html/qsqlrelation.html -%%DOCSDIR%%/html/qsqlrelationaldelegate.html -%%DOCSDIR%%/html/qsqlrelationaltablemodel.html -%%DOCSDIR%%/html/qsqlresult.html -%%DOCSDIR%%/html/qsqltablemodel.html -%%DOCSDIR%%/html/qssl-ssloptions.html -%%DOCSDIR%%/html/qssl.html -%%DOCSDIR%%/html/qsslcertificate.html -%%DOCSDIR%%/html/qsslcipher.html -%%DOCSDIR%%/html/qsslconfiguration.html -%%DOCSDIR%%/html/qsslerror.html -%%DOCSDIR%%/html/qsslkey.html -%%DOCSDIR%%/html/qsslsocket.html -%%DOCSDIR%%/html/qstackedlayout.html -%%DOCSDIR%%/html/qstackedwidget.html -%%DOCSDIR%%/html/qstandarditem.html -%%DOCSDIR%%/html/qstandarditemmodel.html -%%DOCSDIR%%/html/qstate.html -%%DOCSDIR%%/html/qstatemachine-signalevent.html -%%DOCSDIR%%/html/qstatemachine-wrappedevent.html -%%DOCSDIR%%/html/qstatemachine.html -%%DOCSDIR%%/html/qstatictext.html -%%DOCSDIR%%/html/qstatusbar.html -%%DOCSDIR%%/html/qstatustipevent.html -%%DOCSDIR%%/html/qstring-sectionflags.html -%%DOCSDIR%%/html/qstring.html -%%DOCSDIR%%/html/qstringlist.html -%%DOCSDIR%%/html/qstringlistmodel.html -%%DOCSDIR%%/html/qstringmatcher.html -%%DOCSDIR%%/html/qstringref.html -%%DOCSDIR%%/html/qstyle-state.html -%%DOCSDIR%%/html/qstyle-subcontrols.html -%%DOCSDIR%%/html/qstyle.html -%%DOCSDIR%%/html/qstyleditemdelegate.html -%%DOCSDIR%%/html/qstylefactory.html -%%DOCSDIR%%/html/qstylehintreturn.html -%%DOCSDIR%%/html/qstylehintreturnmask.html -%%DOCSDIR%%/html/qstylehintreturnvariant.html -%%DOCSDIR%%/html/qstyleoption.html -%%DOCSDIR%%/html/qstyleoptionbutton-buttonfeatures.html -%%DOCSDIR%%/html/qstyleoptionbutton.html -%%DOCSDIR%%/html/qstyleoptioncombobox.html -%%DOCSDIR%%/html/qstyleoptioncomplex.html -%%DOCSDIR%%/html/qstyleoptiondockwidget.html -%%DOCSDIR%%/html/qstyleoptiondockwidgetv2.html -%%DOCSDIR%%/html/qstyleoptionfocusrect.html -%%DOCSDIR%%/html/qstyleoptionframe.html -%%DOCSDIR%%/html/qstyleoptionframev2-framefeatures.html -%%DOCSDIR%%/html/qstyleoptionframev2.html -%%DOCSDIR%%/html/qstyleoptionframev3.html -%%DOCSDIR%%/html/qstyleoptiongraphicsitem.html -%%DOCSDIR%%/html/qstyleoptiongroupbox.html -%%DOCSDIR%%/html/qstyleoptionheader.html -%%DOCSDIR%%/html/qstyleoptionmenuitem.html -%%DOCSDIR%%/html/qstyleoptionprogressbar.html -%%DOCSDIR%%/html/qstyleoptionprogressbarv2.html -%%DOCSDIR%%/html/qstyleoptionrubberband.html -%%DOCSDIR%%/html/qstyleoptionsizegrip.html -%%DOCSDIR%%/html/qstyleoptionslider.html -%%DOCSDIR%%/html/qstyleoptionspinbox.html -%%DOCSDIR%%/html/qstyleoptiontab-cornerwidgets.html -%%DOCSDIR%%/html/qstyleoptiontab.html -%%DOCSDIR%%/html/qstyleoptiontabbarbase.html -%%DOCSDIR%%/html/qstyleoptiontabbarbasev2.html -%%DOCSDIR%%/html/qstyleoptiontabv2.html -%%DOCSDIR%%/html/qstyleoptiontabv3.html -%%DOCSDIR%%/html/qstyleoptiontabwidgetframe.html -%%DOCSDIR%%/html/qstyleoptiontabwidgetframev2.html -%%DOCSDIR%%/html/qstyleoptiontitlebar.html -%%DOCSDIR%%/html/qstyleoptiontoolbar-toolbarfeatures.html -%%DOCSDIR%%/html/qstyleoptiontoolbar.html -%%DOCSDIR%%/html/qstyleoptiontoolbox.html -%%DOCSDIR%%/html/qstyleoptiontoolboxv2.html -%%DOCSDIR%%/html/qstyleoptiontoolbutton-toolbuttonfeatures.html -%%DOCSDIR%%/html/qstyleoptiontoolbutton.html -%%DOCSDIR%%/html/qstyleoptionviewitem.html -%%DOCSDIR%%/html/qstyleoptionviewitemv2-viewitemfeatures.html -%%DOCSDIR%%/html/qstyleoptionviewitemv2.html -%%DOCSDIR%%/html/qstyleoptionviewitemv3.html -%%DOCSDIR%%/html/qstyleoptionviewitemv4.html -%%DOCSDIR%%/html/qstylepainter.html -%%DOCSDIR%%/html/qsvggenerator.html -%%DOCSDIR%%/html/qsvgrenderer.html -%%DOCSDIR%%/html/qsvgwidget.html -%%DOCSDIR%%/html/qswipegesture.html -%%DOCSDIR%%/html/qsyntaxhighlighter.html -%%DOCSDIR%%/html/qsysinfo.html -%%DOCSDIR%%/html/qsystemlocale.html -%%DOCSDIR%%/html/qsystemsemaphore.html -%%DOCSDIR%%/html/qsystemtrayicon.html -%%DOCSDIR%%/html/qt-alignment.html -%%DOCSDIR%%/html/qt-dockwidgetareas.html -%%DOCSDIR%%/html/qt-dropactions.html -%%DOCSDIR%%/html/qt-gestureflags.html -%%DOCSDIR%%/html/qt-imageconversionflags.html -%%DOCSDIR%%/html/qt-inputmethodhints.html -%%DOCSDIR%%/html/qt-itemflags.html -%%DOCSDIR%%/html/qt-keyboardmodifiers.html -%%DOCSDIR%%/html/qt-matchflags.html -%%DOCSDIR%%/html/qt-mousebuttons.html -%%DOCSDIR%%/html/qt-orientations.html -%%DOCSDIR%%/html/qt-textinteractionflags.html -%%DOCSDIR%%/html/qt-toolbarareas.html -%%DOCSDIR%%/html/qt-touchpointstates.html -%%DOCSDIR%%/html/qt-windowflags.html -%%DOCSDIR%%/html/qt-windowstates.html -%%DOCSDIR%%/html/qt.html -%%DOCSDIR%%/html/qt_properties.html -%%DOCSDIR%%/html/qt_v5.html -%%DOCSDIR%%/html/qtabbar.html -%%DOCSDIR%%/html/qtabletevent.html -%%DOCSDIR%%/html/qtableview.html -%%DOCSDIR%%/html/qtablewidget.html -%%DOCSDIR%%/html/qtablewidgetitem.html -%%DOCSDIR%%/html/qtablewidgetselectionrange.html -%%DOCSDIR%%/html/qtabwidget.html -%%DOCSDIR%%/html/qtapandholdgesture.html -%%DOCSDIR%%/html/qtapgesture.html -%%DOCSDIR%%/html/qtassistant.html -%%DOCSDIR%%/html/qtcore.html -%%DOCSDIR%%/html/qtcpserver.html -%%DOCSDIR%%/html/qtcpsocket.html -%%DOCSDIR%%/html/qtdbus.html -%%DOCSDIR%%/html/qtdeclarative.html -%%DOCSDIR%%/html/qtdesigner.html -%%DOCSDIR%%/html/qtemporaryfile.html -%%DOCSDIR%%/html/qtest.html -%%DOCSDIR%%/html/qtextblock-iterator.html -%%DOCSDIR%%/html/qtextblock.html -%%DOCSDIR%%/html/qtextblockformat.html -%%DOCSDIR%%/html/qtextblockgroup.html -%%DOCSDIR%%/html/qtextblockuserdata.html -%%DOCSDIR%%/html/qtextboundaryfinder-boundaryreasons.html -%%DOCSDIR%%/html/qtextboundaryfinder.html -%%DOCSDIR%%/html/qtextbrowser.html -%%DOCSDIR%%/html/qtextcharformat.html -%%DOCSDIR%%/html/qtextcodec-conversionflags.html -%%DOCSDIR%%/html/qtextcodec-converterstate.html -%%DOCSDIR%%/html/qtextcodec.html -%%DOCSDIR%%/html/qtextcursor.html -%%DOCSDIR%%/html/qtextdecoder.html -%%DOCSDIR%%/html/qtextdocument-findflags.html -%%DOCSDIR%%/html/qtextdocument.html -%%DOCSDIR%%/html/qtextdocumentfragment.html -%%DOCSDIR%%/html/qtextdocumentwriter.html -%%DOCSDIR%%/html/qtextedit-autoformatting.html -%%DOCSDIR%%/html/qtextedit-extraselection.html -%%DOCSDIR%%/html/qtextedit.html -%%DOCSDIR%%/html/qtextencoder.html -%%DOCSDIR%%/html/qtextformat-pagebreakflags.html -%%DOCSDIR%%/html/qtextformat.html -%%DOCSDIR%%/html/qtextfragment.html -%%DOCSDIR%%/html/qtextframe-iterator.html -%%DOCSDIR%%/html/qtextframe.html -%%DOCSDIR%%/html/qtextframeformat.html -%%DOCSDIR%%/html/qtextimageformat.html -%%DOCSDIR%%/html/qtextinlineobject.html -%%DOCSDIR%%/html/qtextitem-renderflags.html -%%DOCSDIR%%/html/qtextitem.html -%%DOCSDIR%%/html/qtextlayout-formatrange.html -%%DOCSDIR%%/html/qtextlayout.html -%%DOCSDIR%%/html/qtextlength.html -%%DOCSDIR%%/html/qtextline.html -%%DOCSDIR%%/html/qtextlist.html -%%DOCSDIR%%/html/qtextlistformat.html -%%DOCSDIR%%/html/qtextobject.html -%%DOCSDIR%%/html/qtextobjectinterface.html -%%DOCSDIR%%/html/qtextoption-flags.html -%%DOCSDIR%%/html/qtextoption-tab.html -%%DOCSDIR%%/html/qtextoption.html -%%DOCSDIR%%/html/qtextstream-numberflags.html -%%DOCSDIR%%/html/qtextstream.html -%%DOCSDIR%%/html/qtexttable.html -%%DOCSDIR%%/html/qtexttablecell.html -%%DOCSDIR%%/html/qtexttablecellformat.html -%%DOCSDIR%%/html/qtexttableformat.html -%%DOCSDIR%%/html/qtgui.html -%%DOCSDIR%%/html/qthelp.html -%%DOCSDIR%%/html/qthread.html -%%DOCSDIR%%/html/qthreadpool.html -%%DOCSDIR%%/html/qtime.html -%%DOCSDIR%%/html/qtimeedit.html -%%DOCSDIR%%/html/qtimeline.html -%%DOCSDIR%%/html/qtimer.html -%%DOCSDIR%%/html/qtimerevent.html -%%DOCSDIR%%/html/qtmultimedia.html -%%DOCSDIR%%/html/qtnetwork.html -%%DOCSDIR%%/html/qtoolbar.html -%%DOCSDIR%%/html/qtoolbox.html -%%DOCSDIR%%/html/qtoolbutton.html -%%DOCSDIR%%/html/qtooltip.html -%%DOCSDIR%%/html/qtopengl.html -%%DOCSDIR%%/html/qtouchevent-touchpoint.html -%%DOCSDIR%%/html/qtouchevent.html -%%DOCSDIR%%/html/qtransform.html -%%DOCSDIR%%/html/qtranslator.html -%%DOCSDIR%%/html/qtreeview.html -%%DOCSDIR%%/html/qtreewidget.html -%%DOCSDIR%%/html/qtreewidgetitem.html -%%DOCSDIR%%/html/qtreewidgetitemiterator-iteratorflags.html -%%DOCSDIR%%/html/qtreewidgetitemiterator.html -%%DOCSDIR%%/html/qtscript.html -%%DOCSDIR%%/html/qtscripttools.html -%%DOCSDIR%%/html/qtsql.html -%%DOCSDIR%%/html/qtsvg.html -%%DOCSDIR%%/html/qttest.html -%%DOCSDIR%%/html/qtwebkit.html -%%DOCSDIR%%/html/qtxml.html -%%DOCSDIR%%/html/qtxmlpatterns.html -%%DOCSDIR%%/html/qudpsocket-bindmode.html -%%DOCSDIR%%/html/qudpsocket.html -%%DOCSDIR%%/html/qundocommand.html -%%DOCSDIR%%/html/qundogroup.html -%%DOCSDIR%%/html/qundostack.html -%%DOCSDIR%%/html/qundoview.html -%%DOCSDIR%%/html/qurl-formattingoptions.html -%%DOCSDIR%%/html/qurl.html -%%DOCSDIR%%/html/qurlinfo.html -%%DOCSDIR%%/html/quuid.html -%%DOCSDIR%%/html/qvalidator.html -%%DOCSDIR%%/html/qvariant.html -%%DOCSDIR%%/html/qvariantanimation.html -%%DOCSDIR%%/html/qvboxlayout.html -%%DOCSDIR%%/html/qvector2d.html -%%DOCSDIR%%/html/qvector3d.html -%%DOCSDIR%%/html/qvector4d.html -%%DOCSDIR%%/html/qvideoframe.html -%%DOCSDIR%%/html/qvideosurfaceformat.html -%%DOCSDIR%%/html/qwaitcondition.html -%%DOCSDIR%%/html/qwebdatabase.html -%%DOCSDIR%%/html/qwebelement.html -%%DOCSDIR%%/html/qwebelementcollection.html -%%DOCSDIR%%/html/qwebframe.html -%%DOCSDIR%%/html/qwebhistory.html -%%DOCSDIR%%/html/qwebhistoryinterface.html -%%DOCSDIR%%/html/qwebhistoryitem.html -%%DOCSDIR%%/html/qwebhittestresult.html -%%DOCSDIR%%/html/qwebinspector.html -%%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionoption.html -%%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionreturn.html -%%DOCSDIR%%/html/qwebpage-errorpageextensionoption.html -%%DOCSDIR%%/html/qwebpage-errorpageextensionreturn.html -%%DOCSDIR%%/html/qwebpage-extensionoption.html -%%DOCSDIR%%/html/qwebpage-extensionreturn.html -%%DOCSDIR%%/html/qwebpage-findflags.html -%%DOCSDIR%%/html/qwebpage-viewportattributes.html -%%DOCSDIR%%/html/qwebpage.html -%%DOCSDIR%%/html/qwebpluginfactory-extensionoption.html -%%DOCSDIR%%/html/qwebpluginfactory-extensionreturn.html -%%DOCSDIR%%/html/qwebpluginfactory-mimetype.html -%%DOCSDIR%%/html/qwebpluginfactory-plugin.html -%%DOCSDIR%%/html/qwebpluginfactory.html -%%DOCSDIR%%/html/qwebsecurityorigin.html -%%DOCSDIR%%/html/qwebsettings.html -%%DOCSDIR%%/html/qwebview.html -%%DOCSDIR%%/html/qwhatsthis.html -%%DOCSDIR%%/html/qwhatsthisclickedevent.html -%%DOCSDIR%%/html/qwheelevent.html -%%DOCSDIR%%/html/qwidget-renderflags.html -%%DOCSDIR%%/html/qwidget.html -%%DOCSDIR%%/html/qwidgetaction.html -%%DOCSDIR%%/html/qwidgetitem.html -%%DOCSDIR%%/html/qwindowstatechangeevent.html -%%DOCSDIR%%/html/qwizard-wizardoptions.html -%%DOCSDIR%%/html/qwizard.html -%%DOCSDIR%%/html/qwizardpage.html -%%DOCSDIR%%/html/qworkspace.html -%%DOCSDIR%%/html/qwritelocker.html -%%DOCSDIR%%/html/qx11embedcontainer.html -%%DOCSDIR%%/html/qx11embedwidget.html -%%DOCSDIR%%/html/qx11info.html -%%DOCSDIR%%/html/qxmlattributes.html -%%DOCSDIR%%/html/qxmlcontenthandler.html -%%DOCSDIR%%/html/qxmldeclhandler.html -%%DOCSDIR%%/html/qxmldefaulthandler.html -%%DOCSDIR%%/html/qxmldtdhandler.html -%%DOCSDIR%%/html/qxmlentityresolver.html -%%DOCSDIR%%/html/qxmlerrorhandler.html -%%DOCSDIR%%/html/qxmlformatter.html -%%DOCSDIR%%/html/qxmlinputsource.html -%%DOCSDIR%%/html/qxmlitem.html -%%DOCSDIR%%/html/qxmllexicalhandler.html -%%DOCSDIR%%/html/qxmllocator.html -%%DOCSDIR%%/html/qxmlname.html -%%DOCSDIR%%/html/qxmlnamepool.html -%%DOCSDIR%%/html/qxmlnamespacesupport.html -%%DOCSDIR%%/html/qxmlnodemodelindex.html -%%DOCSDIR%%/html/qxmlparseexception.html -%%DOCSDIR%%/html/qxmlquery.html -%%DOCSDIR%%/html/qxmlreader.html -%%DOCSDIR%%/html/qxmlresultitems.html -%%DOCSDIR%%/html/qxmlschema.html -%%DOCSDIR%%/html/qxmlschemavalidator.html -%%DOCSDIR%%/html/qxmlserializer.html -%%DOCSDIR%%/html/qxmlsimplereader.html -%%DOCSDIR%%/html/qxmlstreamattribute.html -%%DOCSDIR%%/html/qxmlstreamattributes.html -%%DOCSDIR%%/html/qxmlstreamentitydeclaration.html -%%DOCSDIR%%/html/qxmlstreamentityresolver.html -%%DOCSDIR%%/html/qxmlstreamnamespacedeclaration.html -%%DOCSDIR%%/html/qxmlstreamnotationdeclaration.html -%%DOCSDIR%%/html/qxmlstreamreader.html -%%DOCSDIR%%/html/qxmlstreamwriter.html -%%DOCSDIR%%/html/resources.html -%%DOCSDIR%%/html/search.html -%%DOCSDIR%%/html/searchindex.js -%%DOCSDIR%%/html/threads.html -%%DOCSDIR%%/html/webkit.html +%%PYQT_DOCSDIR%%/LICENSE +%%PYQT_DOCSDIR%%/NEWS +%%PYQT_DOCSDIR%%/README +%%PYQT_DOCSDIR%%/THANKS +%%PYQT_DOCSDIR%%/html/_sources/buffer_interface.txt +%%PYQT_DOCSDIR%%/html/_sources/build_system.txt +%%PYQT_DOCSDIR%%/html/_sources/dbus.txt +%%PYQT_DOCSDIR%%/html/_sources/deploy_commercial.txt +%%PYQT_DOCSDIR%%/html/_sources/designer.txt +%%PYQT_DOCSDIR%%/html/_sources/gotchas.txt +%%PYQT_DOCSDIR%%/html/_sources/i18n.txt +%%PYQT_DOCSDIR%%/html/_sources/incompatibilities.txt +%%PYQT_DOCSDIR%%/html/_sources/incompatible_apis.txt +%%PYQT_DOCSDIR%%/html/_sources/index.txt +%%PYQT_DOCSDIR%%/html/_sources/installation.txt +%%PYQT_DOCSDIR%%/html/_sources/introduction.txt +%%PYQT_DOCSDIR%%/html/_sources/keyword_arguments.txt +%%PYQT_DOCSDIR%%/html/_sources/new_style_signals_slots.txt +%%PYQT_DOCSDIR%%/html/_sources/old_style_signals_slots.txt +%%PYQT_DOCSDIR%%/html/_sources/pickle.txt +%%PYQT_DOCSDIR%%/html/_sources/pyqt_qsettings.txt +%%PYQT_DOCSDIR%%/html/_sources/pyqt_qvariant.txt +%%PYQT_DOCSDIR%%/html/_sources/python_shell.txt +%%PYQT_DOCSDIR%%/html/_sources/python_v3.txt +%%PYQT_DOCSDIR%%/html/_sources/qml.txt +%%PYQT_DOCSDIR%%/html/_sources/qt_properties.txt +%%PYQT_DOCSDIR%%/html/_sources/qt_v5.txt +%%PYQT_DOCSDIR%%/html/_sources/resources.txt +%%PYQT_DOCSDIR%%/html/_sources/webkit.txt +%%PYQT_DOCSDIR%%/html/_static/ajax-loader.gif +%%PYQT_DOCSDIR%%/html/_static/basic.css +%%PYQT_DOCSDIR%%/html/_static/classic.css +%%PYQT_DOCSDIR%%/html/_static/comment-bright.png +%%PYQT_DOCSDIR%%/html/_static/comment-close.png +%%PYQT_DOCSDIR%%/html/_static/comment.png +%%PYQT_DOCSDIR%%/html/_static/doctools.js +%%PYQT_DOCSDIR%%/html/_static/down-pressed.png +%%PYQT_DOCSDIR%%/html/_static/down.png +%%PYQT_DOCSDIR%%/html/_static/file.png +%%PYQT_DOCSDIR%%/html/_static/jquery.js +%%PYQT_DOCSDIR%%/html/_static/jquery-1.11.1.js +%%PYQT_DOCSDIR%%/html/_static/logo.png +%%PYQT_DOCSDIR%%/html/_static/logo_tn.ico +%%PYQT_DOCSDIR%%/html/_static/minus.png +%%PYQT_DOCSDIR%%/html/_static/plus.png +%%PYQT_DOCSDIR%%/html/_static/pygments.css +%%PYQT_DOCSDIR%%/html/_static/searchtools.js +%%PYQT_DOCSDIR%%/html/_static/sidebar.js +%%PYQT_DOCSDIR%%/html/_static/underscore.js +%%PYQT_DOCSDIR%%/html/_static/underscore-1.3.1.js +%%PYQT_DOCSDIR%%/html/_static/up-pressed.png +%%PYQT_DOCSDIR%%/html/_static/up.png +%%PYQT_DOCSDIR%%/html/_static/websupport.js +%%PYQT_DOCSDIR%%/html/assistant-manual.html +%%PYQT_DOCSDIR%%/html/buffer_interface.html +%%PYQT_DOCSDIR%%/html/build_system.html +%%PYQT_DOCSDIR%%/html/classes.html +%%PYQT_DOCSDIR%%/html/dbus.html +%%PYQT_DOCSDIR%%/html/deploy_commercial.html +%%PYQT_DOCSDIR%%/html/designer.html +%%PYQT_DOCSDIR%%/html/genindex.html +%%PYQT_DOCSDIR%%/html/gotchas.html +%%PYQT_DOCSDIR%%/html/i18n.html +%%PYQT_DOCSDIR%%/html/images/alphafill.png +%%PYQT_DOCSDIR%%/html/images/assistant-toolbar.png +%%PYQT_DOCSDIR%%/html/images/bearings.png +%%PYQT_DOCSDIR%%/html/images/brush-outline.png +%%PYQT_DOCSDIR%%/html/images/brush-styles.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-gnomelayout-horizontal.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-gnomelayout-vertical.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-kdelayout-horizontal.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-kdelayout-vertical.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-mac-modeless-horizontal.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-maclayout-horizontal.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-maclayout-vertical.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-winlayout-horizontal.png +%%PYQT_DOCSDIR%%/html/images/buttonbox-winlayout-vertical.png +%%PYQT_DOCSDIR%%/html/images/cde-lcdnumber.png +%%PYQT_DOCSDIR%%/html/images/checkboxes-exclusive.png +%%PYQT_DOCSDIR%%/html/images/checkboxes-non-exclusive.png +%%PYQT_DOCSDIR%%/html/images/cleanlooks-calendarwidget.png +%%PYQT_DOCSDIR%%/html/images/cleanlooks-pushbutton-menu.png +%%PYQT_DOCSDIR%%/html/images/conceptaudio.png +%%PYQT_DOCSDIR%%/html/images/conceptvideo.png +%%PYQT_DOCSDIR%%/html/images/containerextension-example.png +%%PYQT_DOCSDIR%%/html/images/cursor-arrow.png +%%PYQT_DOCSDIR%%/html/images/cursor-busy.png +%%PYQT_DOCSDIR%%/html/images/cursor-closedhand.png +%%PYQT_DOCSDIR%%/html/images/cursor-cross.png +%%PYQT_DOCSDIR%%/html/images/cursor-forbidden.png +%%PYQT_DOCSDIR%%/html/images/cursor-hand.png +%%PYQT_DOCSDIR%%/html/images/cursor-hsplit.png +%%PYQT_DOCSDIR%%/html/images/cursor-ibeam.png +%%PYQT_DOCSDIR%%/html/images/cursor-openhand.png +%%PYQT_DOCSDIR%%/html/images/cursor-sizeall.png +%%PYQT_DOCSDIR%%/html/images/cursor-sizeb.png +%%PYQT_DOCSDIR%%/html/images/cursor-sizef.png +%%PYQT_DOCSDIR%%/html/images/cursor-sizeh.png +%%PYQT_DOCSDIR%%/html/images/cursor-sizev.png +%%PYQT_DOCSDIR%%/html/images/cursor-uparrow.png +%%PYQT_DOCSDIR%%/html/images/cursor-vsplit.png +%%PYQT_DOCSDIR%%/html/images/cursor-wait.png +%%PYQT_DOCSDIR%%/html/images/cursor-whatsthis.png +%%PYQT_DOCSDIR%%/html/images/effectwidget.png +%%PYQT_DOCSDIR%%/html/images/filedialogurls.png +%%PYQT_DOCSDIR%%/html/images/foreignkeys.png +%%PYQT_DOCSDIR%%/html/images/frames.png +%%PYQT_DOCSDIR%%/html/images/graphicseffect-blur.png +%%PYQT_DOCSDIR%%/html/images/graphicseffect-colorize.png +%%PYQT_DOCSDIR%%/html/images/graphicseffect-drop-shadow.png +%%PYQT_DOCSDIR%%/html/images/graphicseffect-opacity.png +%%PYQT_DOCSDIR%%/html/images/graphicseffect-plain.png +%%PYQT_DOCSDIR%%/html/images/graphicseffect-widget.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-ellipseitem-pie.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-ellipseitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-items.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-lineitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-parentchild.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-pathitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-pixmapitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-polygonitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-rectitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-simpletextitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-textitem.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-view.png +%%PYQT_DOCSDIR%%/html/images/graphicsview-zorder.png +%%PYQT_DOCSDIR%%/html/images/gridlayout.png +%%PYQT_DOCSDIR%%/html/images/hoverevents.png +%%PYQT_DOCSDIR%%/html/images/httpstack.png +%%PYQT_DOCSDIR%%/html/images/icon.png +%%PYQT_DOCSDIR%%/html/images/imageprovider.png +%%PYQT_DOCSDIR%%/html/images/inputdialogs.png +%%PYQT_DOCSDIR%%/html/images/insertrowinmodelview.png +%%PYQT_DOCSDIR%%/html/images/licensewizard-flow.png +%%PYQT_DOCSDIR%%/html/images/macintosh-checkbox.png +%%PYQT_DOCSDIR%%/html/images/macintosh-dateedit.png +%%PYQT_DOCSDIR%%/html/images/macintosh-datetimeedit.png +%%PYQT_DOCSDIR%%/html/images/macintosh-dial.png +%%PYQT_DOCSDIR%%/html/images/macintosh-groupbox.png +%%PYQT_DOCSDIR%%/html/images/macintosh-horizontalscrollbar.png +%%PYQT_DOCSDIR%%/html/images/macintosh-label.png +%%PYQT_DOCSDIR%%/html/images/macintosh-lcdnumber.png +%%PYQT_DOCSDIR%%/html/images/macintosh-lineedit.png +%%PYQT_DOCSDIR%%/html/images/macintosh-listview.png +%%PYQT_DOCSDIR%%/html/images/macintosh-menu.png +%%PYQT_DOCSDIR%%/html/images/macintosh-progressbar.png +%%PYQT_DOCSDIR%%/html/images/macintosh-pushbutton.png +%%PYQT_DOCSDIR%%/html/images/macintosh-radiobutton.png +%%PYQT_DOCSDIR%%/html/images/macintosh-slider.png +%%PYQT_DOCSDIR%%/html/images/macintosh-spinbox.png +%%PYQT_DOCSDIR%%/html/images/macintosh-tableview.png +%%PYQT_DOCSDIR%%/html/images/macintosh-tabwidget.png +%%PYQT_DOCSDIR%%/html/images/macintosh-timeedit.png +%%PYQT_DOCSDIR%%/html/images/macintosh-treeview.png +%%PYQT_DOCSDIR%%/html/images/mainwindow-docks.png +%%PYQT_DOCSDIR%%/html/images/mainwindowlayout.png +%%PYQT_DOCSDIR%%/html/images/mdi-cascade.png +%%PYQT_DOCSDIR%%/html/images/mdi-tile.png +%%PYQT_DOCSDIR%%/html/images/modelindex-no-parent.png +%%PYQT_DOCSDIR%%/html/images/modelview-begin-append-columns.png +%%PYQT_DOCSDIR%%/html/images/modelview-begin-append-rows.png +%%PYQT_DOCSDIR%%/html/images/modelview-begin-insert-columns.png +%%PYQT_DOCSDIR%%/html/images/modelview-begin-insert-rows.png +%%PYQT_DOCSDIR%%/html/images/modelview-begin-remove-columns.png +%%PYQT_DOCSDIR%%/html/images/modelview-begin-remove-rows.png +%%PYQT_DOCSDIR%%/html/images/modelview-move-rows-1.png +%%PYQT_DOCSDIR%%/html/images/modelview-move-rows-2.png +%%PYQT_DOCSDIR%%/html/images/modelview-move-rows-3.png +%%PYQT_DOCSDIR%%/html/images/modelview-move-rows-4.png +%%PYQT_DOCSDIR%%/html/images/motif-lcdnumber.png +%%PYQT_DOCSDIR%%/html/images/motif-menubar.png +%%PYQT_DOCSDIR%%/html/images/msgbox1.png +%%PYQT_DOCSDIR%%/html/images/msgbox2.png +%%PYQT_DOCSDIR%%/html/images/msgbox3.png +%%PYQT_DOCSDIR%%/html/images/msgbox4.png +%%PYQT_DOCSDIR%%/html/images/noforeignkeys.png +%%PYQT_DOCSDIR%%/html/images/palette.png +%%PYQT_DOCSDIR%%/html/images/pangesture.png +%%PYQT_DOCSDIR%%/html/images/parent-child-widgets.png +%%PYQT_DOCSDIR%%/html/images/patternist-wordProcessor.png +%%PYQT_DOCSDIR%%/html/images/pinchgesture.png +%%PYQT_DOCSDIR%%/html/images/plastique-checkbox.png +%%PYQT_DOCSDIR%%/html/images/plastique-colordialog.png +%%PYQT_DOCSDIR%%/html/images/plastique-dateedit.png +%%PYQT_DOCSDIR%%/html/images/plastique-datetimeedit.png +%%PYQT_DOCSDIR%%/html/images/plastique-dial.png +%%PYQT_DOCSDIR%%/html/images/plastique-fontdialog.png +%%PYQT_DOCSDIR%%/html/images/plastique-groupbox.png +%%PYQT_DOCSDIR%%/html/images/plastique-horizontalscrollbar.png +%%PYQT_DOCSDIR%%/html/images/plastique-label.png +%%PYQT_DOCSDIR%%/html/images/plastique-lcdnumber.png +%%PYQT_DOCSDIR%%/html/images/plastique-lineedit.png +%%PYQT_DOCSDIR%%/html/images/plastique-listview.png +%%PYQT_DOCSDIR%%/html/images/plastique-menu.png +%%PYQT_DOCSDIR%%/html/images/plastique-menubar.png +%%PYQT_DOCSDIR%%/html/images/plastique-printdialog-properties.png +%%PYQT_DOCSDIR%%/html/images/plastique-printdialog.png +%%PYQT_DOCSDIR%%/html/images/plastique-progressbar.png +%%PYQT_DOCSDIR%%/html/images/plastique-progressdialog.png +%%PYQT_DOCSDIR%%/html/images/plastique-pushbutton-menu.png +%%PYQT_DOCSDIR%%/html/images/plastique-pushbutton.png +%%PYQT_DOCSDIR%%/html/images/plastique-radiobutton.png +%%PYQT_DOCSDIR%%/html/images/plastique-sizegrip.png +%%PYQT_DOCSDIR%%/html/images/plastique-slider.png +%%PYQT_DOCSDIR%%/html/images/plastique-spinbox.png +%%PYQT_DOCSDIR%%/html/images/plastique-statusbar.png +%%PYQT_DOCSDIR%%/html/images/plastique-tabbar-truncated.png +%%PYQT_DOCSDIR%%/html/images/plastique-tabbar.png +%%PYQT_DOCSDIR%%/html/images/plastique-tableview.png +%%PYQT_DOCSDIR%%/html/images/plastique-tabwidget.png +%%PYQT_DOCSDIR%%/html/images/plastique-timeedit.png +%%PYQT_DOCSDIR%%/html/images/plastique-treeview.png +%%PYQT_DOCSDIR%%/html/images/propagation-custom.png +%%PYQT_DOCSDIR%%/html/images/propagation-standard.png +%%PYQT_DOCSDIR%%/html/images/qactiongroup-align.png +%%PYQT_DOCSDIR%%/html/images/qcalendarwidget-grid.png +%%PYQT_DOCSDIR%%/html/images/qcolor-cmyk.png +%%PYQT_DOCSDIR%%/html/images/qcolor-hsv.png +%%PYQT_DOCSDIR%%/html/images/qcolor-hue.png +%%PYQT_DOCSDIR%%/html/images/qcolor-rgb.png +%%PYQT_DOCSDIR%%/html/images/qcolor-saturation.png +%%PYQT_DOCSDIR%%/html/images/qcolor-value.png +%%PYQT_DOCSDIR%%/html/images/qcolumnview.png +%%PYQT_DOCSDIR%%/html/images/qconicalgradient.png +%%PYQT_DOCSDIR%%/html/images/qdesktopwidget.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inback.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inbounce.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-incirc.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-incubic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inelastic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inexpo.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutback.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutbounce.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutcirc.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutcubic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutelastic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutexpo.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutquad.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutquart.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutquint.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inoutsine.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inquad.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inquart.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-inquint.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-insine.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-linear.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outback.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outbounce.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outcirc.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outcubic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outelastic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outexpo.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinback.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinbounce.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outincirc.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outincubic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinelastic.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinexpo.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinquad.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinquart.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinquint.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outinsine.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outquad.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outquart.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outquint.png +%%PYQT_DOCSDIR%%/html/images/qeasingcurve-outsine.png +%%PYQT_DOCSDIR%%/html/images/qerrormessage.png +%%PYQT_DOCSDIR%%/html/images/qformlayout-kde.png +%%PYQT_DOCSDIR%%/html/images/qformlayout-mac.png +%%PYQT_DOCSDIR%%/html/images/qformlayout-qpe.png +%%PYQT_DOCSDIR%%/html/images/qformlayout-win.png +%%PYQT_DOCSDIR%%/html/images/qgradient-conical.png +%%PYQT_DOCSDIR%%/html/images/qgradient-linear.png +%%PYQT_DOCSDIR%%/html/images/qgradient-radial.png +%%PYQT_DOCSDIR%%/html/images/qgraphicsproxywidget-embed.png +%%PYQT_DOCSDIR%%/html/images/qhboxlayout-with-5-children.png +%%PYQT_DOCSDIR%%/html/images/qimage-32bit_scaled.png +%%PYQT_DOCSDIR%%/html/images/qimage-8bit_scaled.png +%%PYQT_DOCSDIR%%/html/images/qimage-scaling.png +%%PYQT_DOCSDIR%%/html/images/qline-coordinates.png +%%PYQT_DOCSDIR%%/html/images/qline-point.png +%%PYQT_DOCSDIR%%/html/images/qlineargradient-pad.png +%%PYQT_DOCSDIR%%/html/images/qlineargradient-reflect.png +%%PYQT_DOCSDIR%%/html/images/qlineargradient-repeat.png +%%PYQT_DOCSDIR%%/html/images/qlinef-bounded.png +%%PYQT_DOCSDIR%%/html/images/qlinef-normalvector.png +%%PYQT_DOCSDIR%%/html/images/qlinef-unbounded.png +%%PYQT_DOCSDIR%%/html/images/qmatrix-combinedtransformation.png +%%PYQT_DOCSDIR%%/html/images/qmatrix-representation.png +%%PYQT_DOCSDIR%%/html/images/qmatrix-simpletransformation.png +%%PYQT_DOCSDIR%%/html/images/qmdisubwindowlayout.png +%%PYQT_DOCSDIR%%/html/images/qmessagebox-crit.png +%%PYQT_DOCSDIR%%/html/images/qmessagebox-info.png +%%PYQT_DOCSDIR%%/html/images/qmessagebox-quest.png +%%PYQT_DOCSDIR%%/html/images/qmessagebox-warn.png +%%PYQT_DOCSDIR%%/html/images/qpainter-affinetransformations.png +%%PYQT_DOCSDIR%%/html/images/qpainter-arc.png +%%PYQT_DOCSDIR%%/html/images/qpainter-basicdrawing.png +%%PYQT_DOCSDIR%%/html/images/qpainter-chord.png +%%PYQT_DOCSDIR%%/html/images/qpainter-clock.png +%%PYQT_DOCSDIR%%/html/images/qpainter-compositiondemo.png +%%PYQT_DOCSDIR%%/html/images/qpainter-compositionmode1.png +%%PYQT_DOCSDIR%%/html/images/qpainter-compositionmode2.png +%%PYQT_DOCSDIR%%/html/images/qpainter-concentriccircles.png +%%PYQT_DOCSDIR%%/html/images/qpainter-ellipse.png +%%PYQT_DOCSDIR%%/html/images/qpainter-gradients.png +%%PYQT_DOCSDIR%%/html/images/qpainter-line.png +%%PYQT_DOCSDIR%%/html/images/qpainter-painterpaths.png +%%PYQT_DOCSDIR%%/html/images/qpainter-path.png +%%PYQT_DOCSDIR%%/html/images/qpainter-pathstroking.png +%%PYQT_DOCSDIR%%/html/images/qpainter-pie.png +%%PYQT_DOCSDIR%%/html/images/qpainter-polygon.png +%%PYQT_DOCSDIR%%/html/images/qpainter-rectangle.png +%%PYQT_DOCSDIR%%/html/images/qpainter-rotation.png +%%PYQT_DOCSDIR%%/html/images/qpainter-roundrect.png +%%PYQT_DOCSDIR%%/html/images/qpainter-scale.png +%%PYQT_DOCSDIR%%/html/images/qpainter-translation.png +%%PYQT_DOCSDIR%%/html/images/qpainter-vectordeformation.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-addellipse.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-addpolygon.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-addrectangle.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-addtext.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-arcto.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-construction.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-cubicto.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-demo.png +%%PYQT_DOCSDIR%%/html/images/qpainterpath-example.png +%%PYQT_DOCSDIR%%/html/images/qpen-bevel.png +%%PYQT_DOCSDIR%%/html/images/qpen-custom.png +%%PYQT_DOCSDIR%%/html/images/qpen-dash.png +%%PYQT_DOCSDIR%%/html/images/qpen-dashdot.png +%%PYQT_DOCSDIR%%/html/images/qpen-dashdotdot.png +%%PYQT_DOCSDIR%%/html/images/qpen-dashpattern.png +%%PYQT_DOCSDIR%%/html/images/qpen-demo.png +%%PYQT_DOCSDIR%%/html/images/qpen-dot.png +%%PYQT_DOCSDIR%%/html/images/qpen-flat.png +%%PYQT_DOCSDIR%%/html/images/qpen-miter.png +%%PYQT_DOCSDIR%%/html/images/qpen-miterlimit.png +%%PYQT_DOCSDIR%%/html/images/qpen-roundcap.png +%%PYQT_DOCSDIR%%/html/images/qpen-roundjoin.png +%%PYQT_DOCSDIR%%/html/images/qpen-solid.png +%%PYQT_DOCSDIR%%/html/images/qpen-square.png +%%PYQT_DOCSDIR%%/html/images/qradialgradient-pad.png +%%PYQT_DOCSDIR%%/html/images/qradialgradient-reflect.png +%%PYQT_DOCSDIR%%/html/images/qradialgradient-repeat.png +%%PYQT_DOCSDIR%%/html/images/qrect-coordinates.png +%%PYQT_DOCSDIR%%/html/images/qrect-diagram-one.png +%%PYQT_DOCSDIR%%/html/images/qrect-diagram-three.png +%%PYQT_DOCSDIR%%/html/images/qrect-diagram-two.png +%%PYQT_DOCSDIR%%/html/images/qrect-diagram-zero.png +%%PYQT_DOCSDIR%%/html/images/qrect-intersect.png +%%PYQT_DOCSDIR%%/html/images/qrect-unite.png +%%PYQT_DOCSDIR%%/html/images/qrectf-coordinates.png +%%PYQT_DOCSDIR%%/html/images/qrectf-diagram-one.png +%%PYQT_DOCSDIR%%/html/images/qrectf-diagram-three.png +%%PYQT_DOCSDIR%%/html/images/qrectf-diagram-two.png +%%PYQT_DOCSDIR%%/html/images/qscrollarea-noscrollbars.png +%%PYQT_DOCSDIR%%/html/images/qscrollarea-onescrollbar.png +%%PYQT_DOCSDIR%%/html/images/qscrollarea-twoscrollbars.png +%%PYQT_DOCSDIR%%/html/images/qscrollbar-picture.png +%%PYQT_DOCSDIR%%/html/images/qscrollbar-values.png +%%PYQT_DOCSDIR%%/html/images/qsortfilterproxymodel-sorting.png +%%PYQT_DOCSDIR%%/html/images/qspinbox-plusminus.png +%%PYQT_DOCSDIR%%/html/images/qspinbox-updown.png +%%PYQT_DOCSDIR%%/html/images/qstatustipevent-action.png +%%PYQT_DOCSDIR%%/html/images/qstatustipevent-widget.png +%%PYQT_DOCSDIR%%/html/images/qstyle-comboboxes.png +%%PYQT_DOCSDIR%%/html/images/qstyleoptiontoolbar-position.png +%%PYQT_DOCSDIR%%/html/images/qt-colors.png +%%PYQT_DOCSDIR%%/html/images/qt-fillrule-oddeven.png +%%PYQT_DOCSDIR%%/html/images/qt-fillrule-winding.png +%%PYQT_DOCSDIR%%/html/images/qtabletevent-tilt.png +%%PYQT_DOCSDIR%%/html/images/qtableview-resized.png +%%PYQT_DOCSDIR%%/html/images/qtextblock-sequence.png +%%PYQT_DOCSDIR%%/html/images/qtextfragment-split.png +%%PYQT_DOCSDIR%%/html/images/qtextframe-style.png +%%PYQT_DOCSDIR%%/html/images/qtexttableformat-cell.png +%%PYQT_DOCSDIR%%/html/images/qtransform-combinedtransformation.png +%%PYQT_DOCSDIR%%/html/images/qtransform-combinedtransformation2.png +%%PYQT_DOCSDIR%%/html/images/qtransform-representation.png +%%PYQT_DOCSDIR%%/html/images/qtransform-simpletransformation.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-aero1.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-aero2.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-classic1.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-classic2.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-mac1.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-mac2.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-macpage.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-modern1.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-modern2.png +%%PYQT_DOCSDIR%%/html/images/qtwizard-nonmacpage.png +%%PYQT_DOCSDIR%%/html/images/qundoview.png +%%PYQT_DOCSDIR%%/html/images/qurl-authority.png +%%PYQT_DOCSDIR%%/html/images/qurl-authority2.png +%%PYQT_DOCSDIR%%/html/images/qurl-authority3.png +%%PYQT_DOCSDIR%%/html/images/qurl-fragment.png +%%PYQT_DOCSDIR%%/html/images/qurl-ftppath.png +%%PYQT_DOCSDIR%%/html/images/qurl-mailtopath.png +%%PYQT_DOCSDIR%%/html/images/qurl-querystring.png +%%PYQT_DOCSDIR%%/html/images/qvboxlayout-with-5-children.png +%%PYQT_DOCSDIR%%/html/images/qwebview-diagram.png +%%PYQT_DOCSDIR%%/html/images/rb-logo.png +%%PYQT_DOCSDIR%%/html/images/relationaltable.png +%%PYQT_DOCSDIR%%/html/images/rintersect.png +%%PYQT_DOCSDIR%%/html/images/roaming-states.png +%%PYQT_DOCSDIR%%/html/images/rsubtract.png +%%PYQT_DOCSDIR%%/html/images/runion.png +%%PYQT_DOCSDIR%%/html/images/rxor.png +%%PYQT_DOCSDIR%%/html/images/simpleanchorlayout-example.png +%%PYQT_DOCSDIR%%/html/images/swipegesture.png +%%PYQT_DOCSDIR%%/html/images/system-tray.png +%%PYQT_DOCSDIR%%/html/images/taskmenuextension-example-faded.png +%%PYQT_DOCSDIR%%/html/images/tcpstream.png +%%PYQT_DOCSDIR%%/html/images/texttable-merge.png +%%PYQT_DOCSDIR%%/html/images/texttable-split.png +%%PYQT_DOCSDIR%%/html/images/udppackets.png +%%PYQT_DOCSDIR%%/html/images/whatsthis.png +%%PYQT_DOCSDIR%%/html/images/widgetdelegate.png +%%PYQT_DOCSDIR%%/html/images/windows-checkbox.png +%%PYQT_DOCSDIR%%/html/images/windows-lcdnumber.png +%%PYQT_DOCSDIR%%/html/images/windows-lineedit.png +%%PYQT_DOCSDIR%%/html/images/windows-radiobutton.png +%%PYQT_DOCSDIR%%/html/images/windows-slider.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-dateedit.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-datetimeedit.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-dial.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-fontcombobox.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-groupbox.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-horizontalscrollbar.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-label.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-lcdnumber.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-listview.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-menu.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-progressbar.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-pushbutton.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-spinbox.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-tableview.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-tabwidget.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-timeedit.png +%%PYQT_DOCSDIR%%/html/images/windowsxp-treeview.png +%%PYQT_DOCSDIR%%/html/incompatibilities.html +%%PYQT_DOCSDIR%%/html/incompatible_apis.html +%%PYQT_DOCSDIR%%/html/index.html +%%PYQT_DOCSDIR%%/html/installation.html +%%PYQT_DOCSDIR%%/html/introduction.html +%%PYQT_DOCSDIR%%/html/keyword_arguments.html +%%PYQT_DOCSDIR%%/html/modules.html +%%PYQT_DOCSDIR%%/html/new_style_signals_slots.html +%%PYQT_DOCSDIR%%/html/objects.inv +%%PYQT_DOCSDIR%%/html/old_style_signals_slots.html +%%PYQT_DOCSDIR%%/html/phonon-abstractaudiooutput.html +%%PYQT_DOCSDIR%%/html/phonon-abstractvideooutput.html +%%PYQT_DOCSDIR%%/html/phonon-audiocapturedevice.html +%%PYQT_DOCSDIR%%/html/phonon-audiochanneldescription.html +%%PYQT_DOCSDIR%%/html/phonon-audiooutput.html +%%PYQT_DOCSDIR%%/html/phonon-audiooutputdevice.html +%%PYQT_DOCSDIR%%/html/phonon-audiooutputdevicemodel.html +%%PYQT_DOCSDIR%%/html/phonon-backendcapabilities-notifier.html +%%PYQT_DOCSDIR%%/html/phonon-backendcapabilities.html +%%PYQT_DOCSDIR%%/html/phonon-effect.html +%%PYQT_DOCSDIR%%/html/phonon-effectdescription.html +%%PYQT_DOCSDIR%%/html/phonon-effectdescriptionmodel.html +%%PYQT_DOCSDIR%%/html/phonon-effectparameter-hints.html +%%PYQT_DOCSDIR%%/html/phonon-effectparameter.html +%%PYQT_DOCSDIR%%/html/phonon-effectwidget.html +%%PYQT_DOCSDIR%%/html/phonon-mediacontroller-features.html +%%PYQT_DOCSDIR%%/html/phonon-mediacontroller.html +%%PYQT_DOCSDIR%%/html/phonon-medianode.html +%%PYQT_DOCSDIR%%/html/phonon-mediaobject.html +%%PYQT_DOCSDIR%%/html/phonon-mediasource.html +%%PYQT_DOCSDIR%%/html/phonon-module.html +%%PYQT_DOCSDIR%%/html/phonon-path.html +%%PYQT_DOCSDIR%%/html/phonon-seekslider.html +%%PYQT_DOCSDIR%%/html/phonon-subtitledescription.html +%%PYQT_DOCSDIR%%/html/phonon-videoplayer.html +%%PYQT_DOCSDIR%%/html/phonon-videowidget.html +%%PYQT_DOCSDIR%%/html/phonon-volumeslider.html +%%PYQT_DOCSDIR%%/html/phonon.html +%%PYQT_DOCSDIR%%/html/pickle.html +%%PYQT_DOCSDIR%%/html/py-modindex.html +%%PYQT_DOCSDIR%%/html/pyqt_qsettings.html +%%PYQT_DOCSDIR%%/html/pyqt_qvariant.html +%%PYQT_DOCSDIR%%/html/python_shell.html +%%PYQT_DOCSDIR%%/html/python_v3.html +%%PYQT_DOCSDIR%%/html/qabstractanimation.html +%%PYQT_DOCSDIR%%/html/qabstractbutton.html +%%PYQT_DOCSDIR%%/html/qabstracteventdispatcher.html +%%PYQT_DOCSDIR%%/html/qabstractextensionfactory.html +%%PYQT_DOCSDIR%%/html/qabstractextensionmanager.html +%%PYQT_DOCSDIR%%/html/qabstractfileengine-fileflags.html +%%PYQT_DOCSDIR%%/html/qabstractfileengine.html +%%PYQT_DOCSDIR%%/html/qabstractfileenginehandler.html +%%PYQT_DOCSDIR%%/html/qabstractfileengineiterator.html +%%PYQT_DOCSDIR%%/html/qabstractformbuilder.html +%%PYQT_DOCSDIR%%/html/qabstractgraphicsshapeitem.html +%%PYQT_DOCSDIR%%/html/qabstractitemdelegate.html +%%PYQT_DOCSDIR%%/html/qabstractitemmodel.html +%%PYQT_DOCSDIR%%/html/qabstractitemview-edittriggers.html +%%PYQT_DOCSDIR%%/html/qabstractitemview.html +%%PYQT_DOCSDIR%%/html/qabstractlistmodel.html +%%PYQT_DOCSDIR%%/html/qabstractmessagehandler.html +%%PYQT_DOCSDIR%%/html/qabstractnetworkcache.html +%%PYQT_DOCSDIR%%/html/qabstractprintdialog-printdialogoptions.html +%%PYQT_DOCSDIR%%/html/qabstractprintdialog.html +%%PYQT_DOCSDIR%%/html/qabstractproxymodel.html +%%PYQT_DOCSDIR%%/html/qabstractscrollarea.html +%%PYQT_DOCSDIR%%/html/qabstractslider.html +%%PYQT_DOCSDIR%%/html/qabstractsocket.html +%%PYQT_DOCSDIR%%/html/qabstractspinbox-stepenabled.html +%%PYQT_DOCSDIR%%/html/qabstractspinbox.html +%%PYQT_DOCSDIR%%/html/qabstractstate.html +%%PYQT_DOCSDIR%%/html/qabstracttablemodel.html +%%PYQT_DOCSDIR%%/html/qabstracttextdocumentlayout-paintcontext.html +%%PYQT_DOCSDIR%%/html/qabstracttextdocumentlayout-selection.html +%%PYQT_DOCSDIR%%/html/qabstracttextdocumentlayout.html +%%PYQT_DOCSDIR%%/html/qabstracttransition.html +%%PYQT_DOCSDIR%%/html/qabstracturiresolver.html +%%PYQT_DOCSDIR%%/html/qabstractvideobuffer.html +%%PYQT_DOCSDIR%%/html/qabstractvideosurface.html +%%PYQT_DOCSDIR%%/html/qabstractxmlnodemodel.html +%%PYQT_DOCSDIR%%/html/qabstractxmlreceiver.html +%%PYQT_DOCSDIR%%/html/qaction.html +%%PYQT_DOCSDIR%%/html/qactionevent.html +%%PYQT_DOCSDIR%%/html/qactiongroup.html +%%PYQT_DOCSDIR%%/html/qanimationgroup.html +%%PYQT_DOCSDIR%%/html/qapplication.html +%%PYQT_DOCSDIR%%/html/qassistantclient.html +%%PYQT_DOCSDIR%%/html/qaudio.html +%%PYQT_DOCSDIR%%/html/qaudiodeviceinfo.html +%%PYQT_DOCSDIR%%/html/qaudioformat.html +%%PYQT_DOCSDIR%%/html/qaudioinput.html +%%PYQT_DOCSDIR%%/html/qaudiooutput.html +%%PYQT_DOCSDIR%%/html/qauthenticator.html +%%PYQT_DOCSDIR%%/html/qaxcontainer.html +%%PYQT_DOCSDIR%%/html/qbasictimer.html +%%PYQT_DOCSDIR%%/html/qbitarray.html +%%PYQT_DOCSDIR%%/html/qbitmap.html +%%PYQT_DOCSDIR%%/html/qboxlayout.html +%%PYQT_DOCSDIR%%/html/qbrush.html +%%PYQT_DOCSDIR%%/html/qbuffer.html +%%PYQT_DOCSDIR%%/html/qbuttongroup.html +%%PYQT_DOCSDIR%%/html/qbytearray.html +%%PYQT_DOCSDIR%%/html/qbytearraymatcher.html +%%PYQT_DOCSDIR%%/html/qcalendarwidget.html +%%PYQT_DOCSDIR%%/html/qchar.html +%%PYQT_DOCSDIR%%/html/qcheckbox.html +%%PYQT_DOCSDIR%%/html/qchildevent.html +%%PYQT_DOCSDIR%%/html/qclipboard.html +%%PYQT_DOCSDIR%%/html/qcloseevent.html +%%PYQT_DOCSDIR%%/html/qcolor.html +%%PYQT_DOCSDIR%%/html/qcolordialog-colordialogoptions.html +%%PYQT_DOCSDIR%%/html/qcolordialog.html +%%PYQT_DOCSDIR%%/html/qcolumnview.html +%%PYQT_DOCSDIR%%/html/qcombobox.html +%%PYQT_DOCSDIR%%/html/qcommandlinkbutton.html +%%PYQT_DOCSDIR%%/html/qcommonstyle.html +%%PYQT_DOCSDIR%%/html/qcompleter.html +%%PYQT_DOCSDIR%%/html/qconicalgradient.html +%%PYQT_DOCSDIR%%/html/qcontextmenuevent.html +%%PYQT_DOCSDIR%%/html/qcoreapplication.html +%%PYQT_DOCSDIR%%/html/qcryptographichash.html +%%PYQT_DOCSDIR%%/html/qcursor.html +%%PYQT_DOCSDIR%%/html/qdatastream.html +%%PYQT_DOCSDIR%%/html/qdatawidgetmapper.html +%%PYQT_DOCSDIR%%/html/qdate.html +%%PYQT_DOCSDIR%%/html/qdateedit.html +%%PYQT_DOCSDIR%%/html/qdatetime.html +%%PYQT_DOCSDIR%%/html/qdatetimeedit-sections.html +%%PYQT_DOCSDIR%%/html/qdatetimeedit.html +%%PYQT_DOCSDIR%%/html/qdbus.html +%%PYQT_DOCSDIR%%/html/qdbusabstractadaptor.html +%%PYQT_DOCSDIR%%/html/qdbusabstractinterface.html +%%PYQT_DOCSDIR%%/html/qdbusargument.html +%%PYQT_DOCSDIR%%/html/qdbusconnection-connectioncapabilities.html +%%PYQT_DOCSDIR%%/html/qdbusconnection-registeroptions.html +%%PYQT_DOCSDIR%%/html/qdbusconnection.html +%%PYQT_DOCSDIR%%/html/qdbusconnectioninterface.html +%%PYQT_DOCSDIR%%/html/qdbuserror.html +%%PYQT_DOCSDIR%%/html/qdbusinterface.html +%%PYQT_DOCSDIR%%/html/qdbusmessage.html +%%PYQT_DOCSDIR%%/html/qdbusobjectpath.html +%%PYQT_DOCSDIR%%/html/qdbuspendingcall.html +%%PYQT_DOCSDIR%%/html/qdbuspendingcallwatcher.html +%%PYQT_DOCSDIR%%/html/qdbuspendingreply.html +%%PYQT_DOCSDIR%%/html/qdbusreply.html +%%PYQT_DOCSDIR%%/html/qdbusservicewatcher-watchmode.html +%%PYQT_DOCSDIR%%/html/qdbusservicewatcher.html +%%PYQT_DOCSDIR%%/html/qdbussignature.html +%%PYQT_DOCSDIR%%/html/qdbusunixfiledescriptor.html +%%PYQT_DOCSDIR%%/html/qdbusvariant.html +%%PYQT_DOCSDIR%%/html/qdeclarativecomponent.html +%%PYQT_DOCSDIR%%/html/qdeclarativecontext.html +%%PYQT_DOCSDIR%%/html/qdeclarativeengine.html +%%PYQT_DOCSDIR%%/html/qdeclarativeerror.html +%%PYQT_DOCSDIR%%/html/qdeclarativeexpression.html +%%PYQT_DOCSDIR%%/html/qdeclarativeextensionplugin.html +%%PYQT_DOCSDIR%%/html/qdeclarativeimageprovider.html +%%PYQT_DOCSDIR%%/html/qdeclarativeitem.html +%%PYQT_DOCSDIR%%/html/qdeclarativelistreference.html +%%PYQT_DOCSDIR%%/html/qdeclarativenetworkaccessmanagerfactory.html +%%PYQT_DOCSDIR%%/html/qdeclarativeparserstatus.html +%%PYQT_DOCSDIR%%/html/qdeclarativeproperty.html +%%PYQT_DOCSDIR%%/html/qdeclarativepropertymap.html +%%PYQT_DOCSDIR%%/html/qdeclarativepropertyvaluesource.html +%%PYQT_DOCSDIR%%/html/qdeclarativescriptstring.html +%%PYQT_DOCSDIR%%/html/qdeclarativeview.html +%%PYQT_DOCSDIR%%/html/qdesigneractioneditorinterface.html +%%PYQT_DOCSDIR%%/html/qdesignercontainerextension.html +%%PYQT_DOCSDIR%%/html/qdesignercustomwidgetcollectioninterface.html +%%PYQT_DOCSDIR%%/html/qdesignercustomwidgetinterface.html +%%PYQT_DOCSDIR%%/html/qdesignerformeditorinterface.html +%%PYQT_DOCSDIR%%/html/qdesignerformwindowcursorinterface.html +%%PYQT_DOCSDIR%%/html/qdesignerformwindowinterface-feature.html +%%PYQT_DOCSDIR%%/html/qdesignerformwindowinterface.html +%%PYQT_DOCSDIR%%/html/qdesignerformwindowmanagerinterface.html +%%PYQT_DOCSDIR%%/html/qdesignermembersheetextension.html +%%PYQT_DOCSDIR%%/html/qdesignerobjectinspectorinterface.html +%%PYQT_DOCSDIR%%/html/qdesignerpropertyeditorinterface.html +%%PYQT_DOCSDIR%%/html/qdesignerpropertysheetextension.html +%%PYQT_DOCSDIR%%/html/qdesignertaskmenuextension.html +%%PYQT_DOCSDIR%%/html/qdesignerwidgetboxinterface.html +%%PYQT_DOCSDIR%%/html/qdesktopservices.html +%%PYQT_DOCSDIR%%/html/qdesktopwidget.html +%%PYQT_DOCSDIR%%/html/qdial.html +%%PYQT_DOCSDIR%%/html/qdialog.html +%%PYQT_DOCSDIR%%/html/qdialogbuttonbox-standardbuttons.html +%%PYQT_DOCSDIR%%/html/qdialogbuttonbox.html +%%PYQT_DOCSDIR%%/html/qdir-filters.html +%%PYQT_DOCSDIR%%/html/qdir-sortflags.html +%%PYQT_DOCSDIR%%/html/qdir.html +%%PYQT_DOCSDIR%%/html/qdiriterator-iteratorflags.html +%%PYQT_DOCSDIR%%/html/qdiriterator.html +%%PYQT_DOCSDIR%%/html/qdirmodel.html +%%PYQT_DOCSDIR%%/html/qdockwidget-dockwidgetfeatures.html +%%PYQT_DOCSDIR%%/html/qdockwidget.html +%%PYQT_DOCSDIR%%/html/qdomattr.html +%%PYQT_DOCSDIR%%/html/qdomcdatasection.html +%%PYQT_DOCSDIR%%/html/qdomcharacterdata.html +%%PYQT_DOCSDIR%%/html/qdomcomment.html +%%PYQT_DOCSDIR%%/html/qdomdocument.html +%%PYQT_DOCSDIR%%/html/qdomdocumentfragment.html +%%PYQT_DOCSDIR%%/html/qdomdocumenttype.html +%%PYQT_DOCSDIR%%/html/qdomelement.html +%%PYQT_DOCSDIR%%/html/qdomentity.html +%%PYQT_DOCSDIR%%/html/qdomentityreference.html +%%PYQT_DOCSDIR%%/html/qdomimplementation.html +%%PYQT_DOCSDIR%%/html/qdomnamednodemap.html +%%PYQT_DOCSDIR%%/html/qdomnode.html +%%PYQT_DOCSDIR%%/html/qdomnodelist.html +%%PYQT_DOCSDIR%%/html/qdomnotation.html +%%PYQT_DOCSDIR%%/html/qdomprocessinginstruction.html +%%PYQT_DOCSDIR%%/html/qdomtext.html +%%PYQT_DOCSDIR%%/html/qdoublespinbox.html +%%PYQT_DOCSDIR%%/html/qdoublevalidator.html +%%PYQT_DOCSDIR%%/html/qdrag.html +%%PYQT_DOCSDIR%%/html/qdragenterevent.html +%%PYQT_DOCSDIR%%/html/qdragleaveevent.html +%%PYQT_DOCSDIR%%/html/qdragmoveevent.html +%%PYQT_DOCSDIR%%/html/qdropevent.html +%%PYQT_DOCSDIR%%/html/qdynamicpropertychangeevent.html +%%PYQT_DOCSDIR%%/html/qeasingcurve.html +%%PYQT_DOCSDIR%%/html/qelapsedtimer.html +%%PYQT_DOCSDIR%%/html/qerrormessage.html +%%PYQT_DOCSDIR%%/html/qevent.html +%%PYQT_DOCSDIR%%/html/qeventloop-processeventsflags.html +%%PYQT_DOCSDIR%%/html/qeventloop.html +%%PYQT_DOCSDIR%%/html/qeventtransition.html +%%PYQT_DOCSDIR%%/html/qextensionfactory.html +%%PYQT_DOCSDIR%%/html/qextensionmanager.html +%%PYQT_DOCSDIR%%/html/qfile-filehandleflags.html +%%PYQT_DOCSDIR%%/html/qfile-permissions.html +%%PYQT_DOCSDIR%%/html/qfile.html +%%PYQT_DOCSDIR%%/html/qfiledialog-options.html +%%PYQT_DOCSDIR%%/html/qfiledialog.html +%%PYQT_DOCSDIR%%/html/qfileiconprovider.html +%%PYQT_DOCSDIR%%/html/qfileinfo.html +%%PYQT_DOCSDIR%%/html/qfileopenevent.html +%%PYQT_DOCSDIR%%/html/qfilesystemmodel.html +%%PYQT_DOCSDIR%%/html/qfilesystemwatcher.html +%%PYQT_DOCSDIR%%/html/qfinalstate.html +%%PYQT_DOCSDIR%%/html/qfocusevent.html +%%PYQT_DOCSDIR%%/html/qfocusframe.html +%%PYQT_DOCSDIR%%/html/qfont.html +%%PYQT_DOCSDIR%%/html/qfontcombobox-fontfilters.html +%%PYQT_DOCSDIR%%/html/qfontcombobox.html +%%PYQT_DOCSDIR%%/html/qfontdatabase.html +%%PYQT_DOCSDIR%%/html/qfontdialog-fontdialogoptions.html +%%PYQT_DOCSDIR%%/html/qfontdialog.html +%%PYQT_DOCSDIR%%/html/qfontinfo.html +%%PYQT_DOCSDIR%%/html/qfontmetrics.html +%%PYQT_DOCSDIR%%/html/qfontmetricsf.html +%%PYQT_DOCSDIR%%/html/qformbuilder.html +%%PYQT_DOCSDIR%%/html/qformlayout.html +%%PYQT_DOCSDIR%%/html/qframe.html +%%PYQT_DOCSDIR%%/html/qfsfileengine.html +%%PYQT_DOCSDIR%%/html/qftp.html +%%PYQT_DOCSDIR%%/html/qgenericargument.html +%%PYQT_DOCSDIR%%/html/qgenericreturnargument.html +%%PYQT_DOCSDIR%%/html/qgesture.html +%%PYQT_DOCSDIR%%/html/qgestureevent.html +%%PYQT_DOCSDIR%%/html/qgesturerecognizer-result.html +%%PYQT_DOCSDIR%%/html/qgesturerecognizer.html +%%PYQT_DOCSDIR%%/html/qgl-formatoptions.html +%%PYQT_DOCSDIR%%/html/qgl.html +%%PYQT_DOCSDIR%%/html/qglbuffer.html +%%PYQT_DOCSDIR%%/html/qglcolormap.html +%%PYQT_DOCSDIR%%/html/qglcontext-bindoptions.html +%%PYQT_DOCSDIR%%/html/qglcontext.html +%%PYQT_DOCSDIR%%/html/qglformat-openglversionflags.html +%%PYQT_DOCSDIR%%/html/qglformat.html +%%PYQT_DOCSDIR%%/html/qglframebufferobject.html +%%PYQT_DOCSDIR%%/html/qglframebufferobjectformat.html +%%PYQT_DOCSDIR%%/html/qglpixelbuffer.html +%%PYQT_DOCSDIR%%/html/qglshader-shadertype.html +%%PYQT_DOCSDIR%%/html/qglshader.html +%%PYQT_DOCSDIR%%/html/qglshaderprogram.html +%%PYQT_DOCSDIR%%/html/qglwidget.html +%%PYQT_DOCSDIR%%/html/qglyphrun.html +%%PYQT_DOCSDIR%%/html/qgradient.html +%%PYQT_DOCSDIR%%/html/qgraphicsanchor.html +%%PYQT_DOCSDIR%%/html/qgraphicsanchorlayout.html +%%PYQT_DOCSDIR%%/html/qgraphicsblureffect-blurhints.html +%%PYQT_DOCSDIR%%/html/qgraphicsblureffect.html +%%PYQT_DOCSDIR%%/html/qgraphicscolorizeeffect.html +%%PYQT_DOCSDIR%%/html/qgraphicsdropshadoweffect.html +%%PYQT_DOCSDIR%%/html/qgraphicseffect-changeflags.html +%%PYQT_DOCSDIR%%/html/qgraphicseffect.html +%%PYQT_DOCSDIR%%/html/qgraphicsellipseitem.html +%%PYQT_DOCSDIR%%/html/qgraphicsgridlayout.html +%%PYQT_DOCSDIR%%/html/qgraphicsitem-graphicsitemflags.html +%%PYQT_DOCSDIR%%/html/qgraphicsitem.html +%%PYQT_DOCSDIR%%/html/qgraphicsitemanimation.html +%%PYQT_DOCSDIR%%/html/qgraphicsitemgroup.html +%%PYQT_DOCSDIR%%/html/qgraphicslayout.html +%%PYQT_DOCSDIR%%/html/qgraphicslayoutitem.html +%%PYQT_DOCSDIR%%/html/qgraphicslinearlayout.html +%%PYQT_DOCSDIR%%/html/qgraphicslineitem.html +%%PYQT_DOCSDIR%%/html/qgraphicsobject.html +%%PYQT_DOCSDIR%%/html/qgraphicsopacityeffect.html +%%PYQT_DOCSDIR%%/html/qgraphicspathitem.html +%%PYQT_DOCSDIR%%/html/qgraphicspixmapitem.html +%%PYQT_DOCSDIR%%/html/qgraphicspolygonitem.html +%%PYQT_DOCSDIR%%/html/qgraphicsproxywidget.html +%%PYQT_DOCSDIR%%/html/qgraphicsrectitem.html +%%PYQT_DOCSDIR%%/html/qgraphicsrotation.html +%%PYQT_DOCSDIR%%/html/qgraphicsscale.html +%%PYQT_DOCSDIR%%/html/qgraphicsscene-scenelayers.html +%%PYQT_DOCSDIR%%/html/qgraphicsscene.html +%%PYQT_DOCSDIR%%/html/qgraphicsscenecontextmenuevent.html +%%PYQT_DOCSDIR%%/html/qgraphicsscenedragdropevent.html +%%PYQT_DOCSDIR%%/html/qgraphicssceneevent.html +%%PYQT_DOCSDIR%%/html/qgraphicsscenehelpevent.html +%%PYQT_DOCSDIR%%/html/qgraphicsscenehoverevent.html +%%PYQT_DOCSDIR%%/html/qgraphicsscenemouseevent.html +%%PYQT_DOCSDIR%%/html/qgraphicsscenemoveevent.html +%%PYQT_DOCSDIR%%/html/qgraphicssceneresizeevent.html +%%PYQT_DOCSDIR%%/html/qgraphicsscenewheelevent.html +%%PYQT_DOCSDIR%%/html/qgraphicssimpletextitem.html +%%PYQT_DOCSDIR%%/html/qgraphicssvgitem.html +%%PYQT_DOCSDIR%%/html/qgraphicstextitem.html +%%PYQT_DOCSDIR%%/html/qgraphicstransform.html +%%PYQT_DOCSDIR%%/html/qgraphicsview-cachemode.html +%%PYQT_DOCSDIR%%/html/qgraphicsview-optimizationflags.html +%%PYQT_DOCSDIR%%/html/qgraphicsview.html +%%PYQT_DOCSDIR%%/html/qgraphicswebview.html +%%PYQT_DOCSDIR%%/html/qgraphicswidget.html +%%PYQT_DOCSDIR%%/html/qgridlayout.html +%%PYQT_DOCSDIR%%/html/qgroupbox.html +%%PYQT_DOCSDIR%%/html/qhboxlayout.html +%%PYQT_DOCSDIR%%/html/qheaderview.html +%%PYQT_DOCSDIR%%/html/qhelpcontentitem.html +%%PYQT_DOCSDIR%%/html/qhelpcontentmodel.html +%%PYQT_DOCSDIR%%/html/qhelpcontentwidget.html +%%PYQT_DOCSDIR%%/html/qhelpengine.html +%%PYQT_DOCSDIR%%/html/qhelpenginecore.html +%%PYQT_DOCSDIR%%/html/qhelpevent.html +%%PYQT_DOCSDIR%%/html/qhelpindexmodel.html +%%PYQT_DOCSDIR%%/html/qhelpindexwidget.html +%%PYQT_DOCSDIR%%/html/qhelpsearchengine.html +%%PYQT_DOCSDIR%%/html/qhelpsearchquery.html +%%PYQT_DOCSDIR%%/html/qhelpsearchquerywidget.html +%%PYQT_DOCSDIR%%/html/qhelpsearchresultwidget.html +%%PYQT_DOCSDIR%%/html/qhideevent.html +%%PYQT_DOCSDIR%%/html/qhistorystate.html +%%PYQT_DOCSDIR%%/html/qhostaddress.html +%%PYQT_DOCSDIR%%/html/qhostinfo.html +%%PYQT_DOCSDIR%%/html/qhoverevent.html +%%PYQT_DOCSDIR%%/html/qhttp.html +%%PYQT_DOCSDIR%%/html/qhttpheader.html +%%PYQT_DOCSDIR%%/html/qhttpmultipart.html +%%PYQT_DOCSDIR%%/html/qhttppart.html +%%PYQT_DOCSDIR%%/html/qhttprequestheader.html +%%PYQT_DOCSDIR%%/html/qhttpresponseheader.html +%%PYQT_DOCSDIR%%/html/qicon.html +%%PYQT_DOCSDIR%%/html/qicondragevent.html +%%PYQT_DOCSDIR%%/html/qiconengine.html +%%PYQT_DOCSDIR%%/html/qiconenginev2-availablesizesargument.html +%%PYQT_DOCSDIR%%/html/qiconenginev2.html +%%PYQT_DOCSDIR%%/html/qidentityproxymodel.html +%%PYQT_DOCSDIR%%/html/qimage.html +%%PYQT_DOCSDIR%%/html/qimageiohandler.html +%%PYQT_DOCSDIR%%/html/qimagereader.html +%%PYQT_DOCSDIR%%/html/qimagewriter.html +%%PYQT_DOCSDIR%%/html/qinputcontext.html +%%PYQT_DOCSDIR%%/html/qinputcontextfactory.html +%%PYQT_DOCSDIR%%/html/qinputdialog-inputdialogoptions.html +%%PYQT_DOCSDIR%%/html/qinputdialog.html +%%PYQT_DOCSDIR%%/html/qinputevent.html +%%PYQT_DOCSDIR%%/html/qinputmethodevent-attribute.html +%%PYQT_DOCSDIR%%/html/qinputmethodevent.html +%%PYQT_DOCSDIR%%/html/qintvalidator.html +%%PYQT_DOCSDIR%%/html/qiodevice-openmode.html +%%PYQT_DOCSDIR%%/html/qiodevice.html +%%PYQT_DOCSDIR%%/html/qitemdelegate.html +%%PYQT_DOCSDIR%%/html/qitemeditorcreatorbase.html +%%PYQT_DOCSDIR%%/html/qitemeditorfactory.html +%%PYQT_DOCSDIR%%/html/qitemselection.html +%%PYQT_DOCSDIR%%/html/qitemselectionmodel-selectionflags.html +%%PYQT_DOCSDIR%%/html/qitemselectionmodel.html +%%PYQT_DOCSDIR%%/html/qitemselectionrange.html +%%PYQT_DOCSDIR%%/html/qkeyevent.html +%%PYQT_DOCSDIR%%/html/qkeyeventtransition.html +%%PYQT_DOCSDIR%%/html/qkeysequence.html +%%PYQT_DOCSDIR%%/html/qlabel.html +%%PYQT_DOCSDIR%%/html/qlatin1char.html +%%PYQT_DOCSDIR%%/html/qlatin1string.html +%%PYQT_DOCSDIR%%/html/qlayout.html +%%PYQT_DOCSDIR%%/html/qlayoutitem.html +%%PYQT_DOCSDIR%%/html/qlcdnumber.html +%%PYQT_DOCSDIR%%/html/qlibrary-loadhints.html +%%PYQT_DOCSDIR%%/html/qlibrary.html +%%PYQT_DOCSDIR%%/html/qlibraryinfo.html +%%PYQT_DOCSDIR%%/html/qline.html +%%PYQT_DOCSDIR%%/html/qlineargradient.html +%%PYQT_DOCSDIR%%/html/qlineedit.html +%%PYQT_DOCSDIR%%/html/qlinef.html +%%PYQT_DOCSDIR%%/html/qlistview.html +%%PYQT_DOCSDIR%%/html/qlistwidget.html +%%PYQT_DOCSDIR%%/html/qlistwidgetitem.html +%%PYQT_DOCSDIR%%/html/qlocale-numberoptions.html +%%PYQT_DOCSDIR%%/html/qlocale.html +%%PYQT_DOCSDIR%%/html/qlocalserver.html +%%PYQT_DOCSDIR%%/html/qlocalsocket.html +%%PYQT_DOCSDIR%%/html/qmainwindow-dockoptions.html +%%PYQT_DOCSDIR%%/html/qmainwindow.html +%%PYQT_DOCSDIR%%/html/qmargins.html +%%PYQT_DOCSDIR%%/html/qmatrix.html +%%PYQT_DOCSDIR%%/html/qmatrix2x2.html +%%PYQT_DOCSDIR%%/html/qmatrix2x3.html +%%PYQT_DOCSDIR%%/html/qmatrix2x4.html +%%PYQT_DOCSDIR%%/html/qmatrix3x2.html +%%PYQT_DOCSDIR%%/html/qmatrix3x3.html +%%PYQT_DOCSDIR%%/html/qmatrix3x4.html +%%PYQT_DOCSDIR%%/html/qmatrix4x2.html +%%PYQT_DOCSDIR%%/html/qmatrix4x3.html +%%PYQT_DOCSDIR%%/html/qmatrix4x4.html +%%PYQT_DOCSDIR%%/html/qmdiarea-areaoptions.html +%%PYQT_DOCSDIR%%/html/qmdiarea.html +%%PYQT_DOCSDIR%%/html/qmdisubwindow-subwindowoptions.html +%%PYQT_DOCSDIR%%/html/qmdisubwindow.html +%%PYQT_DOCSDIR%%/html/qmenu.html +%%PYQT_DOCSDIR%%/html/qmenubar.html +%%PYQT_DOCSDIR%%/html/qmessagebox-standardbuttons.html +%%PYQT_DOCSDIR%%/html/qmessagebox.html +%%PYQT_DOCSDIR%%/html/qmetaclassinfo.html +%%PYQT_DOCSDIR%%/html/qmetaenum.html +%%PYQT_DOCSDIR%%/html/qmetamethod.html +%%PYQT_DOCSDIR%%/html/qmetaobject.html +%%PYQT_DOCSDIR%%/html/qmetaproperty.html +%%PYQT_DOCSDIR%%/html/qmetatype.html +%%PYQT_DOCSDIR%%/html/qmimedata.html +%%PYQT_DOCSDIR%%/html/qmimesource.html +%%PYQT_DOCSDIR%%/html/qml.html +%%PYQT_DOCSDIR%%/html/qmodelindex.html +%%PYQT_DOCSDIR%%/html/qmouseevent.html +%%PYQT_DOCSDIR%%/html/qmouseeventtransition.html +%%PYQT_DOCSDIR%%/html/qmoveevent.html +%%PYQT_DOCSDIR%%/html/qmovie.html +%%PYQT_DOCSDIR%%/html/qmutex.html +%%PYQT_DOCSDIR%%/html/qmutexlocker.html +%%PYQT_DOCSDIR%%/html/qnetworkaccessmanager.html +%%PYQT_DOCSDIR%%/html/qnetworkaddressentry.html +%%PYQT_DOCSDIR%%/html/qnetworkcachemetadata.html +%%PYQT_DOCSDIR%%/html/qnetworkconfiguration-stateflags.html +%%PYQT_DOCSDIR%%/html/qnetworkconfiguration.html +%%PYQT_DOCSDIR%%/html/qnetworkconfigurationmanager-capabilities.html +%%PYQT_DOCSDIR%%/html/qnetworkconfigurationmanager.html +%%PYQT_DOCSDIR%%/html/qnetworkcookie.html +%%PYQT_DOCSDIR%%/html/qnetworkcookiejar.html +%%PYQT_DOCSDIR%%/html/qnetworkdiskcache.html +%%PYQT_DOCSDIR%%/html/qnetworkinterface-interfaceflags.html +%%PYQT_DOCSDIR%%/html/qnetworkinterface.html +%%PYQT_DOCSDIR%%/html/qnetworkproxy-capabilities.html +%%PYQT_DOCSDIR%%/html/qnetworkproxy.html +%%PYQT_DOCSDIR%%/html/qnetworkproxyfactory.html +%%PYQT_DOCSDIR%%/html/qnetworkproxyquery.html +%%PYQT_DOCSDIR%%/html/qnetworkreply.html +%%PYQT_DOCSDIR%%/html/qnetworkrequest.html +%%PYQT_DOCSDIR%%/html/qnetworksession.html +%%PYQT_DOCSDIR%%/html/qobject.html +%%PYQT_DOCSDIR%%/html/qobjectcleanuphandler.html +%%PYQT_DOCSDIR%%/html/qpagesetupdialog-pagesetupdialogoptions.html +%%PYQT_DOCSDIR%%/html/qpagesetupdialog.html +%%PYQT_DOCSDIR%%/html/qpaintdevice.html +%%PYQT_DOCSDIR%%/html/qpaintengine-dirtyflags.html +%%PYQT_DOCSDIR%%/html/qpaintengine-paintenginefeatures.html +%%PYQT_DOCSDIR%%/html/qpaintengine.html +%%PYQT_DOCSDIR%%/html/qpaintenginestate.html +%%PYQT_DOCSDIR%%/html/qpainter-pixmapfragment.html +%%PYQT_DOCSDIR%%/html/qpainter-pixmapfragmenthints.html +%%PYQT_DOCSDIR%%/html/qpainter-renderhints.html +%%PYQT_DOCSDIR%%/html/qpainter.html +%%PYQT_DOCSDIR%%/html/qpainterpath-element.html +%%PYQT_DOCSDIR%%/html/qpainterpath.html +%%PYQT_DOCSDIR%%/html/qpainterpathstroker.html +%%PYQT_DOCSDIR%%/html/qpaintevent.html +%%PYQT_DOCSDIR%%/html/qpalette.html +%%PYQT_DOCSDIR%%/html/qpangesture.html +%%PYQT_DOCSDIR%%/html/qparallelanimationgroup.html +%%PYQT_DOCSDIR%%/html/qpauseanimation.html +%%PYQT_DOCSDIR%%/html/qpen.html +%%PYQT_DOCSDIR%%/html/qpersistentmodelindex.html +%%PYQT_DOCSDIR%%/html/qpicture.html +%%PYQT_DOCSDIR%%/html/qpictureio.html +%%PYQT_DOCSDIR%%/html/qpinchgesture-changeflags.html +%%PYQT_DOCSDIR%%/html/qpinchgesture.html +%%PYQT_DOCSDIR%%/html/qpixmap.html +%%PYQT_DOCSDIR%%/html/qpixmapcache-key.html +%%PYQT_DOCSDIR%%/html/qpixmapcache.html +%%PYQT_DOCSDIR%%/html/qplaintextdocumentlayout.html +%%PYQT_DOCSDIR%%/html/qplaintextedit.html +%%PYQT_DOCSDIR%%/html/qpluginloader.html +%%PYQT_DOCSDIR%%/html/qpoint.html +%%PYQT_DOCSDIR%%/html/qpointf.html +%%PYQT_DOCSDIR%%/html/qpolygon.html +%%PYQT_DOCSDIR%%/html/qpolygonf.html +%%PYQT_DOCSDIR%%/html/qprintdialog.html +%%PYQT_DOCSDIR%%/html/qprintengine.html +%%PYQT_DOCSDIR%%/html/qprinter.html +%%PYQT_DOCSDIR%%/html/qprinterinfo.html +%%PYQT_DOCSDIR%%/html/qprintpreviewdialog.html +%%PYQT_DOCSDIR%%/html/qprintpreviewwidget.html +%%PYQT_DOCSDIR%%/html/qprocess.html +%%PYQT_DOCSDIR%%/html/qprocessenvironment.html +%%PYQT_DOCSDIR%%/html/qprogressbar.html +%%PYQT_DOCSDIR%%/html/qprogressdialog.html +%%PYQT_DOCSDIR%%/html/qpropertyanimation.html +%%PYQT_DOCSDIR%%/html/qproxymodel.html +%%PYQT_DOCSDIR%%/html/qpushbutton.html +%%PYQT_DOCSDIR%%/html/qpydeclarativepropertyvaluesource.html +%%PYQT_DOCSDIR%%/html/qpydesignercontainerextension.html +%%PYQT_DOCSDIR%%/html/qpydesignercustomwidgetcollectionplugin.html +%%PYQT_DOCSDIR%%/html/qpydesignercustomwidgetplugin.html +%%PYQT_DOCSDIR%%/html/qpydesignermembersheetextension.html +%%PYQT_DOCSDIR%%/html/qpydesignerpropertysheetextension.html +%%PYQT_DOCSDIR%%/html/qpydesignertaskmenuextension.html +%%PYQT_DOCSDIR%%/html/qpynullvariant.html +%%PYQT_DOCSDIR%%/html/qpytextobject.html +%%PYQT_DOCSDIR%%/html/qquaternion.html +%%PYQT_DOCSDIR%%/html/qradialgradient.html +%%PYQT_DOCSDIR%%/html/qradiobutton.html +%%PYQT_DOCSDIR%%/html/qrawfont.html +%%PYQT_DOCSDIR%%/html/qreadlocker.html +%%PYQT_DOCSDIR%%/html/qreadwritelock.html +%%PYQT_DOCSDIR%%/html/qrect.html +%%PYQT_DOCSDIR%%/html/qrectf.html +%%PYQT_DOCSDIR%%/html/qregexp.html +%%PYQT_DOCSDIR%%/html/qregexpvalidator.html +%%PYQT_DOCSDIR%%/html/qregion.html +%%PYQT_DOCSDIR%%/html/qresizeevent.html +%%PYQT_DOCSDIR%%/html/qresource.html +%%PYQT_DOCSDIR%%/html/qrubberband.html +%%PYQT_DOCSDIR%%/html/qrunnable.html +%%PYQT_DOCSDIR%%/html/qscriptclass-queryflags.html +%%PYQT_DOCSDIR%%/html/qscriptclass.html +%%PYQT_DOCSDIR%%/html/qscriptclasspropertyiterator.html +%%PYQT_DOCSDIR%%/html/qscriptcontext.html +%%PYQT_DOCSDIR%%/html/qscriptcontextinfo.html +%%PYQT_DOCSDIR%%/html/qscriptengine-qobjectwrapoptions.html +%%PYQT_DOCSDIR%%/html/qscriptengine.html +%%PYQT_DOCSDIR%%/html/qscriptengineagent.html +%%PYQT_DOCSDIR%%/html/qscriptenginedebugger.html +%%PYQT_DOCSDIR%%/html/qscriptstring.html +%%PYQT_DOCSDIR%%/html/qscriptsyntaxcheckresult.html +%%PYQT_DOCSDIR%%/html/qscriptvalue-propertyflags.html +%%PYQT_DOCSDIR%%/html/qscriptvalue-resolveflags.html +%%PYQT_DOCSDIR%%/html/qscriptvalue.html +%%PYQT_DOCSDIR%%/html/qscriptvalueiterator.html +%%PYQT_DOCSDIR%%/html/qscrollarea.html +%%PYQT_DOCSDIR%%/html/qscrollbar.html +%%PYQT_DOCSDIR%%/html/qsemaphore.html +%%PYQT_DOCSDIR%%/html/qsequentialanimationgroup.html +%%PYQT_DOCSDIR%%/html/qsessionmanager.html +%%PYQT_DOCSDIR%%/html/qsettings.html +%%PYQT_DOCSDIR%%/html/qsharedmemory.html +%%PYQT_DOCSDIR%%/html/qshortcut.html +%%PYQT_DOCSDIR%%/html/qshortcutevent.html +%%PYQT_DOCSDIR%%/html/qshowevent.html +%%PYQT_DOCSDIR%%/html/qsignalmapper.html +%%PYQT_DOCSDIR%%/html/qsignaltransition.html +%%PYQT_DOCSDIR%%/html/qsimplexmlnodemodel.html +%%PYQT_DOCSDIR%%/html/qsize.html +%%PYQT_DOCSDIR%%/html/qsizef.html +%%PYQT_DOCSDIR%%/html/qsizegrip.html +%%PYQT_DOCSDIR%%/html/qsizepolicy-controltypes.html +%%PYQT_DOCSDIR%%/html/qsizepolicy.html +%%PYQT_DOCSDIR%%/html/qslider.html +%%PYQT_DOCSDIR%%/html/qsocketnotifier.html +%%PYQT_DOCSDIR%%/html/qsortfilterproxymodel.html +%%PYQT_DOCSDIR%%/html/qsound.html +%%PYQT_DOCSDIR%%/html/qsourcelocation.html +%%PYQT_DOCSDIR%%/html/qspaceritem.html +%%PYQT_DOCSDIR%%/html/qspinbox.html +%%PYQT_DOCSDIR%%/html/qsplashscreen.html +%%PYQT_DOCSDIR%%/html/qsplitter.html +%%PYQT_DOCSDIR%%/html/qsplitterhandle.html +%%PYQT_DOCSDIR%%/html/qsql-paramtype.html +%%PYQT_DOCSDIR%%/html/qsql.html +%%PYQT_DOCSDIR%%/html/qsqldatabase.html +%%PYQT_DOCSDIR%%/html/qsqldriver.html +%%PYQT_DOCSDIR%%/html/qsqldrivercreatorbase.html +%%PYQT_DOCSDIR%%/html/qsqlerror.html +%%PYQT_DOCSDIR%%/html/qsqlfield.html +%%PYQT_DOCSDIR%%/html/qsqlindex.html +%%PYQT_DOCSDIR%%/html/qsqlquery.html +%%PYQT_DOCSDIR%%/html/qsqlquerymodel.html +%%PYQT_DOCSDIR%%/html/qsqlrecord.html +%%PYQT_DOCSDIR%%/html/qsqlrelation.html +%%PYQT_DOCSDIR%%/html/qsqlrelationaldelegate.html +%%PYQT_DOCSDIR%%/html/qsqlrelationaltablemodel.html +%%PYQT_DOCSDIR%%/html/qsqlresult.html +%%PYQT_DOCSDIR%%/html/qsqltablemodel.html +%%PYQT_DOCSDIR%%/html/qssl-ssloptions.html +%%PYQT_DOCSDIR%%/html/qssl.html +%%PYQT_DOCSDIR%%/html/qsslcertificate.html +%%PYQT_DOCSDIR%%/html/qsslcipher.html +%%PYQT_DOCSDIR%%/html/qsslconfiguration.html +%%PYQT_DOCSDIR%%/html/qsslerror.html +%%PYQT_DOCSDIR%%/html/qsslkey.html +%%PYQT_DOCSDIR%%/html/qsslsocket.html +%%PYQT_DOCSDIR%%/html/qstackedlayout.html +%%PYQT_DOCSDIR%%/html/qstackedwidget.html +%%PYQT_DOCSDIR%%/html/qstandarditem.html +%%PYQT_DOCSDIR%%/html/qstandarditemmodel.html +%%PYQT_DOCSDIR%%/html/qstate.html +%%PYQT_DOCSDIR%%/html/qstatemachine-signalevent.html +%%PYQT_DOCSDIR%%/html/qstatemachine-wrappedevent.html +%%PYQT_DOCSDIR%%/html/qstatemachine.html +%%PYQT_DOCSDIR%%/html/qstatictext.html +%%PYQT_DOCSDIR%%/html/qstatusbar.html +%%PYQT_DOCSDIR%%/html/qstatustipevent.html +%%PYQT_DOCSDIR%%/html/qstring-sectionflags.html +%%PYQT_DOCSDIR%%/html/qstring.html +%%PYQT_DOCSDIR%%/html/qstringlist.html +%%PYQT_DOCSDIR%%/html/qstringlistmodel.html +%%PYQT_DOCSDIR%%/html/qstringmatcher.html +%%PYQT_DOCSDIR%%/html/qstringref.html +%%PYQT_DOCSDIR%%/html/qstyle-state.html +%%PYQT_DOCSDIR%%/html/qstyle-subcontrols.html +%%PYQT_DOCSDIR%%/html/qstyle.html +%%PYQT_DOCSDIR%%/html/qstyleditemdelegate.html +%%PYQT_DOCSDIR%%/html/qstylefactory.html +%%PYQT_DOCSDIR%%/html/qstylehintreturn.html +%%PYQT_DOCSDIR%%/html/qstylehintreturnmask.html +%%PYQT_DOCSDIR%%/html/qstylehintreturnvariant.html +%%PYQT_DOCSDIR%%/html/qstyleoption.html +%%PYQT_DOCSDIR%%/html/qstyleoptionbutton-buttonfeatures.html +%%PYQT_DOCSDIR%%/html/qstyleoptionbutton.html +%%PYQT_DOCSDIR%%/html/qstyleoptioncombobox.html +%%PYQT_DOCSDIR%%/html/qstyleoptioncomplex.html +%%PYQT_DOCSDIR%%/html/qstyleoptiondockwidget.html +%%PYQT_DOCSDIR%%/html/qstyleoptiondockwidgetv2.html +%%PYQT_DOCSDIR%%/html/qstyleoptionfocusrect.html +%%PYQT_DOCSDIR%%/html/qstyleoptionframe.html +%%PYQT_DOCSDIR%%/html/qstyleoptionframev2-framefeatures.html +%%PYQT_DOCSDIR%%/html/qstyleoptionframev2.html +%%PYQT_DOCSDIR%%/html/qstyleoptionframev3.html +%%PYQT_DOCSDIR%%/html/qstyleoptiongraphicsitem.html +%%PYQT_DOCSDIR%%/html/qstyleoptiongroupbox.html +%%PYQT_DOCSDIR%%/html/qstyleoptionheader.html +%%PYQT_DOCSDIR%%/html/qstyleoptionmenuitem.html +%%PYQT_DOCSDIR%%/html/qstyleoptionprogressbar.html +%%PYQT_DOCSDIR%%/html/qstyleoptionprogressbarv2.html +%%PYQT_DOCSDIR%%/html/qstyleoptionrubberband.html +%%PYQT_DOCSDIR%%/html/qstyleoptionsizegrip.html +%%PYQT_DOCSDIR%%/html/qstyleoptionslider.html +%%PYQT_DOCSDIR%%/html/qstyleoptionspinbox.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontab-cornerwidgets.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontab.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontabbarbase.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontabbarbasev2.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontabv2.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontabv3.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontabwidgetframe.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontabwidgetframev2.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontitlebar.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontoolbar-toolbarfeatures.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontoolbar.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontoolbox.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontoolboxv2.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontoolbutton-toolbuttonfeatures.html +%%PYQT_DOCSDIR%%/html/qstyleoptiontoolbutton.html +%%PYQT_DOCSDIR%%/html/qstyleoptionviewitem.html +%%PYQT_DOCSDIR%%/html/qstyleoptionviewitemv2-viewitemfeatures.html +%%PYQT_DOCSDIR%%/html/qstyleoptionviewitemv2.html +%%PYQT_DOCSDIR%%/html/qstyleoptionviewitemv3.html +%%PYQT_DOCSDIR%%/html/qstyleoptionviewitemv4.html +%%PYQT_DOCSDIR%%/html/qstylepainter.html +%%PYQT_DOCSDIR%%/html/qsvggenerator.html +%%PYQT_DOCSDIR%%/html/qsvgrenderer.html +%%PYQT_DOCSDIR%%/html/qsvgwidget.html +%%PYQT_DOCSDIR%%/html/qswipegesture.html +%%PYQT_DOCSDIR%%/html/qsyntaxhighlighter.html +%%PYQT_DOCSDIR%%/html/qsysinfo.html +%%PYQT_DOCSDIR%%/html/qsystemlocale.html +%%PYQT_DOCSDIR%%/html/qsystemsemaphore.html +%%PYQT_DOCSDIR%%/html/qsystemtrayicon.html +%%PYQT_DOCSDIR%%/html/qt-alignment.html +%%PYQT_DOCSDIR%%/html/qt-dockwidgetareas.html +%%PYQT_DOCSDIR%%/html/qt-dropactions.html +%%PYQT_DOCSDIR%%/html/qt-gestureflags.html +%%PYQT_DOCSDIR%%/html/qt-imageconversionflags.html +%%PYQT_DOCSDIR%%/html/qt-inputmethodhints.html +%%PYQT_DOCSDIR%%/html/qt-itemflags.html +%%PYQT_DOCSDIR%%/html/qt-keyboardmodifiers.html +%%PYQT_DOCSDIR%%/html/qt-matchflags.html +%%PYQT_DOCSDIR%%/html/qt-mousebuttons.html +%%PYQT_DOCSDIR%%/html/qt-orientations.html +%%PYQT_DOCSDIR%%/html/qt-textinteractionflags.html +%%PYQT_DOCSDIR%%/html/qt-toolbarareas.html +%%PYQT_DOCSDIR%%/html/qt-touchpointstates.html +%%PYQT_DOCSDIR%%/html/qt-windowflags.html +%%PYQT_DOCSDIR%%/html/qt-windowstates.html +%%PYQT_DOCSDIR%%/html/qt.html +%%PYQT_DOCSDIR%%/html/qt_properties.html +%%PYQT_DOCSDIR%%/html/qt_v5.html +%%PYQT_DOCSDIR%%/html/qtabbar.html +%%PYQT_DOCSDIR%%/html/qtabletevent.html +%%PYQT_DOCSDIR%%/html/qtableview.html +%%PYQT_DOCSDIR%%/html/qtablewidget.html +%%PYQT_DOCSDIR%%/html/qtablewidgetitem.html +%%PYQT_DOCSDIR%%/html/qtablewidgetselectionrange.html +%%PYQT_DOCSDIR%%/html/qtabwidget.html +%%PYQT_DOCSDIR%%/html/qtapandholdgesture.html +%%PYQT_DOCSDIR%%/html/qtapgesture.html +%%PYQT_DOCSDIR%%/html/qtassistant.html +%%PYQT_DOCSDIR%%/html/qtcore.html +%%PYQT_DOCSDIR%%/html/qtcpserver.html +%%PYQT_DOCSDIR%%/html/qtcpsocket.html +%%PYQT_DOCSDIR%%/html/qtdbus.html +%%PYQT_DOCSDIR%%/html/qtdeclarative.html +%%PYQT_DOCSDIR%%/html/qtdesigner.html +%%PYQT_DOCSDIR%%/html/qtemporaryfile.html +%%PYQT_DOCSDIR%%/html/qtest.html +%%PYQT_DOCSDIR%%/html/qtextblock-iterator.html +%%PYQT_DOCSDIR%%/html/qtextblock.html +%%PYQT_DOCSDIR%%/html/qtextblockformat.html +%%PYQT_DOCSDIR%%/html/qtextblockgroup.html +%%PYQT_DOCSDIR%%/html/qtextblockuserdata.html +%%PYQT_DOCSDIR%%/html/qtextboundaryfinder-boundaryreasons.html +%%PYQT_DOCSDIR%%/html/qtextboundaryfinder.html +%%PYQT_DOCSDIR%%/html/qtextbrowser.html +%%PYQT_DOCSDIR%%/html/qtextcharformat.html +%%PYQT_DOCSDIR%%/html/qtextcodec-conversionflags.html +%%PYQT_DOCSDIR%%/html/qtextcodec-converterstate.html +%%PYQT_DOCSDIR%%/html/qtextcodec.html +%%PYQT_DOCSDIR%%/html/qtextcursor.html +%%PYQT_DOCSDIR%%/html/qtextdecoder.html +%%PYQT_DOCSDIR%%/html/qtextdocument-findflags.html +%%PYQT_DOCSDIR%%/html/qtextdocument.html +%%PYQT_DOCSDIR%%/html/qtextdocumentfragment.html +%%PYQT_DOCSDIR%%/html/qtextdocumentwriter.html +%%PYQT_DOCSDIR%%/html/qtextedit-autoformatting.html +%%PYQT_DOCSDIR%%/html/qtextedit-extraselection.html +%%PYQT_DOCSDIR%%/html/qtextedit.html +%%PYQT_DOCSDIR%%/html/qtextencoder.html +%%PYQT_DOCSDIR%%/html/qtextformat-pagebreakflags.html +%%PYQT_DOCSDIR%%/html/qtextformat.html +%%PYQT_DOCSDIR%%/html/qtextfragment.html +%%PYQT_DOCSDIR%%/html/qtextframe-iterator.html +%%PYQT_DOCSDIR%%/html/qtextframe.html +%%PYQT_DOCSDIR%%/html/qtextframeformat.html +%%PYQT_DOCSDIR%%/html/qtextimageformat.html +%%PYQT_DOCSDIR%%/html/qtextinlineobject.html +%%PYQT_DOCSDIR%%/html/qtextitem-renderflags.html +%%PYQT_DOCSDIR%%/html/qtextitem.html +%%PYQT_DOCSDIR%%/html/qtextlayout-formatrange.html +%%PYQT_DOCSDIR%%/html/qtextlayout.html +%%PYQT_DOCSDIR%%/html/qtextlength.html +%%PYQT_DOCSDIR%%/html/qtextline.html +%%PYQT_DOCSDIR%%/html/qtextlist.html +%%PYQT_DOCSDIR%%/html/qtextlistformat.html +%%PYQT_DOCSDIR%%/html/qtextobject.html +%%PYQT_DOCSDIR%%/html/qtextobjectinterface.html +%%PYQT_DOCSDIR%%/html/qtextoption-flags.html +%%PYQT_DOCSDIR%%/html/qtextoption-tab.html +%%PYQT_DOCSDIR%%/html/qtextoption.html +%%PYQT_DOCSDIR%%/html/qtextstream-numberflags.html +%%PYQT_DOCSDIR%%/html/qtextstream.html +%%PYQT_DOCSDIR%%/html/qtexttable.html +%%PYQT_DOCSDIR%%/html/qtexttablecell.html +%%PYQT_DOCSDIR%%/html/qtexttablecellformat.html +%%PYQT_DOCSDIR%%/html/qtexttableformat.html +%%PYQT_DOCSDIR%%/html/qtgui.html +%%PYQT_DOCSDIR%%/html/qthelp.html +%%PYQT_DOCSDIR%%/html/qthread.html +%%PYQT_DOCSDIR%%/html/qthreadpool.html +%%PYQT_DOCSDIR%%/html/qtime.html +%%PYQT_DOCSDIR%%/html/qtimeedit.html +%%PYQT_DOCSDIR%%/html/qtimeline.html +%%PYQT_DOCSDIR%%/html/qtimer.html +%%PYQT_DOCSDIR%%/html/qtimerevent.html +%%PYQT_DOCSDIR%%/html/qtmultimedia.html +%%PYQT_DOCSDIR%%/html/qtnetwork.html +%%PYQT_DOCSDIR%%/html/qtoolbar.html +%%PYQT_DOCSDIR%%/html/qtoolbox.html +%%PYQT_DOCSDIR%%/html/qtoolbutton.html +%%PYQT_DOCSDIR%%/html/qtooltip.html +%%PYQT_DOCSDIR%%/html/qtopengl.html +%%PYQT_DOCSDIR%%/html/qtouchevent-touchpoint.html +%%PYQT_DOCSDIR%%/html/qtouchevent.html +%%PYQT_DOCSDIR%%/html/qtransform.html +%%PYQT_DOCSDIR%%/html/qtranslator.html +%%PYQT_DOCSDIR%%/html/qtreeview.html +%%PYQT_DOCSDIR%%/html/qtreewidget.html +%%PYQT_DOCSDIR%%/html/qtreewidgetitem.html +%%PYQT_DOCSDIR%%/html/qtreewidgetitemiterator-iteratorflags.html +%%PYQT_DOCSDIR%%/html/qtreewidgetitemiterator.html +%%PYQT_DOCSDIR%%/html/qtscript.html +%%PYQT_DOCSDIR%%/html/qtscripttools.html +%%PYQT_DOCSDIR%%/html/qtsql.html +%%PYQT_DOCSDIR%%/html/qtsvg.html +%%PYQT_DOCSDIR%%/html/qttest.html +%%PYQT_DOCSDIR%%/html/qtwebkit.html +%%PYQT_DOCSDIR%%/html/qtxml.html +%%PYQT_DOCSDIR%%/html/qtxmlpatterns.html +%%PYQT_DOCSDIR%%/html/qudpsocket-bindmode.html +%%PYQT_DOCSDIR%%/html/qudpsocket.html +%%PYQT_DOCSDIR%%/html/qundocommand.html +%%PYQT_DOCSDIR%%/html/qundogroup.html +%%PYQT_DOCSDIR%%/html/qundostack.html +%%PYQT_DOCSDIR%%/html/qundoview.html +%%PYQT_DOCSDIR%%/html/qurl-formattingoptions.html +%%PYQT_DOCSDIR%%/html/qurl.html +%%PYQT_DOCSDIR%%/html/qurlinfo.html +%%PYQT_DOCSDIR%%/html/quuid.html +%%PYQT_DOCSDIR%%/html/qvalidator.html +%%PYQT_DOCSDIR%%/html/qvariant.html +%%PYQT_DOCSDIR%%/html/qvariantanimation.html +%%PYQT_DOCSDIR%%/html/qvboxlayout.html +%%PYQT_DOCSDIR%%/html/qvector2d.html +%%PYQT_DOCSDIR%%/html/qvector3d.html +%%PYQT_DOCSDIR%%/html/qvector4d.html +%%PYQT_DOCSDIR%%/html/qvideoframe.html +%%PYQT_DOCSDIR%%/html/qvideosurfaceformat.html +%%PYQT_DOCSDIR%%/html/qwaitcondition.html +%%PYQT_DOCSDIR%%/html/qwebdatabase.html +%%PYQT_DOCSDIR%%/html/qwebelement.html +%%PYQT_DOCSDIR%%/html/qwebelementcollection.html +%%PYQT_DOCSDIR%%/html/qwebframe.html +%%PYQT_DOCSDIR%%/html/qwebhistory.html +%%PYQT_DOCSDIR%%/html/qwebhistoryinterface.html +%%PYQT_DOCSDIR%%/html/qwebhistoryitem.html +%%PYQT_DOCSDIR%%/html/qwebhittestresult.html +%%PYQT_DOCSDIR%%/html/qwebinspector.html +%%PYQT_DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionoption.html +%%PYQT_DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionreturn.html +%%PYQT_DOCSDIR%%/html/qwebpage-errorpageextensionoption.html +%%PYQT_DOCSDIR%%/html/qwebpage-errorpageextensionreturn.html +%%PYQT_DOCSDIR%%/html/qwebpage-extensionoption.html +%%PYQT_DOCSDIR%%/html/qwebpage-extensionreturn.html +%%PYQT_DOCSDIR%%/html/qwebpage-findflags.html +%%PYQT_DOCSDIR%%/html/qwebpage-viewportattributes.html +%%PYQT_DOCSDIR%%/html/qwebpage.html +%%PYQT_DOCSDIR%%/html/qwebpluginfactory-extensionoption.html +%%PYQT_DOCSDIR%%/html/qwebpluginfactory-extensionreturn.html +%%PYQT_DOCSDIR%%/html/qwebpluginfactory-mimetype.html +%%PYQT_DOCSDIR%%/html/qwebpluginfactory-plugin.html +%%PYQT_DOCSDIR%%/html/qwebpluginfactory.html +%%PYQT_DOCSDIR%%/html/qwebsecurityorigin.html +%%PYQT_DOCSDIR%%/html/qwebsettings.html +%%PYQT_DOCSDIR%%/html/qwebview.html +%%PYQT_DOCSDIR%%/html/qwhatsthis.html +%%PYQT_DOCSDIR%%/html/qwhatsthisclickedevent.html +%%PYQT_DOCSDIR%%/html/qwheelevent.html +%%PYQT_DOCSDIR%%/html/qwidget-renderflags.html +%%PYQT_DOCSDIR%%/html/qwidget.html +%%PYQT_DOCSDIR%%/html/qwidgetaction.html +%%PYQT_DOCSDIR%%/html/qwidgetitem.html +%%PYQT_DOCSDIR%%/html/qwindowstatechangeevent.html +%%PYQT_DOCSDIR%%/html/qwizard-wizardoptions.html +%%PYQT_DOCSDIR%%/html/qwizard.html +%%PYQT_DOCSDIR%%/html/qwizardpage.html +%%PYQT_DOCSDIR%%/html/qworkspace.html +%%PYQT_DOCSDIR%%/html/qwritelocker.html +%%PYQT_DOCSDIR%%/html/qx11embedcontainer.html +%%PYQT_DOCSDIR%%/html/qx11embedwidget.html +%%PYQT_DOCSDIR%%/html/qx11info.html +%%PYQT_DOCSDIR%%/html/qxmlattributes.html +%%PYQT_DOCSDIR%%/html/qxmlcontenthandler.html +%%PYQT_DOCSDIR%%/html/qxmldeclhandler.html +%%PYQT_DOCSDIR%%/html/qxmldefaulthandler.html +%%PYQT_DOCSDIR%%/html/qxmldtdhandler.html +%%PYQT_DOCSDIR%%/html/qxmlentityresolver.html +%%PYQT_DOCSDIR%%/html/qxmlerrorhandler.html +%%PYQT_DOCSDIR%%/html/qxmlformatter.html +%%PYQT_DOCSDIR%%/html/qxmlinputsource.html +%%PYQT_DOCSDIR%%/html/qxmlitem.html +%%PYQT_DOCSDIR%%/html/qxmllexicalhandler.html +%%PYQT_DOCSDIR%%/html/qxmllocator.html +%%PYQT_DOCSDIR%%/html/qxmlname.html +%%PYQT_DOCSDIR%%/html/qxmlnamepool.html +%%PYQT_DOCSDIR%%/html/qxmlnamespacesupport.html +%%PYQT_DOCSDIR%%/html/qxmlnodemodelindex.html +%%PYQT_DOCSDIR%%/html/qxmlparseexception.html +%%PYQT_DOCSDIR%%/html/qxmlquery.html +%%PYQT_DOCSDIR%%/html/qxmlreader.html +%%PYQT_DOCSDIR%%/html/qxmlresultitems.html +%%PYQT_DOCSDIR%%/html/qxmlschema.html +%%PYQT_DOCSDIR%%/html/qxmlschemavalidator.html +%%PYQT_DOCSDIR%%/html/qxmlserializer.html +%%PYQT_DOCSDIR%%/html/qxmlsimplereader.html +%%PYQT_DOCSDIR%%/html/qxmlstreamattribute.html +%%PYQT_DOCSDIR%%/html/qxmlstreamattributes.html +%%PYQT_DOCSDIR%%/html/qxmlstreamentitydeclaration.html +%%PYQT_DOCSDIR%%/html/qxmlstreamentityresolver.html +%%PYQT_DOCSDIR%%/html/qxmlstreamnamespacedeclaration.html +%%PYQT_DOCSDIR%%/html/qxmlstreamnotationdeclaration.html +%%PYQT_DOCSDIR%%/html/qxmlstreamreader.html +%%PYQT_DOCSDIR%%/html/qxmlstreamwriter.html +%%PYQT_DOCSDIR%%/html/resources.html +%%PYQT_DOCSDIR%%/html/search.html +%%PYQT_DOCSDIR%%/html/searchindex.js +%%PYQT_DOCSDIR%%/html/threads.html +%%PYQT_DOCSDIR%%/html/webkit.html Index: misc/py-qt5-demo/Makefile =================================================================== --- misc/py-qt5-demo/Makefile +++ misc/py-qt5-demo/Makefile @@ -2,6 +2,7 @@ PORTNAME= demo PORTVERSION= ${PYQT5_VERSION} +PORTREVISION= 1 CATEGORIES= misc devel python MASTER_SITES= ${MASTER_SITES_PYQT5} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- @@ -14,25 +15,28 @@ NO_BUILD= yes USES= python pyqt:5 -USE_PYQT= # +USE_PYTHON= concurrent py3kplist -EXAMPLESDIR= ${PREFIX}/share/examples/py-qt5 +# EXAMPLESDIR gets overritten by concurrent, but UNIQUE_SUFFIX does not take... +# so do it manually. +PYQT_EXAMPLESDIR= ${PREFIX}/${EXAMPLEDIR_REL} +PLIST_SUB+= PYQT_EXAMPLESDIR="${PYQT_EXAMPLESDIR}" -USE_PYQT= core_run dbus_run designer_run \ - designerplugin_run doc_run gui_run multimedia_run \ +USE_PYQT= core_run dbus_run designer_run designerplugin_run \ + doc_run gui_run multimedia_run \ multimediawidgets_run network_run opengl_run qscintilla2_run \ sql_run svg_run test_run webkit_run xml_run \ xmlpatterns_run sip_run qscintilla2_run \ printsupport_run serialport_run webkitwidgets_run widgets_run do-install: - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${PYQT_EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${PYQT_EXAMPLESDIR} ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ - ${STAGEDIR}${EXAMPLESDIR} + ${STAGEDIR}${PYQT_EXAMPLESDIR} ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ - ${STAGEDIR}${EXAMPLESDIR} + ${STAGEDIR}${PYQT_EXAMPLESDIR} .include Index: misc/py-qt5-demo/pkg-plist =================================================================== --- misc/py-qt5-demo/pkg-plist +++ misc/py-qt5-demo/pkg-plist @@ -1,1259 +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/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 +%%PYQT_EXAMPLESDIR%%/README +%%PYQT_EXAMPLESDIR%%/activeqt/README +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image0.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image1.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image2.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image3.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image4.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image5.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/icons/image6.xpm +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.qrc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.ui +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.py +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.pyc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.pyo +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.py +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.py +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyc +%%PYQT_EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyo +%%PYQT_EXAMPLESDIR%%/animation/README +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.py +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyc +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyo +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.qrc +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.py +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.pyc +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.pyo +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/Time-For-Lunch-2.jpg +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/centered.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/ellipse.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/figure8.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/kinetic.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/random.png +%%PYQT_EXAMPLESDIR%%/animation/animatedtiles/images/tile.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/accessories-dictionary.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/akregator.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.py +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.pyc +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.pyo +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser.qrc +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc.py +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc.pyc +%%PYQT_EXAMPLESDIR%%/animation/appchooser/appchooser_rc.pyo +%%PYQT_EXAMPLESDIR%%/animation/appchooser/digikam.png +%%PYQT_EXAMPLESDIR%%/animation/appchooser/k3b.png +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.py +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.pyc +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.pyo +%%PYQT_EXAMPLESDIR%%/animation/easing/easing.qrc +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc.py +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc.pyc +%%PYQT_EXAMPLESDIR%%/animation/easing/easing_rc.pyo +%%PYQT_EXAMPLESDIR%%/animation/easing/form.ui +%%PYQT_EXAMPLESDIR%%/animation/easing/images/qt-logo.png +%%PYQT_EXAMPLESDIR%%/animation/easing/ui_form.py +%%PYQT_EXAMPLESDIR%%/animation/easing/ui_form.pyc +%%PYQT_EXAMPLESDIR%%/animation/easing/ui_form.pyo +%%PYQT_EXAMPLESDIR%%/animation/moveblocks.py +%%PYQT_EXAMPLESDIR%%/animation/moveblocks.pyc +%%PYQT_EXAMPLESDIR%%/animation/moveblocks.pyo +%%PYQT_EXAMPLESDIR%%/animation/states/accessories-dictionary.png +%%PYQT_EXAMPLESDIR%%/animation/states/akregator.png +%%PYQT_EXAMPLESDIR%%/animation/states/digikam.png +%%PYQT_EXAMPLESDIR%%/animation/states/help-browser.png +%%PYQT_EXAMPLESDIR%%/animation/states/k3b.png +%%PYQT_EXAMPLESDIR%%/animation/states/kchart.png +%%PYQT_EXAMPLESDIR%%/animation/states/states.py +%%PYQT_EXAMPLESDIR%%/animation/states/states.pyc +%%PYQT_EXAMPLESDIR%%/animation/states/states.pyo +%%PYQT_EXAMPLESDIR%%/animation/states/states.qrc +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc.py +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc.pyc +%%PYQT_EXAMPLESDIR%%/animation/states/states_rc.pyo +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/chilling +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/dancing +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/dead +%%PYQT_EXAMPLESDIR%%/animation/stickman/animations/jumping +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.py +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.pyc +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.pyo +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman.qrc +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc.py +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc.pyc +%%PYQT_EXAMPLESDIR%%/animation/stickman/stickman_rc.pyo +%%PYQT_EXAMPLESDIR%%/dbus/chat/chat.py +%%PYQT_EXAMPLESDIR%%/dbus/chat/chat.pyc +%%PYQT_EXAMPLESDIR%%/dbus/chat/chat.pyo +%%PYQT_EXAMPLESDIR%%/dbus/chat/chatmainwindow.ui +%%PYQT_EXAMPLESDIR%%/dbus/chat/chatsetnickname.ui +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.py +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyc +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyo +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.py +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyc +%%PYQT_EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyo +%%PYQT_EXAMPLESDIR%%/dbus/listnames.py +%%PYQT_EXAMPLESDIR%%/dbus/listnames.pyc +%%PYQT_EXAMPLESDIR%%/dbus/listnames.pyo +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/ping.py +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/ping.pyc +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/ping.pyo +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/pong.py +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/pong.pyc +%%PYQT_EXAMPLESDIR%%/dbus/pingpong/pong.pyo +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.py +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyc +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyo +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.py +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyc +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyo +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.ui +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.py +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyc +%%PYQT_EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyo +%%PYQT_EXAMPLESDIR%%/designer/README +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.py +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyc +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyo +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/calculatorform.ui +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.py +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyc +%%PYQT_EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/plugins.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/plugins.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/plugins.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/analogclock.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pydemo.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyo +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.py +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyc +%%PYQT_EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyo +%%PYQT_EXAMPLESDIR%%/desktop/README +%%PYQT_EXAMPLESDIR%%/desktop/screenshot.py +%%PYQT_EXAMPLESDIR%%/desktop/screenshot.pyc +%%PYQT_EXAMPLESDIR%%/desktop/screenshot.pyo +%%PYQT_EXAMPLESDIR%%/desktop/systray/images/bad.png +%%PYQT_EXAMPLESDIR%%/desktop/systray/images/heart.png +%%PYQT_EXAMPLESDIR%%/desktop/systray/images/trash.png +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.py +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.pyc +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.pyo +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray.qrc +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc.py +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc.pyc +%%PYQT_EXAMPLESDIR%%/desktop/systray/systray_rc.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/README +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.py +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard.qrc +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.py +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/background.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/banner.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/logo1.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/logo2.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/logo3.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/watermark1.png +%%PYQT_EXAMPLESDIR%%/dialogs/classwizard/images/watermark2.png +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.py +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog.qrc +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.py +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/images/config.png +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/images/query.png +%%PYQT_EXAMPLESDIR%%/dialogs/configdialog/images/update.png +%%PYQT_EXAMPLESDIR%%/dialogs/extension.py +%%PYQT_EXAMPLESDIR%%/dialogs/extension.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/extension.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/findfiles.py +%%PYQT_EXAMPLESDIR%%/dialogs/findfiles.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/findfiles.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/standarddialogs.py +%%PYQT_EXAMPLESDIR%%/dialogs/standarddialogs.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/standarddialogs.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/tabdialog.py +%%PYQT_EXAMPLESDIR%%/dialogs/tabdialog.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/tabdialog.pyo +%%PYQT_EXAMPLESDIR%%/dialogs/trivialwizard.py +%%PYQT_EXAMPLESDIR%%/dialogs/trivialwizard.pyc +%%PYQT_EXAMPLESDIR%%/dialogs/trivialwizard.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/README +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.py +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.py +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/images/drag.png +%%PYQT_EXAMPLESDIR%%/draganddrop/delayedencoding/images/example.svg +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/images/boat.png +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/images/car.png +%%PYQT_EXAMPLESDIR%%/draganddrop/draggableicons/images/house.png +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.py +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/draggabletext/words.txt +%%PYQT_EXAMPLESDIR%%/draganddrop/dropsite.py +%%PYQT_EXAMPLESDIR%%/draganddrop/dropsite.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/dropsite.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.py +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.py +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/fridgemagnets/words.txt +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/example.jpg +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.py +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyo +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle.qrc +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.py +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.pyc +%%PYQT_EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.pyo +%%PYQT_EXAMPLESDIR%%/effects/README +%%PYQT_EXAMPLESDIR%%/effects/lighting.py +%%PYQT_EXAMPLESDIR%%/effects/lighting.pyc +%%PYQT_EXAMPLESDIR%%/effects/lighting.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/README +%%PYQT_EXAMPLESDIR%%/graphicsview/anchorlayout.py +%%PYQT_EXAMPLESDIR%%/graphicsview/anchorlayout.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/anchorlayout.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.py +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/images/cheese.jpg +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.py +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.py +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.py +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background1.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background2.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background3.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/background4.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/bold.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/bringtofront.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/delete.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/floodfill.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/italic.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/linecolor.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/linepointer.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/pointer.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/sendtoback.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/textpointer.png +%%PYQT_EXAMPLESDIR%%/graphicsview/diagramscene/images/underline.png +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.py +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/dragdroprobot/images/head.png +%%PYQT_EXAMPLESDIR%%/graphicsview/elasticnodes.py +%%PYQT_EXAMPLESDIR%%/graphicsview/elasticnodes.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/elasticnodes.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/No-Ones-Laughing-3.jpg +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.py +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.ui +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.py +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.py +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/form.ui +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/artsfftscope.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/blue_angle_swirl.jpg +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_contacts.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_journal.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_mail.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_notes.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/kopeteavailable.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/metacontact_online.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/images/minitools.png +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.py +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.qrc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.py +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.pyo +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.py +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.pyc +%%PYQT_EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.pyo +%%PYQT_EXAMPLESDIR%%/ipc/README +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneclient.py +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneclient.pyc +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneclient.pyo +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneserver.py +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneserver.pyc +%%PYQT_EXAMPLESDIR%%/ipc/localfortuneserver.pyo +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.py +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyc +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyo +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/dialog.ui +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/image.png +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/qt.png +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.py +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyc +%%PYQT_EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/README +%%PYQT_EXAMPLESDIR%%/itemviews/basicsortfiltermodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.py +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc.py +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/chart/chart_rc.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/chart/mydata.cht +%%PYQT_EXAMPLESDIR%%/itemviews/chart/qtdata.cht +%%PYQT_EXAMPLESDIR%%/itemviews/coloreditorfactory.py +%%PYQT_EXAMPLESDIR%%/itemviews/coloreditorfactory.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/coloreditorfactory.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/combowidgetmapper.py +%%PYQT_EXAMPLESDIR%%/itemviews/combowidgetmapper.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/combowidgetmapper.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/customsortfiltermodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/dirview.py +%%PYQT_EXAMPLESDIR%%/itemviews/dirview.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/dirview.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/default.txt +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.py +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/mainwindow.ui +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.py +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/fetchmore.py +%%PYQT_EXAMPLESDIR%%/itemviews/fetchmore.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/fetchmore.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/images/qt.png +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.py +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.py +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/example.jpg +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.py +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.py +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simpledommodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/simpledommodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simpledommodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/default.txt +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.py +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.py +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/simplewidgetmapper.py +%%PYQT_EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spinboxdelegate.py +%%PYQT_EXAMPLESDIR%%/itemviews/spinboxdelegate.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spinboxdelegate.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/images/interview.png +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/printview.py +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/printview.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/printview.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.py +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.qrc +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.py +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.py +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.py +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/util.py +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/util.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/spreadsheet/util.pyo +%%PYQT_EXAMPLESDIR%%/itemviews/stardelegate.py +%%PYQT_EXAMPLESDIR%%/itemviews/stardelegate.pyc +%%PYQT_EXAMPLESDIR%%/itemviews/stardelegate.pyo +%%PYQT_EXAMPLESDIR%%/layouts/README +%%PYQT_EXAMPLESDIR%%/layouts/basiclayouts.py +%%PYQT_EXAMPLESDIR%%/layouts/basiclayouts.pyc +%%PYQT_EXAMPLESDIR%%/layouts/basiclayouts.pyo +%%PYQT_EXAMPLESDIR%%/layouts/borderlayout.py +%%PYQT_EXAMPLESDIR%%/layouts/borderlayout.pyc +%%PYQT_EXAMPLESDIR%%/layouts/borderlayout.pyo +%%PYQT_EXAMPLESDIR%%/layouts/flowlayout.py +%%PYQT_EXAMPLESDIR%%/layouts/flowlayout.pyc +%%PYQT_EXAMPLESDIR%%/layouts/flowlayout.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/README +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application.py +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/application/application.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/copy.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/cut.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/open.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/paste.png +%%PYQT_EXAMPLESDIR%%/mainwindows/application/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.py +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.qrc +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.py +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/print.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/dockwidgets/images/undo.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/copy.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/cut.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/open.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/paste.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.py +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi.qrc +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.py +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/menus.py +%%PYQT_EXAMPLESDIR%%/mainwindows/menus.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/menus.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/recentfiles.py +%%PYQT_EXAMPLESDIR%%/mainwindows/recentfiles.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/recentfiles.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/copy.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/cut.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/new.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/open.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/paste.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/images/save.png +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.py +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi.qrc +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.py +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.pyo +%%PYQT_EXAMPLESDIR%%/mainwindows/separations.py +%%PYQT_EXAMPLESDIR%%/mainwindows/separations.pyc +%%PYQT_EXAMPLESDIR%%/mainwindows/separations.pyo +%%PYQT_EXAMPLESDIR%%/multimedia/README +%%PYQT_EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.py +%%PYQT_EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.pyc +%%PYQT_EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.pyo +%%PYQT_EXAMPLESDIR%%/multimedia/audiodevices/audiodevicesbase.ui +%%PYQT_EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.py +%%PYQT_EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.pyc +%%PYQT_EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.pyo +%%PYQT_EXAMPLESDIR%%/multimedia/audiooutput.py +%%PYQT_EXAMPLESDIR%%/multimedia/audiooutput.pyc +%%PYQT_EXAMPLESDIR%%/multimedia/audiooutput.pyo +%%PYQT_EXAMPLESDIR%%/multimediawidgets/README +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/camera.py +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/camera.pyc +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/camera.pyo +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/camera.ui +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/imagesettings.ui +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.py +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.pyc +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.pyo +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.py +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.pyc +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.pyo +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.py +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.pyc +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.pyo +%%PYQT_EXAMPLESDIR%%/multimediawidgets/camera/videosettings.ui +%%PYQT_EXAMPLESDIR%%/multimediawidgets/player.py +%%PYQT_EXAMPLESDIR%%/multimediawidgets/player.pyc +%%PYQT_EXAMPLESDIR%%/multimediawidgets/player.pyo +%%PYQT_EXAMPLESDIR%%/multimediawidgets/videographicsitem.py +%%PYQT_EXAMPLESDIR%%/multimediawidgets/videographicsitem.pyc +%%PYQT_EXAMPLESDIR%%/multimediawidgets/videographicsitem.pyo +%%PYQT_EXAMPLESDIR%%/multimediawidgets/videowidget.py +%%PYQT_EXAMPLESDIR%%/multimediawidgets/videowidget.pyc +%%PYQT_EXAMPLESDIR%%/multimediawidgets/videowidget.pyo +%%PYQT_EXAMPLESDIR%%/network/README +%%PYQT_EXAMPLESDIR%%/network/blockingfortuneclient.py +%%PYQT_EXAMPLESDIR%%/network/blockingfortuneclient.pyc +%%PYQT_EXAMPLESDIR%%/network/blockingfortuneclient.pyo +%%PYQT_EXAMPLESDIR%%/network/broadcastreceiver.py +%%PYQT_EXAMPLESDIR%%/network/broadcastreceiver.pyc +%%PYQT_EXAMPLESDIR%%/network/broadcastreceiver.pyo +%%PYQT_EXAMPLESDIR%%/network/broadcastsender.py +%%PYQT_EXAMPLESDIR%%/network/broadcastsender.pyc +%%PYQT_EXAMPLESDIR%%/network/broadcastsender.pyo +%%PYQT_EXAMPLESDIR%%/network/fortuneclient.py +%%PYQT_EXAMPLESDIR%%/network/fortuneclient.pyc +%%PYQT_EXAMPLESDIR%%/network/fortuneclient.pyo +%%PYQT_EXAMPLESDIR%%/network/fortuneserver.py +%%PYQT_EXAMPLESDIR%%/network/fortuneserver.pyc +%%PYQT_EXAMPLESDIR%%/network/fortuneserver.pyo +%%PYQT_EXAMPLESDIR%%/network/http/authenticationdialog.ui +%%PYQT_EXAMPLESDIR%%/network/http/http.py +%%PYQT_EXAMPLESDIR%%/network/http/http.pyc +%%PYQT_EXAMPLESDIR%%/network/http/http.pyo +%%PYQT_EXAMPLESDIR%%/network/lightmaps.py +%%PYQT_EXAMPLESDIR%%/network/lightmaps.pyc +%%PYQT_EXAMPLESDIR%%/network/lightmaps.pyo +%%PYQT_EXAMPLESDIR%%/network/loopback.py +%%PYQT_EXAMPLESDIR%%/network/loopback.pyc +%%PYQT_EXAMPLESDIR%%/network/loopback.pyo +%%PYQT_EXAMPLESDIR%%/network/threadedfortuneserver.py +%%PYQT_EXAMPLESDIR%%/network/threadedfortuneserver.pyc +%%PYQT_EXAMPLESDIR%%/network/threadedfortuneserver.pyo +%%PYQT_EXAMPLESDIR%%/opengl/2dpainting.py +%%PYQT_EXAMPLESDIR%%/opengl/2dpainting.pyc +%%PYQT_EXAMPLESDIR%%/opengl/2dpainting.pyo +%%PYQT_EXAMPLESDIR%%/opengl/README +%%PYQT_EXAMPLESDIR%%/opengl/grabber.py +%%PYQT_EXAMPLESDIR%%/opengl/grabber.pyc +%%PYQT_EXAMPLESDIR%%/opengl/grabber.pyo +%%PYQT_EXAMPLESDIR%%/opengl/hellogl.py +%%PYQT_EXAMPLESDIR%%/opengl/hellogl.pyc +%%PYQT_EXAMPLESDIR%%/opengl/hellogl.pyo +%%PYQT_EXAMPLESDIR%%/opengl/openglwindow.py +%%PYQT_EXAMPLESDIR%%/opengl/openglwindow.pyc +%%PYQT_EXAMPLESDIR%%/opengl/openglwindow.pyo +%%PYQT_EXAMPLESDIR%%/opengl/overpainting.py +%%PYQT_EXAMPLESDIR%%/opengl/overpainting.pyc +%%PYQT_EXAMPLESDIR%%/opengl/overpainting.pyo +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side1.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side2.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side3.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side4.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side5.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/images/side6.png +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures.py +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures.pyc +%%PYQT_EXAMPLESDIR%%/opengl/textures/textures.pyo +%%PYQT_EXAMPLESDIR%%/painting/README +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.py +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyc +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyo +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.qrc +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.py +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.pyc +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.pyo +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/images/brick.png +%%PYQT_EXAMPLESDIR%%/painting/basicdrawing/images/qt-logo.png +%%PYQT_EXAMPLESDIR%%/painting/concentriccircles.py +%%PYQT_EXAMPLESDIR%%/painting/concentriccircles.pyc +%%PYQT_EXAMPLESDIR%%/painting/concentriccircles.pyo +%%PYQT_EXAMPLESDIR%%/painting/painterpaths.py +%%PYQT_EXAMPLESDIR%%/painting/painterpaths.pyc +%%PYQT_EXAMPLESDIR%%/painting/painterpaths.pyo +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/files/bubbles.svg +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/files/cubic.svg +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/files/spheres.svg +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.py +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyc +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyo +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer.qrc +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.py +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.pyc +%%PYQT_EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.pyo +%%PYQT_EXAMPLESDIR%%/painting/transformations.py +%%PYQT_EXAMPLESDIR%%/painting/transformations.pyc +%%PYQT_EXAMPLESDIR%%/painting/transformations.pyo +%%PYQT_EXAMPLESDIR%%/pyuic/compile-on-the-fly.py +%%PYQT_EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyc +%%PYQT_EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyo +%%PYQT_EXAMPLESDIR%%/pyuic/demo.ui +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui1.py +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui1.pyc +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui1.pyo +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui2.py +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui2.pyc +%%PYQT_EXAMPLESDIR%%/pyuic/load_ui2.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/adding.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/adding.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/adding.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/attached.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/attached.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/attached.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/binding.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/binding.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/binding.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/coercion.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/coercion.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/coercion.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/default.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/default.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/default.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/grouped.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/grouped.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/grouped.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/methods.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/methods.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/methods.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/properties.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/properties.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/properties.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/signal.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/signal.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/signal.pyo +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/valuesource.py +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/valuesource.pyc +%%PYQT_EXAMPLESDIR%%/qml/referenceexamples/valuesource.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/colors.py +%%PYQT_EXAMPLESDIR%%/qtdemo/colors.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/colors.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/demoitem.py +%%PYQT_EXAMPLESDIR%%/qtdemo/demoitem.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/demoitem.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/demoitemanimation.py +%%PYQT_EXAMPLESDIR%%/qtdemo/demoitemanimation.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/demoitemanimation.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/demotextitem.py +%%PYQT_EXAMPLESDIR%%/qtdemo/demotextitem.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/demotextitem.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/examplecontent.py +%%PYQT_EXAMPLESDIR%%/qtdemo/examplecontent.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/examplecontent.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/examples.xml +%%PYQT_EXAMPLESDIR%%/qtdemo/guide.py +%%PYQT_EXAMPLESDIR%%/qtdemo/guide.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/guide.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/guidecircle.py +%%PYQT_EXAMPLESDIR%%/qtdemo/guidecircle.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/guidecircle.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/guideline.py +%%PYQT_EXAMPLESDIR%%/qtdemo/guideline.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/guideline.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/headingitem.py +%%PYQT_EXAMPLESDIR%%/qtdemo/headingitem.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/headingitem.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/imageitem.py +%%PYQT_EXAMPLESDIR%%/qtdemo/imageitem.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/imageitem.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/images/demobg.png +%%PYQT_EXAMPLESDIR%%/qtdemo/images/qtlogo_small.png +%%PYQT_EXAMPLESDIR%%/qtdemo/images/trolltech-logo.png +%%PYQT_EXAMPLESDIR%%/qtdemo/itemcircleanimation.py +%%PYQT_EXAMPLESDIR%%/qtdemo/itemcircleanimation.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/itemcircleanimation.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/letteritem.py +%%PYQT_EXAMPLESDIR%%/qtdemo/letteritem.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/letteritem.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/mainwindow.py +%%PYQT_EXAMPLESDIR%%/qtdemo/mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/menucontent.py +%%PYQT_EXAMPLESDIR%%/qtdemo/menucontent.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/menucontent.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/menumanager.py +%%PYQT_EXAMPLESDIR%%/qtdemo/menumanager.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/menumanager.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/qtdemo.py +%%PYQT_EXAMPLESDIR%%/qtdemo/qtdemo.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/qtdemo.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/scanitem.py +%%PYQT_EXAMPLESDIR%%/qtdemo/scanitem.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/scanitem.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/score.py +%%PYQT_EXAMPLESDIR%%/qtdemo/score.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/score.pyo +%%PYQT_EXAMPLESDIR%%/qtdemo/textbutton.py +%%PYQT_EXAMPLESDIR%%/qtdemo/textbutton.pyc +%%PYQT_EXAMPLESDIR%%/qtdemo/textbutton.pyo +%%PYQT_EXAMPLESDIR%%/quick/README +%%PYQT_EXAMPLESDIR%%/quick/animation/animation.py +%%PYQT_EXAMPLESDIR%%/quick/animation/animation.pyc +%%PYQT_EXAMPLESDIR%%/quick/animation/animation.pyo +%%PYQT_EXAMPLESDIR%%/quick/animation/animation.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/animation.qrc +%%PYQT_EXAMPLESDIR%%/quick/animation/animation_rc.py +%%PYQT_EXAMPLESDIR%%/quick/animation/animation_rc.pyc +%%PYQT_EXAMPLESDIR%%/quick/animation/animation_rc.pyo +%%PYQT_EXAMPLESDIR%%/quick/animation/basics/color-animation.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/basics/images/face-smile.png +%%PYQT_EXAMPLESDIR%%/quick/animation/basics/images/moon.png +%%PYQT_EXAMPLESDIR%%/quick/animation/basics/images/shadow.png +%%PYQT_EXAMPLESDIR%%/quick/animation/basics/images/star.png +%%PYQT_EXAMPLESDIR%%/quick/animation/basics/images/sun.png +%%PYQT_EXAMPLESDIR%%/quick/animation/basics/property-animation.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/behaviors/SideRect.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/behaviors/behavior-example.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/behaviors/tvtennis.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/behaviors/wigglytext.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/easing/easing.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/pathanimation/pathanimation.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/pathinterpolator/pathinterpolator.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/states/qt-logo.png +%%PYQT_EXAMPLESDIR%%/quick/animation/states/states.qml +%%PYQT_EXAMPLESDIR%%/quick/animation/states/transitions.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/bezierCurve/bezierCurve.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas.py +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas.pyc +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas.pyo +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas.qrc +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas_rc.py +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas_rc.pyc +%%PYQT_EXAMPLESDIR%%/quick/canvas/canvas_rc.pyo +%%PYQT_EXAMPLESDIR%%/quick/canvas/clip/clip.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/Button.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/ScrollBar.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/Slider.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/TitleBar.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/ToolBar.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/button-pressed.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/button.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/default.svg +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/gloss.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.sci +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/quit.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/stripes.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.sci +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.sci +%%PYQT_EXAMPLESDIR%%/quick/canvas/contents/qt-logo.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/quadraticCurveTo/quadraticCurveTo.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/roundedrect/roundedrect.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/smile/smile.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/squircle/squircle.png +%%PYQT_EXAMPLESDIR%%/quick/canvas/squircle/squircle.qml +%%PYQT_EXAMPLESDIR%%/quick/canvas/tiger/tiger.js +%%PYQT_EXAMPLESDIR%%/quick/canvas/tiger/tiger.qml +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.py +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pyc +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pyo +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.qrc +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.py +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.pyc +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.pyo +%%PYQT_EXAMPLESDIR%%/quick/models/abstractitemmodel/view.qml +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.py +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.pyc +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.pyo +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.qrc +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.py +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.pyc +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.pyo +%%PYQT_EXAMPLESDIR%%/quick/models/objectlistmodel/view.qml +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.py +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.pyc +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.pyo +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.qrc +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.py +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.pyc +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.pyo +%%PYQT_EXAMPLESDIR%%/quick/models/stringlistmodel/view.qml +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.py +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.pyc +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.pyo +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.qrc +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.py +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.pyc +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.pyo +%%PYQT_EXAMPLESDIR%%/quick/scenegraph/customgeometry/main.qml +%%PYQT_EXAMPLESDIR%%/quick/shared/Button.qml +%%PYQT_EXAMPLESDIR%%/quick/shared/LauncherList.qml +%%PYQT_EXAMPLESDIR%%/quick/shared/SimpleLauncherDelegate.qml +%%PYQT_EXAMPLESDIR%%/quick/shared/images/back.png +%%PYQT_EXAMPLESDIR%%/quick/shared/images/next.png +%%PYQT_EXAMPLESDIR%%/quick/shared/shared.qrc +%%PYQT_EXAMPLESDIR%%/quick/shared/shared_rc.py +%%PYQT_EXAMPLESDIR%%/quick/shared/shared_rc.pyc +%%PYQT_EXAMPLESDIR%%/quick/shared/shared_rc.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/app.qml +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/app.qml +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/app.qml +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/app.qml +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/app.qml +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.py +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.pyc +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.pyo +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/qmldir +%%PYQT_EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/app.qml +%%PYQT_EXAMPLESDIR%%/richtext/README +%%PYQT_EXAMPLESDIR%%/richtext/calendar.py +%%PYQT_EXAMPLESDIR%%/richtext/calendar.pyc +%%PYQT_EXAMPLESDIR%%/richtext/calendar.pyo +%%PYQT_EXAMPLESDIR%%/richtext/orderform.py +%%PYQT_EXAMPLESDIR%%/richtext/orderform.pyc +%%PYQT_EXAMPLESDIR%%/richtext/orderform.pyo +%%PYQT_EXAMPLESDIR%%/richtext/syntaxhighlighter.py +%%PYQT_EXAMPLESDIR%%/richtext/syntaxhighlighter.pyc +%%PYQT_EXAMPLESDIR%%/richtext/syntaxhighlighter.pyo +%%PYQT_EXAMPLESDIR%%/richtext/textedit/example.html +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/logo.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/logo32.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/editcopy.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/editcut.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/editpaste.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/editredo.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/editundo.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/exportpdf.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/filenew.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/fileopen.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/fileprint.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/filesave.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/textbold.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/textcenter.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/textitalic.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/textjustify.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/textleft.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/textright.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/textunder.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/zoomin.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/mac/zoomout.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/editcopy.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/editcut.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/editpaste.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/editredo.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/editundo.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/exportpdf.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/filenew.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/fileopen.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/fileprint.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/filesave.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/textbold.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/textcenter.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/textitalic.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/textjustify.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/textleft.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/textright.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/textunder.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/zoomin.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/images/win/zoomout.png +%%PYQT_EXAMPLESDIR%%/richtext/textedit/textedit.py +%%PYQT_EXAMPLESDIR%%/richtext/textedit/textedit.pyc +%%PYQT_EXAMPLESDIR%%/richtext/textedit/textedit.pyo +%%PYQT_EXAMPLESDIR%%/richtext/textedit/textedit.qrc +%%PYQT_EXAMPLESDIR%%/richtext/textedit/textedit_rc.py +%%PYQT_EXAMPLESDIR%%/richtext/textedit/textedit_rc.pyc +%%PYQT_EXAMPLESDIR%%/richtext/textedit/textedit_rc.pyo +%%PYQT_EXAMPLESDIR%%/richtext/textobject/files/heart.svg +%%PYQT_EXAMPLESDIR%%/richtext/textobject/textobject.py +%%PYQT_EXAMPLESDIR%%/richtext/textobject/textobject.pyc +%%PYQT_EXAMPLESDIR%%/richtext/textobject/textobject.pyo +%%PYQT_EXAMPLESDIR%%/sql/README +%%PYQT_EXAMPLESDIR%%/sql/cachedtable.py +%%PYQT_EXAMPLESDIR%%/sql/cachedtable.pyc +%%PYQT_EXAMPLESDIR%%/sql/cachedtable.pyo +%%PYQT_EXAMPLESDIR%%/sql/connection.py +%%PYQT_EXAMPLESDIR%%/sql/connection.pyc +%%PYQT_EXAMPLESDIR%%/sql/connection.pyo +%%PYQT_EXAMPLESDIR%%/sql/querymodel.py +%%PYQT_EXAMPLESDIR%%/sql/querymodel.pyc +%%PYQT_EXAMPLESDIR%%/sql/querymodel.pyo +%%PYQT_EXAMPLESDIR%%/sql/relationaltablemodel.py +%%PYQT_EXAMPLESDIR%%/sql/relationaltablemodel.pyc +%%PYQT_EXAMPLESDIR%%/sql/relationaltablemodel.pyo +%%PYQT_EXAMPLESDIR%%/sql/tablemodel.py +%%PYQT_EXAMPLESDIR%%/sql/tablemodel.pyc +%%PYQT_EXAMPLESDIR%%/sql/tablemodel.pyo +%%PYQT_EXAMPLESDIR%%/threads/README +%%PYQT_EXAMPLESDIR%%/threads/mandelbrot.py +%%PYQT_EXAMPLESDIR%%/threads/mandelbrot.pyc +%%PYQT_EXAMPLESDIR%%/threads/mandelbrot.pyo +%%PYQT_EXAMPLESDIR%%/threads/semaphores.py +%%PYQT_EXAMPLESDIR%%/threads/semaphores.pyc +%%PYQT_EXAMPLESDIR%%/threads/semaphores.pyo +%%PYQT_EXAMPLESDIR%%/threads/waitconditions.py +%%PYQT_EXAMPLESDIR%%/threads/waitconditions.pyc +%%PYQT_EXAMPLESDIR%%/threads/waitconditions.pyo +%%PYQT_EXAMPLESDIR%%/tools/README +%%PYQT_EXAMPLESDIR%%/tools/codecs/codecs.py +%%PYQT_EXAMPLESDIR%%/tools/codecs/codecs.pyc +%%PYQT_EXAMPLESDIR%%/tools/codecs/codecs.pyo +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-1.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-15.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16be.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16le.txt +%%PYQT_EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-8.txt +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.py +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyc +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyo +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter.qrc +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.py +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.pyc +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.pyo +%%PYQT_EXAMPLESDIR%%/tools/customcompleter/resources/wordlist.txt +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.py +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.pyc +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.pyo +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n.qrc +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc.py +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc.pyc +%%PYQT_EXAMPLESDIR%%/tools/i18n/i18n_rc.pyo +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_de.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_de.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_el.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_el.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_en.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_en.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_it.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_it.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_no.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_no.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.ts +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.qm +%%PYQT_EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.ts +%%PYQT_EXAMPLESDIR%%/tools/regexp.py +%%PYQT_EXAMPLESDIR%%/tools/regexp.pyc +%%PYQT_EXAMPLESDIR%%/tools/regexp.pyo +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/inifiles/licensepage.ini +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/inifiles/qsa.ini +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/settingseditor.py +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyc +%%PYQT_EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/README +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part1.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part1.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part1.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part2.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part2.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part2.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part3.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part3.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part3.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part4.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part4.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part4.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part5.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part5.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part5.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part6.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part6.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part6.pyo +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part7.py +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part7.pyc +%%PYQT_EXAMPLESDIR%%/tutorials/addressbook/part7.pyo +%%PYQT_EXAMPLESDIR%%/webkit/README +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/domtraversal.py +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyc +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyo +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/ui_window.py +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyc +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyo +%%PYQT_EXAMPLESDIR%%/webkit/domtraversal/window.ui +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.py +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyc +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyo +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery.min.js +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery.qrc +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.py +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.pyc +%%PYQT_EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.pyo +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/form.html +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.py +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.pyc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.pyo +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.qrc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor.ui +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.py +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.pyc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.pyo +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.py +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyc +%%PYQT_EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyo +%%PYQT_EXAMPLESDIR%%/webkit/framecapture.py +%%PYQT_EXAMPLESDIR%%/webkit/framecapture.pyc +%%PYQT_EXAMPLESDIR%%/webkit/framecapture.pyo +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.py +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.pyc +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.pyo +%%PYQT_EXAMPLESDIR%%/webkit/previewer/previewer.ui +%%PYQT_EXAMPLESDIR%%/webkit/previewer/ui_previewer.py +%%PYQT_EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyc +%%PYQT_EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyo +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/simpleselector.py +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyc +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyo +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/ui_window.py +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyc +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyo +%%PYQT_EXAMPLESDIR%%/webkit/simpleselector/window.ui +%%PYQT_EXAMPLESDIR%%/widgets/README +%%PYQT_EXAMPLESDIR%%/widgets/analogclock.py +%%PYQT_EXAMPLESDIR%%/widgets/analogclock.pyc +%%PYQT_EXAMPLESDIR%%/widgets/analogclock.pyo +%%PYQT_EXAMPLESDIR%%/widgets/calculator.py +%%PYQT_EXAMPLESDIR%%/widgets/calculator.pyc +%%PYQT_EXAMPLESDIR%%/widgets/calculator.pyo +%%PYQT_EXAMPLESDIR%%/widgets/calendarwidget.py +%%PYQT_EXAMPLESDIR%%/widgets/calendarwidget.pyc +%%PYQT_EXAMPLESDIR%%/widgets/calendarwidget.pyo +%%PYQT_EXAMPLESDIR%%/widgets/charactermap.py +%%PYQT_EXAMPLESDIR%%/widgets/charactermap.pyc +%%PYQT_EXAMPLESDIR%%/widgets/charactermap.pyo +%%PYQT_EXAMPLESDIR%%/widgets/digitalclock.py +%%PYQT_EXAMPLESDIR%%/widgets/digitalclock.pyc +%%PYQT_EXAMPLESDIR%%/widgets/digitalclock.pyo +%%PYQT_EXAMPLESDIR%%/widgets/groupbox.py +%%PYQT_EXAMPLESDIR%%/widgets/groupbox.pyc +%%PYQT_EXAMPLESDIR%%/widgets/groupbox.pyo +%%PYQT_EXAMPLESDIR%%/widgets/icons/icons.py +%%PYQT_EXAMPLESDIR%%/widgets/icons/icons.pyc +%%PYQT_EXAMPLESDIR%%/widgets/icons/icons.pyo +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/designer.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/find_disabled.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/find_normal.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_128x128.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_16x16.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_32x32.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_off_64x64.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_128x128.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_16x16.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_32x32.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/monkey_on_64x64.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/qt_extended_16x16.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/qt_extended_32x32.png +%%PYQT_EXAMPLESDIR%%/widgets/icons/images/qt_extended_48x48.png +%%PYQT_EXAMPLESDIR%%/widgets/imageviewer.py +%%PYQT_EXAMPLESDIR%%/widgets/imageviewer.pyc +%%PYQT_EXAMPLESDIR%%/widgets/imageviewer.pyo +%%PYQT_EXAMPLESDIR%%/widgets/lineedits.py +%%PYQT_EXAMPLESDIR%%/widgets/lineedits.pyc +%%PYQT_EXAMPLESDIR%%/widgets/lineedits.pyo +%%PYQT_EXAMPLESDIR%%/widgets/movie/animation.mng +%%PYQT_EXAMPLESDIR%%/widgets/movie/movie.py +%%PYQT_EXAMPLESDIR%%/widgets/movie/movie.pyc +%%PYQT_EXAMPLESDIR%%/widgets/movie/movie.pyo +%%PYQT_EXAMPLESDIR%%/widgets/scribble.py +%%PYQT_EXAMPLESDIR%%/widgets/scribble.pyc +%%PYQT_EXAMPLESDIR%%/widgets/scribble.pyo +%%PYQT_EXAMPLESDIR%%/widgets/shapedclock.py +%%PYQT_EXAMPLESDIR%%/widgets/shapedclock.pyc +%%PYQT_EXAMPLESDIR%%/widgets/shapedclock.pyo +%%PYQT_EXAMPLESDIR%%/widgets/sliders.py +%%PYQT_EXAMPLESDIR%%/widgets/sliders.pyc +%%PYQT_EXAMPLESDIR%%/widgets/sliders.pyo +%%PYQT_EXAMPLESDIR%%/widgets/spinboxes.py +%%PYQT_EXAMPLESDIR%%/widgets/spinboxes.pyc +%%PYQT_EXAMPLESDIR%%/widgets/spinboxes.pyo +%%PYQT_EXAMPLESDIR%%/widgets/styles.py +%%PYQT_EXAMPLESDIR%%/widgets/styles.pyc +%%PYQT_EXAMPLESDIR%%/widgets/styles.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow_disabled.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/frame.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pagefold.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/sizegrip.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown_off.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spindown_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup_hover.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup_off.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/spinup_pressed.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow_disabled.png +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/mainwindow.ui +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/qss/coffee.qss +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/qss/default.qss +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/qss/pagefold.qss +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet.qrc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.ui +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyo +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.py +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyc +%%PYQT_EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyo +%%PYQT_EXAMPLESDIR%%/widgets/tetrix.py +%%PYQT_EXAMPLESDIR%%/widgets/tetrix.pyc +%%PYQT_EXAMPLESDIR%%/widgets/tetrix.pyo +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/images/circle.png +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/images/square.png +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/images/triangle.png +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.py +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.pyc +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.pyo +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips.qrc +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.py +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.pyc +%%PYQT_EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.pyo +%%PYQT_EXAMPLESDIR%%/widgets/wiggly.py +%%PYQT_EXAMPLESDIR%%/widgets/wiggly.pyc +%%PYQT_EXAMPLESDIR%%/widgets/wiggly.pyo +%%PYQT_EXAMPLESDIR%%/widgets/windowflags.py +%%PYQT_EXAMPLESDIR%%/widgets/windowflags.pyc +%%PYQT_EXAMPLESDIR%%/widgets/windowflags.pyo +%%PYQT_EXAMPLESDIR%%/xmlpatterns/README +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/contact.xsd +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_contact.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_order.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_recipe.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/order.xsd +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/recipe.xsd +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/valid_contact.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/valid_order.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/files/valid_recipe.xml +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.py +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.pyc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.pyo +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.qrc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema.ui +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.py +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.pyc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.pyo +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.py +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyc +%%PYQT_EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyo Index: misc/py-qt5-doc/Makefile =================================================================== --- misc/py-qt5-doc/Makefile +++ misc/py-qt5-doc/Makefile @@ -2,6 +2,7 @@ PORTNAME= doc PORTVERSION= ${PYQT5_VERSION} +PORTREVISION= 1 CATEGORIES= misc devel python MASTER_SITES= ${MASTER_SITES_PYQT5} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- @@ -11,18 +12,23 @@ COMMENT= Python bindings for the Qt5 toolkit, documentation DISTINFO_FILE= ${PYQT_DISTINFO_FILE} + +NO_ARCH= yes NO_BUILD= yes USES= python pyqt:5 -USE_PYQT= # +USE_PYTHON= concurrent py3kplist -DOCSDIR= ${PREFIX}/share/doc/py-qt5 +# DOCSDIR gets overritten by concurrent, but UNIQUE_SUFFIX does not take... +# so do it manually. +PYQT_DOCSDIR= ${PREFIX}/${DOCDIR_REL} +PLIST_SUB+= PYQT_DOCSDIR="${PYQT_DOCSDIR}" do-install: cd ${WRKSRC} &&\ - ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ + ${MKDIR} ${STAGEDIR}${PYQT_DOCSDIR} &&\ ${INSTALL_DATA} NEWS LICENSE README\ - ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} + ${STAGEDIR}${PYQT_DOCSDIR} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${PYQT_DOCSDIR} .include Index: misc/py-qt5-doc/pkg-plist =================================================================== --- misc/py-qt5-doc/pkg-plist +++ misc/py-qt5-doc/pkg-plist @@ -1,2026 +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 +%%PYQT_DOCSDIR%%/LICENSE +%%PYQT_DOCSDIR%%/NEWS +%%PYQT_DOCSDIR%%/README +%%PYQT_DOCSDIR%%/html/_sources/api/enginio.txt +%%PYQT_DOCSDIR%%/html/_sources/api/enginioclient.txt +%%PYQT_DOCSDIR%%/html/_sources/api/enginioclientconnection.txt +%%PYQT_DOCSDIR%%/html/_sources/api/enginioidentity.txt +%%PYQT_DOCSDIR%%/html/_sources/api/enginiomodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/enginiooauth2authentication.txt +%%PYQT_DOCSDIR%%/html/_sources/api/enginioreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractanimation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstracteventdispatcher.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractextensionfactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractextensionmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractformbuilder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractgraphicsshapeitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractitemdelegate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractitemmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractitemview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractlistmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractmessagehandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractnativeeventfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractnetworkcache.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractprintdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractproxymodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractscrollarea.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractslider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractsocket.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractspinbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractstate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstracttablemodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstracttextdocumentlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstracttransition.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstracturiresolver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractvideobuffer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractvideosurface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractxmlnodemodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qabstractxmlreceiver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaccelerometer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaccelerometerfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaccelerometerreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaction.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qactionevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qactiongroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaltimeter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaltimeterfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaltimeterreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qambientlightfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qambientlightreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qambientlightsensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qambienttemperaturefilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qambienttemperaturereading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qambienttemperaturesensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qanimationgroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qapplication.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudio.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudiobuffer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudiodecoder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudiodeviceinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudioencodersettings.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudioformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudioinput.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudiooutput.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudioprobe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaudiorecorder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qauthenticator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaxbase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaxobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qaxwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbackingstore.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbasictimer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbitarray.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbitmap.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothaddress.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothdevicediscoveryagent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothdeviceinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothhostinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothlocaldevice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothserver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothservicediscoveryagent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothserviceinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothsocket.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothtransfermanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothtransferreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothtransferrequest.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbluetoothuuid.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qboxlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbrush.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbuffer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbuttongroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbytearray.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qbytearraymatcher.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcalendarwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcamera.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcameraexposure.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcamerafocus.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcamerafocuszone.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcameraimagecapture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcameraimageprocessing.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcamerainfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcameraviewfinder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcheckbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qchildevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qclipboard.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcloseevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcollator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcollatorsortkey.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcolor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcolordialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcolumnview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcombobox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcommandlineoption.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcommandlineparser.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcommandlinkbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcommonstyle.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcompass.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcompassfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcompassreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcompleter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qconicalgradient.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcontextmenuevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcoreapplication.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcryptographichash.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qcursor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdatastream.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdatawidgetmapper.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdateedit.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdatetime.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdatetimeedit.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbus.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusabstractadaptor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusabstractinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusargument.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusconnection.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusconnectioninterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbuserror.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusmessage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusobjectpath.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbuspendingcall.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbuspendingcallwatcher.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbuspendingreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusservicewatcher.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbussignature.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusunixfiledescriptor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdbusvariant.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesigneractioneditorinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignercontainerextension.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignercustomwidgetcollectioninterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignercustomwidgetinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerformeditorinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerformwindowcursorinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerformwindowinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerformwindowmanagerinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignermembersheetextension.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerobjectinspectorinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerpropertyeditorinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerpropertysheetextension.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignertaskmenuextension.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesignerwidgetboxinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesktopservices.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdesktopwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdial.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdialogbuttonbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdir.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdiriterator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdirmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdistancefilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdistancereading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdistancesensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdnsdomainnamerecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdnshostaddressrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdnslookup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdnsmailexchangerecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdnsservicerecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdnstextrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdockwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomattr.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomcdatasection.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomcharacterdata.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomcomment.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomdocument.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomdocumentfragment.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomdocumenttype.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomelement.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomentity.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomentityreference.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomimplementation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomnamednodemap.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomnode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomnodelist.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomnotation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomprocessinginstruction.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdomtext.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdoublespinbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdoublevalidator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdrag.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdragenterevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdragleaveevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdragmoveevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdropevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qdynamicpropertychangeevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qeasingcurve.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qelapsedtimer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qenterevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qerrormessage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qeventloop.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qeventlooplocker.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qeventtransition.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qexposeevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qextensionfactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qextensionmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfile.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfiledevice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfiledialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfileiconprovider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfileinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfileopenevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfileselector.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfilesystemmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfilesystemwatcher.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfinalstate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfocusevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfocusframe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfont.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfontcombobox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfontdatabase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfontdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfontinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfontmetrics.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qfontmetricsf.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qformbuilder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qformlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qframe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgenericargument.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgenericreturnargument.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoaddress.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoareamonitorinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoareamonitorsource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeocircle.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeocodereply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeocodingmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeocodingmanagerengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeocoordinate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeolocation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeomaneuver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeopositioninfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeopositioninfosource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeorectangle.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoroute.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoroutereply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeorouterequest.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoroutesegment.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoroutingmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoroutingmanagerengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeosatelliteinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeosatelliteinfosource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoserviceprovider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgeoshape.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgesture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgestureevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgesturerecognizer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgl.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qglcontext.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qglformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qglwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qglyphrun.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgradient.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsanchor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsanchorlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsblureffect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicscolorizeeffect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsdropshadoweffect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicseffect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsellipseitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsgridlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsitemgroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicslayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicslayoutitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicslinearlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicslineitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsopacityeffect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicspathitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicspixmapitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicspolygonitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsproxywidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsrectitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsrotation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscale.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscene.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscenecontextmenuevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscenedragdropevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicssceneevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscenehelpevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscenehoverevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscenemouseevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscenemoveevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicssceneresizeevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsscenewheelevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicssimpletextitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicssvgitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicstextitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicstransform.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsvideoitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicsview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicswebview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgraphicswidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgridlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgroupbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qguiapplication.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgyroscope.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgyroscopefilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qgyroscopereading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhboxlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qheaderview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpcontentitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpcontentmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpcontentwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpenginecore.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpindexmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpindexwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpsearchengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpsearchquery.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpsearchquerywidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhelpsearchresultwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhideevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhistorystate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qholsterfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qholsterreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qholstersensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhostaddress.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhostinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhoverevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhttpmultipart.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qhttppart.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qicon.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qicondragevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qiconengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qidentityproxymodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qimage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qimageencodersettings.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qimageiohandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qimagereader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qimagewriter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qinputdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qinputevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qinputmethod.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qinputmethodevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qinputmethodqueryevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qintvalidator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qiodevice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qirproximityfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qirproximityreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qirproximitysensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qitemdelegate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qitemeditorcreatorbase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qitemeditorfactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qitemselection.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qitemselectionmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qitemselectionrange.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsonarray.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsondocument.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsonobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsonparseerror.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsonvalue.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsvalue.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qjsvalueiterator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qkeyevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qkeyeventtransition.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qkeysequence.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qkeysequenceedit.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlabel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlayoutitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlcdnumber.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlibrary.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlibraryinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlightfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlightreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlightsensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qline.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlineargradient.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlineedit.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlinef.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlistview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlistwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlistwidgetitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlocale.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlocalserver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlocalsocket.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlocation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlockfile.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlowenergycharacteristic.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlowenergycontroller.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlowenergydescriptor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qlowenergyservice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmaccocoaviewcontainer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmacpasteboardmime.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmactoolbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmactoolbaritem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmagnetometer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmagnetometerfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmagnetometerreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmainwindow.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmargins.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmarginsf.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmaskgenerator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix2x2.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix2x3.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix2x4.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix3x2.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix3x3.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix3x4.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix4x2.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix4x3.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmatrix4x4.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmdiarea.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmdisubwindow.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediabindableinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediacontent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediacontrol.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediametadata.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediaobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediaplayer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediaplaylist.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediarecorder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediaresource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediaservice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediatimeinterval.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmediatimerange.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmenu.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmenubar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmessageauthenticationcode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmessagebox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmessagelogcontext.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmessagelogger.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmetaclassinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmetaenum.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmetamethod.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmetaobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmetaproperty.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmetatype.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmimedata.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmimedatabase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmimetype.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmodelindex.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmouseevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmouseeventtransition.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmoveevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmovie.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmultimedia.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmutex.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qmutexlocker.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qndeffilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qndefmessage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qndefnfciconrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qndefnfcsmartposterrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qndefnfctextrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qndefnfcurirecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qndefrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnearfieldmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnearfieldsharemanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnearfieldsharetarget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnearfieldtarget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkaccessmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkaddressentry.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkcachemetadata.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkconfiguration.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkconfigurationmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkcookie.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkcookiejar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkdiskcache.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkproxy.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkproxyfactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkproxyquery.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworkrequest.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnetworksession.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qnmeapositioninfosource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qobjectcleanuphandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qoffscreensurface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglbuffer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglcontext.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglcontextgroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopengldebuglogger.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopengldebugmessage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglframebufferobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglframebufferobjectformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglpaintdevice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglshader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglshaderprogram.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopengltexture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopengltimemonitor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopengltimerquery.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglvertexarrayobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qopenglwindow.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qorientationfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qorientationreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qorientationsensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpagedpaintdevice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpagelayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpagesetupdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpagesize.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpaintdevice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpaintdevicewindow.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpaintengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpaintenginestate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpainter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpainterpath.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpainterpathstroker.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpaintevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpalette.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpangesture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qparallelanimationgroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpauseanimation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpdfwriter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpen.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpersistentmodelindex.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpicture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpictureio.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpinchgesture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpixelformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpixmap.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpixmapcache.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplace.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceattribute.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacecategory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacecontactdetail.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacecontent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacecontentreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacecontentrequest.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacedetailsreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceeditorial.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceicon.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceidreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceimage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacemanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacemanagerengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacematchreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacematchrequest.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceproposedsearchresult.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceratings.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacereply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceresult.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacereview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacesearchreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacesearchrequest.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacesearchresult.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacesearchsuggestionreply.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplacesupplier.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaceuser.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaintextdocumentlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qplaintextedit.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpluginloader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpoint.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpointf.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpolygon.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpolygonf.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpressurefilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpressurereading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpressuresensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprintdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprintengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprinter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprinterinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprintpreviewdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprintpreviewwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprocess.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprocessenvironment.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprogressbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qprogressdialog.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpropertyanimation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qproximityfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qproximityreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qproximitysensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qproxystyle.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qpushbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlabstracturlinterceptor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlapplicationengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlcomponent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlcontext.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlerror.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlexpression.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlextensionplugin.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlfileselector.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlimageproviderbase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlincubator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlincubatorcontrol.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmllistproperty.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmllistreference.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlndefrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlnetworkaccessmanagerfactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlparserstatus.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlproperty.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlpropertymap.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlpropertyvaluesource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qqmlscriptstring.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquaternion.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickasyncimageprovider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickframebufferobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickimageprovider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickimageresponse.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickitemgrabresult.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickpainteditem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickrendercontrol.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquicktextdocument.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquicktexturefactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qquickwindow.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qradialgradient.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qradiobutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qradiodata.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qradiotuner.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrasterwindow.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrawfont.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qreadlocker.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qreadwritelock.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrectf.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qregexp.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qregexpvalidator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qregion.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qregularexpression.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qregularexpressionmatch.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qregularexpressionmatchiterator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qregularexpressionvalidator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qresizeevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qresource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrgba64.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrotationfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrotationreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrotationsensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrubberband.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qrunnable.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsavefile.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qscreen.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qscrollarea.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qscrollbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qscroller.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qscrollerproperties.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qscrollevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qscrollprepareevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsemaphore.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsensorfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsensorreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsequentialanimationgroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qserialport.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qserialportinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsessionmanager.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsettings.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgabstractrenderer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgbasicgeometrynode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgclipnode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgdynamictexture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgengine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgflatcolormaterial.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsggeometry.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsggeometrynode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgmaterial.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgmaterialshader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgmaterialtype.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgnode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgopacitynode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgopaquetexturematerial.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgsimplerectnode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgsimpletexturenode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgtexture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgtexturematerial.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgtextureprovider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgtransformnode.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsgvertexcolormaterial.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsharedmemory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qshortcut.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qshortcutevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qshowevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsignalblocker.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsignalmapper.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsignalspy.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsignaltransition.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsimplexmlnodemodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsize.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsizef.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsizegrip.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsizepolicy.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qslider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsocketnotifier.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsortfilterproxymodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsound.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsoundeffect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsourcelocation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qspaceritem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qspinbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsplashscreen.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsplitter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsplitterhandle.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsql.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqldatabase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqldriver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqldrivercreatorbase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlerror.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlfield.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlindex.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlquery.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlquerymodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlrecord.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlrelation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlrelationaldelegate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlrelationaltablemodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqlresult.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsqltablemodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qssl.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsslcertificate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsslcertificateextension.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsslcipher.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsslconfiguration.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsslerror.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsslkey.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsslsocket.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstackedlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstackedwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstandarditem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstandarditemmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstandardpaths.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstatemachine.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstatictext.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstatusbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstatustipevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstorageinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstringlistmodel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyle.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleditemdelegate.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstylefactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstylehintreturn.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstylehintreturnmask.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstylehintreturnvariant.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstylehints.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoption.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptioncombobox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptioncomplex.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiondockwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionfocusrect.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionframe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiongraphicsitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiongroupbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionheader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionmenuitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionprogressbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionrubberband.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionsizegrip.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionslider.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionspinbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiontab.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiontabbarbase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiontabwidgetframe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiontitlebar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiontoolbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiontoolbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptiontoolbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstyleoptionviewitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qstylepainter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsurface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsurfaceformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsvggenerator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsvgrenderer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsvgwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qswipegesture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsyntaxhighlighter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsysinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsystemsemaphore.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qsystemtrayicon.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qt.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtabbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtabletevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtableview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtablewidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtablewidgetitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtablewidgetselectionrange.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtabwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtapandholdgesture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtapfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtapgesture.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtapreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtapsensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtcpserver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtcpsocket.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtemporarydir.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtemporaryfile.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtest.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextblock.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextblockformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextblockgroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextblockuserdata.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextboundaryfinder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextbrowser.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextcharformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextcodec.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextcursor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextdecoder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextdocument.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextdocumentfragment.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextdocumentwriter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextedit.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextencoder.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextfragment.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextframe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextframeformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextimageformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextinlineobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextlength.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextline.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextlist.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextlistformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextobject.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextobjectinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextoption.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextstream.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtextstreammanipulator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtexttable.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtexttablecell.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtexttablecellformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtexttableformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qthread.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qthreadpool.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtiltfilter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtiltreading.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtiltsensor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtime.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtimeedit.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtimeline.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtimer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtimerevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtimezone.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtoolbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtoolbox.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtoolbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtooltip.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtouchdevice.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtouchevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtransform.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtranslator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtreeview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtreewidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtreewidgetitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtreewidgetitemiterator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qtwin.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qudpsocket.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qundocommand.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qundogroup.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qundostack.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qundoview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qurl.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qurlquery.txt +%%PYQT_DOCSDIR%%/html/_sources/api/quuid.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvalidator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvariant.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvariantanimation.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvboxlayout.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvector2d.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvector3d.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvector4d.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvideoencodersettings.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvideoframe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvideoprobe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvideosurfaceformat.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qvideowidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwaitcondition.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebchannel.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebchannelabstracttransport.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebdatabase.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebelement.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebelementcollection.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginecertificateerror.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginecookiestore.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginedownloaditem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginehistory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginehistoryitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginepage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebengineprofile.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginescript.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginescriptcollection.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebenginesettings.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebengineurlrequestinfo.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebengineurlrequestinterceptor.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebengineurlrequestjob.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebengineurlschemehandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebengineview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebframe.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebhistory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebhistoryinterface.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebhistoryitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebhittestresult.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebinspector.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebpage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebpluginfactory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebsecurityorigin.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebsettings.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebsocket.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebsocketcorsauthenticator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebsocketprotocol.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebsocketserver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwebview.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwhatsthis.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwhatsthisclickedevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwheelevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwidget.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwidgetaction.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwidgetitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwindow.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwindowstatechangeevent.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwinjumplist.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwinjumplistcategory.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwinjumplistitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwintaskbarbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwintaskbarprogress.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbar.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwinthumbnailtoolbutton.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwizard.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwizardpage.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qwritelocker.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qx11info.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlattributes.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlcontenthandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmldeclhandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmldefaulthandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmldtdhandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlentityresolver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlerrorhandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlformatter.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlinputsource.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlitem.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmllexicalhandler.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmllocator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlname.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlnamepool.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlnamespacesupport.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlnodemodelindex.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlparseexception.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlquery.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlreader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlresultitems.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlschema.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlschemavalidator.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlserializer.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlsimplereader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamattribute.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamattributes.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamentitydeclaration.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamentityresolver.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamnamespacedeclaration.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamnotationdeclaration.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamreader.txt +%%PYQT_DOCSDIR%%/html/_sources/api/qxmlstreamwriter.txt +%%PYQT_DOCSDIR%%/html/_sources/class_reference.txt +%%PYQT_DOCSDIR%%/html/_sources/dbus.txt +%%PYQT_DOCSDIR%%/html/_sources/deploy_commercial.txt +%%PYQT_DOCSDIR%%/html/_sources/deprecations.txt +%%PYQT_DOCSDIR%%/html/_sources/designer.txt +%%PYQT_DOCSDIR%%/html/_sources/extension_api.txt +%%PYQT_DOCSDIR%%/html/_sources/gotchas.txt +%%PYQT_DOCSDIR%%/html/_sources/i18n.txt +%%PYQT_DOCSDIR%%/html/_sources/incompatibilities.txt +%%PYQT_DOCSDIR%%/html/_sources/index.txt +%%PYQT_DOCSDIR%%/html/_sources/installation.txt +%%PYQT_DOCSDIR%%/html/_sources/introduction.txt +%%PYQT_DOCSDIR%%/html/_sources/metaobjects.txt +%%PYQT_DOCSDIR%%/html/_sources/multiinheritance.txt +%%PYQT_DOCSDIR%%/html/_sources/opengl.txt +%%PYQT_DOCSDIR%%/html/_sources/pickle.txt +%%PYQT_DOCSDIR%%/html/_sources/platforms.txt +%%PYQT_DOCSDIR%%/html/_sources/pyqt4_differences.txt +%%PYQT_DOCSDIR%%/html/_sources/pyqt_qsettings.txt +%%PYQT_DOCSDIR%%/html/_sources/pyqt_qvariant.txt +%%PYQT_DOCSDIR%%/html/_sources/python_shell.txt +%%PYQT_DOCSDIR%%/html/_sources/qml.txt +%%PYQT_DOCSDIR%%/html/_sources/qt_interfaces.txt +%%PYQT_DOCSDIR%%/html/_sources/qt_properties.txt +%%PYQT_DOCSDIR%%/html/_sources/resources.txt +%%PYQT_DOCSDIR%%/html/_sources/signals_slots.txt +%%PYQT_DOCSDIR%%/html/_static/ajax-loader.gif +%%PYQT_DOCSDIR%%/html/_static/basic.css +%%PYQT_DOCSDIR%%/html/_static/classic.css +%%PYQT_DOCSDIR%%/html/_static/comment-bright.png +%%PYQT_DOCSDIR%%/html/_static/comment-close.png +%%PYQT_DOCSDIR%%/html/_static/comment.png +%%PYQT_DOCSDIR%%/html/_static/doctools.js +%%PYQT_DOCSDIR%%/html/_static/down-pressed.png +%%PYQT_DOCSDIR%%/html/_static/down.png +%%PYQT_DOCSDIR%%/html/_static/file.png +%%PYQT_DOCSDIR%%/html/_static/jquery-1.11.1.js +%%PYQT_DOCSDIR%%/html/_static/jquery.js +%%PYQT_DOCSDIR%%/html/_static/logo.png +%%PYQT_DOCSDIR%%/html/_static/logo_tn.ico +%%PYQT_DOCSDIR%%/html/_static/minus.png +%%PYQT_DOCSDIR%%/html/_static/plus.png +%%PYQT_DOCSDIR%%/html/_static/pygments.css +%%PYQT_DOCSDIR%%/html/_static/searchtools.js +%%PYQT_DOCSDIR%%/html/_static/sidebar.js +%%PYQT_DOCSDIR%%/html/_static/underscore-1.3.1.js +%%PYQT_DOCSDIR%%/html/_static/underscore.js +%%PYQT_DOCSDIR%%/html/_static/up-pressed.png +%%PYQT_DOCSDIR%%/html/_static/up.png +%%PYQT_DOCSDIR%%/html/_static/websupport.js +%%PYQT_DOCSDIR%%/html/api/enginio.html +%%PYQT_DOCSDIR%%/html/api/enginioclient.html +%%PYQT_DOCSDIR%%/html/api/enginioclientconnection.html +%%PYQT_DOCSDIR%%/html/api/enginioidentity.html +%%PYQT_DOCSDIR%%/html/api/enginiomodel.html +%%PYQT_DOCSDIR%%/html/api/enginiooauth2authentication.html +%%PYQT_DOCSDIR%%/html/api/enginioreply.html +%%PYQT_DOCSDIR%%/html/api/qabstractanimation.html +%%PYQT_DOCSDIR%%/html/api/qabstractbutton.html +%%PYQT_DOCSDIR%%/html/api/qabstracteventdispatcher.html +%%PYQT_DOCSDIR%%/html/api/qabstractextensionfactory.html +%%PYQT_DOCSDIR%%/html/api/qabstractextensionmanager.html +%%PYQT_DOCSDIR%%/html/api/qabstractformbuilder.html +%%PYQT_DOCSDIR%%/html/api/qabstractgraphicsshapeitem.html +%%PYQT_DOCSDIR%%/html/api/qabstractitemdelegate.html +%%PYQT_DOCSDIR%%/html/api/qabstractitemmodel.html +%%PYQT_DOCSDIR%%/html/api/qabstractitemview.html +%%PYQT_DOCSDIR%%/html/api/qabstractlistmodel.html +%%PYQT_DOCSDIR%%/html/api/qabstractmessagehandler.html +%%PYQT_DOCSDIR%%/html/api/qabstractnativeeventfilter.html +%%PYQT_DOCSDIR%%/html/api/qabstractnetworkcache.html +%%PYQT_DOCSDIR%%/html/api/qabstractprintdialog.html +%%PYQT_DOCSDIR%%/html/api/qabstractproxymodel.html +%%PYQT_DOCSDIR%%/html/api/qabstractscrollarea.html +%%PYQT_DOCSDIR%%/html/api/qabstractslider.html +%%PYQT_DOCSDIR%%/html/api/qabstractsocket.html +%%PYQT_DOCSDIR%%/html/api/qabstractspinbox.html +%%PYQT_DOCSDIR%%/html/api/qabstractstate.html +%%PYQT_DOCSDIR%%/html/api/qabstracttablemodel.html +%%PYQT_DOCSDIR%%/html/api/qabstracttextdocumentlayout.html +%%PYQT_DOCSDIR%%/html/api/qabstracttransition.html +%%PYQT_DOCSDIR%%/html/api/qabstracturiresolver.html +%%PYQT_DOCSDIR%%/html/api/qabstractvideobuffer.html +%%PYQT_DOCSDIR%%/html/api/qabstractvideosurface.html +%%PYQT_DOCSDIR%%/html/api/qabstractxmlnodemodel.html +%%PYQT_DOCSDIR%%/html/api/qabstractxmlreceiver.html +%%PYQT_DOCSDIR%%/html/api/qaccelerometer.html +%%PYQT_DOCSDIR%%/html/api/qaccelerometerfilter.html +%%PYQT_DOCSDIR%%/html/api/qaccelerometerreading.html +%%PYQT_DOCSDIR%%/html/api/qaction.html +%%PYQT_DOCSDIR%%/html/api/qactionevent.html +%%PYQT_DOCSDIR%%/html/api/qactiongroup.html +%%PYQT_DOCSDIR%%/html/api/qaltimeter.html +%%PYQT_DOCSDIR%%/html/api/qaltimeterfilter.html +%%PYQT_DOCSDIR%%/html/api/qaltimeterreading.html +%%PYQT_DOCSDIR%%/html/api/qambientlightfilter.html +%%PYQT_DOCSDIR%%/html/api/qambientlightreading.html +%%PYQT_DOCSDIR%%/html/api/qambientlightsensor.html +%%PYQT_DOCSDIR%%/html/api/qambienttemperaturefilter.html +%%PYQT_DOCSDIR%%/html/api/qambienttemperaturereading.html +%%PYQT_DOCSDIR%%/html/api/qambienttemperaturesensor.html +%%PYQT_DOCSDIR%%/html/api/qanimationgroup.html +%%PYQT_DOCSDIR%%/html/api/qapplication.html +%%PYQT_DOCSDIR%%/html/api/qaudio.html +%%PYQT_DOCSDIR%%/html/api/qaudiobuffer.html +%%PYQT_DOCSDIR%%/html/api/qaudiodecoder.html +%%PYQT_DOCSDIR%%/html/api/qaudiodeviceinfo.html +%%PYQT_DOCSDIR%%/html/api/qaudioencodersettings.html +%%PYQT_DOCSDIR%%/html/api/qaudioformat.html +%%PYQT_DOCSDIR%%/html/api/qaudioinput.html +%%PYQT_DOCSDIR%%/html/api/qaudiooutput.html +%%PYQT_DOCSDIR%%/html/api/qaudioprobe.html +%%PYQT_DOCSDIR%%/html/api/qaudiorecorder.html +%%PYQT_DOCSDIR%%/html/api/qauthenticator.html +%%PYQT_DOCSDIR%%/html/api/qaxbase.html +%%PYQT_DOCSDIR%%/html/api/qaxobject.html +%%PYQT_DOCSDIR%%/html/api/qaxwidget.html +%%PYQT_DOCSDIR%%/html/api/qbackingstore.html +%%PYQT_DOCSDIR%%/html/api/qbasictimer.html +%%PYQT_DOCSDIR%%/html/api/qbitarray.html +%%PYQT_DOCSDIR%%/html/api/qbitmap.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothaddress.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothdevicediscoveryagent.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothdeviceinfo.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothhostinfo.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothlocaldevice.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothserver.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothservicediscoveryagent.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothserviceinfo.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothsocket.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothtransfermanager.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothtransferreply.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothtransferrequest.html +%%PYQT_DOCSDIR%%/html/api/qbluetoothuuid.html +%%PYQT_DOCSDIR%%/html/api/qboxlayout.html +%%PYQT_DOCSDIR%%/html/api/qbrush.html +%%PYQT_DOCSDIR%%/html/api/qbuffer.html +%%PYQT_DOCSDIR%%/html/api/qbuttongroup.html +%%PYQT_DOCSDIR%%/html/api/qbytearray.html +%%PYQT_DOCSDIR%%/html/api/qbytearraymatcher.html +%%PYQT_DOCSDIR%%/html/api/qcalendarwidget.html +%%PYQT_DOCSDIR%%/html/api/qcamera.html +%%PYQT_DOCSDIR%%/html/api/qcameraexposure.html +%%PYQT_DOCSDIR%%/html/api/qcamerafocus.html +%%PYQT_DOCSDIR%%/html/api/qcamerafocuszone.html +%%PYQT_DOCSDIR%%/html/api/qcameraimagecapture.html +%%PYQT_DOCSDIR%%/html/api/qcameraimageprocessing.html +%%PYQT_DOCSDIR%%/html/api/qcamerainfo.html +%%PYQT_DOCSDIR%%/html/api/qcameraviewfinder.html +%%PYQT_DOCSDIR%%/html/api/qcheckbox.html +%%PYQT_DOCSDIR%%/html/api/qchildevent.html +%%PYQT_DOCSDIR%%/html/api/qclipboard.html +%%PYQT_DOCSDIR%%/html/api/qcloseevent.html +%%PYQT_DOCSDIR%%/html/api/qcollator.html +%%PYQT_DOCSDIR%%/html/api/qcollatorsortkey.html +%%PYQT_DOCSDIR%%/html/api/qcolor.html +%%PYQT_DOCSDIR%%/html/api/qcolordialog.html +%%PYQT_DOCSDIR%%/html/api/qcolumnview.html +%%PYQT_DOCSDIR%%/html/api/qcombobox.html +%%PYQT_DOCSDIR%%/html/api/qcommandlineoption.html +%%PYQT_DOCSDIR%%/html/api/qcommandlineparser.html +%%PYQT_DOCSDIR%%/html/api/qcommandlinkbutton.html +%%PYQT_DOCSDIR%%/html/api/qcommonstyle.html +%%PYQT_DOCSDIR%%/html/api/qcompass.html +%%PYQT_DOCSDIR%%/html/api/qcompassfilter.html +%%PYQT_DOCSDIR%%/html/api/qcompassreading.html +%%PYQT_DOCSDIR%%/html/api/qcompleter.html +%%PYQT_DOCSDIR%%/html/api/qconicalgradient.html +%%PYQT_DOCSDIR%%/html/api/qcontextmenuevent.html +%%PYQT_DOCSDIR%%/html/api/qcoreapplication.html +%%PYQT_DOCSDIR%%/html/api/qcryptographichash.html +%%PYQT_DOCSDIR%%/html/api/qcursor.html +%%PYQT_DOCSDIR%%/html/api/qdatastream.html +%%PYQT_DOCSDIR%%/html/api/qdatawidgetmapper.html +%%PYQT_DOCSDIR%%/html/api/qdate.html +%%PYQT_DOCSDIR%%/html/api/qdateedit.html +%%PYQT_DOCSDIR%%/html/api/qdatetime.html +%%PYQT_DOCSDIR%%/html/api/qdatetimeedit.html +%%PYQT_DOCSDIR%%/html/api/qdbus.html +%%PYQT_DOCSDIR%%/html/api/qdbusabstractadaptor.html +%%PYQT_DOCSDIR%%/html/api/qdbusabstractinterface.html +%%PYQT_DOCSDIR%%/html/api/qdbusargument.html +%%PYQT_DOCSDIR%%/html/api/qdbusconnection.html +%%PYQT_DOCSDIR%%/html/api/qdbusconnectioninterface.html +%%PYQT_DOCSDIR%%/html/api/qdbuserror.html +%%PYQT_DOCSDIR%%/html/api/qdbusinterface.html +%%PYQT_DOCSDIR%%/html/api/qdbusmessage.html +%%PYQT_DOCSDIR%%/html/api/qdbusobjectpath.html +%%PYQT_DOCSDIR%%/html/api/qdbuspendingcall.html +%%PYQT_DOCSDIR%%/html/api/qdbuspendingcallwatcher.html +%%PYQT_DOCSDIR%%/html/api/qdbuspendingreply.html +%%PYQT_DOCSDIR%%/html/api/qdbusreply.html +%%PYQT_DOCSDIR%%/html/api/qdbusservicewatcher.html +%%PYQT_DOCSDIR%%/html/api/qdbussignature.html +%%PYQT_DOCSDIR%%/html/api/qdbusunixfiledescriptor.html +%%PYQT_DOCSDIR%%/html/api/qdbusvariant.html +%%PYQT_DOCSDIR%%/html/api/qdesigneractioneditorinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignercontainerextension.html +%%PYQT_DOCSDIR%%/html/api/qdesignercustomwidgetcollectioninterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignercustomwidgetinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignerformeditorinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignerformwindowcursorinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignerformwindowinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignerformwindowmanagerinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignermembersheetextension.html +%%PYQT_DOCSDIR%%/html/api/qdesignerobjectinspectorinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignerpropertyeditorinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesignerpropertysheetextension.html +%%PYQT_DOCSDIR%%/html/api/qdesignertaskmenuextension.html +%%PYQT_DOCSDIR%%/html/api/qdesignerwidgetboxinterface.html +%%PYQT_DOCSDIR%%/html/api/qdesktopservices.html +%%PYQT_DOCSDIR%%/html/api/qdesktopwidget.html +%%PYQT_DOCSDIR%%/html/api/qdial.html +%%PYQT_DOCSDIR%%/html/api/qdialog.html +%%PYQT_DOCSDIR%%/html/api/qdialogbuttonbox.html +%%PYQT_DOCSDIR%%/html/api/qdir.html +%%PYQT_DOCSDIR%%/html/api/qdiriterator.html +%%PYQT_DOCSDIR%%/html/api/qdirmodel.html +%%PYQT_DOCSDIR%%/html/api/qdistancefilter.html +%%PYQT_DOCSDIR%%/html/api/qdistancereading.html +%%PYQT_DOCSDIR%%/html/api/qdistancesensor.html +%%PYQT_DOCSDIR%%/html/api/qdnsdomainnamerecord.html +%%PYQT_DOCSDIR%%/html/api/qdnshostaddressrecord.html +%%PYQT_DOCSDIR%%/html/api/qdnslookup.html +%%PYQT_DOCSDIR%%/html/api/qdnsmailexchangerecord.html +%%PYQT_DOCSDIR%%/html/api/qdnsservicerecord.html +%%PYQT_DOCSDIR%%/html/api/qdnstextrecord.html +%%PYQT_DOCSDIR%%/html/api/qdockwidget.html +%%PYQT_DOCSDIR%%/html/api/qdomattr.html +%%PYQT_DOCSDIR%%/html/api/qdomcdatasection.html +%%PYQT_DOCSDIR%%/html/api/qdomcharacterdata.html +%%PYQT_DOCSDIR%%/html/api/qdomcomment.html +%%PYQT_DOCSDIR%%/html/api/qdomdocument.html +%%PYQT_DOCSDIR%%/html/api/qdomdocumentfragment.html +%%PYQT_DOCSDIR%%/html/api/qdomdocumenttype.html +%%PYQT_DOCSDIR%%/html/api/qdomelement.html +%%PYQT_DOCSDIR%%/html/api/qdomentity.html +%%PYQT_DOCSDIR%%/html/api/qdomentityreference.html +%%PYQT_DOCSDIR%%/html/api/qdomimplementation.html +%%PYQT_DOCSDIR%%/html/api/qdomnamednodemap.html +%%PYQT_DOCSDIR%%/html/api/qdomnode.html +%%PYQT_DOCSDIR%%/html/api/qdomnodelist.html +%%PYQT_DOCSDIR%%/html/api/qdomnotation.html +%%PYQT_DOCSDIR%%/html/api/qdomprocessinginstruction.html +%%PYQT_DOCSDIR%%/html/api/qdomtext.html +%%PYQT_DOCSDIR%%/html/api/qdoublespinbox.html +%%PYQT_DOCSDIR%%/html/api/qdoublevalidator.html +%%PYQT_DOCSDIR%%/html/api/qdrag.html +%%PYQT_DOCSDIR%%/html/api/qdragenterevent.html +%%PYQT_DOCSDIR%%/html/api/qdragleaveevent.html +%%PYQT_DOCSDIR%%/html/api/qdragmoveevent.html +%%PYQT_DOCSDIR%%/html/api/qdropevent.html +%%PYQT_DOCSDIR%%/html/api/qdynamicpropertychangeevent.html +%%PYQT_DOCSDIR%%/html/api/qeasingcurve.html +%%PYQT_DOCSDIR%%/html/api/qelapsedtimer.html +%%PYQT_DOCSDIR%%/html/api/qenterevent.html +%%PYQT_DOCSDIR%%/html/api/qerrormessage.html +%%PYQT_DOCSDIR%%/html/api/qevent.html +%%PYQT_DOCSDIR%%/html/api/qeventloop.html +%%PYQT_DOCSDIR%%/html/api/qeventlooplocker.html +%%PYQT_DOCSDIR%%/html/api/qeventtransition.html +%%PYQT_DOCSDIR%%/html/api/qexposeevent.html +%%PYQT_DOCSDIR%%/html/api/qextensionfactory.html +%%PYQT_DOCSDIR%%/html/api/qextensionmanager.html +%%PYQT_DOCSDIR%%/html/api/qfile.html +%%PYQT_DOCSDIR%%/html/api/qfiledevice.html +%%PYQT_DOCSDIR%%/html/api/qfiledialog.html +%%PYQT_DOCSDIR%%/html/api/qfileiconprovider.html +%%PYQT_DOCSDIR%%/html/api/qfileinfo.html +%%PYQT_DOCSDIR%%/html/api/qfileopenevent.html +%%PYQT_DOCSDIR%%/html/api/qfileselector.html +%%PYQT_DOCSDIR%%/html/api/qfilesystemmodel.html +%%PYQT_DOCSDIR%%/html/api/qfilesystemwatcher.html +%%PYQT_DOCSDIR%%/html/api/qfinalstate.html +%%PYQT_DOCSDIR%%/html/api/qfocusevent.html +%%PYQT_DOCSDIR%%/html/api/qfocusframe.html +%%PYQT_DOCSDIR%%/html/api/qfont.html +%%PYQT_DOCSDIR%%/html/api/qfontcombobox.html +%%PYQT_DOCSDIR%%/html/api/qfontdatabase.html +%%PYQT_DOCSDIR%%/html/api/qfontdialog.html +%%PYQT_DOCSDIR%%/html/api/qfontinfo.html +%%PYQT_DOCSDIR%%/html/api/qfontmetrics.html +%%PYQT_DOCSDIR%%/html/api/qfontmetricsf.html +%%PYQT_DOCSDIR%%/html/api/qformbuilder.html +%%PYQT_DOCSDIR%%/html/api/qformlayout.html +%%PYQT_DOCSDIR%%/html/api/qframe.html +%%PYQT_DOCSDIR%%/html/api/qgenericargument.html +%%PYQT_DOCSDIR%%/html/api/qgenericreturnargument.html +%%PYQT_DOCSDIR%%/html/api/qgeoaddress.html +%%PYQT_DOCSDIR%%/html/api/qgeoareamonitorinfo.html +%%PYQT_DOCSDIR%%/html/api/qgeoareamonitorsource.html +%%PYQT_DOCSDIR%%/html/api/qgeocircle.html +%%PYQT_DOCSDIR%%/html/api/qgeocodereply.html +%%PYQT_DOCSDIR%%/html/api/qgeocodingmanager.html +%%PYQT_DOCSDIR%%/html/api/qgeocodingmanagerengine.html +%%PYQT_DOCSDIR%%/html/api/qgeocoordinate.html +%%PYQT_DOCSDIR%%/html/api/qgeolocation.html +%%PYQT_DOCSDIR%%/html/api/qgeomaneuver.html +%%PYQT_DOCSDIR%%/html/api/qgeopositioninfo.html +%%PYQT_DOCSDIR%%/html/api/qgeopositioninfosource.html +%%PYQT_DOCSDIR%%/html/api/qgeorectangle.html +%%PYQT_DOCSDIR%%/html/api/qgeoroute.html +%%PYQT_DOCSDIR%%/html/api/qgeoroutereply.html +%%PYQT_DOCSDIR%%/html/api/qgeorouterequest.html +%%PYQT_DOCSDIR%%/html/api/qgeoroutesegment.html +%%PYQT_DOCSDIR%%/html/api/qgeoroutingmanager.html +%%PYQT_DOCSDIR%%/html/api/qgeoroutingmanagerengine.html +%%PYQT_DOCSDIR%%/html/api/qgeosatelliteinfo.html +%%PYQT_DOCSDIR%%/html/api/qgeosatelliteinfosource.html +%%PYQT_DOCSDIR%%/html/api/qgeoserviceprovider.html +%%PYQT_DOCSDIR%%/html/api/qgeoshape.html +%%PYQT_DOCSDIR%%/html/api/qgesture.html +%%PYQT_DOCSDIR%%/html/api/qgestureevent.html +%%PYQT_DOCSDIR%%/html/api/qgesturerecognizer.html +%%PYQT_DOCSDIR%%/html/api/qgl.html +%%PYQT_DOCSDIR%%/html/api/qglcontext.html +%%PYQT_DOCSDIR%%/html/api/qglformat.html +%%PYQT_DOCSDIR%%/html/api/qglwidget.html +%%PYQT_DOCSDIR%%/html/api/qglyphrun.html +%%PYQT_DOCSDIR%%/html/api/qgradient.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsanchor.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsanchorlayout.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsblureffect.html +%%PYQT_DOCSDIR%%/html/api/qgraphicscolorizeeffect.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsdropshadoweffect.html +%%PYQT_DOCSDIR%%/html/api/qgraphicseffect.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsellipseitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsgridlayout.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsitemgroup.html +%%PYQT_DOCSDIR%%/html/api/qgraphicslayout.html +%%PYQT_DOCSDIR%%/html/api/qgraphicslayoutitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicslinearlayout.html +%%PYQT_DOCSDIR%%/html/api/qgraphicslineitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsobject.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsopacityeffect.html +%%PYQT_DOCSDIR%%/html/api/qgraphicspathitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicspixmapitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicspolygonitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsproxywidget.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsrectitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsrotation.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscale.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscene.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscenecontextmenuevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscenedragdropevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicssceneevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscenehelpevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscenehoverevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscenemouseevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscenemoveevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicssceneresizeevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsscenewheelevent.html +%%PYQT_DOCSDIR%%/html/api/qgraphicssimpletextitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicssvgitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicstextitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicstransform.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsvideoitem.html +%%PYQT_DOCSDIR%%/html/api/qgraphicsview.html +%%PYQT_DOCSDIR%%/html/api/qgraphicswebview.html +%%PYQT_DOCSDIR%%/html/api/qgraphicswidget.html +%%PYQT_DOCSDIR%%/html/api/qgridlayout.html +%%PYQT_DOCSDIR%%/html/api/qgroupbox.html +%%PYQT_DOCSDIR%%/html/api/qguiapplication.html +%%PYQT_DOCSDIR%%/html/api/qgyroscope.html +%%PYQT_DOCSDIR%%/html/api/qgyroscopefilter.html +%%PYQT_DOCSDIR%%/html/api/qgyroscopereading.html +%%PYQT_DOCSDIR%%/html/api/qhboxlayout.html +%%PYQT_DOCSDIR%%/html/api/qheaderview.html +%%PYQT_DOCSDIR%%/html/api/qhelpcontentitem.html +%%PYQT_DOCSDIR%%/html/api/qhelpcontentmodel.html +%%PYQT_DOCSDIR%%/html/api/qhelpcontentwidget.html +%%PYQT_DOCSDIR%%/html/api/qhelpengine.html +%%PYQT_DOCSDIR%%/html/api/qhelpenginecore.html +%%PYQT_DOCSDIR%%/html/api/qhelpevent.html +%%PYQT_DOCSDIR%%/html/api/qhelpindexmodel.html +%%PYQT_DOCSDIR%%/html/api/qhelpindexwidget.html +%%PYQT_DOCSDIR%%/html/api/qhelpsearchengine.html +%%PYQT_DOCSDIR%%/html/api/qhelpsearchquery.html +%%PYQT_DOCSDIR%%/html/api/qhelpsearchquerywidget.html +%%PYQT_DOCSDIR%%/html/api/qhelpsearchresultwidget.html +%%PYQT_DOCSDIR%%/html/api/qhideevent.html +%%PYQT_DOCSDIR%%/html/api/qhistorystate.html +%%PYQT_DOCSDIR%%/html/api/qholsterfilter.html +%%PYQT_DOCSDIR%%/html/api/qholsterreading.html +%%PYQT_DOCSDIR%%/html/api/qholstersensor.html +%%PYQT_DOCSDIR%%/html/api/qhostaddress.html +%%PYQT_DOCSDIR%%/html/api/qhostinfo.html +%%PYQT_DOCSDIR%%/html/api/qhoverevent.html +%%PYQT_DOCSDIR%%/html/api/qhttpmultipart.html +%%PYQT_DOCSDIR%%/html/api/qhttppart.html +%%PYQT_DOCSDIR%%/html/api/qicon.html +%%PYQT_DOCSDIR%%/html/api/qicondragevent.html +%%PYQT_DOCSDIR%%/html/api/qiconengine.html +%%PYQT_DOCSDIR%%/html/api/qidentityproxymodel.html +%%PYQT_DOCSDIR%%/html/api/qimage.html +%%PYQT_DOCSDIR%%/html/api/qimageencodersettings.html +%%PYQT_DOCSDIR%%/html/api/qimageiohandler.html +%%PYQT_DOCSDIR%%/html/api/qimagereader.html +%%PYQT_DOCSDIR%%/html/api/qimagewriter.html +%%PYQT_DOCSDIR%%/html/api/qinputdialog.html +%%PYQT_DOCSDIR%%/html/api/qinputevent.html +%%PYQT_DOCSDIR%%/html/api/qinputmethod.html +%%PYQT_DOCSDIR%%/html/api/qinputmethodevent.html +%%PYQT_DOCSDIR%%/html/api/qinputmethodqueryevent.html +%%PYQT_DOCSDIR%%/html/api/qintvalidator.html +%%PYQT_DOCSDIR%%/html/api/qiodevice.html +%%PYQT_DOCSDIR%%/html/api/qirproximityfilter.html +%%PYQT_DOCSDIR%%/html/api/qirproximityreading.html +%%PYQT_DOCSDIR%%/html/api/qirproximitysensor.html +%%PYQT_DOCSDIR%%/html/api/qitemdelegate.html +%%PYQT_DOCSDIR%%/html/api/qitemeditorcreatorbase.html +%%PYQT_DOCSDIR%%/html/api/qitemeditorfactory.html +%%PYQT_DOCSDIR%%/html/api/qitemselection.html +%%PYQT_DOCSDIR%%/html/api/qitemselectionmodel.html +%%PYQT_DOCSDIR%%/html/api/qitemselectionrange.html +%%PYQT_DOCSDIR%%/html/api/qjsengine.html +%%PYQT_DOCSDIR%%/html/api/qjsonarray.html +%%PYQT_DOCSDIR%%/html/api/qjsondocument.html +%%PYQT_DOCSDIR%%/html/api/qjsonobject.html +%%PYQT_DOCSDIR%%/html/api/qjsonparseerror.html +%%PYQT_DOCSDIR%%/html/api/qjsonvalue.html +%%PYQT_DOCSDIR%%/html/api/qjsvalue.html +%%PYQT_DOCSDIR%%/html/api/qjsvalueiterator.html +%%PYQT_DOCSDIR%%/html/api/qkeyevent.html +%%PYQT_DOCSDIR%%/html/api/qkeyeventtransition.html +%%PYQT_DOCSDIR%%/html/api/qkeysequence.html +%%PYQT_DOCSDIR%%/html/api/qkeysequenceedit.html +%%PYQT_DOCSDIR%%/html/api/qlabel.html +%%PYQT_DOCSDIR%%/html/api/qlayout.html +%%PYQT_DOCSDIR%%/html/api/qlayoutitem.html +%%PYQT_DOCSDIR%%/html/api/qlcdnumber.html +%%PYQT_DOCSDIR%%/html/api/qlibrary.html +%%PYQT_DOCSDIR%%/html/api/qlibraryinfo.html +%%PYQT_DOCSDIR%%/html/api/qlightfilter.html +%%PYQT_DOCSDIR%%/html/api/qlightreading.html +%%PYQT_DOCSDIR%%/html/api/qlightsensor.html +%%PYQT_DOCSDIR%%/html/api/qline.html +%%PYQT_DOCSDIR%%/html/api/qlineargradient.html +%%PYQT_DOCSDIR%%/html/api/qlineedit.html +%%PYQT_DOCSDIR%%/html/api/qlinef.html +%%PYQT_DOCSDIR%%/html/api/qlistview.html +%%PYQT_DOCSDIR%%/html/api/qlistwidget.html +%%PYQT_DOCSDIR%%/html/api/qlistwidgetitem.html +%%PYQT_DOCSDIR%%/html/api/qlocale.html +%%PYQT_DOCSDIR%%/html/api/qlocalserver.html +%%PYQT_DOCSDIR%%/html/api/qlocalsocket.html +%%PYQT_DOCSDIR%%/html/api/qlocation.html +%%PYQT_DOCSDIR%%/html/api/qlockfile.html +%%PYQT_DOCSDIR%%/html/api/qlowenergycharacteristic.html +%%PYQT_DOCSDIR%%/html/api/qlowenergycontroller.html +%%PYQT_DOCSDIR%%/html/api/qlowenergydescriptor.html +%%PYQT_DOCSDIR%%/html/api/qlowenergyservice.html +%%PYQT_DOCSDIR%%/html/api/qmaccocoaviewcontainer.html +%%PYQT_DOCSDIR%%/html/api/qmacpasteboardmime.html +%%PYQT_DOCSDIR%%/html/api/qmactoolbar.html +%%PYQT_DOCSDIR%%/html/api/qmactoolbaritem.html +%%PYQT_DOCSDIR%%/html/api/qmagnetometer.html +%%PYQT_DOCSDIR%%/html/api/qmagnetometerfilter.html +%%PYQT_DOCSDIR%%/html/api/qmagnetometerreading.html +%%PYQT_DOCSDIR%%/html/api/qmainwindow.html +%%PYQT_DOCSDIR%%/html/api/qmargins.html +%%PYQT_DOCSDIR%%/html/api/qmarginsf.html +%%PYQT_DOCSDIR%%/html/api/qmaskgenerator.html +%%PYQT_DOCSDIR%%/html/api/qmatrix2x2.html +%%PYQT_DOCSDIR%%/html/api/qmatrix2x3.html +%%PYQT_DOCSDIR%%/html/api/qmatrix2x4.html +%%PYQT_DOCSDIR%%/html/api/qmatrix3x2.html +%%PYQT_DOCSDIR%%/html/api/qmatrix3x3.html +%%PYQT_DOCSDIR%%/html/api/qmatrix3x4.html +%%PYQT_DOCSDIR%%/html/api/qmatrix4x2.html +%%PYQT_DOCSDIR%%/html/api/qmatrix4x3.html +%%PYQT_DOCSDIR%%/html/api/qmatrix4x4.html +%%PYQT_DOCSDIR%%/html/api/qmdiarea.html +%%PYQT_DOCSDIR%%/html/api/qmdisubwindow.html +%%PYQT_DOCSDIR%%/html/api/qmediabindableinterface.html +%%PYQT_DOCSDIR%%/html/api/qmediacontent.html +%%PYQT_DOCSDIR%%/html/api/qmediacontrol.html +%%PYQT_DOCSDIR%%/html/api/qmediametadata.html +%%PYQT_DOCSDIR%%/html/api/qmediaobject.html +%%PYQT_DOCSDIR%%/html/api/qmediaplayer.html +%%PYQT_DOCSDIR%%/html/api/qmediaplaylist.html +%%PYQT_DOCSDIR%%/html/api/qmediarecorder.html +%%PYQT_DOCSDIR%%/html/api/qmediaresource.html +%%PYQT_DOCSDIR%%/html/api/qmediaservice.html +%%PYQT_DOCSDIR%%/html/api/qmediatimeinterval.html +%%PYQT_DOCSDIR%%/html/api/qmediatimerange.html +%%PYQT_DOCSDIR%%/html/api/qmenu.html +%%PYQT_DOCSDIR%%/html/api/qmenubar.html +%%PYQT_DOCSDIR%%/html/api/qmessageauthenticationcode.html +%%PYQT_DOCSDIR%%/html/api/qmessagebox.html +%%PYQT_DOCSDIR%%/html/api/qmessagelogcontext.html +%%PYQT_DOCSDIR%%/html/api/qmessagelogger.html +%%PYQT_DOCSDIR%%/html/api/qmetaclassinfo.html +%%PYQT_DOCSDIR%%/html/api/qmetaenum.html +%%PYQT_DOCSDIR%%/html/api/qmetamethod.html +%%PYQT_DOCSDIR%%/html/api/qmetaobject.html +%%PYQT_DOCSDIR%%/html/api/qmetaproperty.html +%%PYQT_DOCSDIR%%/html/api/qmetatype.html +%%PYQT_DOCSDIR%%/html/api/qmimedata.html +%%PYQT_DOCSDIR%%/html/api/qmimedatabase.html +%%PYQT_DOCSDIR%%/html/api/qmimetype.html +%%PYQT_DOCSDIR%%/html/api/qmodelindex.html +%%PYQT_DOCSDIR%%/html/api/qmouseevent.html +%%PYQT_DOCSDIR%%/html/api/qmouseeventtransition.html +%%PYQT_DOCSDIR%%/html/api/qmoveevent.html +%%PYQT_DOCSDIR%%/html/api/qmovie.html +%%PYQT_DOCSDIR%%/html/api/qmultimedia.html +%%PYQT_DOCSDIR%%/html/api/qmutex.html +%%PYQT_DOCSDIR%%/html/api/qmutexlocker.html +%%PYQT_DOCSDIR%%/html/api/qndeffilter.html +%%PYQT_DOCSDIR%%/html/api/qndefmessage.html +%%PYQT_DOCSDIR%%/html/api/qndefnfciconrecord.html +%%PYQT_DOCSDIR%%/html/api/qndefnfcsmartposterrecord.html +%%PYQT_DOCSDIR%%/html/api/qndefnfctextrecord.html +%%PYQT_DOCSDIR%%/html/api/qndefnfcurirecord.html +%%PYQT_DOCSDIR%%/html/api/qndefrecord.html +%%PYQT_DOCSDIR%%/html/api/qnearfieldmanager.html +%%PYQT_DOCSDIR%%/html/api/qnearfieldsharemanager.html +%%PYQT_DOCSDIR%%/html/api/qnearfieldsharetarget.html +%%PYQT_DOCSDIR%%/html/api/qnearfieldtarget.html +%%PYQT_DOCSDIR%%/html/api/qnetworkaccessmanager.html +%%PYQT_DOCSDIR%%/html/api/qnetworkaddressentry.html +%%PYQT_DOCSDIR%%/html/api/qnetworkcachemetadata.html +%%PYQT_DOCSDIR%%/html/api/qnetworkconfiguration.html +%%PYQT_DOCSDIR%%/html/api/qnetworkconfigurationmanager.html +%%PYQT_DOCSDIR%%/html/api/qnetworkcookie.html +%%PYQT_DOCSDIR%%/html/api/qnetworkcookiejar.html +%%PYQT_DOCSDIR%%/html/api/qnetworkdiskcache.html +%%PYQT_DOCSDIR%%/html/api/qnetworkinterface.html +%%PYQT_DOCSDIR%%/html/api/qnetworkproxy.html +%%PYQT_DOCSDIR%%/html/api/qnetworkproxyfactory.html +%%PYQT_DOCSDIR%%/html/api/qnetworkproxyquery.html +%%PYQT_DOCSDIR%%/html/api/qnetworkreply.html +%%PYQT_DOCSDIR%%/html/api/qnetworkrequest.html +%%PYQT_DOCSDIR%%/html/api/qnetworksession.html +%%PYQT_DOCSDIR%%/html/api/qnmeapositioninfosource.html +%%PYQT_DOCSDIR%%/html/api/qobject.html +%%PYQT_DOCSDIR%%/html/api/qobjectcleanuphandler.html +%%PYQT_DOCSDIR%%/html/api/qoffscreensurface.html +%%PYQT_DOCSDIR%%/html/api/qopenglbuffer.html +%%PYQT_DOCSDIR%%/html/api/qopenglcontext.html +%%PYQT_DOCSDIR%%/html/api/qopenglcontextgroup.html +%%PYQT_DOCSDIR%%/html/api/qopengldebuglogger.html +%%PYQT_DOCSDIR%%/html/api/qopengldebugmessage.html +%%PYQT_DOCSDIR%%/html/api/qopenglframebufferobject.html +%%PYQT_DOCSDIR%%/html/api/qopenglframebufferobjectformat.html +%%PYQT_DOCSDIR%%/html/api/qopenglpaintdevice.html +%%PYQT_DOCSDIR%%/html/api/qopenglshader.html +%%PYQT_DOCSDIR%%/html/api/qopenglshaderprogram.html +%%PYQT_DOCSDIR%%/html/api/qopengltexture.html +%%PYQT_DOCSDIR%%/html/api/qopengltimemonitor.html +%%PYQT_DOCSDIR%%/html/api/qopengltimerquery.html +%%PYQT_DOCSDIR%%/html/api/qopenglvertexarrayobject.html +%%PYQT_DOCSDIR%%/html/api/qopenglwidget.html +%%PYQT_DOCSDIR%%/html/api/qopenglwindow.html +%%PYQT_DOCSDIR%%/html/api/qorientationfilter.html +%%PYQT_DOCSDIR%%/html/api/qorientationreading.html +%%PYQT_DOCSDIR%%/html/api/qorientationsensor.html +%%PYQT_DOCSDIR%%/html/api/qpagedpaintdevice.html +%%PYQT_DOCSDIR%%/html/api/qpagelayout.html +%%PYQT_DOCSDIR%%/html/api/qpagesetupdialog.html +%%PYQT_DOCSDIR%%/html/api/qpagesize.html +%%PYQT_DOCSDIR%%/html/api/qpaintdevice.html +%%PYQT_DOCSDIR%%/html/api/qpaintdevicewindow.html +%%PYQT_DOCSDIR%%/html/api/qpaintengine.html +%%PYQT_DOCSDIR%%/html/api/qpaintenginestate.html +%%PYQT_DOCSDIR%%/html/api/qpainter.html +%%PYQT_DOCSDIR%%/html/api/qpainterpath.html +%%PYQT_DOCSDIR%%/html/api/qpainterpathstroker.html +%%PYQT_DOCSDIR%%/html/api/qpaintevent.html +%%PYQT_DOCSDIR%%/html/api/qpalette.html +%%PYQT_DOCSDIR%%/html/api/qpangesture.html +%%PYQT_DOCSDIR%%/html/api/qparallelanimationgroup.html +%%PYQT_DOCSDIR%%/html/api/qpauseanimation.html +%%PYQT_DOCSDIR%%/html/api/qpdfwriter.html +%%PYQT_DOCSDIR%%/html/api/qpen.html +%%PYQT_DOCSDIR%%/html/api/qpersistentmodelindex.html +%%PYQT_DOCSDIR%%/html/api/qpicture.html +%%PYQT_DOCSDIR%%/html/api/qpictureio.html +%%PYQT_DOCSDIR%%/html/api/qpinchgesture.html +%%PYQT_DOCSDIR%%/html/api/qpixelformat.html +%%PYQT_DOCSDIR%%/html/api/qpixmap.html +%%PYQT_DOCSDIR%%/html/api/qpixmapcache.html +%%PYQT_DOCSDIR%%/html/api/qplace.html +%%PYQT_DOCSDIR%%/html/api/qplaceattribute.html +%%PYQT_DOCSDIR%%/html/api/qplacecategory.html +%%PYQT_DOCSDIR%%/html/api/qplacecontactdetail.html +%%PYQT_DOCSDIR%%/html/api/qplacecontent.html +%%PYQT_DOCSDIR%%/html/api/qplacecontentreply.html +%%PYQT_DOCSDIR%%/html/api/qplacecontentrequest.html +%%PYQT_DOCSDIR%%/html/api/qplacedetailsreply.html +%%PYQT_DOCSDIR%%/html/api/qplaceeditorial.html +%%PYQT_DOCSDIR%%/html/api/qplaceicon.html +%%PYQT_DOCSDIR%%/html/api/qplaceidreply.html +%%PYQT_DOCSDIR%%/html/api/qplaceimage.html +%%PYQT_DOCSDIR%%/html/api/qplacemanager.html +%%PYQT_DOCSDIR%%/html/api/qplacemanagerengine.html +%%PYQT_DOCSDIR%%/html/api/qplacematchreply.html +%%PYQT_DOCSDIR%%/html/api/qplacematchrequest.html +%%PYQT_DOCSDIR%%/html/api/qplaceproposedsearchresult.html +%%PYQT_DOCSDIR%%/html/api/qplaceratings.html +%%PYQT_DOCSDIR%%/html/api/qplacereply.html +%%PYQT_DOCSDIR%%/html/api/qplaceresult.html +%%PYQT_DOCSDIR%%/html/api/qplacereview.html +%%PYQT_DOCSDIR%%/html/api/qplacesearchreply.html +%%PYQT_DOCSDIR%%/html/api/qplacesearchrequest.html +%%PYQT_DOCSDIR%%/html/api/qplacesearchresult.html +%%PYQT_DOCSDIR%%/html/api/qplacesearchsuggestionreply.html +%%PYQT_DOCSDIR%%/html/api/qplacesupplier.html +%%PYQT_DOCSDIR%%/html/api/qplaceuser.html +%%PYQT_DOCSDIR%%/html/api/qplaintextdocumentlayout.html +%%PYQT_DOCSDIR%%/html/api/qplaintextedit.html +%%PYQT_DOCSDIR%%/html/api/qpluginloader.html +%%PYQT_DOCSDIR%%/html/api/qpoint.html +%%PYQT_DOCSDIR%%/html/api/qpointf.html +%%PYQT_DOCSDIR%%/html/api/qpolygon.html +%%PYQT_DOCSDIR%%/html/api/qpolygonf.html +%%PYQT_DOCSDIR%%/html/api/qpressurefilter.html +%%PYQT_DOCSDIR%%/html/api/qpressurereading.html +%%PYQT_DOCSDIR%%/html/api/qpressuresensor.html +%%PYQT_DOCSDIR%%/html/api/qprintdialog.html +%%PYQT_DOCSDIR%%/html/api/qprintengine.html +%%PYQT_DOCSDIR%%/html/api/qprinter.html +%%PYQT_DOCSDIR%%/html/api/qprinterinfo.html +%%PYQT_DOCSDIR%%/html/api/qprintpreviewdialog.html +%%PYQT_DOCSDIR%%/html/api/qprintpreviewwidget.html +%%PYQT_DOCSDIR%%/html/api/qprocess.html +%%PYQT_DOCSDIR%%/html/api/qprocessenvironment.html +%%PYQT_DOCSDIR%%/html/api/qprogressbar.html +%%PYQT_DOCSDIR%%/html/api/qprogressdialog.html +%%PYQT_DOCSDIR%%/html/api/qpropertyanimation.html +%%PYQT_DOCSDIR%%/html/api/qproximityfilter.html +%%PYQT_DOCSDIR%%/html/api/qproximityreading.html +%%PYQT_DOCSDIR%%/html/api/qproximitysensor.html +%%PYQT_DOCSDIR%%/html/api/qproxystyle.html +%%PYQT_DOCSDIR%%/html/api/qpushbutton.html +%%PYQT_DOCSDIR%%/html/api/qqmlabstracturlinterceptor.html +%%PYQT_DOCSDIR%%/html/api/qqmlapplicationengine.html +%%PYQT_DOCSDIR%%/html/api/qqmlcomponent.html +%%PYQT_DOCSDIR%%/html/api/qqmlcontext.html +%%PYQT_DOCSDIR%%/html/api/qqmlengine.html +%%PYQT_DOCSDIR%%/html/api/qqmlerror.html +%%PYQT_DOCSDIR%%/html/api/qqmlexpression.html +%%PYQT_DOCSDIR%%/html/api/qqmlextensionplugin.html +%%PYQT_DOCSDIR%%/html/api/qqmlfileselector.html +%%PYQT_DOCSDIR%%/html/api/qqmlimageproviderbase.html +%%PYQT_DOCSDIR%%/html/api/qqmlincubator.html +%%PYQT_DOCSDIR%%/html/api/qqmlincubatorcontrol.html +%%PYQT_DOCSDIR%%/html/api/qqmllistproperty.html +%%PYQT_DOCSDIR%%/html/api/qqmllistreference.html +%%PYQT_DOCSDIR%%/html/api/qqmlndefrecord.html +%%PYQT_DOCSDIR%%/html/api/qqmlnetworkaccessmanagerfactory.html +%%PYQT_DOCSDIR%%/html/api/qqmlparserstatus.html +%%PYQT_DOCSDIR%%/html/api/qqmlproperty.html +%%PYQT_DOCSDIR%%/html/api/qqmlpropertymap.html +%%PYQT_DOCSDIR%%/html/api/qqmlpropertyvaluesource.html +%%PYQT_DOCSDIR%%/html/api/qqmlscriptstring.html +%%PYQT_DOCSDIR%%/html/api/qquaternion.html +%%PYQT_DOCSDIR%%/html/api/qquickasyncimageprovider.html +%%PYQT_DOCSDIR%%/html/api/qquickframebufferobject.html +%%PYQT_DOCSDIR%%/html/api/qquickimageprovider.html +%%PYQT_DOCSDIR%%/html/api/qquickimageresponse.html +%%PYQT_DOCSDIR%%/html/api/qquickitem.html +%%PYQT_DOCSDIR%%/html/api/qquickitemgrabresult.html +%%PYQT_DOCSDIR%%/html/api/qquickpainteditem.html +%%PYQT_DOCSDIR%%/html/api/qquickrendercontrol.html +%%PYQT_DOCSDIR%%/html/api/qquicktextdocument.html +%%PYQT_DOCSDIR%%/html/api/qquicktexturefactory.html +%%PYQT_DOCSDIR%%/html/api/qquickview.html +%%PYQT_DOCSDIR%%/html/api/qquickwidget.html +%%PYQT_DOCSDIR%%/html/api/qquickwindow.html +%%PYQT_DOCSDIR%%/html/api/qradialgradient.html +%%PYQT_DOCSDIR%%/html/api/qradiobutton.html +%%PYQT_DOCSDIR%%/html/api/qradiodata.html +%%PYQT_DOCSDIR%%/html/api/qradiotuner.html +%%PYQT_DOCSDIR%%/html/api/qrasterwindow.html +%%PYQT_DOCSDIR%%/html/api/qrawfont.html +%%PYQT_DOCSDIR%%/html/api/qreadlocker.html +%%PYQT_DOCSDIR%%/html/api/qreadwritelock.html +%%PYQT_DOCSDIR%%/html/api/qrect.html +%%PYQT_DOCSDIR%%/html/api/qrectf.html +%%PYQT_DOCSDIR%%/html/api/qregexp.html +%%PYQT_DOCSDIR%%/html/api/qregexpvalidator.html +%%PYQT_DOCSDIR%%/html/api/qregion.html +%%PYQT_DOCSDIR%%/html/api/qregularexpression.html +%%PYQT_DOCSDIR%%/html/api/qregularexpressionmatch.html +%%PYQT_DOCSDIR%%/html/api/qregularexpressionmatchiterator.html +%%PYQT_DOCSDIR%%/html/api/qregularexpressionvalidator.html +%%PYQT_DOCSDIR%%/html/api/qresizeevent.html +%%PYQT_DOCSDIR%%/html/api/qresource.html +%%PYQT_DOCSDIR%%/html/api/qrgba64.html +%%PYQT_DOCSDIR%%/html/api/qrotationfilter.html +%%PYQT_DOCSDIR%%/html/api/qrotationreading.html +%%PYQT_DOCSDIR%%/html/api/qrotationsensor.html +%%PYQT_DOCSDIR%%/html/api/qrubberband.html +%%PYQT_DOCSDIR%%/html/api/qrunnable.html +%%PYQT_DOCSDIR%%/html/api/qsavefile.html +%%PYQT_DOCSDIR%%/html/api/qscreen.html +%%PYQT_DOCSDIR%%/html/api/qscrollarea.html +%%PYQT_DOCSDIR%%/html/api/qscrollbar.html +%%PYQT_DOCSDIR%%/html/api/qscroller.html +%%PYQT_DOCSDIR%%/html/api/qscrollerproperties.html +%%PYQT_DOCSDIR%%/html/api/qscrollevent.html +%%PYQT_DOCSDIR%%/html/api/qscrollprepareevent.html +%%PYQT_DOCSDIR%%/html/api/qsemaphore.html +%%PYQT_DOCSDIR%%/html/api/qsensor.html +%%PYQT_DOCSDIR%%/html/api/qsensorfilter.html +%%PYQT_DOCSDIR%%/html/api/qsensorreading.html +%%PYQT_DOCSDIR%%/html/api/qsequentialanimationgroup.html +%%PYQT_DOCSDIR%%/html/api/qserialport.html +%%PYQT_DOCSDIR%%/html/api/qserialportinfo.html +%%PYQT_DOCSDIR%%/html/api/qsessionmanager.html +%%PYQT_DOCSDIR%%/html/api/qsettings.html +%%PYQT_DOCSDIR%%/html/api/qsgabstractrenderer.html +%%PYQT_DOCSDIR%%/html/api/qsgbasicgeometrynode.html +%%PYQT_DOCSDIR%%/html/api/qsgclipnode.html +%%PYQT_DOCSDIR%%/html/api/qsgdynamictexture.html +%%PYQT_DOCSDIR%%/html/api/qsgengine.html +%%PYQT_DOCSDIR%%/html/api/qsgflatcolormaterial.html +%%PYQT_DOCSDIR%%/html/api/qsggeometry.html +%%PYQT_DOCSDIR%%/html/api/qsggeometrynode.html +%%PYQT_DOCSDIR%%/html/api/qsgmaterial.html +%%PYQT_DOCSDIR%%/html/api/qsgmaterialshader.html +%%PYQT_DOCSDIR%%/html/api/qsgmaterialtype.html +%%PYQT_DOCSDIR%%/html/api/qsgnode.html +%%PYQT_DOCSDIR%%/html/api/qsgopacitynode.html +%%PYQT_DOCSDIR%%/html/api/qsgopaquetexturematerial.html +%%PYQT_DOCSDIR%%/html/api/qsgsimplerectnode.html +%%PYQT_DOCSDIR%%/html/api/qsgsimpletexturenode.html +%%PYQT_DOCSDIR%%/html/api/qsgtexture.html +%%PYQT_DOCSDIR%%/html/api/qsgtexturematerial.html +%%PYQT_DOCSDIR%%/html/api/qsgtextureprovider.html +%%PYQT_DOCSDIR%%/html/api/qsgtransformnode.html +%%PYQT_DOCSDIR%%/html/api/qsgvertexcolormaterial.html +%%PYQT_DOCSDIR%%/html/api/qsharedmemory.html +%%PYQT_DOCSDIR%%/html/api/qshortcut.html +%%PYQT_DOCSDIR%%/html/api/qshortcutevent.html +%%PYQT_DOCSDIR%%/html/api/qshowevent.html +%%PYQT_DOCSDIR%%/html/api/qsignalblocker.html +%%PYQT_DOCSDIR%%/html/api/qsignalmapper.html +%%PYQT_DOCSDIR%%/html/api/qsignalspy.html +%%PYQT_DOCSDIR%%/html/api/qsignaltransition.html +%%PYQT_DOCSDIR%%/html/api/qsimplexmlnodemodel.html +%%PYQT_DOCSDIR%%/html/api/qsize.html +%%PYQT_DOCSDIR%%/html/api/qsizef.html +%%PYQT_DOCSDIR%%/html/api/qsizegrip.html +%%PYQT_DOCSDIR%%/html/api/qsizepolicy.html +%%PYQT_DOCSDIR%%/html/api/qslider.html +%%PYQT_DOCSDIR%%/html/api/qsocketnotifier.html +%%PYQT_DOCSDIR%%/html/api/qsortfilterproxymodel.html +%%PYQT_DOCSDIR%%/html/api/qsound.html +%%PYQT_DOCSDIR%%/html/api/qsoundeffect.html +%%PYQT_DOCSDIR%%/html/api/qsourcelocation.html +%%PYQT_DOCSDIR%%/html/api/qspaceritem.html +%%PYQT_DOCSDIR%%/html/api/qspinbox.html +%%PYQT_DOCSDIR%%/html/api/qsplashscreen.html +%%PYQT_DOCSDIR%%/html/api/qsplitter.html +%%PYQT_DOCSDIR%%/html/api/qsplitterhandle.html +%%PYQT_DOCSDIR%%/html/api/qsql.html +%%PYQT_DOCSDIR%%/html/api/qsqldatabase.html +%%PYQT_DOCSDIR%%/html/api/qsqldriver.html +%%PYQT_DOCSDIR%%/html/api/qsqldrivercreatorbase.html +%%PYQT_DOCSDIR%%/html/api/qsqlerror.html +%%PYQT_DOCSDIR%%/html/api/qsqlfield.html +%%PYQT_DOCSDIR%%/html/api/qsqlindex.html +%%PYQT_DOCSDIR%%/html/api/qsqlquery.html +%%PYQT_DOCSDIR%%/html/api/qsqlquerymodel.html +%%PYQT_DOCSDIR%%/html/api/qsqlrecord.html +%%PYQT_DOCSDIR%%/html/api/qsqlrelation.html +%%PYQT_DOCSDIR%%/html/api/qsqlrelationaldelegate.html +%%PYQT_DOCSDIR%%/html/api/qsqlrelationaltablemodel.html +%%PYQT_DOCSDIR%%/html/api/qsqlresult.html +%%PYQT_DOCSDIR%%/html/api/qsqltablemodel.html +%%PYQT_DOCSDIR%%/html/api/qssl.html +%%PYQT_DOCSDIR%%/html/api/qsslcertificate.html +%%PYQT_DOCSDIR%%/html/api/qsslcertificateextension.html +%%PYQT_DOCSDIR%%/html/api/qsslcipher.html +%%PYQT_DOCSDIR%%/html/api/qsslconfiguration.html +%%PYQT_DOCSDIR%%/html/api/qsslerror.html +%%PYQT_DOCSDIR%%/html/api/qsslkey.html +%%PYQT_DOCSDIR%%/html/api/qsslsocket.html +%%PYQT_DOCSDIR%%/html/api/qstackedlayout.html +%%PYQT_DOCSDIR%%/html/api/qstackedwidget.html +%%PYQT_DOCSDIR%%/html/api/qstandarditem.html +%%PYQT_DOCSDIR%%/html/api/qstandarditemmodel.html +%%PYQT_DOCSDIR%%/html/api/qstandardpaths.html +%%PYQT_DOCSDIR%%/html/api/qstate.html +%%PYQT_DOCSDIR%%/html/api/qstatemachine.html +%%PYQT_DOCSDIR%%/html/api/qstatictext.html +%%PYQT_DOCSDIR%%/html/api/qstatusbar.html +%%PYQT_DOCSDIR%%/html/api/qstatustipevent.html +%%PYQT_DOCSDIR%%/html/api/qstorageinfo.html +%%PYQT_DOCSDIR%%/html/api/qstringlistmodel.html +%%PYQT_DOCSDIR%%/html/api/qstyle.html +%%PYQT_DOCSDIR%%/html/api/qstyleditemdelegate.html +%%PYQT_DOCSDIR%%/html/api/qstylefactory.html +%%PYQT_DOCSDIR%%/html/api/qstylehintreturn.html +%%PYQT_DOCSDIR%%/html/api/qstylehintreturnmask.html +%%PYQT_DOCSDIR%%/html/api/qstylehintreturnvariant.html +%%PYQT_DOCSDIR%%/html/api/qstylehints.html +%%PYQT_DOCSDIR%%/html/api/qstyleoption.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionbutton.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptioncombobox.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptioncomplex.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiondockwidget.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionfocusrect.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionframe.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiongraphicsitem.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiongroupbox.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionheader.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionmenuitem.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionprogressbar.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionrubberband.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionsizegrip.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionslider.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionspinbox.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiontab.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiontabbarbase.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiontabwidgetframe.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiontitlebar.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiontoolbar.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiontoolbox.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptiontoolbutton.html +%%PYQT_DOCSDIR%%/html/api/qstyleoptionviewitem.html +%%PYQT_DOCSDIR%%/html/api/qstylepainter.html +%%PYQT_DOCSDIR%%/html/api/qsurface.html +%%PYQT_DOCSDIR%%/html/api/qsurfaceformat.html +%%PYQT_DOCSDIR%%/html/api/qsvggenerator.html +%%PYQT_DOCSDIR%%/html/api/qsvgrenderer.html +%%PYQT_DOCSDIR%%/html/api/qsvgwidget.html +%%PYQT_DOCSDIR%%/html/api/qswipegesture.html +%%PYQT_DOCSDIR%%/html/api/qsyntaxhighlighter.html +%%PYQT_DOCSDIR%%/html/api/qsysinfo.html +%%PYQT_DOCSDIR%%/html/api/qsystemsemaphore.html +%%PYQT_DOCSDIR%%/html/api/qsystemtrayicon.html +%%PYQT_DOCSDIR%%/html/api/qt.html +%%PYQT_DOCSDIR%%/html/api/qtabbar.html +%%PYQT_DOCSDIR%%/html/api/qtabletevent.html +%%PYQT_DOCSDIR%%/html/api/qtableview.html +%%PYQT_DOCSDIR%%/html/api/qtablewidget.html +%%PYQT_DOCSDIR%%/html/api/qtablewidgetitem.html +%%PYQT_DOCSDIR%%/html/api/qtablewidgetselectionrange.html +%%PYQT_DOCSDIR%%/html/api/qtabwidget.html +%%PYQT_DOCSDIR%%/html/api/qtapandholdgesture.html +%%PYQT_DOCSDIR%%/html/api/qtapfilter.html +%%PYQT_DOCSDIR%%/html/api/qtapgesture.html +%%PYQT_DOCSDIR%%/html/api/qtapreading.html +%%PYQT_DOCSDIR%%/html/api/qtapsensor.html +%%PYQT_DOCSDIR%%/html/api/qtcpserver.html +%%PYQT_DOCSDIR%%/html/api/qtcpsocket.html +%%PYQT_DOCSDIR%%/html/api/qtemporarydir.html +%%PYQT_DOCSDIR%%/html/api/qtemporaryfile.html +%%PYQT_DOCSDIR%%/html/api/qtest.html +%%PYQT_DOCSDIR%%/html/api/qtextblock.html +%%PYQT_DOCSDIR%%/html/api/qtextblockformat.html +%%PYQT_DOCSDIR%%/html/api/qtextblockgroup.html +%%PYQT_DOCSDIR%%/html/api/qtextblockuserdata.html +%%PYQT_DOCSDIR%%/html/api/qtextboundaryfinder.html +%%PYQT_DOCSDIR%%/html/api/qtextbrowser.html +%%PYQT_DOCSDIR%%/html/api/qtextcharformat.html +%%PYQT_DOCSDIR%%/html/api/qtextcodec.html +%%PYQT_DOCSDIR%%/html/api/qtextcursor.html +%%PYQT_DOCSDIR%%/html/api/qtextdecoder.html +%%PYQT_DOCSDIR%%/html/api/qtextdocument.html +%%PYQT_DOCSDIR%%/html/api/qtextdocumentfragment.html +%%PYQT_DOCSDIR%%/html/api/qtextdocumentwriter.html +%%PYQT_DOCSDIR%%/html/api/qtextedit.html +%%PYQT_DOCSDIR%%/html/api/qtextencoder.html +%%PYQT_DOCSDIR%%/html/api/qtextformat.html +%%PYQT_DOCSDIR%%/html/api/qtextfragment.html +%%PYQT_DOCSDIR%%/html/api/qtextframe.html +%%PYQT_DOCSDIR%%/html/api/qtextframeformat.html +%%PYQT_DOCSDIR%%/html/api/qtextimageformat.html +%%PYQT_DOCSDIR%%/html/api/qtextinlineobject.html +%%PYQT_DOCSDIR%%/html/api/qtextitem.html +%%PYQT_DOCSDIR%%/html/api/qtextlayout.html +%%PYQT_DOCSDIR%%/html/api/qtextlength.html +%%PYQT_DOCSDIR%%/html/api/qtextline.html +%%PYQT_DOCSDIR%%/html/api/qtextlist.html +%%PYQT_DOCSDIR%%/html/api/qtextlistformat.html +%%PYQT_DOCSDIR%%/html/api/qtextobject.html +%%PYQT_DOCSDIR%%/html/api/qtextobjectinterface.html +%%PYQT_DOCSDIR%%/html/api/qtextoption.html +%%PYQT_DOCSDIR%%/html/api/qtextstream.html +%%PYQT_DOCSDIR%%/html/api/qtextstreammanipulator.html +%%PYQT_DOCSDIR%%/html/api/qtexttable.html +%%PYQT_DOCSDIR%%/html/api/qtexttablecell.html +%%PYQT_DOCSDIR%%/html/api/qtexttablecellformat.html +%%PYQT_DOCSDIR%%/html/api/qtexttableformat.html +%%PYQT_DOCSDIR%%/html/api/qthread.html +%%PYQT_DOCSDIR%%/html/api/qthreadpool.html +%%PYQT_DOCSDIR%%/html/api/qtiltfilter.html +%%PYQT_DOCSDIR%%/html/api/qtiltreading.html +%%PYQT_DOCSDIR%%/html/api/qtiltsensor.html +%%PYQT_DOCSDIR%%/html/api/qtime.html +%%PYQT_DOCSDIR%%/html/api/qtimeedit.html +%%PYQT_DOCSDIR%%/html/api/qtimeline.html +%%PYQT_DOCSDIR%%/html/api/qtimer.html +%%PYQT_DOCSDIR%%/html/api/qtimerevent.html +%%PYQT_DOCSDIR%%/html/api/qtimezone.html +%%PYQT_DOCSDIR%%/html/api/qtoolbar.html +%%PYQT_DOCSDIR%%/html/api/qtoolbox.html +%%PYQT_DOCSDIR%%/html/api/qtoolbutton.html +%%PYQT_DOCSDIR%%/html/api/qtooltip.html +%%PYQT_DOCSDIR%%/html/api/qtouchdevice.html +%%PYQT_DOCSDIR%%/html/api/qtouchevent.html +%%PYQT_DOCSDIR%%/html/api/qtransform.html +%%PYQT_DOCSDIR%%/html/api/qtranslator.html +%%PYQT_DOCSDIR%%/html/api/qtreeview.html +%%PYQT_DOCSDIR%%/html/api/qtreewidget.html +%%PYQT_DOCSDIR%%/html/api/qtreewidgetitem.html +%%PYQT_DOCSDIR%%/html/api/qtreewidgetitemiterator.html +%%PYQT_DOCSDIR%%/html/api/qtwin.html +%%PYQT_DOCSDIR%%/html/api/qudpsocket.html +%%PYQT_DOCSDIR%%/html/api/qundocommand.html +%%PYQT_DOCSDIR%%/html/api/qundogroup.html +%%PYQT_DOCSDIR%%/html/api/qundostack.html +%%PYQT_DOCSDIR%%/html/api/qundoview.html +%%PYQT_DOCSDIR%%/html/api/qurl.html +%%PYQT_DOCSDIR%%/html/api/qurlquery.html +%%PYQT_DOCSDIR%%/html/api/quuid.html +%%PYQT_DOCSDIR%%/html/api/qvalidator.html +%%PYQT_DOCSDIR%%/html/api/qvariant.html +%%PYQT_DOCSDIR%%/html/api/qvariantanimation.html +%%PYQT_DOCSDIR%%/html/api/qvboxlayout.html +%%PYQT_DOCSDIR%%/html/api/qvector2d.html +%%PYQT_DOCSDIR%%/html/api/qvector3d.html +%%PYQT_DOCSDIR%%/html/api/qvector4d.html +%%PYQT_DOCSDIR%%/html/api/qvideoencodersettings.html +%%PYQT_DOCSDIR%%/html/api/qvideoframe.html +%%PYQT_DOCSDIR%%/html/api/qvideoprobe.html +%%PYQT_DOCSDIR%%/html/api/qvideosurfaceformat.html +%%PYQT_DOCSDIR%%/html/api/qvideowidget.html +%%PYQT_DOCSDIR%%/html/api/qwaitcondition.html +%%PYQT_DOCSDIR%%/html/api/qwebchannel.html +%%PYQT_DOCSDIR%%/html/api/qwebchannelabstracttransport.html +%%PYQT_DOCSDIR%%/html/api/qwebdatabase.html +%%PYQT_DOCSDIR%%/html/api/qwebelement.html +%%PYQT_DOCSDIR%%/html/api/qwebelementcollection.html +%%PYQT_DOCSDIR%%/html/api/qwebenginecertificateerror.html +%%PYQT_DOCSDIR%%/html/api/qwebenginecookiestore.html +%%PYQT_DOCSDIR%%/html/api/qwebenginedownloaditem.html +%%PYQT_DOCSDIR%%/html/api/qwebenginehistory.html +%%PYQT_DOCSDIR%%/html/api/qwebenginehistoryitem.html +%%PYQT_DOCSDIR%%/html/api/qwebenginepage.html +%%PYQT_DOCSDIR%%/html/api/qwebengineprofile.html +%%PYQT_DOCSDIR%%/html/api/qwebenginescript.html +%%PYQT_DOCSDIR%%/html/api/qwebenginescriptcollection.html +%%PYQT_DOCSDIR%%/html/api/qwebenginesettings.html +%%PYQT_DOCSDIR%%/html/api/qwebengineurlrequestinfo.html +%%PYQT_DOCSDIR%%/html/api/qwebengineurlrequestinterceptor.html +%%PYQT_DOCSDIR%%/html/api/qwebengineurlrequestjob.html +%%PYQT_DOCSDIR%%/html/api/qwebengineurlschemehandler.html +%%PYQT_DOCSDIR%%/html/api/qwebengineview.html +%%PYQT_DOCSDIR%%/html/api/qwebframe.html +%%PYQT_DOCSDIR%%/html/api/qwebhistory.html +%%PYQT_DOCSDIR%%/html/api/qwebhistoryinterface.html +%%PYQT_DOCSDIR%%/html/api/qwebhistoryitem.html +%%PYQT_DOCSDIR%%/html/api/qwebhittestresult.html +%%PYQT_DOCSDIR%%/html/api/qwebinspector.html +%%PYQT_DOCSDIR%%/html/api/qwebpage.html +%%PYQT_DOCSDIR%%/html/api/qwebpluginfactory.html +%%PYQT_DOCSDIR%%/html/api/qwebsecurityorigin.html +%%PYQT_DOCSDIR%%/html/api/qwebsettings.html +%%PYQT_DOCSDIR%%/html/api/qwebsocket.html +%%PYQT_DOCSDIR%%/html/api/qwebsocketcorsauthenticator.html +%%PYQT_DOCSDIR%%/html/api/qwebsocketprotocol.html +%%PYQT_DOCSDIR%%/html/api/qwebsocketserver.html +%%PYQT_DOCSDIR%%/html/api/qwebview.html +%%PYQT_DOCSDIR%%/html/api/qwhatsthis.html +%%PYQT_DOCSDIR%%/html/api/qwhatsthisclickedevent.html +%%PYQT_DOCSDIR%%/html/api/qwheelevent.html +%%PYQT_DOCSDIR%%/html/api/qwidget.html +%%PYQT_DOCSDIR%%/html/api/qwidgetaction.html +%%PYQT_DOCSDIR%%/html/api/qwidgetitem.html +%%PYQT_DOCSDIR%%/html/api/qwindow.html +%%PYQT_DOCSDIR%%/html/api/qwindowstatechangeevent.html +%%PYQT_DOCSDIR%%/html/api/qwinjumplist.html +%%PYQT_DOCSDIR%%/html/api/qwinjumplistcategory.html +%%PYQT_DOCSDIR%%/html/api/qwinjumplistitem.html +%%PYQT_DOCSDIR%%/html/api/qwintaskbarbutton.html +%%PYQT_DOCSDIR%%/html/api/qwintaskbarprogress.html +%%PYQT_DOCSDIR%%/html/api/qwinthumbnailtoolbar.html +%%PYQT_DOCSDIR%%/html/api/qwinthumbnailtoolbutton.html +%%PYQT_DOCSDIR%%/html/api/qwizard.html +%%PYQT_DOCSDIR%%/html/api/qwizardpage.html +%%PYQT_DOCSDIR%%/html/api/qwritelocker.html +%%PYQT_DOCSDIR%%/html/api/qx11info.html +%%PYQT_DOCSDIR%%/html/api/qxmlattributes.html +%%PYQT_DOCSDIR%%/html/api/qxmlcontenthandler.html +%%PYQT_DOCSDIR%%/html/api/qxmldeclhandler.html +%%PYQT_DOCSDIR%%/html/api/qxmldefaulthandler.html +%%PYQT_DOCSDIR%%/html/api/qxmldtdhandler.html +%%PYQT_DOCSDIR%%/html/api/qxmlentityresolver.html +%%PYQT_DOCSDIR%%/html/api/qxmlerrorhandler.html +%%PYQT_DOCSDIR%%/html/api/qxmlformatter.html +%%PYQT_DOCSDIR%%/html/api/qxmlinputsource.html +%%PYQT_DOCSDIR%%/html/api/qxmlitem.html +%%PYQT_DOCSDIR%%/html/api/qxmllexicalhandler.html +%%PYQT_DOCSDIR%%/html/api/qxmllocator.html +%%PYQT_DOCSDIR%%/html/api/qxmlname.html +%%PYQT_DOCSDIR%%/html/api/qxmlnamepool.html +%%PYQT_DOCSDIR%%/html/api/qxmlnamespacesupport.html +%%PYQT_DOCSDIR%%/html/api/qxmlnodemodelindex.html +%%PYQT_DOCSDIR%%/html/api/qxmlparseexception.html +%%PYQT_DOCSDIR%%/html/api/qxmlquery.html +%%PYQT_DOCSDIR%%/html/api/qxmlreader.html +%%PYQT_DOCSDIR%%/html/api/qxmlresultitems.html +%%PYQT_DOCSDIR%%/html/api/qxmlschema.html +%%PYQT_DOCSDIR%%/html/api/qxmlschemavalidator.html +%%PYQT_DOCSDIR%%/html/api/qxmlserializer.html +%%PYQT_DOCSDIR%%/html/api/qxmlsimplereader.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamattribute.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamattributes.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamentitydeclaration.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamentityresolver.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamnamespacedeclaration.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamnotationdeclaration.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamreader.html +%%PYQT_DOCSDIR%%/html/api/qxmlstreamwriter.html +%%PYQT_DOCSDIR%%/html/class_reference.html +%%PYQT_DOCSDIR%%/html/dbus.html +%%PYQT_DOCSDIR%%/html/deploy_commercial.html +%%PYQT_DOCSDIR%%/html/deprecations.html +%%PYQT_DOCSDIR%%/html/designer.html +%%PYQT_DOCSDIR%%/html/extension_api.html +%%PYQT_DOCSDIR%%/html/genindex.html +%%PYQT_DOCSDIR%%/html/gotchas.html +%%PYQT_DOCSDIR%%/html/i18n.html +%%PYQT_DOCSDIR%%/html/incompatibilities.html +%%PYQT_DOCSDIR%%/html/index.html +%%PYQT_DOCSDIR%%/html/installation.html +%%PYQT_DOCSDIR%%/html/introduction.html +%%PYQT_DOCSDIR%%/html/metaobjects.html +%%PYQT_DOCSDIR%%/html/multiinheritance.html +%%PYQT_DOCSDIR%%/html/objects.inv +%%PYQT_DOCSDIR%%/html/opengl.html +%%PYQT_DOCSDIR%%/html/pickle.html +%%PYQT_DOCSDIR%%/html/platforms.html +%%PYQT_DOCSDIR%%/html/py-modindex.html +%%PYQT_DOCSDIR%%/html/pyqt4_differences.html +%%PYQT_DOCSDIR%%/html/pyqt_qsettings.html +%%PYQT_DOCSDIR%%/html/pyqt_qvariant.html +%%PYQT_DOCSDIR%%/html/python_shell.html +%%PYQT_DOCSDIR%%/html/qml.html +%%PYQT_DOCSDIR%%/html/qt_interfaces.html +%%PYQT_DOCSDIR%%/html/qt_properties.html +%%PYQT_DOCSDIR%%/html/resources.html +%%PYQT_DOCSDIR%%/html/search.html +%%PYQT_DOCSDIR%%/html/searchindex.js +%%PYQT_DOCSDIR%%/html/signals_slots.html Index: multimedia/py-qt4-multimedia/Makefile =================================================================== --- multimedia/py-qt4-multimedia/Makefile +++ multimedia/py-qt4-multimedia/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= multimedia +PORTREVISION= 1 CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui multimedia moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtMultimedia API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: multimedia/py-qt4-multimedia/pkg-plist =================================================================== --- multimedia/py-qt4-multimedia/pkg-plist +++ multimedia/py-qt4-multimedia/pkg-plist @@ -9,4 +9,4 @@ %%PYQT_SIPDIR%%/QtMultimedia/qaudiooutput.sip %%PYQT_SIPDIR%%/QtMultimedia/qvideoframe.sip %%PYQT_SIPDIR%%/QtMultimedia/qvideosurfaceformat.sip -%%API%%share/qt4/qsci/api/python/QtMultimedia.api +%%API%%%%PYQT_APIDIR%%/api/python/QtMultimedia.api Index: multimedia/py-qt4-phonon/Makefile =================================================================== --- multimedia/py-qt4-phonon/Makefile +++ multimedia/py-qt4-phonon/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= phonon +PORTREVISION= 1 CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui phonon moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -18,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install Phonon API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: multimedia/py-qt4-phonon/pkg-plist =================================================================== --- multimedia/py-qt4-phonon/pkg-plist +++ multimedia/py-qt4-phonon/pkg-plist @@ -18,4 +18,4 @@ %%PYQT_SIPDIR%%/phonon/videoplayer.sip %%PYQT_SIPDIR%%/phonon/videowidget.sip %%PYQT_SIPDIR%%/phonon/volumeslider.sip -%%API%%share/qt4/qsci/api/python/phonon.api +%%API%%%%PYQT_APIDIR%%/api/python/phonon.api Index: multimedia/py-qt5-multimedia/Makefile =================================================================== --- multimedia/py-qt5-multimedia/Makefile +++ multimedia/py-qt5-multimedia/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= multimedia +PORTREVISION= 1 CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run network_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui multimedia network qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtMultimedia API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: multimedia/py-qt5-multimedia/pkg-plist =================================================================== --- multimedia/py-qt5-multimedia/pkg-plist +++ multimedia/py-qt5-multimedia/pkg-plist @@ -40,4 +40,4 @@ %%PYQT_SIPDIR%%/QtMultimedia/qvideoframe.sip %%PYQT_SIPDIR%%/QtMultimedia/qvideoprobe.sip %%PYQT_SIPDIR%%/QtMultimedia/qvideosurfaceformat.sip -%%API%%share/qt5/qsci/api/python/QtMultimedia.api +%%API%%%%PYQT_APIDIR%%/api/python/QtMultimedia.api Index: multimedia/py-qt5-multimediawidgets/Makefile =================================================================== --- multimedia/py-qt5-multimediawidgets/Makefile +++ multimedia/py-qt5-multimediawidgets/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= multimediawidgets +PORTREVISION= 1 CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run multimedia_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui multimedia network widgets qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtMultimedia API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: multimedia/py-qt5-multimediawidgets/pkg-plist =================================================================== --- multimedia/py-qt5-multimediawidgets/pkg-plist +++ multimedia/py-qt5-multimediawidgets/pkg-plist @@ -3,4 +3,4 @@ %%PYQT_SIPDIR%%/QtMultimediaWidgets/qcameraviewfinder.sip %%PYQT_SIPDIR%%/QtMultimediaWidgets/qgraphicsvideoitem.sip %%PYQT_SIPDIR%%/QtMultimediaWidgets/qvideowidget.sip -%%API%%share/qt5/qsci/api/python/QtMultimediaWidgets.api +%%API%%%%PYQT_APIDIR%%/api/python/QtMultimediaWidgets.api Index: net/py-qt4-network/Makefile =================================================================== --- net/py-qt4-network/Makefile +++ net/py-qt4-network/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= network +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT4= moc_build corelib network qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtNetwork API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: net/py-qt4-network/pkg-plist =================================================================== --- net/py-qt4-network/pkg-plist +++ net/py-qt4-network/pkg-plist @@ -34,4 +34,4 @@ %%PYQT_SIPDIR%%/QtNetwork/qtcpsocket.sip %%PYQT_SIPDIR%%/QtNetwork/qudpsocket.sip %%PYQT_SIPDIR%%/QtNetwork/qurlinfo.sip -%%API%%share/qt4/qsci/api/python/QtNetwork.api +%%API%%%%PYQT_APIDIR%%/api/python/QtNetwork.api Index: net/py-qt5-network/Makefile =================================================================== --- net/py-qt5-network/Makefile +++ net/py-qt5-network/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= network +PORTREVISION= 1 CATEGORIES= net devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:5 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT5= core network qmake_build OPTIONS_DEFINE= API DEBUG @@ -18,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install QtNetwork API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: net/py-qt5-network/pkg-plist =================================================================== --- net/py-qt5-network/pkg-plist +++ net/py-qt5-network/pkg-plist @@ -35,4 +35,4 @@ %%PYQT_SIPDIR%%/QtNetwork/qtcpserver.sip %%PYQT_SIPDIR%%/QtNetwork/qtcpsocket.sip %%PYQT_SIPDIR%%/QtNetwork/qudpsocket.sip -%%API%%share/qt5/qsci/api/python/QtNetwork.api +%%API%%%%PYQT_APIDIR%%/api/python/QtNetwork.api Index: print/py-qt5-printsupport/Makefile =================================================================== --- print/py-qt5-printsupport/Makefile +++ print/py-qt5-printsupport/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= printsupport +PORTREVISION= 1 CATEGORIES= print python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui printsupport widgets qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtPrintsupport API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: print/py-qt5-printsupport/pkg-plist =================================================================== --- print/py-qt5-printsupport/pkg-plist +++ print/py-qt5-printsupport/pkg-plist @@ -9,4 +9,4 @@ %%PYQT_SIPDIR%%/QtPrintSupport/qprintpreviewdialog.sip %%PYQT_SIPDIR%%/QtPrintSupport/qprintpreviewwidget.sip %%PYQT_SIPDIR%%/QtPrintSupport/qpyprintsupport_qlist.sip -%%API%%share/qt5/qsci/api/python/QtPrintSupport.api +%%API%%%%PYQT_APIDIR%%/api/python/QtPrintSupport.api Index: textproc/py-qt4-xml/Makefile =================================================================== --- textproc/py-qt4-xml/Makefile +++ textproc/py-qt4-xml/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= xml +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= textproc devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib xml moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtXml API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: textproc/py-qt4-xml/pkg-plist =================================================================== --- textproc/py-qt4-xml/pkg-plist +++ textproc/py-qt4-xml/pkg-plist @@ -5,4 +5,4 @@ %%PYQT_SIPDIR%%/QtXml/qdom.sip %%PYQT_SIPDIR%%/QtXml/qxml.sip %%PYQT_SIPDIR%%/QtXml/qxmlstream.sip -%%API%%share/qt4/qsci/api/python/QtXml.api +%%API%%%%PYQT_APIDIR%%/api/python/QtXml.api Index: textproc/py-qt4-xmlpatterns/Makefile =================================================================== --- textproc/py-qt4-xmlpatterns/Makefile +++ textproc/py-qt4-xmlpatterns/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= xmlpatterns +PORTREVISION= 1 CATEGORIES= textproc devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run network_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib network xmlpatterns moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtXmlPatterns API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: textproc/py-qt4-xmlpatterns/pkg-plist =================================================================== --- textproc/py-qt4-xmlpatterns/pkg-plist +++ textproc/py-qt4-xmlpatterns/pkg-plist @@ -14,4 +14,4 @@ %%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschema.sip %%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschemavalidator.sip %%PYQT_SIPDIR%%/QtXmlPatterns/qxmlserializer.sip -%%API%%share/qt4/qsci/api/python/QtXmlPatterns.api +%%API%%%%PYQT_APIDIR%%/api/python/QtXmlPatterns.api Index: textproc/py-qt5-xml/Makefile =================================================================== --- textproc/py-qt5-xml/Makefile +++ textproc/py-qt5-xml/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= xml +PORTREVISION= 1 CATEGORIES= textproc devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:5 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT5= core xml buildtools_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -18,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install QtXml API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: textproc/py-qt5-xml/pkg-plist =================================================================== --- textproc/py-qt5-xml/pkg-plist +++ textproc/py-qt5-xml/pkg-plist @@ -4,4 +4,4 @@ %%PYQT_SIPDIR%%/QtXml/QtXmlmod.sip %%PYQT_SIPDIR%%/QtXml/qdom.sip %%PYQT_SIPDIR%%/QtXml/qxml.sip -%%API%%share/qt5/qsci/api/python/QtXml.api +%%API%%%%PYQT_APIDIR%%/api/python/QtXml.api Index: textproc/py-qt5-xmlpatterns/Makefile =================================================================== --- textproc/py-qt5-xmlpatterns/Makefile +++ textproc/py-qt5-xmlpatterns/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= xmlpatterns +PORTREVISION= 1 CATEGORIES= textproc devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:5 USE_PYQT= sip_build core_run network_run +USE_PYTHON= concurrent py3kplist USE_QT5= core network xmlpatterns qmake_build OPTIONS_DEFINE= API DEBUG @@ -18,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install QtXmlPatterns API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: textproc/py-qt5-xmlpatterns/pkg-plist =================================================================== --- textproc/py-qt5-xmlpatterns/pkg-plist +++ textproc/py-qt5-xmlpatterns/pkg-plist @@ -14,4 +14,4 @@ %%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschema.sip %%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschemavalidator.sip %%PYQT_SIPDIR%%/QtXmlPatterns/qxmlserializer.sip -%%API%%share/qt5/qsci/api/python/QtXmlPatterns.api +%%API%%%%PYQT_APIDIR%%/api/python/QtXmlPatterns.api Index: www/py-qt4-webkit/Makefile =================================================================== --- www/py-qt4-webkit/Makefile +++ www/py-qt4-webkit/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= webkit +PORTREVISION= 1 CATEGORIES= www devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run gui_run network_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui network webkit \ moc_build qmake_build @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtWebKit API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: www/py-qt4-webkit/pkg-plist =================================================================== --- www/py-qt4-webkit/pkg-plist +++ www/py-qt4-webkit/pkg-plist @@ -14,4 +14,4 @@ %%PYQT_SIPDIR%%/QtWebKit/qwebsecurityorigin.sip %%PYQT_SIPDIR%%/QtWebKit/qwebsettings.sip %%PYQT_SIPDIR%%/QtWebKit/qwebview.sip -%%API%%share/qt4/qsci/api/python/QtWebKit.api +%%API%%%%PYQT_APIDIR%%/api/python/QtWebKit.api Index: www/py-qt5-webkit/Makefile =================================================================== --- www/py-qt5-webkit/Makefile +++ www/py-qt5-webkit/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= webkit +PORTREVISION= 1 CATEGORIES= www devel python MAINTAINER= kde@FreeBSD.org @@ -15,6 +16,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run network_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui network webkit qmake_build OPTIONS_DEFINE= API DEBUG @@ -22,7 +24,7 @@ OPTIONS_SUB= yes API_DESC= Install QtWebKit API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: www/py-qt5-webkit/pkg-plist =================================================================== --- www/py-qt5-webkit/pkg-plist +++ www/py-qt5-webkit/pkg-plist @@ -8,4 +8,4 @@ %%PYQT_SIPDIR%%/QtWebKit/qwebpluginfactory.sip %%PYQT_SIPDIR%%/QtWebKit/qwebsecurityorigin.sip %%PYQT_SIPDIR%%/QtWebKit/qwebsettings.sip -%%API%%share/qt5/qsci/api/python/QtWebKit.api +%%API%%%%PYQT_APIDIR%%/api/python/QtWebKit.api Index: www/py-qt5-webkitwidgets/Makefile =================================================================== --- www/py-qt5-webkitwidgets/Makefile +++ www/py-qt5-webkitwidgets/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= webkitwidgets +PORTREVISION= 1 CATEGORIES= www devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run printsupport_run webkit_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui network printsupport webkit widgets \ qmake_build @@ -20,7 +22,7 @@ OPTIONS_SUB= yes API_DESC= Install QtWebKitWidgets API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: www/py-qt5-webkitwidgets/pkg-plist =================================================================== --- www/py-qt5-webkitwidgets/pkg-plist +++ www/py-qt5-webkitwidgets/pkg-plist @@ -5,4 +5,4 @@ %%PYQT_SIPDIR%%/QtWebKitWidgets/qwebinspector.sip %%PYQT_SIPDIR%%/QtWebKitWidgets/qwebpage.sip %%PYQT_SIPDIR%%/QtWebKitWidgets/qwebview.sip -%%API%%share/qt5/qsci/api/python/QtWebKitWidgets.api +%%API%%%%PYQT_APIDIR%%/api/python/QtWebKitWidgets.api Index: x11-toolkits/py-qt4-gui/Makefile =================================================================== --- x11-toolkits/py-qt4-gui/Makefile +++ x11-toolkits/py-qt4-gui/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= gui +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11-toolkits devel python @@ -13,6 +14,7 @@ USES= python pyqt:4 USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui imageformats_run inputmethods_run iconengines_run \ moc_build qmake_build @@ -21,7 +23,7 @@ OPTIONS_SUB= yes API_DESC= Install QtGui API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: x11-toolkits/py-qt4-gui/pkg-plist =================================================================== --- x11-toolkits/py-qt4-gui/pkg-plist +++ x11-toolkits/py-qt4-gui/pkg-plist @@ -204,4 +204,4 @@ %%PYQT_SIPDIR%%/QtGui/qworkspace.sip %%PYQT_SIPDIR%%/QtGui/qx11embed_x11.sip %%PYQT_SIPDIR%%/QtGui/qx11info_x11.sip -%%API%%share/qt4/qsci/api/python/QtGui.api +%%API%%%%PYQT_APIDIR%%/api/python/QtGui.api Index: x11-toolkits/py-qt5-gui/Makefile =================================================================== --- x11-toolkits/py-qt5-gui/Makefile +++ x11-toolkits/py-qt5-gui/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= gui +PORTREVISION= 1 CATEGORIES= x11-toolkits devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui qmake_build imageformats_run OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtGui API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api .include Index: x11-toolkits/py-qt5-gui/pkg-plist =================================================================== --- x11-toolkits/py-qt5-gui/pkg-plist +++ x11-toolkits/py-qt5-gui/pkg-plist @@ -92,4 +92,4 @@ %%PYQT_SIPDIR%%/QtGui/qvector4d.sip %%PYQT_SIPDIR%%/QtGui/qwindow.sip %%PYQT_SIPDIR%%/QtGui/qwindowdefs.sip -%%API%%share/qt5/qsci/api/python/QtGui.api +%%API%%%%PYQT_APIDIR%%/api/python/QtGui.api Index: x11-toolkits/py-qt5-quick/Makefile =================================================================== --- x11-toolkits/py-qt5-quick/Makefile +++ x11-toolkits/py-qt5-quick/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= quick +PORTREVISION= 1 CATEGORIES= x11-toolkits devel python MAINTAINER= kde@FreeBSD.org @@ -11,6 +12,7 @@ USES= python pyqt:5 USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT5= core quick qmake_build OPTIONS_DEFINE= API DEBUG @@ -18,7 +20,7 @@ OPTIONS_SUB= yes API_DESC= Install QtQuick API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: x11-toolkits/py-qt5-quick/pkg-plist =================================================================== --- x11-toolkits/py-qt5-quick/pkg-plist +++ x11-toolkits/py-qt5-quick/pkg-plist @@ -21,4 +21,4 @@ %%PYQT_SIPDIR%%/QtQuick/qsgtexturematerial.sip %%PYQT_SIPDIR%%/QtQuick/qsgtextureprovider.sip %%PYQT_SIPDIR%%/QtQuick/qsgvertexcolormaterial.sip -%%API%%share/qt5/qsci/api/python/QtQuick.api +%%API%%%%PYQT_APIDIR%%/api/python/QtQuick.api Index: x11-toolkits/py-qt5-widgets/Makefile =================================================================== --- x11-toolkits/py-qt5-widgets/Makefile +++ x11-toolkits/py-qt5-widgets/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= widgets +PORTREVISION= 1 CATEGORIES= x11-toolkits devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui widgets qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtGui API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: x11-toolkits/py-qt5-widgets/pkg-plist =================================================================== --- x11-toolkits/py-qt5-widgets/pkg-plist +++ x11-toolkits/py-qt5-widgets/pkg-plist @@ -124,4 +124,4 @@ %%PYQT_SIPDIR%%/QtWidgets/qwidget.sip %%PYQT_SIPDIR%%/QtWidgets/qwidgetaction.sip %%PYQT_SIPDIR%%/QtWidgets/qwizard.sip -%%API%%share/qt5/qsci/api/python/QtWidgets.api +%%API%%%%PYQT_APIDIR%%/api/python/QtWidgets.api Index: x11/py-qt4-opengl/Makefile =================================================================== --- x11/py-qt4-opengl/Makefile +++ x11/py-qt4-opengl/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= opengl +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 devel python @@ -14,6 +15,7 @@ USES= python pyqt:4 USE_GL= gl USE_PYQT= sip_build core_run gui_run +USE_PYTHON= concurrent py3kplist USE_QT4= corelib gui opengl moc_build qmake_build OPTIONS_DEFINE= API DEBUG @@ -21,7 +23,7 @@ OPTIONS_SUB= yes API_DESC= Install QtOpenGL API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 DEBUG_CONFIGURE_ON= --debug --trace Index: x11/py-qt4-opengl/pkg-plist =================================================================== --- x11/py-qt4-opengl/pkg-plist +++ x11/py-qt4-opengl/pkg-plist @@ -6,4 +6,4 @@ %%PYQT_SIPDIR%%/QtOpenGL/qglframebufferobject.sip %%PYQT_SIPDIR%%/QtOpenGL/qglpixelbuffer.sip %%PYQT_SIPDIR%%/QtOpenGL/qglshaderprogram.sip -%%API%%share/qt4/qsci/api/python/QtOpenGL.api +%%API%%%%PYQT_APIDIR%%/api/python/QtOpenGL.api Index: x11/py-qt5-opengl/Makefile =================================================================== --- x11/py-qt5-opengl/Makefile +++ x11/py-qt5-opengl/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= opengl +PORTREVISION= 1 CATEGORIES= x11 devel python MAINTAINER= kde@FreeBSD.org @@ -12,6 +13,7 @@ USES= python pyqt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run widgets_run +USE_PYTHON= concurrent py3kplist USE_QT5= core gui opengl widgets qmake_build OPTIONS_DEFINE= API DEBUG @@ -19,7 +21,7 @@ OPTIONS_SUB= yes API_DESC= Install QtOpenGL API for QScintilla2 -API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2-qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace Index: x11/py-qt5-opengl/pkg-plist =================================================================== --- x11/py-qt5-opengl/pkg-plist +++ x11/py-qt5-opengl/pkg-plist @@ -1,4 +1,4 @@ %%PYTHON_SITELIBDIR%%/PyQt5/QtOpenGL.so %%PYQT_SIPDIR%%/QtOpenGL/QtOpenGLmod.sip %%PYQT_SIPDIR%%/QtOpenGL/qgl.sip -%%API%%share/qt5/qsci/api/python/QtOpenGL.api +%%API%%%%PYQT_APIDIR%%/api/python/QtOpenGL.api