diff options
97 files changed, 5281 insertions, 9 deletions
diff --git a/Mk/Uses/pyqt.mk b/Mk/Uses/pyqt.mk index 4e0e827c4031..cb27998a8a4a 100644 --- a/Mk/Uses/pyqt.mk +++ b/Mk/Uses/pyqt.mk @@ -4,12 +4,12 @@ # # Feature: pyqt # Usage: USES=pyqt:ARGS -# Valid ARGS: 4 +# Valid ARGS: 4,5 # # MAINTAINER: kde@FreeBSD.org # # Internal Port variables for PyQt ports: -# PYQT_DIST - This port is part of PyQt4 itself. Variables and +# PYQT_DIST - This port is part of PyQt4/5 itself. Variables and # targets are then set assuming a certain tarball and # port layout. # USE_PYQT - List of PyQt components to depend on @@ -25,15 +25,15 @@ .if !defined(_INCLUDE_USES_PYQT_MK) _INCLUDE_USES_PYQT_MK= yes -# At the moment we support PyQt bindings versions 4, sip +# At the moment we support PyQt bindings versions 4 and 5, sip # option is for internal use by the py-sip ports. -_PYQT_SUPPORTED= 4 sip +_PYQT_SUPPORTED= 4 5 sip .if empty(pyqt_ARGS) IGNORE= pyqt needs a qt-version (${_PYQT_SUPPORTED}) .endif -# At the moment we support PyQt bindings version 4 +# At the moment we support PyQt bindings versions 4 and 5 .for ver in ${_PYQT_SUPPORTED:O:u} . if ${pyqt_ARGS:M${ver}} . if empty(_PYQT_VERSION) @@ -56,26 +56,33 @@ MASTER_SITES_SIP= SF/pyqt/sip/sip-${PORTVERSION} \ GENTOO MASTER_SITES_PYQT4= SF/pyqt/PyQt4/PyQt-${PORTVERSION} \ GENTOO +MASTER_SITES_PYQT5= SF/pyqt/PyQt5/PyQt-${PORTVERSION} \ + GENTOO MASTER_SITES_QSCI2= SF/pyqt/QScintilla2/QScintilla-${PORTVERSION} \ GENTOO SIP_VERSION= 4.17 QSCI2_VERSION= 2.9.1 PYQT4_VERSION= 4.11.4 +PYQT5_VERSION= 5.5.1 SIP_DISTNAME= sip-${SIP_VERSION} PYQT4_DISTNAME= PyQt-x11-gpl-${PYQT4_VERSION} PYQT4_DISTINFO_FILE= ${.CURDIR}/../../devel/${PYQT_RELNAME}/distinfo +PYQT5_DISTNAME= PyQt-gpl-${PYQT5_VERSION} +PYQT5_DISTINFO_FILE= ${.CURDIR}/../../devel/py-qt5/distinfo QSCI2_DISTNAME= QScintilla-gpl-${QSCI2_VERSION} -# PyQt components split up into pyqt4/pyqt5 (upcoming)/... -_USE_PYQT_ALL= core dbus demo designer doc gui \ +# PyQt components split up into pyqt4/pyqt5/... +_USE_PYQT_ALL= core dbus demo designer designerplugin doc gui \ multimedia network opengl qscintilla2 \ sql svg test webkit xml xmlpatterns sip # List of components only in pyqt4 _USE_PYQT4_ONLY= assistant declarative dbussupport \ - designerplugin help phonon script \ - scripttools + help phonon script scripttools +# List of components only in pyqt5 +_USE_PYQT5_ONLY= multimediawidgets printsupport qml serialport \ + webkitwidgets widgets # Unversioned variables for the rest of the file PYQT_VERSION= ${PYQT${_PYQT_VERSION}_VERSION} @@ -112,6 +119,13 @@ py-webkit_PATH= ${PYQT_PY_RELNAME}-webkit>=${PYQT_VERSION} py-xml_PATH= ${PYQT_PY_RELNAME}-xml>=${PYQT_VERSION} py-xmlpatterns_PATH= ${PYQT_PY_RELNAME}-xmlpatterns>=${PYQT_VERSION} +py-multimediawidgets_PATH= ${PYQT_PY_RELNAME}-multimediawidgets>=${PYQT_VERSION} +py-qml_PATH= ${PYQT_PY_RELNAME}-qml>=${PYQT_VERSION} +py-printsupport_PATH= ${PYQT_PY_RELNAME}-printsupport>=${PYQT_VERSION} +py-serialport_PATH= ${PYQT_PY_RELNAME}-serialport>=${PYQT_VERSION} +py-webkitwidgets_PATH= ${PYQT_PY_RELNAME}-webkitwidgets>=${PYQT_VERSION} +py-widgets_PATH= ${PYQT_PY_RELNAME}-widgets>=${PYQT_VERSION} + py-sip_PORT= devel/py-sip py-assistant_PORT= devel/${PYQT_RELNAME}-assistant @@ -139,6 +153,13 @@ py-webkit_PORT= www/${PYQT_RELNAME}-webkit py-xml_PORT= textproc/${PYQT_RELNAME}-xml py-xmlpatterns_PORT= textproc/${PYQT_RELNAME}-xmlpatterns +py-multimediawidgets_PORT= multimedia/py-qt5-multimediawidgets +py-qml_PORT= lang/py-qt5-qml +py-printsupport_PORT= print/py-qt5-printsupport +py-serialport_PORT= comms/py-qt5-serialport +py-webkitwidgets_PORT= www/py-qt5-webkitwidgets +py-widgets_PORT= x11-toolkits/py-qt5-widgets + py-assistant_DESC= Python bindings for QtAssistant module py-core_DESC= Python bindings for QtCore module py-dbus_DESC= Python bindings for QtDBus module @@ -164,6 +185,13 @@ py-webkit_DESC= Python bindings for QtWebKit module py-xml_DESC= Python bindings for QtXml module py-xmlpatterns_DESC= Python bindings for QtXmlPatterns module +py-multimediawidgets_DESC= Python bindings for QtMultimediaWidgets module +py-qml_DESC= Python bindings for Qml module +py-printsupport_DESC= Python bindings for Printsupport module +py-serialport_DESC= Python bindings for QtSerialPort +py-webkitwidgets_DESC= Python bindings for QtWebKitWidgets module +py-widgets_DESC= Python bindings for QTWidgets module + SIPDIR_REL= share/py-sip/PyQt${_PYQT_VERSION} SIPDIR= ${PREFIX}/${SIPDIR_REL} PLIST_SUB+= PYQT_SIPDIR=${SIPDIR_REL} @@ -177,6 +205,12 @@ DISTINFO_FILE= ${PYQT_DISTINFO_FILE} HAS_CONFIGURE= yes QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. +.if ${_PYQT_VERSION} > 4 +# PyQt5's configure.py generates .pro files and calls qmake to generate the +# Makefiles. qmake's Makefiles use INSTALL_ROOT instead of DESTDIR. +DESTDIRNAME= INSTALL_ROOT +.endif + PATCHDIR= ${.CURDIR}/../../devel/${PYQT_RELNAME}-core/files QSCIDIR= ${PREFIX}/share/qt${_PYQT_VERSION}/qsci CONFIGURE_ARGS+=-b ${PREFIX}/bin \ diff --git a/comms/Makefile b/comms/Makefile index b9955e902070..455f590b375d 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -133,6 +133,7 @@ SUBDIR += py-libconcord SUBDIR += py-libimobiledevice SUBDIR += py-lirc + SUBDIR += py-qt5-serialport SUBDIR += py-serial SUBDIR += pyla SUBDIR += qico diff --git a/comms/py-qt5-serialport/Makefile b/comms/py-qt5-serialport/Makefile new file mode 100644 index 000000000000..3d93efc9e90a --- /dev/null +++ b/comms/py-qt5-serialport/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= serialport +CATEGORIES= comms devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtSerialPort module + +CONFIGURE_ARGS= --enable QtSerialPort +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run +USE_QT5= core gui serialport qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtSerialPort API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/comms/py-qt5-serialport/pkg-descr b/comms/py-qt5-serialport/pkg-descr new file mode 100644 index 000000000000..93e030e71c41 --- /dev/null +++ b/comms/py-qt5-serialport/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtSerialPort module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/comms/py-qt5-serialport/pkg-plist b/comms/py-qt5-serialport/pkg-plist new file mode 100644 index 000000000000..f486a202a68a --- /dev/null +++ b/comms/py-qt5-serialport/pkg-plist @@ -0,0 +1,5 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtSerialPort.so +%%PYQT_SIPDIR%%/QtSerialPort/QtSerialPortmod.sip +%%PYQT_SIPDIR%%/QtSerialPort/qserialport.sip +%%PYQT_SIPDIR%%/QtSerialPort/qserialportinfo.sip +%%API%%share/qt5/qsci/api/python/QtSerialPort.api diff --git a/databases/Makefile b/databases/Makefile index e12bf2cc1e84..39f18bc85dc6 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -761,6 +761,7 @@ SUBDIR += py-python-rrdtool SUBDIR += py-python-sql SUBDIR += py-qt4-sql + SUBDIR += py-qt5-sql SUBDIR += py-redis SUBDIR += py-riak SUBDIR += py-rrdtool_lgpl diff --git a/databases/py-qt5-sql/Makefile b/databases/py-qt5-sql/Makefile new file mode 100644 index 000000000000..b5025707b88a --- /dev/null +++ b/databases/py-qt5-sql/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= sql +CATEGORIES= databases devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtSql module + +CONFIGURE_ARGS= --enable QtSql +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run widgets_run +USE_QT5= core gui sql widgets buildtools_build qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtSql API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/databases/py-qt5-sql/pkg-descr b/databases/py-qt5-sql/pkg-descr new file mode 100644 index 000000000000..d1a42d528ef5 --- /dev/null +++ b/databases/py-qt5-sql/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtSql module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/databases/py-qt5-sql/pkg-plist b/databases/py-qt5-sql/pkg-plist new file mode 100644 index 000000000000..0cee73192b42 --- /dev/null +++ b/databases/py-qt5-sql/pkg-plist @@ -0,0 +1,16 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtSql.so +%%PYQT_SIPDIR%%/QtSql/QtSqlmod.sip +%%PYQT_SIPDIR%%/QtSql/qsql.sip +%%PYQT_SIPDIR%%/QtSql/qsqldatabase.sip +%%PYQT_SIPDIR%%/QtSql/qsqldriver.sip +%%PYQT_SIPDIR%%/QtSql/qsqlerror.sip +%%PYQT_SIPDIR%%/QtSql/qsqlfield.sip +%%PYQT_SIPDIR%%/QtSql/qsqlindex.sip +%%PYQT_SIPDIR%%/QtSql/qsqlquery.sip +%%PYQT_SIPDIR%%/QtSql/qsqlquerymodel.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrecord.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrelationaldelegate.sip +%%PYQT_SIPDIR%%/QtSql/qsqlrelationaltablemodel.sip +%%PYQT_SIPDIR%%/QtSql/qsqlresult.sip +%%PYQT_SIPDIR%%/QtSql/qsqltablemodel.sip +%%API%%share/qt5/qsci/api/python/QtSql.api diff --git a/devel/Makefile b/devel/Makefile index 81e7e9a397f3..3aca041cb355 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4262,6 +4262,14 @@ SUBDIR += py-qt4-script SUBDIR += py-qt4-scripttools SUBDIR += py-qt4-test + SUBDIR += py-qt5 + SUBDIR += py-qt5-core + SUBDIR += py-qt5-dbus + SUBDIR += py-qt5-dbussupport + SUBDIR += py-qt5-designer + SUBDIR += py-qt5-designerplugin + SUBDIR += py-qt5-qscintilla2 + SUBDIR += py-qt5-test SUBDIR += py-rauth SUBDIR += py-raven SUBDIR += py-rednose @@ -4528,6 +4536,8 @@ SUBDIR += qross SUBDIR += qscintilla2 SUBDIR += qscintilla2-designerplugin + SUBDIR += qscintilla2-qt5 + SUBDIR += qscintilla2-designerplugin-qt5 SUBDIR += qt4 SUBDIR += qt4-assistant SUBDIR += qt4-assistant-adp diff --git a/devel/py-qt5-core/Makefile b/devel/py-qt5-core/Makefile new file mode 100644 index 000000000000..2fed8e4f2326 --- /dev/null +++ b/devel/py-qt5-core/Makefile @@ -0,0 +1,50 @@ +# $FreeBSD$ + +PORTNAME= core +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtCore module + +CONFIGURE_ARGS= --enable QtCore +PYQT_DIST= yes + +USES= python pyqt:5 +USE_PYTHON= py3kplist +USE_PYQT= sip_build +USE_QT5= core qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtCore API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 + +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.pre.mk> + +# Bug 180467: We need to remove the port_v${VERSION} directory that does not +# correspond to the Python version being used to avoid failures in the +# bytecompilation calls in post-install. +PLIST_SUB+= PYTHON_MAJOR_VER="${PYTHON_MAJOR_VER}" +post-patch: +.if ${PYTHON_MAJOR_VER} == "2" + ${RM} -rf ${WRKSRC}/pyuic/uic/port_v3 +.elif ${PYTHON_MAJOR_VER} == "3" + ${RM} -rf ${WRKSRC}/pyuic/uic/port_v2 +.endif + +post-install: + ${INSTALL_DATA} ${FILESDIR}/Qt.py ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 + ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 + +.include <bsd.port.post.mk> diff --git a/devel/py-qt5-core/files/Qt.py b/devel/py-qt5-core/files/Qt.py new file mode 100644 index 000000000000..5e5f7be7f28b --- /dev/null +++ b/devel/py-qt5-core/files/Qt.py @@ -0,0 +1,73 @@ +# Replacement for the composite module PyQt5.Qt for FreeBSD +# Provides namespace for all installed PyQt5 modules by importing them + +from PyQt5.QtCore import * + +try: + from PyQt5.QtGui import * +except ImportError: + pass +try: + from PyQt5.QtDBus import * +except ImportError: + pass +try: + from PyQt5.QtMultimedia import * +except ImportError: + pass +try: + from PyQt5.QtMultimediaWidgets import * +except ImportError: + pass +try: + from PyQt5.QtNetwork import * +except ImportError: + pass +try: + from PyQt5.QtOpenGL import * +except ImportError: + pass +try: + from PyQt5.QtPrintSupport import * +except ImportError: + pass +try: + from PyQt5.QtQml import * +except ImportError: + pass +try: + from PyQt5.QtSerialPort import * +except ImportError: + pass +try: + from PyQt5.QtSql import * +except ImportError: + pass +try: + from PyQt5.QtSvg import * +except ImportError: + pass +try: + from PyQt5.QtTest import * +except ImportError: + pass +try: + from PyQt5.QtWebKit import * +except ImportError: + pass +try: + from PyQt5.QtWebKitWidgets import * +except ImportError: + pass +try: + from PyQt5.QtWidgets import * +except ImportError: + pass +try: + from PyQt5.QtXml import * +except ImportError: + pass +try: + from PyQt5.QtXmlPatterns import * +except ImportError: + pass diff --git a/devel/py-qt5-core/files/patch-configure.py b/devel/py-qt5-core/files/patch-configure.py new file mode 100644 index 000000000000..87e909eb3ffb --- /dev/null +++ b/devel/py-qt5-core/files/patch-configure.py @@ -0,0 +1,94 @@ +This patch is necessary for us to split PyQt5 up into several different ports. + +It works by conditionally building and installing some tools (such as +pylupdate5 and pyrcc5), replacing the all-encompassing PyQt5.api file that +depends on different modules with module-specific .api files. +--- configure.py.orig 2015-10-25 11:42:16 UTC ++++ configure.py +@@ -1458,13 +1458,13 @@ def generate_makefiles(target_config, ve + + generate_sip_module_code(target_config, verbose, no_timestamp, parts, + tracing, 'Qt', sip_flags) +- subdirs.append('Qt') + + if not target_config.no_tools: +- # Generate pylupdate5 and pyrcc5. +- for tool in ('pylupdate', 'pyrcc'): +- generate_application_makefile(target_config, verbose, tool) +- subdirs.append(tool) ++ if "QtXml" in target_config.pyqt_modules: ++ # Generate pylupdate5 and pyrcc5. ++ for tool in ('pylupdate', 'pyrcc'): ++ generate_application_makefile(target_config, verbose, tool) ++ subdirs.append(tool) + + # Generate the pyuic5 wrapper. + pyuic_wrapper = generate_pyuic5_wrapper(target_config) +@@ -1483,22 +1483,6 @@ def generate_makefiles(target_config, ve + source_path('examples', 'quick', 'tutorials', 'extending', + 'chapter6-plugins')) + +- # Generate the QScintilla API file. +- if target_config.qsci_api: +- inform("Generating the QScintilla API file...") +- f = open_for_writing('PyQt5.api') +- +- for mname in target_config.pyqt_modules: +- api = open(mname + '.api') +- +- for l in api: +- f.write('PyQt5.' + l) +- +- api.close() +- os.remove(mname + '.api') +- +- f.close() +- + # Generate the Python dbus module. + if target_config.pydbus_module_dir != '': + mname = 'dbus' +@@ -1526,21 +1510,24 @@ def generate_makefiles(target_config, ve + out_f.write('''TEMPLATE = subdirs + CONFIG += ordered nostrip + SUBDIRS = %s ++''' % (' '.join(subdirs))) + ++ if "QtCore" in target_config.pyqt_modules: ++ out_f.write(''' + init_py.files = %s + init_py.path = %s/PyQt5 + INSTALLS += init_py +-''' % (' '.join(subdirs), source_path('__init__.py'), target_config.pyqt_module_dir)) ++''' % (source_path('__init__.py'), target_config.pyqt_module_dir)) + +- # Install the uic module and the pyuic5 wrapper. +- out_f.write(''' ++ # Install the uic module and the pyuic5 wrapper. ++ out_f.write(''' + uic_package.files = %s + uic_package.path = %s/PyQt5 + INSTALLS += uic_package + ''' % (source_path('pyuic', 'uic'), target_config.pyqt_module_dir)) + +- if not target_config.no_tools: +- out_f.write(''' ++ if not target_config.no_tools: ++ out_f.write(''' + pyuic5.files = %s + pyuic5.path = %s + INSTALLS += pyuic5 +@@ -1548,11 +1535,12 @@ INSTALLS += pyuic5 + + # Install the QScintilla .api file. + if target_config.qsci_api: ++ api_list = ' '.join(['%s.api' % m for m in target_config.pyqt_modules]) + out_f.write(''' +-qscintilla_api.files = PyQt5.api ++qscintilla_api.files = %s + qscintilla_api.path = %s/api/python + INSTALLS += qscintilla_api +-''' % target_config.qsci_api_dir) ++''' % (api_list, target_config.qsci_api_dir)) + + out_f.close() + diff --git a/devel/py-qt5-core/pkg-descr b/devel/py-qt5-core/pkg-descr new file mode 100644 index 000000000000..0a6f6ca9a90f --- /dev/null +++ b/devel/py-qt5-core/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtCore module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/devel/py-qt5-core/pkg-plist b/devel/py-qt5-core/pkg-plist new file mode 100644 index 000000000000..433ef5d6b609 --- /dev/null +++ b/devel/py-qt5-core/pkg-plist @@ -0,0 +1,219 @@ +bin/pyuic5 +%%PYTHON_SITELIBDIR%%/PyQt5/Qt.py +%%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/Qt.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/QtCore.so +%%PYTHON_SITELIBDIR%%/PyQt5/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/compiler.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/indenter.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/misc.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/proxy_metaclass.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qobjectcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Compiler/qtproxies.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/loader.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/Loader/qobjectcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/driver.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/exceptions.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/icon_cache.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/objcreator.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/__init__.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/as_string.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/ascii_upper.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/invoke.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/load_plugin.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/proxy_base.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/port_v%%PYTHON_MAJOR_VER%%/string_io.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/properties.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/pyuic.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/uiparser.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qaxcontainer.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qscintilla.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtprintsupport.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtquickwidgets.pyo +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.py +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyc +%%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebkit.pyo +%%PYQT_SIPDIR%%/QtCore/QtCoremod.sip +%%PYQT_SIPDIR%%/QtCore/qabstractanimation.sip +%%PYQT_SIPDIR%%/QtCore/qabstracteventdispatcher.sip +%%PYQT_SIPDIR%%/QtCore/qabstractitemmodel.sip +%%PYQT_SIPDIR%%/QtCore/qabstractnativeeventfilter.sip +%%PYQT_SIPDIR%%/QtCore/qabstractproxymodel.sip +%%PYQT_SIPDIR%%/QtCore/qabstractstate.sip +%%PYQT_SIPDIR%%/QtCore/qabstracttransition.sip +%%PYQT_SIPDIR%%/QtCore/qanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qbasictimer.sip +%%PYQT_SIPDIR%%/QtCore/qbitarray.sip +%%PYQT_SIPDIR%%/QtCore/qbuffer.sip +%%PYQT_SIPDIR%%/QtCore/qbytearray.sip +%%PYQT_SIPDIR%%/QtCore/qbytearraymatcher.sip +%%PYQT_SIPDIR%%/QtCore/qchar.sip +%%PYQT_SIPDIR%%/QtCore/qcollator.sip +%%PYQT_SIPDIR%%/QtCore/qcommandlineoption.sip +%%PYQT_SIPDIR%%/QtCore/qcommandlineparser.sip +%%PYQT_SIPDIR%%/QtCore/qcoreapplication.sip +%%PYQT_SIPDIR%%/QtCore/qcoreevent.sip +%%PYQT_SIPDIR%%/QtCore/qcryptographichash.sip +%%PYQT_SIPDIR%%/QtCore/qdatastream.sip +%%PYQT_SIPDIR%%/QtCore/qdatetime.sip +%%PYQT_SIPDIR%%/QtCore/qdir.sip +%%PYQT_SIPDIR%%/QtCore/qdiriterator.sip +%%PYQT_SIPDIR%%/QtCore/qeasingcurve.sip +%%PYQT_SIPDIR%%/QtCore/qelapsedtimer.sip +%%PYQT_SIPDIR%%/QtCore/qeventloop.sip +%%PYQT_SIPDIR%%/QtCore/qeventtransition.sip +%%PYQT_SIPDIR%%/QtCore/qfile.sip +%%PYQT_SIPDIR%%/QtCore/qfiledevice.sip +%%PYQT_SIPDIR%%/QtCore/qfileinfo.sip +%%PYQT_SIPDIR%%/QtCore/qfileselector.sip +%%PYQT_SIPDIR%%/QtCore/qfilesystemwatcher.sip +%%PYQT_SIPDIR%%/QtCore/qfinalstate.sip +%%PYQT_SIPDIR%%/QtCore/qglobal.sip +%%PYQT_SIPDIR%%/QtCore/qhistorystate.sip +%%PYQT_SIPDIR%%/QtCore/qidentityproxymodel.sip +%%PYQT_SIPDIR%%/QtCore/qiodevice.sip +%%PYQT_SIPDIR%%/QtCore/qitemselectionmodel.sip +%%PYQT_SIPDIR%%/QtCore/qjsonarray.sip +%%PYQT_SIPDIR%%/QtCore/qjsondocument.sip +%%PYQT_SIPDIR%%/QtCore/qjsonobject.sip +%%PYQT_SIPDIR%%/QtCore/qjsonvalue.sip +%%PYQT_SIPDIR%%/QtCore/qlibrary.sip +%%PYQT_SIPDIR%%/QtCore/qlibraryinfo.sip +%%PYQT_SIPDIR%%/QtCore/qline.sip +%%PYQT_SIPDIR%%/QtCore/qlocale.sip +%%PYQT_SIPDIR%%/QtCore/qlockfile.sip +%%PYQT_SIPDIR%%/QtCore/qlogging.sip +%%PYQT_SIPDIR%%/QtCore/qmargins.sip +%%PYQT_SIPDIR%%/QtCore/qmessageauthenticationcode.sip +%%PYQT_SIPDIR%%/QtCore/qmetaobject.sip +%%PYQT_SIPDIR%%/QtCore/qmetatype.sip +%%PYQT_SIPDIR%%/QtCore/qmimedata.sip +%%PYQT_SIPDIR%%/QtCore/qmimedatabase.sip +%%PYQT_SIPDIR%%/QtCore/qmimetype.sip +%%PYQT_SIPDIR%%/QtCore/qmutex.sip +%%PYQT_SIPDIR%%/QtCore/qnamespace.sip +%%PYQT_SIPDIR%%/QtCore/qnumeric.sip +%%PYQT_SIPDIR%%/QtCore/qobject.sip +%%PYQT_SIPDIR%%/QtCore/qobjectcleanuphandler.sip +%%PYQT_SIPDIR%%/QtCore/qobjectdefs.sip +%%PYQT_SIPDIR%%/QtCore/qparallelanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qpauseanimation.sip +%%PYQT_SIPDIR%%/QtCore/qpluginloader.sip +%%PYQT_SIPDIR%%/QtCore/qpoint.sip +%%PYQT_SIPDIR%%/QtCore/qprocess.sip +%%PYQT_SIPDIR%%/QtCore/qpropertyanimation.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qhash.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qlist.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qmap.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qpair.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qset.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_qvector.sip +%%PYQT_SIPDIR%%/QtCore/qpycore_virtual_error_handler.sip +%%PYQT_SIPDIR%%/QtCore/qreadwritelock.sip +%%PYQT_SIPDIR%%/QtCore/qrect.sip +%%PYQT_SIPDIR%%/QtCore/qregexp.sip +%%PYQT_SIPDIR%%/QtCore/qregularexpression.sip +%%PYQT_SIPDIR%%/QtCore/qresource.sip +%%PYQT_SIPDIR%%/QtCore/qrunnable.sip +%%PYQT_SIPDIR%%/QtCore/qsavefile.sip +%%PYQT_SIPDIR%%/QtCore/qsemaphore.sip +%%PYQT_SIPDIR%%/QtCore/qsequentialanimationgroup.sip +%%PYQT_SIPDIR%%/QtCore/qsettings.sip +%%PYQT_SIPDIR%%/QtCore/qsharedmemory.sip +%%PYQT_SIPDIR%%/QtCore/qsignalmapper.sip +%%PYQT_SIPDIR%%/QtCore/qsignaltransition.sip +%%PYQT_SIPDIR%%/QtCore/qsize.sip +%%PYQT_SIPDIR%%/QtCore/qsocketnotifier.sip +%%PYQT_SIPDIR%%/QtCore/qsortfilterproxymodel.sip +%%PYQT_SIPDIR%%/QtCore/qstandardpaths.sip +%%PYQT_SIPDIR%%/QtCore/qstate.sip +%%PYQT_SIPDIR%%/QtCore/qstatemachine.sip +%%PYQT_SIPDIR%%/QtCore/qstorageinfo.sip +%%PYQT_SIPDIR%%/QtCore/qstring.sip +%%PYQT_SIPDIR%%/QtCore/qstringlist.sip +%%PYQT_SIPDIR%%/QtCore/qstringlistmodel.sip +%%PYQT_SIPDIR%%/QtCore/qsysinfo.sip +%%PYQT_SIPDIR%%/QtCore/qsystemsemaphore.sip +%%PYQT_SIPDIR%%/QtCore/qtemporarydir.sip +%%PYQT_SIPDIR%%/QtCore/qtemporaryfile.sip +%%PYQT_SIPDIR%%/QtCore/qtextboundaryfinder.sip +%%PYQT_SIPDIR%%/QtCore/qtextcodec.sip +%%PYQT_SIPDIR%%/QtCore/qtextstream.sip +%%PYQT_SIPDIR%%/QtCore/qthread.sip +%%PYQT_SIPDIR%%/QtCore/qthreadpool.sip +%%PYQT_SIPDIR%%/QtCore/qtimeline.sip +%%PYQT_SIPDIR%%/QtCore/qtimer.sip +%%PYQT_SIPDIR%%/QtCore/qtimezone.sip +%%PYQT_SIPDIR%%/QtCore/qtranslator.sip +%%PYQT_SIPDIR%%/QtCore/qurl.sip +%%PYQT_SIPDIR%%/QtCore/qurlquery.sip +%%PYQT_SIPDIR%%/QtCore/quuid.sip +%%PYQT_SIPDIR%%/QtCore/qvariant.sip +%%PYQT_SIPDIR%%/QtCore/qvariantanimation.sip +%%PYQT_SIPDIR%%/QtCore/qwaitcondition.sip +%%PYQT_SIPDIR%%/QtCore/qwineventnotifier.sip +%%PYQT_SIPDIR%%/QtCore/qxmlstream.sip +%%API%%share/qt5/qsci/api/python/QtCore.api diff --git a/devel/py-qt5-dbus/Makefile b/devel/py-qt5-dbus/Makefile new file mode 100644 index 000000000000..98fabb912feb --- /dev/null +++ b/devel/py-qt5-dbus/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= dbus +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtDBus module + +CONFIGURE_ARGS= --enable QtDBus +PYQT_DIST= yes + +USES= python pyqt:5 +USE_PYQT= sip_build core_run +USE_QT5= core dbus qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtDBus API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/devel/py-qt5-dbus/pkg-descr b/devel/py-qt5-dbus/pkg-descr new file mode 100644 index 000000000000..ab3c27e7cfd2 --- /dev/null +++ b/devel/py-qt5-dbus/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the D-BUS module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/devel/py-qt5-dbus/pkg-plist b/devel/py-qt5-dbus/pkg-plist new file mode 100644 index 000000000000..644e7856f280 --- /dev/null +++ b/devel/py-qt5-dbus/pkg-plist @@ -0,0 +1,17 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtDBus.so +%%PYQT_SIPDIR%%/QtDBus/QtDBusmod.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusabstractadaptor.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusabstractinterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusargument.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusconnection.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusconnectioninterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbuserror.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusextratypes.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusinterface.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusmessage.sip +%%PYQT_SIPDIR%%/QtDBus/qdbuspendingcall.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusservicewatcher.sip +%%PYQT_SIPDIR%%/QtDBus/qdbusunixfiledescriptor.sip +%%PYQT_SIPDIR%%/QtDBus/qpydbuspendingreply.sip +%%PYQT_SIPDIR%%/QtDBus/qpydbusreply.sip +%%API%%share/qt5/qsci/api/python/QtDBus.api diff --git a/devel/py-qt5-dbussupport/Makefile b/devel/py-qt5-dbussupport/Makefile new file mode 100644 index 000000000000..893a1a05b491 --- /dev/null +++ b/devel/py-qt5-dbussupport/Makefile @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= dbussupport +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt event loop support for dbus-python + +BUILD_DEPENDS= ${PYDBUS} +RUN_DEPENDS= ${PYDBUS} + +CONFIGURE_ARGS= --enable QtCore +PYQT_DIST= yes + +USES= pkgconfig python pyqt:5 +USE_PYQT= sip_build +USE_QT5= core buildtools_build qmake_build + +OPTIONS_DEFINE= DEBUG +DEBUG_CONFIGURE_ON= --debug --trace + +BUILD_WRKSRC= ${WRKSRC}/dbus +INSTALL_WRKSRC= ${WRKSRC}/dbus + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/dbus/mainloop/pyqt5.so + +.include <bsd.port.pre.mk> + +.if ${PYTHON_MAJOR_VER} == 2 +PYDBUS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py-dbus +.elif ${PYTHON_MAJOR_VER} == 3 +PYDBUS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:${PORTSDIR}/devel/py3-dbus +.endif + +.include <bsd.port.post.mk> diff --git a/devel/py-qt5-dbussupport/pkg-descr b/devel/py-qt5-dbussupport/pkg-descr new file mode 100644 index 000000000000..8bcafc5fce53 --- /dev/null +++ b/devel/py-qt5-dbussupport/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides Qt event loop support for dbus-python. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/devel/py-qt5-designer/Makefile b/devel/py-qt5-designer/Makefile new file mode 100644 index 000000000000..f7e3bb121c20 --- /dev/null +++ b/devel/py-qt5-designer/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= designer +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtDesigner module + +CONFIGURE_ARGS= --enable QtDesigner +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= yes +USE_PYQT= sip_build core_run widgets_run +USE_QT5= core gui designer widgets xml \ + buildtools_build qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtDesigner API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/devel/py-qt5-designer/pkg-descr b/devel/py-qt5-designer/pkg-descr new file mode 100644 index 000000000000..8ad3b941aad3 --- /dev/null +++ b/devel/py-qt5-designer/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtDesigner module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/devel/py-qt5-designer/pkg-plist b/devel/py-qt5-designer/pkg-plist new file mode 100644 index 000000000000..892836f3e59e --- /dev/null +++ b/devel/py-qt5-designer/pkg-plist @@ -0,0 +1,28 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtDesigner.so +%%QT_PLUGINDIR%%/designer/libpyqt5.so +%%PYQT_SIPDIR%%/QtDesigner/QtDesignermod.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractactioneditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformbuilder.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformeditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindow.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindowcursor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractformwindowmanager.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractobjectinspector.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractpropertyeditor.sip +%%PYQT_SIPDIR%%/QtDesigner/abstractwidgetbox.sip +%%PYQT_SIPDIR%%/QtDesigner/container.sip +%%PYQT_SIPDIR%%/QtDesigner/customwidget.sip +%%PYQT_SIPDIR%%/QtDesigner/default_extensionfactory.sip +%%PYQT_SIPDIR%%/QtDesigner/extension.sip +%%PYQT_SIPDIR%%/QtDesigner/formbuilder.sip +%%PYQT_SIPDIR%%/QtDesigner/membersheet.sip +%%PYQT_SIPDIR%%/QtDesigner/propertysheet.sip +%%PYQT_SIPDIR%%/QtDesigner/qextensionmanager.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercontainerextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercustomwidgetcollectionplugin.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignercustomwidgetplugin.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignermembersheetextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignerpropertysheetextension.sip +%%PYQT_SIPDIR%%/QtDesigner/qpydesignertaskmenuextension.sip +%%PYQT_SIPDIR%%/QtDesigner/taskmenu.sip +%%API%%share/qt5/qsci/api/python/QtDesigner.api diff --git a/devel/py-qt5-designerplugin/Makefile b/devel/py-qt5-designerplugin/Makefile new file mode 100644 index 000000000000..a6c1487f4465 --- /dev/null +++ b/devel/py-qt5-designerplugin/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= designerplugin +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtDesigner plugin + +BUILD_WRKSRC= ${WRKSRC}/designer +INSTALL_WRKSRC= ${WRKSRC}/designer +DESTDIRNAME= INSTALL_ROOT + +CONFIGURE_ARGS= --enable QtDesigner +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build +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 + +.include <bsd.port.mk> diff --git a/devel/py-qt5-designerplugin/pkg-descr b/devel/py-qt5-designerplugin/pkg-descr new file mode 100644 index 000000000000..16f1e784052d --- /dev/null +++ b/devel/py-qt5-designerplugin/pkg-descr @@ -0,0 +1,4 @@ +PyQt4 is a set of Python bindings for Digia's Qt4 application framework. +This package provides the QtDesigner plugin. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/devel/py-qt5-qscintilla2/Makefile b/devel/py-qt5-qscintilla2/Makefile new file mode 100644 index 000000000000..d37ee592c62d --- /dev/null +++ b/devel/py-qt5-qscintilla2/Makefile @@ -0,0 +1,39 @@ +# $FreeBSD$ + +PORTNAME= qscintilla2 +PORTVERSION= ${QSCI2_VERSION} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITES_QSCI2} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- +DISTNAME= ${QSCI2_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for QScintilla2 (PyQt5), QSci module + +LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 + +DISTINFO_FILE= ${.CURDIR:H}/qscintilla2-qt5/distinfo +DESTDIRNAME= INSTALL_ROOT + +HAS_CONFIGURE= yes +QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip core gui printsupport widgets +USE_QT5= core gui printsupport widgets buildtools_build qmake_build + +OPTIONS_DEFINE= DEBUG +DEBUG_CONFIGURE_ON= --debug --trace + +QSCIDIR= ${PREFIX}/share/qt5/qsci +CONFIGURE_ARGS= --pyqt PyQt5 -d ${PYTHONPREFIX_SITELIBDIR}/PyQt5 -v ${SIPDIR} \ + --apidir ${QSCIDIR} --qmake ${QMAKE} --pyqt-sipdir ${SIPDIR} +WRKSRC= ${WRKDIR}/${DISTNAME}/Python +ALL_TARGET= #empty + +do-configure: + cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV}\ + ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} + +.include <bsd.port.mk> diff --git a/devel/py-qt5-qscintilla2/pkg-descr b/devel/py-qt5-qscintilla2/pkg-descr new file mode 100644 index 000000000000..12c3b9c21972 --- /dev/null +++ b/devel/py-qt5-qscintilla2/pkg-descr @@ -0,0 +1,5 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the Qsci module for the Qscintilla2 editor component. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ + http://www.riverbankcomputing.co.uk/software/qscintilla/ diff --git a/devel/py-qt5-qscintilla2/pkg-plist b/devel/py-qt5-qscintilla2/pkg-plist new file mode 100644 index 000000000000..88bcd90558d5 --- /dev/null +++ b/devel/py-qt5-qscintilla2/pkg-plist @@ -0,0 +1,54 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/Qsci.so +%%PYQT_SIPDIR%%/Qsci/qsciabstractapis.sip +%%PYQT_SIPDIR%%/Qsci/qsciapis.sip +%%PYQT_SIPDIR%%/Qsci/qscicommand.sip +%%PYQT_SIPDIR%%/Qsci/qscicommandset.sip +%%PYQT_SIPDIR%%/Qsci/qscidocument.sip +%%PYQT_SIPDIR%%/Qsci/qscilexer.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeravs.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerbash.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerbatch.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercmake.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercoffeescript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercpp.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercsharp.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercss.sip +%%PYQT_SIPDIR%%/Qsci/qscilexercustom.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerd.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerdiff.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerfortran.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerfortran77.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerhtml.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeridl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerjava.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerjavascript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerlua.sip +%%PYQT_SIPDIR%%/Qsci/qscilexermakefile.sip +%%PYQT_SIPDIR%%/Qsci/qscilexermatlab.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeroctave.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpascal.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerperl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpo.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpostscript.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpov.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerproperties.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerpython.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerruby.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerspice.sip +%%PYQT_SIPDIR%%/Qsci/qscilexersql.sip +%%PYQT_SIPDIR%%/Qsci/qscilexertcl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexertex.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerverilog.sip +%%PYQT_SIPDIR%%/Qsci/qscilexervhdl.sip +%%PYQT_SIPDIR%%/Qsci/qscilexerxml.sip +%%PYQT_SIPDIR%%/Qsci/qscilexeryaml.sip +%%PYQT_SIPDIR%%/Qsci/qscimacro.sip +%%PYQT_SIPDIR%%/Qsci/qscimod4.sip +%%PYQT_SIPDIR%%/Qsci/qscimod5.sip +%%PYQT_SIPDIR%%/Qsci/qscimodcommon.sip +%%PYQT_SIPDIR%%/Qsci/qsciprinter.sip +%%PYQT_SIPDIR%%/Qsci/qsciscintilla.sip +%%PYQT_SIPDIR%%/Qsci/qsciscintillabase.sip +%%PYQT_SIPDIR%%/Qsci/qscistyle.sip +%%PYQT_SIPDIR%%/Qsci/qscistyledtext.sip +%%QT_DATADIR%%/qsci/api/python/QScintilla2.api diff --git a/devel/py-qt5-test/Makefile b/devel/py-qt5-test/Makefile new file mode 100644 index 000000000000..d391b9701804 --- /dev/null +++ b/devel/py-qt5-test/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= test +CATEGORIES= devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtTest module + +CONFIGURE_ARGS= --enable QtTest +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run widgets_run +USE_QT5= core gui testlib widgets \ + buildtools_build qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtTest API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/devel/py-qt5-test/pkg-descr b/devel/py-qt5-test/pkg-descr new file mode 100644 index 000000000000..ee534262fa4a --- /dev/null +++ b/devel/py-qt5-test/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtTest module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/devel/py-qt5-test/pkg-plist b/devel/py-qt5-test/pkg-plist new file mode 100644 index 000000000000..7ea734476415 --- /dev/null +++ b/devel/py-qt5-test/pkg-plist @@ -0,0 +1,9 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtTest.so +%%PYQT_SIPDIR%%/QtTest/QtTestmod.sip +%%PYQT_SIPDIR%%/QtTest/qsignalspy.sip +%%PYQT_SIPDIR%%/QtTest/qtestcase.sip +%%PYQT_SIPDIR%%/QtTest/qtestkeyboard.sip +%%PYQT_SIPDIR%%/QtTest/qtestmouse.sip +%%PYQT_SIPDIR%%/QtTest/qtestsystem.sip +%%PYQT_SIPDIR%%/QtTest/qtesttouch.sip +%%API%%share/qt5/qsci/api/python/QtTest.api diff --git a/devel/py-qt5/Makefile b/devel/py-qt5/Makefile new file mode 100644 index 000000000000..045f16af448e --- /dev/null +++ b/devel/py-qt5/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= qt5 +PORTVERSION= ${PYQT5_VERSION} +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt 5 toolkit (meta port) + +USES= metaport python pyqt:5 + +OPTIONS_DEFINE= core dbus dbussupport demo designer doc gui multimedia \ + multimediawidgets network opengl printsupport qml qscintilla2 \ + sql serialport svg test webkit webkitwidgets widgets \ + xml xmlpatterns +OPTIONS_DEFAULT=${OPTIONS_DEFINE} + +.for opt in ${OPTIONS_DEFINE} +${opt}_USE= PYQT=${opt}_run +${opt}_DESC= ${py-${opt}_DESC} +.endfor + +.include <bsd.port.mk> diff --git a/devel/py-qt5/distinfo b/devel/py-qt5/distinfo new file mode 100644 index 000000000000..0dc55e6f9f49 --- /dev/null +++ b/devel/py-qt5/distinfo @@ -0,0 +1,2 @@ +SHA256 (PyQt-gpl-5.5.1.tar.gz) = 0a70ef94fbffcf674b0dde024aae2a2a7a3f5a8c42806109ff7df2c941bd8386 +SIZE (PyQt-gpl-5.5.1.tar.gz) = 3705749 diff --git a/devel/py-qt5/pkg-descr b/devel/py-qt5/pkg-descr new file mode 100644 index 000000000000..7aab88863162 --- /dev/null +++ b/devel/py-qt5/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the PyQt5 metaport. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/devel/qscintilla2-designerplugin-qt5/Makefile b/devel/qscintilla2-designerplugin-qt5/Makefile new file mode 100644 index 000000000000..e56bbda75ef8 --- /dev/null +++ b/devel/qscintilla2-designerplugin-qt5/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= designerplugin-qt5 +PORTVERSION= ${QSCI2_VERSION} +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITES_QSCI2} +PKGNAMEPREFIX= qscintilla2- +DISTNAME= ${QSCI2_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt5 Designer plugin for QScintilla2 + +LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 + +DISTINFO_FILE= ${.CURDIR:H}/qscintilla2-qt5/distinfo +USE_GL= gl +USES= qmake pyqt:5 +USE_QT5= core designer printsupport gui widgets xml \ + buildtools_build qmake_build +HAS_CONFIGURE= yes + +WRKSRC= ${WRKDIR}/${DISTNAME}/designer-Qt4Qt5 + +PLIST_FILES= %%QT_PLUGINDIR%%/designer/libqscintillaplugin.so + +.include <bsd.port.mk> diff --git a/devel/qscintilla2-designerplugin-qt5/pkg-descr b/devel/qscintilla2-designerplugin-qt5/pkg-descr new file mode 100644 index 000000000000..1ff82d02327b --- /dev/null +++ b/devel/qscintilla2-designerplugin-qt5/pkg-descr @@ -0,0 +1,4 @@ +The Qt Designer plugin allows QScintilla2 instances to be included in GUI +designs just like any other Qt4 widget. + +WWW: http://www.riverbankcomputing.co.uk/software/qscintilla/ diff --git a/devel/qscintilla2-qt5/Makefile b/devel/qscintilla2-qt5/Makefile new file mode 100644 index 000000000000..a5f5a4cc013e --- /dev/null +++ b/devel/qscintilla2-qt5/Makefile @@ -0,0 +1,47 @@ +# $FreeBSD$ + +PORTNAME= qscintilla2-qt5 +PORTVERSION= ${QSCI2_VERSION} +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITES_QSCI2} +DISTNAME= ${QSCI2_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt 5 port of the Scintilla C++ editor class + +USES= qmake pyqt:5 +USE_GL= gl +USE_PYQT= # +USE_QT5= buildtools_build gui printsupport widgets +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +BUILD_WRKSRC= ${WRKSRC}/Qt4Qt5 +CONFIGURE_WRKSRC= ${BUILD_WRKSRC} +INSTALL_WRKSRC= ${BUILD_WRKSRC} + +PORTDOCS= * +PORTEXAMPLES= * + +OPTIONS_DEFINE= DOCS EXAMPLES NLS +OPTIONS_SUB= yes + +.include <bsd.port.options.mk> + +post-patch: +.if empty(PORT_OPTIONS:MNLS) + cd ${BUILD_WRKSRC} && ${REINPLACE_CMD} -e \ + 's|trans qsci|qsci|' qscintilla.pro +.endif + +post-install: + cd ${WRKSRC} &&\ + ${MKDIR} ${STAGEDIR}${DOCSDIR}/html ${STAGEDIR}${DOCSDIR}/Scintilla &&\ + ${INSTALL_DATA} NEWS README ${STAGEDIR}${DOCSDIR} &&\ + ${INSTALL_DATA} doc/html-Qt4Qt5/* ${STAGEDIR}${DOCSDIR}/html &&\ + ${INSTALL_DATA} doc/Scintilla/* ${STAGEDIR}${DOCSDIR}/Scintilla + cd ${WRKSRC}/example-Qt4Qt5 &&\ + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/images &&\ + ${INSTALL_DATA} *.* ${STAGEDIR}${EXAMPLESDIR} &&\ + ${INSTALL_DATA} images/* ${STAGEDIR}${EXAMPLESDIR}/images + +.include <bsd.port.mk> diff --git a/devel/qscintilla2-qt5/distinfo b/devel/qscintilla2-qt5/distinfo new file mode 100644 index 000000000000..35ea2ad97749 --- /dev/null +++ b/devel/qscintilla2-qt5/distinfo @@ -0,0 +1,2 @@ +SHA256 (QScintilla-gpl-2.9.1.tar.gz) = 79e9c39d51549061d3d489387bcee86ff20c1f746d1b25ac173d5165426eabaf +SIZE (QScintilla-gpl-2.9.1.tar.gz) = 2490144 diff --git a/devel/qscintilla2-qt5/files/patch-Qt4Qt5_features_qscintilla2.prf b/devel/qscintilla2-qt5/files/patch-Qt4Qt5_features_qscintilla2.prf new file mode 100644 index 000000000000..a286e14b814f --- /dev/null +++ b/devel/qscintilla2-qt5/files/patch-Qt4Qt5_features_qscintilla2.prf @@ -0,0 +1,24 @@ +The Qt5 version of QScintilla is called libqscintilla2-qt5.so. +Make it be referenced this way by Qt's build system. +--- Qt4Qt5/features/qscintilla2.prf.orig 2015-04-20 14:38:24 UTC ++++ Qt4Qt5/features/qscintilla2.prf +@@ -17,9 +17,17 @@ CONFIG(debug, debug|release) { + win32: { + LIBS += -lqscintilla2d + } else { +- LIBS += -lqscintilla2 ++ greaterThan(QT_MAJOR_VERSION, 4) { ++ LIBS += -lqscintilla2-qt$${QT_MAJOR_VERSION} ++ } else { ++ LIBS += -lqscintilla2 ++ } + } + } + } else { +- LIBS += -lqscintilla2 ++ greaterThan(QT_MAJOR_VERSION, 4) { ++ LIBS += -lqscintilla2-qt$${QT_MAJOR_VERSION} ++ } else { ++ LIBS += -lqscintilla2 ++ } + } diff --git a/devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro b/devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro new file mode 100644 index 000000000000..4efb59639ef9 --- /dev/null +++ b/devel/qscintilla2-qt5/files/patch-Qt4Qt5_qscintilla.pro @@ -0,0 +1,18 @@ +Install the library as libqscintilla2-qt5.so. +The suffix is used to make it differ from libqscintilla2.so, which is the Qt4 +version. +--- Qt4Qt5/qscintilla.pro.orig 2015-04-20 14:38:24 UTC ++++ Qt4Qt5/qscintilla.pro +@@ -23,7 +23,11 @@ + !win32:VERSION = 12.0.0 + + TEMPLATE = lib +-TARGET = qscintilla2 ++greaterThan(QT_MAJOR_VERSION, 4) { ++ TARGET = qscintilla2-qt$${QT_MAJOR_VERSION} ++} else { ++ TARGET = qscintilla2 ++} + CONFIG += qt warn_off release thread exceptions + INCLUDEPATH += . ../include ../lexlib ../src + diff --git a/devel/qscintilla2-qt5/pkg-descr b/devel/qscintilla2-qt5/pkg-descr new file mode 100644 index 000000000000..562be6d004c1 --- /dev/null +++ b/devel/qscintilla2-qt5/pkg-descr @@ -0,0 +1,3 @@ +QScintilla2 is a port to Qt5 of Neil Hodgson's Scintilla C++ editor class. + +WWW: http://www.riverbankcomputing.co.uk/software/qscintilla/ diff --git a/devel/qscintilla2-qt5/pkg-plist b/devel/qscintilla2-qt5/pkg-plist new file mode 100644 index 000000000000..903ead92c6c5 --- /dev/null +++ b/devel/qscintilla2-qt5/pkg-plist @@ -0,0 +1,69 @@ +%%QT_INCDIR%%/Qsci/qsciabstractapis.h +%%QT_INCDIR%%/Qsci/qsciapis.h +%%QT_INCDIR%%/Qsci/qscicommand.h +%%QT_INCDIR%%/Qsci/qscicommandset.h +%%QT_INCDIR%%/Qsci/qscidocument.h +%%QT_INCDIR%%/Qsci/qsciglobal.h +%%QT_INCDIR%%/Qsci/qscilexer.h +%%QT_INCDIR%%/Qsci/qscilexeravs.h +%%QT_INCDIR%%/Qsci/qscilexerbash.h +%%QT_INCDIR%%/Qsci/qscilexerbatch.h +%%QT_INCDIR%%/Qsci/qscilexercmake.h +%%QT_INCDIR%%/Qsci/qscilexercoffeescript.h +%%QT_INCDIR%%/Qsci/qscilexercpp.h +%%QT_INCDIR%%/Qsci/qscilexercsharp.h +%%QT_INCDIR%%/Qsci/qscilexercss.h +%%QT_INCDIR%%/Qsci/qscilexercustom.h +%%QT_INCDIR%%/Qsci/qscilexerd.h +%%QT_INCDIR%%/Qsci/qscilexerdiff.h +%%QT_INCDIR%%/Qsci/qscilexerfortran.h +%%QT_INCDIR%%/Qsci/qscilexerfortran77.h +%%QT_INCDIR%%/Qsci/qscilexerhtml.h +%%QT_INCDIR%%/Qsci/qscilexeridl.h +%%QT_INCDIR%%/Qsci/qscilexerjava.h +%%QT_INCDIR%%/Qsci/qscilexerjavascript.h +%%QT_INCDIR%%/Qsci/qscilexerlua.h +%%QT_INCDIR%%/Qsci/qscilexermakefile.h +%%QT_INCDIR%%/Qsci/qscilexermatlab.h +%%QT_INCDIR%%/Qsci/qscilexeroctave.h +%%QT_INCDIR%%/Qsci/qscilexerpascal.h +%%QT_INCDIR%%/Qsci/qscilexerperl.h +%%QT_INCDIR%%/Qsci/qscilexerpo.h +%%QT_INCDIR%%/Qsci/qscilexerpostscript.h +%%QT_INCDIR%%/Qsci/qscilexerpov.h +%%QT_INCDIR%%/Qsci/qscilexerproperties.h +%%QT_INCDIR%%/Qsci/qscilexerpython.h +%%QT_INCDIR%%/Qsci/qscilexerruby.h +%%QT_INCDIR%%/Qsci/qscilexerspice.h +%%QT_INCDIR%%/Qsci/qscilexersql.h +%%QT_INCDIR%%/Qsci/qscilexertcl.h +%%QT_INCDIR%%/Qsci/qscilexertex.h +%%QT_INCDIR%%/Qsci/qscilexerverilog.h +%%QT_INCDIR%%/Qsci/qscilexervhdl.h +%%QT_INCDIR%%/Qsci/qscilexerxml.h +%%QT_INCDIR%%/Qsci/qscilexeryaml.h +%%QT_INCDIR%%/Qsci/qscimacro.h +%%QT_INCDIR%%/Qsci/qsciprinter.h +%%QT_INCDIR%%/Qsci/qsciscintilla.h +%%QT_INCDIR%%/Qsci/qsciscintillabase.h +%%QT_INCDIR%%/Qsci/qscistyle.h +%%QT_INCDIR%%/Qsci/qscistyledtext.h +%%QT_LIBDIR%%/libqscintilla2-qt5.so +%%QT_LIBDIR%%/libqscintilla2-qt5.so.12 +%%QT_LIBDIR%%/libqscintilla2-qt5.so.12.0 +%%QT_LIBDIR%%/libqscintilla2-qt5.so.12.0.1 +%%QT_MKSPECDIR%%/features/qscintilla2.prf +%%QT_DATADIR%%/qsci/api/python/Python-2.4.api +%%QT_DATADIR%%/qsci/api/python/Python-2.5.api +%%QT_DATADIR%%/qsci/api/python/Python-2.6.api +%%QT_DATADIR%%/qsci/api/python/Python-2.7.api +%%QT_DATADIR%%/qsci/api/python/Python-3.1.api +%%QT_DATADIR%%/qsci/api/python/Python-3.2.api +%%QT_DATADIR%%/qsci/api/python/Python-3.3.api +%%QT_DATADIR%%/qsci/api/python/Python-3.4.api +%%QT_DATADIR%%/qsci/api/python/Python-3.5.api +%%NLS%%%%QT_L10NDIR%%/qscintilla_cs.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_de.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_es.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_fr.qm +%%NLS%%%%QT_L10NDIR%%/qscintilla_pt_br.qm diff --git a/graphics/Makefile b/graphics/Makefile index 522ed21522f1..3d63f9335c7f 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -864,6 +864,7 @@ SUBDIR += py-pygooglechart SUBDIR += py-pyproj SUBDIR += py-qt4-svg + SUBDIR += py-qt5-svg SUBDIR += py-rabbyt SUBDIR += py-sane SUBDIR += py-seqdiag diff --git a/graphics/py-qt5-svg/Makefile b/graphics/py-qt5-svg/Makefile new file mode 100644 index 000000000000..a644bf0bcfad --- /dev/null +++ b/graphics/py-qt5-svg/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= svg +CATEGORIES= graphics devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtSvg module + +CONFIGURE_ARGS= --enable QtSvg +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run gui_run widgets_run +USE_QT5= core gui svg widgets qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtSvg API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/graphics/py-qt5-svg/pkg-descr b/graphics/py-qt5-svg/pkg-descr new file mode 100644 index 000000000000..3a211c7460ad --- /dev/null +++ b/graphics/py-qt5-svg/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtSvg module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/graphics/py-qt5-svg/pkg-plist b/graphics/py-qt5-svg/pkg-plist new file mode 100644 index 000000000000..d4c2758e549b --- /dev/null +++ b/graphics/py-qt5-svg/pkg-plist @@ -0,0 +1,7 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtSvg.so +%%PYQT_SIPDIR%%/QtSvg/QtSvgmod.sip +%%PYQT_SIPDIR%%/QtSvg/qgraphicssvgitem.sip +%%PYQT_SIPDIR%%/QtSvg/qsvggenerator.sip +%%PYQT_SIPDIR%%/QtSvg/qsvgrenderer.sip +%%PYQT_SIPDIR%%/QtSvg/qsvgwidget.sip +%%API%%share/qt5/qsci/api/python/QtSvg.api diff --git a/lang/Makefile b/lang/Makefile index efa56411d7d7..0421ef4d4bae 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -261,6 +261,7 @@ SUBDIR += py-clojure SUBDIR += py-mx-base SUBDIR += py-prolog + SUBDIR += py-qt5-qml SUBDIR += pypy SUBDIR += pypy3-devel SUBDIR += python diff --git a/lang/py-qt5-qml/Makefile b/lang/py-qt5-qml/Makefile new file mode 100644 index 000000000000..f6fb4173fbfb --- /dev/null +++ b/lang/py-qt5-qml/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= qml +CATEGORIES= lang devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QML module + +CONFIGURE_ARGS= --enable QtQml +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run network_run +USE_QT5= core gui network qml buildtools_build qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtQml API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/lang/py-qt5-qml/pkg-descr b/lang/py-qt5-qml/pkg-descr new file mode 100644 index 000000000000..8ec04c4269bb --- /dev/null +++ b/lang/py-qt5-qml/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtQml module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/lang/py-qt5-qml/pkg-plist b/lang/py-qt5-qml/pkg-plist new file mode 100644 index 000000000000..b92479b5ef88 --- /dev/null +++ b/lang/py-qt5-qml/pkg-plist @@ -0,0 +1,27 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtQml.so +%%QT_PLUGINDIR%%/PyQt5/libpyqt5qmlplugin.so +%%PYQT_SIPDIR%%/QtQml/QtQmlmod.sip +%%PYQT_SIPDIR%%/QtQml/qjsengine.sip +%%PYQT_SIPDIR%%/QtQml/qjsvalue.sip +%%PYQT_SIPDIR%%/QtQml/qjsvalueiterator.sip +%%PYQT_SIPDIR%%/QtQml/qmlattachedpropertiesobject.sip +%%PYQT_SIPDIR%%/QtQml/qmlregistertype.sip +%%PYQT_SIPDIR%%/QtQml/qpyqmllistproperty.sip +%%PYQT_SIPDIR%%/QtQml/qqmlabstracturlinterceptor.sip +%%PYQT_SIPDIR%%/QtQml/qqmlapplicationengine.sip +%%PYQT_SIPDIR%%/QtQml/qqmlcomponent.sip +%%PYQT_SIPDIR%%/QtQml/qqmlcontext.sip +%%PYQT_SIPDIR%%/QtQml/qqmlengine.sip +%%PYQT_SIPDIR%%/QtQml/qqmlerror.sip +%%PYQT_SIPDIR%%/QtQml/qqmlexpression.sip +%%PYQT_SIPDIR%%/QtQml/qqmlextensionplugin.sip +%%PYQT_SIPDIR%%/QtQml/qqmlfileselector.sip +%%PYQT_SIPDIR%%/QtQml/qqmlincubator.sip +%%PYQT_SIPDIR%%/QtQml/qqmllist.sip +%%PYQT_SIPDIR%%/QtQml/qqmlnetworkaccessmanagerfactory.sip +%%PYQT_SIPDIR%%/QtQml/qqmlparserstatus.sip +%%PYQT_SIPDIR%%/QtQml/qqmlproperty.sip +%%PYQT_SIPDIR%%/QtQml/qqmlpropertymap.sip +%%PYQT_SIPDIR%%/QtQml/qqmlpropertyvaluesource.sip +%%PYQT_SIPDIR%%/QtQml/qqmlscriptstring.sip +%%API%%share/qt5/qsci/api/python/QtQml.api diff --git a/misc/Makefile b/misc/Makefile index ac9d276378ce..9c8e5a2745a8 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -380,6 +380,8 @@ SUBDIR += py-progressbar231 SUBDIR += py-qt4-demo SUBDIR += py-qt4-doc + SUBDIR += py-qt5-demo + SUBDIR += py-qt5-doc SUBDIR += py-yolk SUBDIR += pylize SUBDIR += pypanda diff --git a/misc/py-qt5-demo/Makefile b/misc/py-qt5-demo/Makefile new file mode 100644 index 000000000000..c1ea452317de --- /dev/null +++ b/misc/py-qt5-demo/Makefile @@ -0,0 +1,40 @@ +# $FreeBSD$ + +PORTNAME= demo +PORTVERSION= ${PYQT5_VERSION} +CATEGORIES= misc devel python +MASTER_SITES= ${MASTER_SITES_PYQT5} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- +DISTNAME= ${PYQT_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, Qt demo and examples + +DISTINFO_FILE= ${PYQT_DISTINFO_FILE} + +NO_BUILD= yes +USES= python pyqt:5 +USE_PYQT= # + +EXAMPLESDIR= ${PREFIX}/share/examples/py-qt5 + +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} + +post-install: + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${EXAMPLESDIR} + ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${EXAMPLESDIR} + +.include <bsd.port.mk> diff --git a/misc/py-qt5-demo/pkg-descr b/misc/py-qt5-demo/pkg-descr new file mode 100644 index 000000000000..6bfced5466b4 --- /dev/null +++ b/misc/py-qt5-demo/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the PyQt5 demo and examples. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/misc/py-qt5-demo/pkg-plist b/misc/py-qt5-demo/pkg-plist new file mode 100644 index 000000000000..432fd8647304 --- /dev/null +++ b/misc/py-qt5-demo/pkg-plist @@ -0,0 +1,1260 @@ +%%EXAMPLESDIR%%/README +%%EXAMPLESDIR%%/activeqt/README +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image0.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image1.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image2.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image3.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image4.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image5.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/icons/image6.xpm +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.qrc +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow.ui +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.py +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.pyc +%%EXAMPLESDIR%%/activeqt/webbrowser/mainwindow_rc.pyo +%%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.py +%%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyc +%%EXAMPLESDIR%%/activeqt/webbrowser/ui_mainwindow.pyo +%%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.py +%%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyc +%%EXAMPLESDIR%%/activeqt/webbrowser/webbrowser.pyo +%%EXAMPLESDIR%%/animation/README +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.py +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyc +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.pyo +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles.qrc +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.py +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.pyc +%%EXAMPLESDIR%%/animation/animatedtiles/animatedtiles_rc.pyo +%%EXAMPLESDIR%%/animation/animatedtiles/images/Time-For-Lunch-2.jpg +%%EXAMPLESDIR%%/animation/animatedtiles/images/centered.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/ellipse.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/figure8.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/kinetic.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/random.png +%%EXAMPLESDIR%%/animation/animatedtiles/images/tile.png +%%EXAMPLESDIR%%/animation/appchooser/accessories-dictionary.png +%%EXAMPLESDIR%%/animation/appchooser/akregator.png +%%EXAMPLESDIR%%/animation/appchooser/appchooser.py +%%EXAMPLESDIR%%/animation/appchooser/appchooser.pyc +%%EXAMPLESDIR%%/animation/appchooser/appchooser.pyo +%%EXAMPLESDIR%%/animation/appchooser/appchooser.qrc +%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.py +%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.pyc +%%EXAMPLESDIR%%/animation/appchooser/appchooser_rc.pyo +%%EXAMPLESDIR%%/animation/appchooser/digikam.png +%%EXAMPLESDIR%%/animation/appchooser/k3b.png +%%EXAMPLESDIR%%/animation/easing/easing.py +%%EXAMPLESDIR%%/animation/easing/easing.pyc +%%EXAMPLESDIR%%/animation/easing/easing.pyo +%%EXAMPLESDIR%%/animation/easing/easing.qrc +%%EXAMPLESDIR%%/animation/easing/easing_rc.py +%%EXAMPLESDIR%%/animation/easing/easing_rc.pyc +%%EXAMPLESDIR%%/animation/easing/easing_rc.pyo +%%EXAMPLESDIR%%/animation/easing/form.ui +%%EXAMPLESDIR%%/animation/easing/images/qt-logo.png +%%EXAMPLESDIR%%/animation/easing/ui_form.py +%%EXAMPLESDIR%%/animation/easing/ui_form.pyc +%%EXAMPLESDIR%%/animation/easing/ui_form.pyo +%%EXAMPLESDIR%%/animation/moveblocks.py +%%EXAMPLESDIR%%/animation/moveblocks.pyc +%%EXAMPLESDIR%%/animation/moveblocks.pyo +%%EXAMPLESDIR%%/animation/states/accessories-dictionary.png +%%EXAMPLESDIR%%/animation/states/akregator.png +%%EXAMPLESDIR%%/animation/states/digikam.png +%%EXAMPLESDIR%%/animation/states/help-browser.png +%%EXAMPLESDIR%%/animation/states/k3b.png +%%EXAMPLESDIR%%/animation/states/kchart.png +%%EXAMPLESDIR%%/animation/states/states.py +%%EXAMPLESDIR%%/animation/states/states.pyc +%%EXAMPLESDIR%%/animation/states/states.pyo +%%EXAMPLESDIR%%/animation/states/states.qrc +%%EXAMPLESDIR%%/animation/states/states_rc.py +%%EXAMPLESDIR%%/animation/states/states_rc.pyc +%%EXAMPLESDIR%%/animation/states/states_rc.pyo +%%EXAMPLESDIR%%/animation/stickman/animations/chilling +%%EXAMPLESDIR%%/animation/stickman/animations/dancing +%%EXAMPLESDIR%%/animation/stickman/animations/dead +%%EXAMPLESDIR%%/animation/stickman/animations/jumping +%%EXAMPLESDIR%%/animation/stickman/stickman.py +%%EXAMPLESDIR%%/animation/stickman/stickman.pyc +%%EXAMPLESDIR%%/animation/stickman/stickman.pyo +%%EXAMPLESDIR%%/animation/stickman/stickman.qrc +%%EXAMPLESDIR%%/animation/stickman/stickman_rc.py +%%EXAMPLESDIR%%/animation/stickman/stickman_rc.pyc +%%EXAMPLESDIR%%/animation/stickman/stickman_rc.pyo +%%EXAMPLESDIR%%/dbus/chat/chat.py +%%EXAMPLESDIR%%/dbus/chat/chat.pyc +%%EXAMPLESDIR%%/dbus/chat/chat.pyo +%%EXAMPLESDIR%%/dbus/chat/chatmainwindow.ui +%%EXAMPLESDIR%%/dbus/chat/chatsetnickname.ui +%%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.py +%%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyc +%%EXAMPLESDIR%%/dbus/chat/ui_chatmainwindow.pyo +%%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.py +%%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyc +%%EXAMPLESDIR%%/dbus/chat/ui_chatsetnickname.pyo +%%EXAMPLESDIR%%/dbus/listnames.py +%%EXAMPLESDIR%%/dbus/listnames.pyc +%%EXAMPLESDIR%%/dbus/listnames.pyo +%%EXAMPLESDIR%%/dbus/pingpong/ping.py +%%EXAMPLESDIR%%/dbus/pingpong/ping.pyc +%%EXAMPLESDIR%%/dbus/pingpong/ping.pyo +%%EXAMPLESDIR%%/dbus/pingpong/pong.py +%%EXAMPLESDIR%%/dbus/pingpong/pong.pyc +%%EXAMPLESDIR%%/dbus/pingpong/pong.pyo +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.py +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyc +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/car/car.pyo +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.py +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyc +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.pyo +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/controller.ui +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.py +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyc +%%EXAMPLESDIR%%/dbus/remotecontrolledcar/controller/ui_controller.pyo +%%EXAMPLESDIR%%/designer/README +%%EXAMPLESDIR%%/designer/calculatorform/calculatorform.py +%%EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyc +%%EXAMPLESDIR%%/designer/calculatorform/calculatorform.pyo +%%EXAMPLESDIR%%/designer/calculatorform/calculatorform.ui +%%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.py +%%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyc +%%EXAMPLESDIR%%/designer/calculatorform/ui_calculatorform.pyo +%%EXAMPLESDIR%%/designer/plugins/plugins.py +%%EXAMPLESDIR%%/designer/plugins/plugins.pyc +%%EXAMPLESDIR%%/designer/plugins/plugins.pyo +%%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/analogclockplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/bubbleswidgetplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/counterlabelplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/datetimeeditplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/helloglwidgetplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/multipagewidgetplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/polygonwidgetplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/pydemoplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.py +%%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyc +%%EXAMPLESDIR%%/designer/plugins/python/pythonconsoleplugin.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.py +%%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/analogclock.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/bubbleswidget.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.py +%%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/counterlabel.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.py +%%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/datetimeedit.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/helloglwidget.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/multipagewidget.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/polygonwidget.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.py +%%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/pydemo.pyo +%%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.py +%%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyc +%%EXAMPLESDIR%%/designer/plugins/widgets/pythonconsolewidget.pyo +%%EXAMPLESDIR%%/desktop/README +%%EXAMPLESDIR%%/desktop/screenshot.py +%%EXAMPLESDIR%%/desktop/screenshot.pyc +%%EXAMPLESDIR%%/desktop/screenshot.pyo +%%EXAMPLESDIR%%/desktop/systray/images/bad.png +%%EXAMPLESDIR%%/desktop/systray/images/heart.png +%%EXAMPLESDIR%%/desktop/systray/images/trash.png +%%EXAMPLESDIR%%/desktop/systray/systray.py +%%EXAMPLESDIR%%/desktop/systray/systray.pyc +%%EXAMPLESDIR%%/desktop/systray/systray.pyo +%%EXAMPLESDIR%%/desktop/systray/systray.qrc +%%EXAMPLESDIR%%/desktop/systray/systray_rc.py +%%EXAMPLESDIR%%/desktop/systray/systray_rc.pyc +%%EXAMPLESDIR%%/desktop/systray/systray_rc.pyo +%%EXAMPLESDIR%%/dialogs/README +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard.py +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyc +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard.pyo +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard.qrc +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.py +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.pyc +%%EXAMPLESDIR%%/dialogs/classwizard/classwizard_rc.pyo +%%EXAMPLESDIR%%/dialogs/classwizard/images/background.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/banner.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/logo1.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/logo2.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/logo3.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/watermark1.png +%%EXAMPLESDIR%%/dialogs/classwizard/images/watermark2.png +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog.py +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyc +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog.pyo +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog.qrc +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.py +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.pyc +%%EXAMPLESDIR%%/dialogs/configdialog/configdialog_rc.pyo +%%EXAMPLESDIR%%/dialogs/configdialog/images/config.png +%%EXAMPLESDIR%%/dialogs/configdialog/images/query.png +%%EXAMPLESDIR%%/dialogs/configdialog/images/update.png +%%EXAMPLESDIR%%/dialogs/extension.py +%%EXAMPLESDIR%%/dialogs/extension.pyc +%%EXAMPLESDIR%%/dialogs/extension.pyo +%%EXAMPLESDIR%%/dialogs/findfiles.py +%%EXAMPLESDIR%%/dialogs/findfiles.pyc +%%EXAMPLESDIR%%/dialogs/findfiles.pyo +%%EXAMPLESDIR%%/dialogs/standarddialogs.py +%%EXAMPLESDIR%%/dialogs/standarddialogs.pyc +%%EXAMPLESDIR%%/dialogs/standarddialogs.pyo +%%EXAMPLESDIR%%/dialogs/tabdialog.py +%%EXAMPLESDIR%%/dialogs/tabdialog.pyc +%%EXAMPLESDIR%%/dialogs/tabdialog.pyo +%%EXAMPLESDIR%%/dialogs/trivialwizard.py +%%EXAMPLESDIR%%/dialogs/trivialwizard.pyc +%%EXAMPLESDIR%%/dialogs/trivialwizard.pyo +%%EXAMPLESDIR%%/draganddrop/README +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.py +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyc +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.pyo +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding.qrc +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.py +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.pyc +%%EXAMPLESDIR%%/draganddrop/delayedencoding/delayedencoding_rc.pyo +%%EXAMPLESDIR%%/draganddrop/delayedencoding/images/drag.png +%%EXAMPLESDIR%%/draganddrop/delayedencoding/images/example.svg +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.py +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyc +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.pyo +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons.qrc +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.py +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.pyc +%%EXAMPLESDIR%%/draganddrop/draggableicons/draggableicons_rc.pyo +%%EXAMPLESDIR%%/draganddrop/draggableicons/images/boat.png +%%EXAMPLESDIR%%/draganddrop/draggableicons/images/car.png +%%EXAMPLESDIR%%/draganddrop/draggableicons/images/house.png +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.py +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyc +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.pyo +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext.qrc +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.py +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.pyc +%%EXAMPLESDIR%%/draganddrop/draggabletext/draggabletext_rc.pyo +%%EXAMPLESDIR%%/draganddrop/draggabletext/words.txt +%%EXAMPLESDIR%%/draganddrop/dropsite.py +%%EXAMPLESDIR%%/draganddrop/dropsite.pyc +%%EXAMPLESDIR%%/draganddrop/dropsite.pyo +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.py +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyc +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.pyo +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets.qrc +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.py +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.pyc +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/fridgemagnets_rc.pyo +%%EXAMPLESDIR%%/draganddrop/fridgemagnets/words.txt +%%EXAMPLESDIR%%/draganddrop/puzzle/example.jpg +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.py +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyc +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.pyo +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle.qrc +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.py +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.pyc +%%EXAMPLESDIR%%/draganddrop/puzzle/puzzle_rc.pyo +%%EXAMPLESDIR%%/effects/README +%%EXAMPLESDIR%%/effects/lighting.py +%%EXAMPLESDIR%%/effects/lighting.pyc +%%EXAMPLESDIR%%/effects/lighting.pyo +%%EXAMPLESDIR%%/graphicsview/README +%%EXAMPLESDIR%%/graphicsview/anchorlayout.py +%%EXAMPLESDIR%%/graphicsview/anchorlayout.pyc +%%EXAMPLESDIR%%/graphicsview/anchorlayout.pyo +%%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.py +%%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyc +%%EXAMPLESDIR%%/graphicsview/collidingmice/collidingmice.pyo +%%EXAMPLESDIR%%/graphicsview/collidingmice/images/cheese.jpg +%%EXAMPLESDIR%%/graphicsview/collidingmice/mice.qrc +%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.py +%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.pyc +%%EXAMPLESDIR%%/graphicsview/collidingmice/mice_rc.pyo +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.py +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyc +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.pyo +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene.qrc +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.py +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.pyc +%%EXAMPLESDIR%%/graphicsview/diagramscene/diagramscene_rc.pyo +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background1.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background2.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background3.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/background4.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/bold.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/bringtofront.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/delete.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/floodfill.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/italic.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/linecolor.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/linepointer.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/pointer.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/sendtoback.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/textpointer.png +%%EXAMPLESDIR%%/graphicsview/diagramscene/images/underline.png +%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.py +%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyc +%%EXAMPLESDIR%%/graphicsview/dragdroprobot/dragdroprobot.pyo +%%EXAMPLESDIR%%/graphicsview/dragdroprobot/images/head.png +%%EXAMPLESDIR%%/graphicsview/elasticnodes.py +%%EXAMPLESDIR%%/graphicsview/elasticnodes.pyc +%%EXAMPLESDIR%%/graphicsview/elasticnodes.pyo +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/No-Ones-Laughing-3.jpg +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.py +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.pyc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.pyo +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialog.ui +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.py +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.pyc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.pyo +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs.qrc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.py +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.pyc +%%EXAMPLESDIR%%/graphicsview/embeddeddialogs/embeddeddialogs_rc.pyo +%%EXAMPLESDIR%%/graphicsview/padnavigator/form.ui +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/artsfftscope.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/blue_angle_swirl.jpg +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_contacts.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_journal.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_mail.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kontact_notes.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/kopeteavailable.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/metacontact_online.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/images/minitools.png +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.py +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyc +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.pyo +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator.qrc +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.py +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.pyc +%%EXAMPLESDIR%%/graphicsview/padnavigator/padnavigator_rc.pyo +%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.py +%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.pyc +%%EXAMPLESDIR%%/graphicsview/padnavigator/ui_form.pyo +%%EXAMPLESDIR%%/ipc/README +%%EXAMPLESDIR%%/ipc/localfortuneclient.py +%%EXAMPLESDIR%%/ipc/localfortuneclient.pyc +%%EXAMPLESDIR%%/ipc/localfortuneclient.pyo +%%EXAMPLESDIR%%/ipc/localfortuneserver.py +%%EXAMPLESDIR%%/ipc/localfortuneserver.pyc +%%EXAMPLESDIR%%/ipc/localfortuneserver.pyo +%%EXAMPLESDIR%%/ipc/sharedmemory/dialog.py +%%EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyc +%%EXAMPLESDIR%%/ipc/sharedmemory/dialog.pyo +%%EXAMPLESDIR%%/ipc/sharedmemory/dialog.ui +%%EXAMPLESDIR%%/ipc/sharedmemory/image.png +%%EXAMPLESDIR%%/ipc/sharedmemory/qt.png +%%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.py +%%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyc +%%EXAMPLESDIR%%/ipc/sharedmemory/sharedmemory.pyo +%%EXAMPLESDIR%%/itemviews/README +%%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.py +%%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyc +%%EXAMPLESDIR%%/itemviews/basicsortfiltermodel.pyo +%%EXAMPLESDIR%%/itemviews/chart/chart.py +%%EXAMPLESDIR%%/itemviews/chart/chart.pyc +%%EXAMPLESDIR%%/itemviews/chart/chart.pyo +%%EXAMPLESDIR%%/itemviews/chart/chart.qrc +%%EXAMPLESDIR%%/itemviews/chart/chart_rc.py +%%EXAMPLESDIR%%/itemviews/chart/chart_rc.pyc +%%EXAMPLESDIR%%/itemviews/chart/chart_rc.pyo +%%EXAMPLESDIR%%/itemviews/chart/mydata.cht +%%EXAMPLESDIR%%/itemviews/chart/qtdata.cht +%%EXAMPLESDIR%%/itemviews/coloreditorfactory.py +%%EXAMPLESDIR%%/itemviews/coloreditorfactory.pyc +%%EXAMPLESDIR%%/itemviews/coloreditorfactory.pyo +%%EXAMPLESDIR%%/itemviews/combowidgetmapper.py +%%EXAMPLESDIR%%/itemviews/combowidgetmapper.pyc +%%EXAMPLESDIR%%/itemviews/combowidgetmapper.pyo +%%EXAMPLESDIR%%/itemviews/customsortfiltermodel.py +%%EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyc +%%EXAMPLESDIR%%/itemviews/customsortfiltermodel.pyo +%%EXAMPLESDIR%%/itemviews/dirview.py +%%EXAMPLESDIR%%/itemviews/dirview.pyc +%%EXAMPLESDIR%%/itemviews/dirview.pyo +%%EXAMPLESDIR%%/itemviews/editabletreemodel/default.txt +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.py +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.pyo +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel.qrc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.py +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.pyc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/editabletreemodel_rc.pyo +%%EXAMPLESDIR%%/itemviews/editabletreemodel/mainwindow.ui +%%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.py +%%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyc +%%EXAMPLESDIR%%/itemviews/editabletreemodel/ui_mainwindow.pyo +%%EXAMPLESDIR%%/itemviews/fetchmore.py +%%EXAMPLESDIR%%/itemviews/fetchmore.pyc +%%EXAMPLESDIR%%/itemviews/fetchmore.pyo +%%EXAMPLESDIR%%/itemviews/pixelator/images/qt.png +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator.py +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyc +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator.pyo +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator.qrc +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.py +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.pyc +%%EXAMPLESDIR%%/itemviews/pixelator/pixelator_rc.pyo +%%EXAMPLESDIR%%/itemviews/puzzle/example.jpg +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle.py +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyc +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle.pyo +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle.qrc +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.py +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.pyc +%%EXAMPLESDIR%%/itemviews/puzzle/puzzle_rc.pyo +%%EXAMPLESDIR%%/itemviews/simpledommodel.py +%%EXAMPLESDIR%%/itemviews/simpledommodel.pyc +%%EXAMPLESDIR%%/itemviews/simpledommodel.pyo +%%EXAMPLESDIR%%/itemviews/simpletreemodel/default.txt +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.py +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyc +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.pyo +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel.qrc +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.py +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.pyc +%%EXAMPLESDIR%%/itemviews/simpletreemodel/simpletreemodel_rc.pyo +%%EXAMPLESDIR%%/itemviews/simplewidgetmapper.py +%%EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyc +%%EXAMPLESDIR%%/itemviews/simplewidgetmapper.pyo +%%EXAMPLESDIR%%/itemviews/spinboxdelegate.py +%%EXAMPLESDIR%%/itemviews/spinboxdelegate.pyc +%%EXAMPLESDIR%%/itemviews/spinboxdelegate.pyo +%%EXAMPLESDIR%%/itemviews/spreadsheet/images/interview.png +%%EXAMPLESDIR%%/itemviews/spreadsheet/printview.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/printview.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/printview.pyo +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.pyo +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet.qrc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheet_rc.pyo +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetdelegate.pyo +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/spreadsheetitem.pyo +%%EXAMPLESDIR%%/itemviews/spreadsheet/util.py +%%EXAMPLESDIR%%/itemviews/spreadsheet/util.pyc +%%EXAMPLESDIR%%/itemviews/spreadsheet/util.pyo +%%EXAMPLESDIR%%/itemviews/stardelegate.py +%%EXAMPLESDIR%%/itemviews/stardelegate.pyc +%%EXAMPLESDIR%%/itemviews/stardelegate.pyo +%%EXAMPLESDIR%%/layouts/README +%%EXAMPLESDIR%%/layouts/basiclayouts.py +%%EXAMPLESDIR%%/layouts/basiclayouts.pyc +%%EXAMPLESDIR%%/layouts/basiclayouts.pyo +%%EXAMPLESDIR%%/layouts/borderlayout.py +%%EXAMPLESDIR%%/layouts/borderlayout.pyc +%%EXAMPLESDIR%%/layouts/borderlayout.pyo +%%EXAMPLESDIR%%/layouts/flowlayout.py +%%EXAMPLESDIR%%/layouts/flowlayout.pyc +%%EXAMPLESDIR%%/layouts/flowlayout.pyo +%%EXAMPLESDIR%%/mainwindows/README +%%EXAMPLESDIR%%/mainwindows/application/application.py +%%EXAMPLESDIR%%/mainwindows/application/application.pyc +%%EXAMPLESDIR%%/mainwindows/application/application.pyo +%%EXAMPLESDIR%%/mainwindows/application/images/copy.png +%%EXAMPLESDIR%%/mainwindows/application/images/cut.png +%%EXAMPLESDIR%%/mainwindows/application/images/new.png +%%EXAMPLESDIR%%/mainwindows/application/images/open.png +%%EXAMPLESDIR%%/mainwindows/application/images/paste.png +%%EXAMPLESDIR%%/mainwindows/application/images/save.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.py +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyc +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.pyo +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets.qrc +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.py +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.pyc +%%EXAMPLESDIR%%/mainwindows/dockwidgets/dockwidgets_rc.pyo +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/new.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/print.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/save.png +%%EXAMPLESDIR%%/mainwindows/dockwidgets/images/undo.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/copy.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/cut.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/new.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/open.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/paste.png +%%EXAMPLESDIR%%/mainwindows/mdi/images/save.png +%%EXAMPLESDIR%%/mainwindows/mdi/mdi.py +%%EXAMPLESDIR%%/mainwindows/mdi/mdi.pyc +%%EXAMPLESDIR%%/mainwindows/mdi/mdi.pyo +%%EXAMPLESDIR%%/mainwindows/mdi/mdi.qrc +%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.py +%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.pyc +%%EXAMPLESDIR%%/mainwindows/mdi/mdi_rc.pyo +%%EXAMPLESDIR%%/mainwindows/menus.py +%%EXAMPLESDIR%%/mainwindows/menus.pyc +%%EXAMPLESDIR%%/mainwindows/menus.pyo +%%EXAMPLESDIR%%/mainwindows/recentfiles.py +%%EXAMPLESDIR%%/mainwindows/recentfiles.pyc +%%EXAMPLESDIR%%/mainwindows/recentfiles.pyo +%%EXAMPLESDIR%%/mainwindows/sdi/images/copy.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/cut.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/new.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/open.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/paste.png +%%EXAMPLESDIR%%/mainwindows/sdi/images/save.png +%%EXAMPLESDIR%%/mainwindows/sdi/sdi.py +%%EXAMPLESDIR%%/mainwindows/sdi/sdi.pyc +%%EXAMPLESDIR%%/mainwindows/sdi/sdi.pyo +%%EXAMPLESDIR%%/mainwindows/sdi/sdi.qrc +%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.py +%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.pyc +%%EXAMPLESDIR%%/mainwindows/sdi/sdi_rc.pyo +%%EXAMPLESDIR%%/mainwindows/separations.py +%%EXAMPLESDIR%%/mainwindows/separations.pyc +%%EXAMPLESDIR%%/mainwindows/separations.pyo +%%EXAMPLESDIR%%/multimedia/README +%%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.py +%%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.pyc +%%EXAMPLESDIR%%/multimedia/audiodevices/audiodevices.pyo +%%EXAMPLESDIR%%/multimedia/audiodevices/audiodevicesbase.ui +%%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.py +%%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.pyc +%%EXAMPLESDIR%%/multimedia/audiodevices/ui_audiodevicesbase.pyo +%%EXAMPLESDIR%%/multimedia/audiooutput.py +%%EXAMPLESDIR%%/multimedia/audiooutput.pyc +%%EXAMPLESDIR%%/multimedia/audiooutput.pyo +%%EXAMPLESDIR%%/multimediawidgets/README +%%EXAMPLESDIR%%/multimediawidgets/camera/camera.py +%%EXAMPLESDIR%%/multimediawidgets/camera/camera.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/camera.pyo +%%EXAMPLESDIR%%/multimediawidgets/camera/camera.ui +%%EXAMPLESDIR%%/multimediawidgets/camera/imagesettings.ui +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.py +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_camera.pyo +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.py +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_imagesettings.pyo +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.py +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.pyc +%%EXAMPLESDIR%%/multimediawidgets/camera/ui_videosettings.pyo +%%EXAMPLESDIR%%/multimediawidgets/camera/videosettings.ui +%%EXAMPLESDIR%%/multimediawidgets/player.py +%%EXAMPLESDIR%%/multimediawidgets/player.pyc +%%EXAMPLESDIR%%/multimediawidgets/player.pyo +%%EXAMPLESDIR%%/multimediawidgets/videographicsitem.py +%%EXAMPLESDIR%%/multimediawidgets/videographicsitem.pyc +%%EXAMPLESDIR%%/multimediawidgets/videographicsitem.pyo +%%EXAMPLESDIR%%/multimediawidgets/videowidget.py +%%EXAMPLESDIR%%/multimediawidgets/videowidget.pyc +%%EXAMPLESDIR%%/multimediawidgets/videowidget.pyo +%%EXAMPLESDIR%%/network/README +%%EXAMPLESDIR%%/network/blockingfortuneclient.py +%%EXAMPLESDIR%%/network/blockingfortuneclient.pyc +%%EXAMPLESDIR%%/network/blockingfortuneclient.pyo +%%EXAMPLESDIR%%/network/broadcastreceiver.py +%%EXAMPLESDIR%%/network/broadcastreceiver.pyc +%%EXAMPLESDIR%%/network/broadcastreceiver.pyo +%%EXAMPLESDIR%%/network/broadcastsender.py +%%EXAMPLESDIR%%/network/broadcastsender.pyc +%%EXAMPLESDIR%%/network/broadcastsender.pyo +%%EXAMPLESDIR%%/network/fortuneclient.py +%%EXAMPLESDIR%%/network/fortuneclient.pyc +%%EXAMPLESDIR%%/network/fortuneclient.pyo +%%EXAMPLESDIR%%/network/fortuneserver.py +%%EXAMPLESDIR%%/network/fortuneserver.pyc +%%EXAMPLESDIR%%/network/fortuneserver.pyo +%%EXAMPLESDIR%%/network/http/authenticationdialog.ui +%%EXAMPLESDIR%%/network/http/http.py +%%EXAMPLESDIR%%/network/http/http.pyc +%%EXAMPLESDIR%%/network/http/http.pyo +%%EXAMPLESDIR%%/network/lightmaps.py +%%EXAMPLESDIR%%/network/lightmaps.pyc +%%EXAMPLESDIR%%/network/lightmaps.pyo +%%EXAMPLESDIR%%/network/loopback.py +%%EXAMPLESDIR%%/network/loopback.pyc +%%EXAMPLESDIR%%/network/loopback.pyo +%%EXAMPLESDIR%%/network/threadedfortuneserver.py +%%EXAMPLESDIR%%/network/threadedfortuneserver.pyc +%%EXAMPLESDIR%%/network/threadedfortuneserver.pyo +%%EXAMPLESDIR%%/opengl/2dpainting.py +%%EXAMPLESDIR%%/opengl/2dpainting.pyc +%%EXAMPLESDIR%%/opengl/2dpainting.pyo +%%EXAMPLESDIR%%/opengl/README +%%EXAMPLESDIR%%/opengl/grabber.py +%%EXAMPLESDIR%%/opengl/grabber.pyc +%%EXAMPLESDIR%%/opengl/grabber.pyo +%%EXAMPLESDIR%%/opengl/hellogl.py +%%EXAMPLESDIR%%/opengl/hellogl.pyc +%%EXAMPLESDIR%%/opengl/hellogl.pyo +%%EXAMPLESDIR%%/opengl/openglwindow.py +%%EXAMPLESDIR%%/opengl/openglwindow.pyc +%%EXAMPLESDIR%%/opengl/openglwindow.pyo +%%EXAMPLESDIR%%/opengl/overpainting.py +%%EXAMPLESDIR%%/opengl/overpainting.pyc +%%EXAMPLESDIR%%/opengl/overpainting.pyo +%%EXAMPLESDIR%%/opengl/textures/images/side1.png +%%EXAMPLESDIR%%/opengl/textures/images/side2.png +%%EXAMPLESDIR%%/opengl/textures/images/side3.png +%%EXAMPLESDIR%%/opengl/textures/images/side4.png +%%EXAMPLESDIR%%/opengl/textures/images/side5.png +%%EXAMPLESDIR%%/opengl/textures/images/side6.png +%%EXAMPLESDIR%%/opengl/textures/textures.py +%%EXAMPLESDIR%%/opengl/textures/textures.pyc +%%EXAMPLESDIR%%/opengl/textures/textures.pyo +%%EXAMPLESDIR%%/painting/README +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.py +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyc +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.pyo +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing.qrc +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.py +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.pyc +%%EXAMPLESDIR%%/painting/basicdrawing/basicdrawing_rc.pyo +%%EXAMPLESDIR%%/painting/basicdrawing/images/brick.png +%%EXAMPLESDIR%%/painting/basicdrawing/images/qt-logo.png +%%EXAMPLESDIR%%/painting/concentriccircles.py +%%EXAMPLESDIR%%/painting/concentriccircles.pyc +%%EXAMPLESDIR%%/painting/concentriccircles.pyo +%%EXAMPLESDIR%%/painting/painterpaths.py +%%EXAMPLESDIR%%/painting/painterpaths.pyc +%%EXAMPLESDIR%%/painting/painterpaths.pyo +%%EXAMPLESDIR%%/painting/svgviewer/files/bubbles.svg +%%EXAMPLESDIR%%/painting/svgviewer/files/cubic.svg +%%EXAMPLESDIR%%/painting/svgviewer/files/spheres.svg +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer.py +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyc +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer.pyo +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer.qrc +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.py +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.pyc +%%EXAMPLESDIR%%/painting/svgviewer/svgviewer_rc.pyo +%%EXAMPLESDIR%%/painting/transformations.py +%%EXAMPLESDIR%%/painting/transformations.pyc +%%EXAMPLESDIR%%/painting/transformations.pyo +%%EXAMPLESDIR%%/pyuic/compile-on-the-fly.py +%%EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyc +%%EXAMPLESDIR%%/pyuic/compile-on-the-fly.pyo +%%EXAMPLESDIR%%/pyuic/demo.ui +%%EXAMPLESDIR%%/pyuic/load_ui1.py +%%EXAMPLESDIR%%/pyuic/load_ui1.pyc +%%EXAMPLESDIR%%/pyuic/load_ui1.pyo +%%EXAMPLESDIR%%/pyuic/load_ui2.py +%%EXAMPLESDIR%%/pyuic/load_ui2.pyc +%%EXAMPLESDIR%%/pyuic/load_ui2.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/adding.py +%%EXAMPLESDIR%%/qml/referenceexamples/adding.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/adding.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/attached.py +%%EXAMPLESDIR%%/qml/referenceexamples/attached.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/attached.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/binding.py +%%EXAMPLESDIR%%/qml/referenceexamples/binding.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/binding.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/coercion.py +%%EXAMPLESDIR%%/qml/referenceexamples/coercion.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/coercion.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/default.py +%%EXAMPLESDIR%%/qml/referenceexamples/default.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/default.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/grouped.py +%%EXAMPLESDIR%%/qml/referenceexamples/grouped.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/grouped.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/methods.py +%%EXAMPLESDIR%%/qml/referenceexamples/methods.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/methods.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/properties.py +%%EXAMPLESDIR%%/qml/referenceexamples/properties.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/properties.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/signal.py +%%EXAMPLESDIR%%/qml/referenceexamples/signal.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/signal.pyo +%%EXAMPLESDIR%%/qml/referenceexamples/valuesource.py +%%EXAMPLESDIR%%/qml/referenceexamples/valuesource.pyc +%%EXAMPLESDIR%%/qml/referenceexamples/valuesource.pyo +%%EXAMPLESDIR%%/qtdemo/colors.py +%%EXAMPLESDIR%%/qtdemo/colors.pyc +%%EXAMPLESDIR%%/qtdemo/colors.pyo +%%EXAMPLESDIR%%/qtdemo/demoitem.py +%%EXAMPLESDIR%%/qtdemo/demoitem.pyc +%%EXAMPLESDIR%%/qtdemo/demoitem.pyo +%%EXAMPLESDIR%%/qtdemo/demoitemanimation.py +%%EXAMPLESDIR%%/qtdemo/demoitemanimation.pyc +%%EXAMPLESDIR%%/qtdemo/demoitemanimation.pyo +%%EXAMPLESDIR%%/qtdemo/demotextitem.py +%%EXAMPLESDIR%%/qtdemo/demotextitem.pyc +%%EXAMPLESDIR%%/qtdemo/demotextitem.pyo +%%EXAMPLESDIR%%/qtdemo/examplecontent.py +%%EXAMPLESDIR%%/qtdemo/examplecontent.pyc +%%EXAMPLESDIR%%/qtdemo/examplecontent.pyo +%%EXAMPLESDIR%%/qtdemo/examples.xml +%%EXAMPLESDIR%%/qtdemo/guide.py +%%EXAMPLESDIR%%/qtdemo/guide.pyc +%%EXAMPLESDIR%%/qtdemo/guide.pyo +%%EXAMPLESDIR%%/qtdemo/guidecircle.py +%%EXAMPLESDIR%%/qtdemo/guidecircle.pyc +%%EXAMPLESDIR%%/qtdemo/guidecircle.pyo +%%EXAMPLESDIR%%/qtdemo/guideline.py +%%EXAMPLESDIR%%/qtdemo/guideline.pyc +%%EXAMPLESDIR%%/qtdemo/guideline.pyo +%%EXAMPLESDIR%%/qtdemo/headingitem.py +%%EXAMPLESDIR%%/qtdemo/headingitem.pyc +%%EXAMPLESDIR%%/qtdemo/headingitem.pyo +%%EXAMPLESDIR%%/qtdemo/imageitem.py +%%EXAMPLESDIR%%/qtdemo/imageitem.pyc +%%EXAMPLESDIR%%/qtdemo/imageitem.pyo +%%EXAMPLESDIR%%/qtdemo/images/demobg.png +%%EXAMPLESDIR%%/qtdemo/images/qtlogo_small.png +%%EXAMPLESDIR%%/qtdemo/images/trolltech-logo.png +%%EXAMPLESDIR%%/qtdemo/itemcircleanimation.py +%%EXAMPLESDIR%%/qtdemo/itemcircleanimation.pyc +%%EXAMPLESDIR%%/qtdemo/itemcircleanimation.pyo +%%EXAMPLESDIR%%/qtdemo/letteritem.py +%%EXAMPLESDIR%%/qtdemo/letteritem.pyc +%%EXAMPLESDIR%%/qtdemo/letteritem.pyo +%%EXAMPLESDIR%%/qtdemo/mainwindow.py +%%EXAMPLESDIR%%/qtdemo/mainwindow.pyc +%%EXAMPLESDIR%%/qtdemo/mainwindow.pyo +%%EXAMPLESDIR%%/qtdemo/menucontent.py +%%EXAMPLESDIR%%/qtdemo/menucontent.pyc +%%EXAMPLESDIR%%/qtdemo/menucontent.pyo +%%EXAMPLESDIR%%/qtdemo/menumanager.py +%%EXAMPLESDIR%%/qtdemo/menumanager.pyc +%%EXAMPLESDIR%%/qtdemo/menumanager.pyo +%%EXAMPLESDIR%%/qtdemo/qtdemo.py +%%EXAMPLESDIR%%/qtdemo/qtdemo.pyc +%%EXAMPLESDIR%%/qtdemo/qtdemo.pyo +%%EXAMPLESDIR%%/qtdemo/scanitem.py +%%EXAMPLESDIR%%/qtdemo/scanitem.pyc +%%EXAMPLESDIR%%/qtdemo/scanitem.pyo +%%EXAMPLESDIR%%/qtdemo/score.py +%%EXAMPLESDIR%%/qtdemo/score.pyc +%%EXAMPLESDIR%%/qtdemo/score.pyo +%%EXAMPLESDIR%%/qtdemo/textbutton.py +%%EXAMPLESDIR%%/qtdemo/textbutton.pyc +%%EXAMPLESDIR%%/qtdemo/textbutton.pyo +%%EXAMPLESDIR%%/quick/README +%%EXAMPLESDIR%%/quick/animation/animation.py +%%EXAMPLESDIR%%/quick/animation/animation.pyc +%%EXAMPLESDIR%%/quick/animation/animation.pyo +%%EXAMPLESDIR%%/quick/animation/animation.qml +%%EXAMPLESDIR%%/quick/animation/animation.qrc +%%EXAMPLESDIR%%/quick/animation/animation_rc.py +%%EXAMPLESDIR%%/quick/animation/animation_rc.pyc +%%EXAMPLESDIR%%/quick/animation/animation_rc.pyo +%%EXAMPLESDIR%%/quick/animation/basics/color-animation.qml +%%EXAMPLESDIR%%/quick/animation/basics/images/face-smile.png +%%EXAMPLESDIR%%/quick/animation/basics/images/moon.png +%%EXAMPLESDIR%%/quick/animation/basics/images/shadow.png +%%EXAMPLESDIR%%/quick/animation/basics/images/star.png +%%EXAMPLESDIR%%/quick/animation/basics/images/sun.png +%%EXAMPLESDIR%%/quick/animation/basics/property-animation.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/SideRect.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/behavior-example.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/tvtennis.qml +%%EXAMPLESDIR%%/quick/animation/behaviors/wigglytext.qml +%%EXAMPLESDIR%%/quick/animation/easing/easing.qml +%%EXAMPLESDIR%%/quick/animation/pathanimation/pathanimation.qml +%%EXAMPLESDIR%%/quick/animation/pathinterpolator/pathinterpolator.qml +%%EXAMPLESDIR%%/quick/animation/states/qt-logo.png +%%EXAMPLESDIR%%/quick/animation/states/states.qml +%%EXAMPLESDIR%%/quick/animation/states/transitions.qml +%%EXAMPLESDIR%%/quick/canvas/bezierCurve/bezierCurve.qml +%%EXAMPLESDIR%%/quick/canvas/canvas.py +%%EXAMPLESDIR%%/quick/canvas/canvas.pyc +%%EXAMPLESDIR%%/quick/canvas/canvas.pyo +%%EXAMPLESDIR%%/quick/canvas/canvas.qml +%%EXAMPLESDIR%%/quick/canvas/canvas.qrc +%%EXAMPLESDIR%%/quick/canvas/canvas_rc.py +%%EXAMPLESDIR%%/quick/canvas/canvas_rc.pyc +%%EXAMPLESDIR%%/quick/canvas/canvas_rc.pyo +%%EXAMPLESDIR%%/quick/canvas/clip/clip.qml +%%EXAMPLESDIR%%/quick/canvas/contents/Button.qml +%%EXAMPLESDIR%%/quick/canvas/contents/ScrollBar.qml +%%EXAMPLESDIR%%/quick/canvas/contents/Slider.qml +%%EXAMPLESDIR%%/quick/canvas/contents/TitleBar.qml +%%EXAMPLESDIR%%/quick/canvas/contents/ToolBar.qml +%%EXAMPLESDIR%%/quick/canvas/contents/images/button-pressed.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/button.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/default.svg +%%EXAMPLESDIR%%/quick/canvas/contents/images/gloss.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/lineedit.sci +%%EXAMPLESDIR%%/quick/canvas/contents/images/quit.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/stripes.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/titlebar.sci +%%EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.png +%%EXAMPLESDIR%%/quick/canvas/contents/images/toolbutton.sci +%%EXAMPLESDIR%%/quick/canvas/contents/qt-logo.png +%%EXAMPLESDIR%%/quick/canvas/quadraticCurveTo/quadraticCurveTo.qml +%%EXAMPLESDIR%%/quick/canvas/roundedrect/roundedrect.qml +%%EXAMPLESDIR%%/quick/canvas/smile/smile.qml +%%EXAMPLESDIR%%/quick/canvas/squircle/squircle.png +%%EXAMPLESDIR%%/quick/canvas/squircle/squircle.qml +%%EXAMPLESDIR%%/quick/canvas/tiger/tiger.js +%%EXAMPLESDIR%%/quick/canvas/tiger/tiger.qml +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.py +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pyc +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.pyo +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel.qrc +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.py +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.pyc +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/abstractitemmodel_rc.pyo +%%EXAMPLESDIR%%/quick/models/abstractitemmodel/view.qml +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.py +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.pyc +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.pyo +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel.qrc +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.py +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.pyc +%%EXAMPLESDIR%%/quick/models/objectlistmodel/objectlistmodel_rc.pyo +%%EXAMPLESDIR%%/quick/models/objectlistmodel/view.qml +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.py +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.pyc +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.pyo +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel.qrc +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.py +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.pyc +%%EXAMPLESDIR%%/quick/models/stringlistmodel/stringlistmodel_rc.pyo +%%EXAMPLESDIR%%/quick/models/stringlistmodel/view.qml +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.py +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.pyc +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.pyo +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry.qrc +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.py +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.pyc +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/customgeometry_rc.pyo +%%EXAMPLESDIR%%/quick/scenegraph/customgeometry/main.qml +%%EXAMPLESDIR%%/quick/shared/Button.qml +%%EXAMPLESDIR%%/quick/shared/LauncherList.qml +%%EXAMPLESDIR%%/quick/shared/SimpleLauncherDelegate.qml +%%EXAMPLESDIR%%/quick/shared/images/back.png +%%EXAMPLESDIR%%/quick/shared/images/next.png +%%EXAMPLESDIR%%/quick/shared/shared.qrc +%%EXAMPLESDIR%%/quick/shared/shared_rc.py +%%EXAMPLESDIR%%/quick/shared/shared_rc.pyc +%%EXAMPLESDIR%%/quick/shared/shared_rc.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter1-basics/chapter1-basics.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter2-methods/chapter2-methods.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter3-bindings/chapter3-bindings.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter4-customPropertyTypes/chapter4-customPropertyTypes.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/app.qml +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter5-listproperties/chapter5-listproperties.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/chartsplugin.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/piechart.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.py +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.pyc +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/pieslice.pyo +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/Charts/qmldir +%%EXAMPLESDIR%%/quick/tutorials/extending/chapter6-plugins/app.qml +%%EXAMPLESDIR%%/richtext/README +%%EXAMPLESDIR%%/richtext/calendar.py +%%EXAMPLESDIR%%/richtext/calendar.pyc +%%EXAMPLESDIR%%/richtext/calendar.pyo +%%EXAMPLESDIR%%/richtext/orderform.py +%%EXAMPLESDIR%%/richtext/orderform.pyc +%%EXAMPLESDIR%%/richtext/orderform.pyo +%%EXAMPLESDIR%%/richtext/syntaxhighlighter.py +%%EXAMPLESDIR%%/richtext/syntaxhighlighter.pyc +%%EXAMPLESDIR%%/richtext/syntaxhighlighter.pyo +%%EXAMPLESDIR%%/richtext/textedit/example.html +%%EXAMPLESDIR%%/richtext/textedit/images/logo.png +%%EXAMPLESDIR%%/richtext/textedit/images/logo32.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editcopy.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editcut.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editpaste.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editredo.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/editundo.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/exportpdf.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/filenew.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/fileopen.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/fileprint.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/filesave.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textbold.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textcenter.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textitalic.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textjustify.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textleft.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textright.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/textunder.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/zoomin.png +%%EXAMPLESDIR%%/richtext/textedit/images/mac/zoomout.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editcopy.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editcut.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editpaste.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editredo.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/editundo.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/exportpdf.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/filenew.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/fileopen.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/fileprint.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/filesave.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textbold.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textcenter.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textitalic.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textjustify.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textleft.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textright.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/textunder.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/zoomin.png +%%EXAMPLESDIR%%/richtext/textedit/images/win/zoomout.png +%%EXAMPLESDIR%%/richtext/textedit/textedit.py +%%EXAMPLESDIR%%/richtext/textedit/textedit.pyc +%%EXAMPLESDIR%%/richtext/textedit/textedit.pyo +%%EXAMPLESDIR%%/richtext/textedit/textedit.qrc +%%EXAMPLESDIR%%/richtext/textedit/textedit_rc.py +%%EXAMPLESDIR%%/richtext/textedit/textedit_rc.pyc +%%EXAMPLESDIR%%/richtext/textedit/textedit_rc.pyo +%%EXAMPLESDIR%%/richtext/textobject/files/heart.svg +%%EXAMPLESDIR%%/richtext/textobject/textobject.py +%%EXAMPLESDIR%%/richtext/textobject/textobject.pyc +%%EXAMPLESDIR%%/richtext/textobject/textobject.pyo +%%EXAMPLESDIR%%/sql/README +%%EXAMPLESDIR%%/sql/cachedtable.py +%%EXAMPLESDIR%%/sql/cachedtable.pyc +%%EXAMPLESDIR%%/sql/cachedtable.pyo +%%EXAMPLESDIR%%/sql/connection.py +%%EXAMPLESDIR%%/sql/connection.pyc +%%EXAMPLESDIR%%/sql/connection.pyo +%%EXAMPLESDIR%%/sql/querymodel.py +%%EXAMPLESDIR%%/sql/querymodel.pyc +%%EXAMPLESDIR%%/sql/querymodel.pyo +%%EXAMPLESDIR%%/sql/relationaltablemodel.py +%%EXAMPLESDIR%%/sql/relationaltablemodel.pyc +%%EXAMPLESDIR%%/sql/relationaltablemodel.pyo +%%EXAMPLESDIR%%/sql/tablemodel.py +%%EXAMPLESDIR%%/sql/tablemodel.pyc +%%EXAMPLESDIR%%/sql/tablemodel.pyo +%%EXAMPLESDIR%%/threads/README +%%EXAMPLESDIR%%/threads/mandelbrot.py +%%EXAMPLESDIR%%/threads/mandelbrot.pyc +%%EXAMPLESDIR%%/threads/mandelbrot.pyo +%%EXAMPLESDIR%%/threads/semaphores.py +%%EXAMPLESDIR%%/threads/semaphores.pyc +%%EXAMPLESDIR%%/threads/semaphores.pyo +%%EXAMPLESDIR%%/threads/waitconditions.py +%%EXAMPLESDIR%%/threads/waitconditions.pyc +%%EXAMPLESDIR%%/threads/waitconditions.pyo +%%EXAMPLESDIR%%/tools/README +%%EXAMPLESDIR%%/tools/codecs/codecs.py +%%EXAMPLESDIR%%/tools/codecs/codecs.pyc +%%EXAMPLESDIR%%/tools/codecs/codecs.pyo +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-1.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/iso-8859-15.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16be.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-16le.txt +%%EXAMPLESDIR%%/tools/codecs/encodedfiles/utf-8.txt +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter.py +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyc +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter.pyo +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter.qrc +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.py +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.pyc +%%EXAMPLESDIR%%/tools/customcompleter/customcompleter_rc.pyo +%%EXAMPLESDIR%%/tools/customcompleter/resources/wordlist.txt +%%EXAMPLESDIR%%/tools/i18n/i18n.py +%%EXAMPLESDIR%%/tools/i18n/i18n.pyc +%%EXAMPLESDIR%%/tools/i18n/i18n.pyo +%%EXAMPLESDIR%%/tools/i18n/i18n.qrc +%%EXAMPLESDIR%%/tools/i18n/i18n_rc.py +%%EXAMPLESDIR%%/tools/i18n/i18n_rc.pyc +%%EXAMPLESDIR%%/tools/i18n/i18n_rc.pyo +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ar.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_cs.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_de.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_de.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_el.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_el.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_en.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_en.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_eo.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_fr.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_it.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_it.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_jp.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ko.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_no.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_no.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_pt.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_ru.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_sv.ts +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.qm +%%EXAMPLESDIR%%/tools/i18n/translations/i18n_zh.ts +%%EXAMPLESDIR%%/tools/regexp.py +%%EXAMPLESDIR%%/tools/regexp.pyc +%%EXAMPLESDIR%%/tools/regexp.pyo +%%EXAMPLESDIR%%/tools/settingseditor/inifiles/licensepage.ini +%%EXAMPLESDIR%%/tools/settingseditor/inifiles/qsa.ini +%%EXAMPLESDIR%%/tools/settingseditor/settingseditor.py +%%EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyc +%%EXAMPLESDIR%%/tools/settingseditor/settingseditor.pyo +%%EXAMPLESDIR%%/tutorials/addressbook/README +%%EXAMPLESDIR%%/tutorials/addressbook/part1.py +%%EXAMPLESDIR%%/tutorials/addressbook/part1.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part1.pyo +%%EXAMPLESDIR%%/tutorials/addressbook/part2.py +%%EXAMPLESDIR%%/tutorials/addressbook/part2.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part2.pyo +%%EXAMPLESDIR%%/tutorials/addressbook/part3.py +%%EXAMPLESDIR%%/tutorials/addressbook/part3.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part3.pyo +%%EXAMPLESDIR%%/tutorials/addressbook/part4.py +%%EXAMPLESDIR%%/tutorials/addressbook/part4.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part4.pyo +%%EXAMPLESDIR%%/tutorials/addressbook/part5.py +%%EXAMPLESDIR%%/tutorials/addressbook/part5.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part5.pyo +%%EXAMPLESDIR%%/tutorials/addressbook/part6.py +%%EXAMPLESDIR%%/tutorials/addressbook/part6.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part6.pyo +%%EXAMPLESDIR%%/tutorials/addressbook/part7.py +%%EXAMPLESDIR%%/tutorials/addressbook/part7.pyc +%%EXAMPLESDIR%%/tutorials/addressbook/part7.pyo +%%EXAMPLESDIR%%/webkit/README +%%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.py +%%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyc +%%EXAMPLESDIR%%/webkit/domtraversal/domtraversal.pyo +%%EXAMPLESDIR%%/webkit/domtraversal/ui_window.py +%%EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyc +%%EXAMPLESDIR%%/webkit/domtraversal/ui_window.pyo +%%EXAMPLESDIR%%/webkit/domtraversal/window.ui +%%EXAMPLESDIR%%/webkit/fancybrowser/__pycache__/jquery_rc.cpython-34.pyc +%%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.py +%%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyc +%%EXAMPLESDIR%%/webkit/fancybrowser/fancybrowser.pyo +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery.min.js +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery.qrc +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.py +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.pyc +%%EXAMPLESDIR%%/webkit/fancybrowser/jquery_rc.pyo +%%EXAMPLESDIR%%/webkit/formextractor/form.html +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.py +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.pyc +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.pyo +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.qrc +%%EXAMPLESDIR%%/webkit/formextractor/formextractor.ui +%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.py +%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.pyc +%%EXAMPLESDIR%%/webkit/formextractor/formextractor_rc.pyo +%%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.py +%%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyc +%%EXAMPLESDIR%%/webkit/formextractor/ui_formextractor.pyo +%%EXAMPLESDIR%%/webkit/framecapture.py +%%EXAMPLESDIR%%/webkit/framecapture.pyc +%%EXAMPLESDIR%%/webkit/framecapture.pyo +%%EXAMPLESDIR%%/webkit/previewer/previewer.py +%%EXAMPLESDIR%%/webkit/previewer/previewer.pyc +%%EXAMPLESDIR%%/webkit/previewer/previewer.pyo +%%EXAMPLESDIR%%/webkit/previewer/previewer.ui +%%EXAMPLESDIR%%/webkit/previewer/ui_previewer.py +%%EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyc +%%EXAMPLESDIR%%/webkit/previewer/ui_previewer.pyo +%%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.py +%%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyc +%%EXAMPLESDIR%%/webkit/simpleselector/simpleselector.pyo +%%EXAMPLESDIR%%/webkit/simpleselector/ui_window.py +%%EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyc +%%EXAMPLESDIR%%/webkit/simpleselector/ui_window.pyo +%%EXAMPLESDIR%%/webkit/simpleselector/window.ui +%%EXAMPLESDIR%%/widgets/README +%%EXAMPLESDIR%%/widgets/analogclock.py +%%EXAMPLESDIR%%/widgets/analogclock.pyc +%%EXAMPLESDIR%%/widgets/analogclock.pyo +%%EXAMPLESDIR%%/widgets/calculator.py +%%EXAMPLESDIR%%/widgets/calculator.pyc +%%EXAMPLESDIR%%/widgets/calculator.pyo +%%EXAMPLESDIR%%/widgets/calendarwidget.py +%%EXAMPLESDIR%%/widgets/calendarwidget.pyc +%%EXAMPLESDIR%%/widgets/calendarwidget.pyo +%%EXAMPLESDIR%%/widgets/charactermap.py +%%EXAMPLESDIR%%/widgets/charactermap.pyc +%%EXAMPLESDIR%%/widgets/charactermap.pyo +%%EXAMPLESDIR%%/widgets/digitalclock.py +%%EXAMPLESDIR%%/widgets/digitalclock.pyc +%%EXAMPLESDIR%%/widgets/digitalclock.pyo +%%EXAMPLESDIR%%/widgets/groupbox.py +%%EXAMPLESDIR%%/widgets/groupbox.pyc +%%EXAMPLESDIR%%/widgets/groupbox.pyo +%%EXAMPLESDIR%%/widgets/icons/icons.py +%%EXAMPLESDIR%%/widgets/icons/icons.pyc +%%EXAMPLESDIR%%/widgets/icons/icons.pyo +%%EXAMPLESDIR%%/widgets/icons/images/designer.png +%%EXAMPLESDIR%%/widgets/icons/images/find_disabled.png +%%EXAMPLESDIR%%/widgets/icons/images/find_normal.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_128x128.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_16x16.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_32x32.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_off_64x64.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_128x128.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_16x16.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_32x32.png +%%EXAMPLESDIR%%/widgets/icons/images/monkey_on_64x64.png +%%EXAMPLESDIR%%/widgets/icons/images/qt_extended_16x16.png +%%EXAMPLESDIR%%/widgets/icons/images/qt_extended_32x32.png +%%EXAMPLESDIR%%/widgets/icons/images/qt_extended_48x48.png +%%EXAMPLESDIR%%/widgets/imageviewer.py +%%EXAMPLESDIR%%/widgets/imageviewer.pyc +%%EXAMPLESDIR%%/widgets/imageviewer.pyo +%%EXAMPLESDIR%%/widgets/lineedits.py +%%EXAMPLESDIR%%/widgets/lineedits.pyc +%%EXAMPLESDIR%%/widgets/lineedits.pyo +%%EXAMPLESDIR%%/widgets/movie/animation.mng +%%EXAMPLESDIR%%/widgets/movie/movie.py +%%EXAMPLESDIR%%/widgets/movie/movie.pyc +%%EXAMPLESDIR%%/widgets/movie/movie.pyo +%%EXAMPLESDIR%%/widgets/scribble.py +%%EXAMPLESDIR%%/widgets/scribble.pyc +%%EXAMPLESDIR%%/widgets/scribble.pyo +%%EXAMPLESDIR%%/widgets/shapedclock.py +%%EXAMPLESDIR%%/widgets/shapedclock.pyc +%%EXAMPLESDIR%%/widgets/shapedclock.pyo +%%EXAMPLESDIR%%/widgets/sliders.py +%%EXAMPLESDIR%%/widgets/sliders.pyc +%%EXAMPLESDIR%%/widgets/sliders.pyo +%%EXAMPLESDIR%%/widgets/spinboxes.py +%%EXAMPLESDIR%%/widgets/spinboxes.pyc +%%EXAMPLESDIR%%/widgets/spinboxes.pyo +%%EXAMPLESDIR%%/widgets/styles.py +%%EXAMPLESDIR%%/widgets/styles.pyc +%%EXAMPLESDIR%%/widgets/styles.pyo +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_checked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/checkbox_unchecked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/down_arrow_disabled.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/frame.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pagefold.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/pushbutton_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_checked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/radiobutton_unchecked_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/sizegrip.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_off.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spindown_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_hover.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_off.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/spinup_pressed.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow.png +%%EXAMPLESDIR%%/widgets/stylesheet/images/up_arrow_disabled.png +%%EXAMPLESDIR%%/widgets/stylesheet/mainwindow.ui +%%EXAMPLESDIR%%/widgets/stylesheet/qss/coffee.qss +%%EXAMPLESDIR%%/widgets/stylesheet/qss/default.qss +%%EXAMPLESDIR%%/widgets/stylesheet/qss/pagefold.qss +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.py +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.pyo +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet.qrc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.py +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheet_rc.pyo +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.py +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.pyo +%%EXAMPLESDIR%%/widgets/stylesheet/stylesheeteditor.ui +%%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.py +%%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/ui_mainwindow.pyo +%%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.py +%%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyc +%%EXAMPLESDIR%%/widgets/stylesheet/ui_stylesheeteditor.pyo +%%EXAMPLESDIR%%/widgets/tetrix.py +%%EXAMPLESDIR%%/widgets/tetrix.pyc +%%EXAMPLESDIR%%/widgets/tetrix.pyo +%%EXAMPLESDIR%%/widgets/tooltips/images/circle.png +%%EXAMPLESDIR%%/widgets/tooltips/images/square.png +%%EXAMPLESDIR%%/widgets/tooltips/images/triangle.png +%%EXAMPLESDIR%%/widgets/tooltips/tooltips.py +%%EXAMPLESDIR%%/widgets/tooltips/tooltips.pyc +%%EXAMPLESDIR%%/widgets/tooltips/tooltips.pyo +%%EXAMPLESDIR%%/widgets/tooltips/tooltips.qrc +%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.py +%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.pyc +%%EXAMPLESDIR%%/widgets/tooltips/tooltips_rc.pyo +%%EXAMPLESDIR%%/widgets/wiggly.py +%%EXAMPLESDIR%%/widgets/wiggly.pyc +%%EXAMPLESDIR%%/widgets/wiggly.pyo +%%EXAMPLESDIR%%/widgets/windowflags.py +%%EXAMPLESDIR%%/widgets/windowflags.pyc +%%EXAMPLESDIR%%/widgets/windowflags.pyo +%%EXAMPLESDIR%%/xmlpatterns/README +%%EXAMPLESDIR%%/xmlpatterns/schema/files/contact.xsd +%%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_contact.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_order.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/invalid_recipe.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/order.xsd +%%EXAMPLESDIR%%/xmlpatterns/schema/files/recipe.xsd +%%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_contact.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_order.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/files/valid_recipe.xml +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.py +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.pyc +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.pyo +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.qrc +%%EXAMPLESDIR%%/xmlpatterns/schema/schema.ui +%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.py +%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.pyc +%%EXAMPLESDIR%%/xmlpatterns/schema/schema_rc.pyo +%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.py +%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyc +%%EXAMPLESDIR%%/xmlpatterns/schema/ui_schema.pyo diff --git a/misc/py-qt5-doc/Makefile b/misc/py-qt5-doc/Makefile new file mode 100644 index 000000000000..54dd4bd41ece --- /dev/null +++ b/misc/py-qt5-doc/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= doc +PORTVERSION= ${PYQT5_VERSION} +CATEGORIES= misc devel python +MASTER_SITES= ${MASTER_SITES_PYQT5} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- +DISTNAME= ${PYQT_DISTNAME} + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, documentation + +DISTINFO_FILE= ${PYQT_DISTINFO_FILE} +NO_BUILD= yes + +USES= python pyqt:5 +USE_PYQT= # + +DOCSDIR= ${PREFIX}/share/doc/py-qt5 + +do-install: + cd ${WRKSRC} &&\ + ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ + ${INSTALL_DATA} NEWS LICENSE README\ + ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/misc/py-qt5-doc/pkg-descr b/misc/py-qt5-doc/pkg-descr new file mode 100644 index 000000000000..1db9bb256d44 --- /dev/null +++ b/misc/py-qt5-doc/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the PyQt5 documentation. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/misc/py-qt5-doc/pkg-plist b/misc/py-qt5-doc/pkg-plist new file mode 100644 index 000000000000..0a5aec6d5dc2 --- /dev/null +++ b/misc/py-qt5-doc/pkg-plist @@ -0,0 +1,2010 @@ +%%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/qquickframebufferobject.txt +%%DOCSDIR%%/html/_sources/api/qquickimageprovider.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/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/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/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/qquickframebufferobject.html +%%DOCSDIR%%/html/api/qquickimageprovider.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/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/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/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 diff --git a/multimedia/Makefile b/multimedia/Makefile index c997766826ed..ef54a7fc65a5 100644 --- a/multimedia/Makefile +++ b/multimedia/Makefile @@ -319,6 +319,8 @@ SUBDIR += py-periscope SUBDIR += py-qt4-multimedia SUBDIR += py-qt4-phonon + SUBDIR += py-qt5-multimedia + SUBDIR += py-qt5-multimediawidgets SUBDIR += py-soco SUBDIR += py-subliminal SUBDIR += py-tvnamer diff --git a/multimedia/py-qt5-multimedia/Makefile b/multimedia/py-qt5-multimedia/Makefile new file mode 100644 index 000000000000..fb76d3f42d9b --- /dev/null +++ b/multimedia/py-qt5-multimedia/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= multimedia +CATEGORIES= multimedia devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtMultimedia module + +CONFIGURE_ARGS= --enable QtMultimedia +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run gui_run network_run +USE_QT5= core gui multimedia network qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtMultimedia API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/multimedia/py-qt5-multimedia/pkg-descr b/multimedia/py-qt5-multimedia/pkg-descr new file mode 100644 index 000000000000..5d84ccd39c91 --- /dev/null +++ b/multimedia/py-qt5-multimedia/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtMultimedia module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/multimedia/py-qt5-multimedia/pkg-plist b/multimedia/py-qt5-multimedia/pkg-plist new file mode 100644 index 000000000000..ce15eae475fd --- /dev/null +++ b/multimedia/py-qt5-multimedia/pkg-plist @@ -0,0 +1,43 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtMultimedia.so +%%PYQT_SIPDIR%%/QtMultimedia/QtMultimediamod.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideobuffer.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideofilter.sip +%%PYQT_SIPDIR%%/QtMultimedia/qabstractvideosurface.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudio.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiobuffer.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiodecoder.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiodeviceinfo.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioformat.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioinput.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiooutput.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudioprobe.sip +%%PYQT_SIPDIR%%/QtMultimedia/qaudiorecorder.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcamera.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraexposure.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcamerafocus.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraimagecapture.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraimageprocessing.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcamerainfo.sip +%%PYQT_SIPDIR%%/QtMultimedia/qcameraviewfindersettings.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediabindableinterface.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediacontent.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediacontrol.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaencodersettings.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediametadata.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaobject.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaplayer.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaplaylist.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediarecorder.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaresource.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediaservice.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmediatimerange.sip +%%PYQT_SIPDIR%%/QtMultimedia/qmultimedia.sip +%%PYQT_SIPDIR%%/QtMultimedia/qpymultimedia_qlist.sip +%%PYQT_SIPDIR%%/QtMultimedia/qradiodata.sip +%%PYQT_SIPDIR%%/QtMultimedia/qradiotuner.sip +%%PYQT_SIPDIR%%/QtMultimedia/qsound.sip +%%PYQT_SIPDIR%%/QtMultimedia/qsoundeffect.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideoframe.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideoprobe.sip +%%PYQT_SIPDIR%%/QtMultimedia/qvideosurfaceformat.sip +%%API%%share/qt5/qsci/api/python/QtMultimedia.api diff --git a/multimedia/py-qt5-multimediawidgets/Makefile b/multimedia/py-qt5-multimediawidgets/Makefile new file mode 100644 index 000000000000..0901aaa88b72 --- /dev/null +++ b/multimedia/py-qt5-multimediawidgets/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= multimediawidgets +CATEGORIES= multimedia devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtMultimediaWidgets module + +CONFIGURE_ARGS= --enable QtMultimediaWidgets +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run multimedia_run widgets_run +USE_QT5= core gui multimedia network widgets qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtMultimedia API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/multimedia/py-qt5-multimediawidgets/pkg-descr b/multimedia/py-qt5-multimediawidgets/pkg-descr new file mode 100644 index 000000000000..5d84ccd39c91 --- /dev/null +++ b/multimedia/py-qt5-multimediawidgets/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtMultimedia module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/multimedia/py-qt5-multimediawidgets/pkg-plist b/multimedia/py-qt5-multimediawidgets/pkg-plist new file mode 100644 index 000000000000..a0fe5db73676 --- /dev/null +++ b/multimedia/py-qt5-multimediawidgets/pkg-plist @@ -0,0 +1,6 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtMultimediaWidgets.so +%%PYQT_SIPDIR%%/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip +%%PYQT_SIPDIR%%/QtMultimediaWidgets/qcameraviewfinder.sip +%%PYQT_SIPDIR%%/QtMultimediaWidgets/qgraphicsvideoitem.sip +%%PYQT_SIPDIR%%/QtMultimediaWidgets/qvideowidget.sip +%%API%%share/qt5/qsci/api/python/QtMultimediaWidgets.api diff --git a/net/Makefile b/net/Makefile index 8c362f26b8ff..ca0a896cf28e 100644 --- a/net/Makefile +++ b/net/Makefile @@ -974,6 +974,7 @@ SUBDIR += py-pyvmomi SUBDIR += py-pyzmq SUBDIR += py-qt4-network + SUBDIR += py-qt5-network SUBDIR += py-radix SUBDIR += py-raet SUBDIR += py-ripe.atlas.cousteau diff --git a/net/py-qt5-network/Makefile b/net/py-qt5-network/Makefile new file mode 100644 index 000000000000..7978b6a7deec --- /dev/null +++ b/net/py-qt5-network/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= network +CATEGORIES= net devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtNetwork module + +CONFIGURE_ARGS= --enable QtNetwork +PYQT_DIST= yes + +USES= python pyqt:5 +USE_PYQT= sip_build core_run +USE_QT5= core network qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtNetwork API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/net/py-qt5-network/pkg-descr b/net/py-qt5-network/pkg-descr new file mode 100644 index 000000000000..6352e6f999fa --- /dev/null +++ b/net/py-qt5-network/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtNetwork module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/net/py-qt5-network/pkg-plist b/net/py-qt5-network/pkg-plist new file mode 100644 index 000000000000..7eb3d4123b53 --- /dev/null +++ b/net/py-qt5-network/pkg-plist @@ -0,0 +1,38 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtNetwork.so +%%PYQT_SIPDIR%%/QtNetwork/QtNetworkmod.sip +%%PYQT_SIPDIR%%/QtNetwork/qabstractnetworkcache.sip +%%PYQT_SIPDIR%%/QtNetwork/qabstractsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qauthenticator.sip +%%PYQT_SIPDIR%%/QtNetwork/qdnslookup.sip +%%PYQT_SIPDIR%%/QtNetwork/qhostaddress.sip +%%PYQT_SIPDIR%%/QtNetwork/qhostinfo.sip +%%PYQT_SIPDIR%%/QtNetwork/qhttpmultipart.sip +%%PYQT_SIPDIR%%/QtNetwork/qlocalserver.sip +%%PYQT_SIPDIR%%/QtNetwork/qlocalsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkaccessmanager.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkconfigmanager.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkconfiguration.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkcookie.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkcookiejar.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkdiskcache.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkinterface.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkproxy.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkreply.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworkrequest.sip +%%PYQT_SIPDIR%%/QtNetwork/qnetworksession.sip +%%PYQT_SIPDIR%%/QtNetwork/qpynetwork_qhash.sip +%%PYQT_SIPDIR%%/QtNetwork/qpynetwork_qmap.sip +%%PYQT_SIPDIR%%/QtNetwork/qssl.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcertificate.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcertificateextension.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslcipher.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslconfiguration.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslellipticcurve.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslerror.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslkey.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslpresharedkeyauthenticator.sip +%%PYQT_SIPDIR%%/QtNetwork/qsslsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qtcpserver.sip +%%PYQT_SIPDIR%%/QtNetwork/qtcpsocket.sip +%%PYQT_SIPDIR%%/QtNetwork/qudpsocket.sip +%%API%%share/qt5/qsci/api/python/QtNetwork.api diff --git a/print/Makefile b/print/Makefile index 8ea4e03a45e7..5d605ea81d8a 100644 --- a/print/Makefile +++ b/print/Makefile @@ -198,6 +198,7 @@ SUBDIR += py-preppy SUBDIR += py-pycups SUBDIR += py-pyscript + SUBDIR += py-qt5-printsupport SUBDIR += py-relatorio SUBDIR += py-reportlab SUBDIR += py-reportlab1 diff --git a/print/py-qt5-printsupport/Makefile b/print/py-qt5-printsupport/Makefile new file mode 100644 index 000000000000..951ee7ef926d --- /dev/null +++ b/print/py-qt5-printsupport/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= printsupport +CATEGORIES= print python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtPrintSupport module + +CONFIGURE_ARGS= --enable QtPrintSupport +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run widgets_run +USE_QT5= core gui printsupport widgets qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtPrintsupport API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/print/py-qt5-printsupport/pkg-descr b/print/py-qt5-printsupport/pkg-descr new file mode 100644 index 000000000000..a07d2acf7f0f --- /dev/null +++ b/print/py-qt5-printsupport/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtPrintSupport module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/print/py-qt5-printsupport/pkg-plist b/print/py-qt5-printsupport/pkg-plist new file mode 100644 index 000000000000..c3fd4d68cfd1 --- /dev/null +++ b/print/py-qt5-printsupport/pkg-plist @@ -0,0 +1,12 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtPrintSupport.so +%%PYQT_SIPDIR%%/QtPrintSupport/QtPrintSupportmod.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qabstractprintdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qpagesetupdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintengine.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprinter.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprinterinfo.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintpreviewdialog.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qprintpreviewwidget.sip +%%PYQT_SIPDIR%%/QtPrintSupport/qpyprintsupport_qlist.sip +%%API%%share/qt5/qsci/api/python/QtPrintSupport.api diff --git a/textproc/Makefile b/textproc/Makefile index 0e734f587bdb..2f03c42dc8e0 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1261,6 +1261,8 @@ SUBDIR += py-qrcode SUBDIR += py-qt4-xml SUBDIR += py-qt4-xmlpatterns + SUBDIR += py-qt5-xml + SUBDIR += py-qt5-xmlpatterns SUBDIR += py-rdflib SUBDIR += py-regex SUBDIR += py-reverend diff --git a/textproc/py-qt5-xml/Makefile b/textproc/py-qt5-xml/Makefile new file mode 100644 index 000000000000..1851bf85dc03 --- /dev/null +++ b/textproc/py-qt5-xml/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= xml +CATEGORIES= textproc devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtXml module + +CONFIGURE_ARGS= --enable QtXml +PYQT_DIST= yes + +USES= python pyqt:5 +USE_PYQT= sip_build core_run +USE_QT5= core xml buildtools_build qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtXml API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/textproc/py-qt5-xml/pkg-descr b/textproc/py-qt5-xml/pkg-descr new file mode 100644 index 000000000000..91d5b1b08121 --- /dev/null +++ b/textproc/py-qt5-xml/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtXml module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/textproc/py-qt5-xml/pkg-plist b/textproc/py-qt5-xml/pkg-plist new file mode 100644 index 000000000000..99bc8dd71868 --- /dev/null +++ b/textproc/py-qt5-xml/pkg-plist @@ -0,0 +1,7 @@ +bin/pylupdate5 +bin/pyrcc5 +%%PYTHON_SITELIBDIR%%/PyQt5/QtXml.so +%%PYQT_SIPDIR%%/QtXml/QtXmlmod.sip +%%PYQT_SIPDIR%%/QtXml/qdom.sip +%%PYQT_SIPDIR%%/QtXml/qxml.sip +%%API%%share/qt5/qsci/api/python/QtXml.api diff --git a/textproc/py-qt5-xmlpatterns/Makefile b/textproc/py-qt5-xmlpatterns/Makefile new file mode 100644 index 000000000000..b7a9e65828d5 --- /dev/null +++ b/textproc/py-qt5-xmlpatterns/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= xmlpatterns +CATEGORIES= textproc devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtXmlPatterns module + +CONFIGURE_ARGS= --enable QtXmlPatterns +PYQT_DIST= yes + +USES= python pyqt:5 +USE_PYQT= sip_build core_run network_run +USE_QT5= core network xmlpatterns qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtXmlPatterns API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/textproc/py-qt5-xmlpatterns/pkg-descr b/textproc/py-qt5-xmlpatterns/pkg-descr new file mode 100644 index 000000000000..544d322fd86b --- /dev/null +++ b/textproc/py-qt5-xmlpatterns/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtXmlPatterns module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/textproc/py-qt5-xmlpatterns/pkg-plist b/textproc/py-qt5-xmlpatterns/pkg-plist new file mode 100644 index 000000000000..20d9892a42d2 --- /dev/null +++ b/textproc/py-qt5-xmlpatterns/pkg-plist @@ -0,0 +1,17 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtXmlPatterns.so +%%PYQT_SIPDIR%%/QtXmlPatterns/QtXmlPatternsmod.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractmessagehandler.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstracturiresolver.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractxmlnodemodel.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qabstractxmlreceiver.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qsimplexmlnodemodel.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qsourcelocation.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlformatter.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlname.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlnamepool.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlquery.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlresultitems.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschema.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlschemavalidator.sip +%%PYQT_SIPDIR%%/QtXmlPatterns/qxmlserializer.sip +%%API%%share/qt5/qsci/api/python/QtXmlPatterns.api diff --git a/www/Makefile b/www/Makefile index dcd24c5d254b..74f35af290e5 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1730,6 +1730,8 @@ SUBDIR += py-qp SUBDIR += py-qpy SUBDIR += py-qt4-webkit + SUBDIR += py-qt5-webkit + SUBDIR += py-qt5-webkitwidgets SUBDIR += py-rackspace-monitoring SUBDIR += py-recaptcha SUBDIR += py-requestbuilder diff --git a/www/py-qt5-webkit/Makefile b/www/py-qt5-webkit/Makefile new file mode 100644 index 000000000000..94587b33108b --- /dev/null +++ b/www/py-qt5-webkit/Makefile @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= webkit +CATEGORIES= www devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtWebKit module + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip +RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:${PORTSDIR}/x11-toolkits/py-qt5-gui + +CONFIGURE_ARGS= --enable QtWebKit +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run gui_run network_run +USE_QT5= core gui network webkit qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtWebKit API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/www/py-qt5-webkit/pkg-descr b/www/py-qt5-webkit/pkg-descr new file mode 100644 index 000000000000..9fc0f3b9679f --- /dev/null +++ b/www/py-qt5-webkit/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtWebKit module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/www/py-qt5-webkit/pkg-plist b/www/py-qt5-webkit/pkg-plist new file mode 100644 index 000000000000..135803231f6f --- /dev/null +++ b/www/py-qt5-webkit/pkg-plist @@ -0,0 +1,11 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtWebKit.so +%%PYQT_SIPDIR%%/QtWebKit/QtWebKitmod.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebdatabase.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebelement.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebhistory.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebhistoryinterface.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebkitglobal.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebpluginfactory.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebsecurityorigin.sip +%%PYQT_SIPDIR%%/QtWebKit/qwebsettings.sip +%%API%%share/qt5/qsci/api/python/QtWebKit.api diff --git a/www/py-qt5-webkitwidgets/Makefile b/www/py-qt5-webkitwidgets/Makefile new file mode 100644 index 000000000000..f39549596f42 --- /dev/null +++ b/www/py-qt5-webkitwidgets/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= webkitwidgets +CATEGORIES= www devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtWebKitWidgets module + +CONFIGURE_ARGS= --enable QtWebKitWidgets +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run printsupport_run webkit_run widgets_run +USE_QT5= core gui network printsupport webkit widgets \ + qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtWebKitWidgets API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/www/py-qt5-webkitwidgets/pkg-descr b/www/py-qt5-webkitwidgets/pkg-descr new file mode 100644 index 000000000000..feb09bcbdd50 --- /dev/null +++ b/www/py-qt5-webkitwidgets/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtWebKitWidgets module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/www/py-qt5-webkitwidgets/pkg-plist b/www/py-qt5-webkitwidgets/pkg-plist new file mode 100644 index 000000000000..90e6d4bedb75 --- /dev/null +++ b/www/py-qt5-webkitwidgets/pkg-plist @@ -0,0 +1,8 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtWebKitWidgets.so +%%PYQT_SIPDIR%%/QtWebKitWidgets/QtWebKitWidgetsmod.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qgraphicswebview.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebframe.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebinspector.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebpage.sip +%%PYQT_SIPDIR%%/QtWebKitWidgets/qwebview.sip +%%API%%share/qt5/qsci/api/python/QtWebKitWidgets.api diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile index b0cfab4af25b..e64089ec07a7 100644 --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -191,6 +191,8 @@ SUBDIR += py-kivy SUBDIR += py-kiwi SUBDIR += py-qt4-gui + SUBDIR += py-qt5-gui + SUBDIR += py-qt5-widgets SUBDIR += py-sexy SUBDIR += py-tkinter SUBDIR += py32-tkinter diff --git a/x11-toolkits/py-qt5-gui/Makefile b/x11-toolkits/py-qt5-gui/Makefile new file mode 100644 index 000000000000..571a66b8b996 --- /dev/null +++ b/x11-toolkits/py-qt5-gui/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= gui +CATEGORIES= x11-toolkits devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtGui module + +CONFIGURE_ARGS= --enable QtGui +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run +USE_QT5= core gui qmake_build imageformats_run + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtGui API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api + +.include <bsd.port.mk> diff --git a/x11-toolkits/py-qt5-gui/pkg-descr b/x11-toolkits/py-qt5-gui/pkg-descr new file mode 100644 index 000000000000..97afc3f5efff --- /dev/null +++ b/x11-toolkits/py-qt5-gui/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtGui module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/x11-toolkits/py-qt5-gui/pkg-plist b/x11-toolkits/py-qt5-gui/pkg-plist new file mode 100644 index 000000000000..16429f281e9e --- /dev/null +++ b/x11-toolkits/py-qt5-gui/pkg-plist @@ -0,0 +1,94 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtGui.so +%%PYQT_SIPDIR%%/QtGui/QtGuimod.sip +%%PYQT_SIPDIR%%/QtGui/opengl_types.sip +%%PYQT_SIPDIR%%/QtGui/qabstracttextdocumentlayout.sip +%%PYQT_SIPDIR%%/QtGui/qbackingstore.sip +%%PYQT_SIPDIR%%/QtGui/qbitmap.sip +%%PYQT_SIPDIR%%/QtGui/qbrush.sip +%%PYQT_SIPDIR%%/QtGui/qclipboard.sip +%%PYQT_SIPDIR%%/QtGui/qcolor.sip +%%PYQT_SIPDIR%%/QtGui/qcursor.sip +%%PYQT_SIPDIR%%/QtGui/qdesktopservices.sip +%%PYQT_SIPDIR%%/QtGui/qdrag.sip +%%PYQT_SIPDIR%%/QtGui/qevent.sip +%%PYQT_SIPDIR%%/QtGui/qfont.sip +%%PYQT_SIPDIR%%/QtGui/qfontdatabase.sip +%%PYQT_SIPDIR%%/QtGui/qfontinfo.sip +%%PYQT_SIPDIR%%/QtGui/qfontmetrics.sip +%%PYQT_SIPDIR%%/QtGui/qgenericmatrix.sip +%%PYQT_SIPDIR%%/QtGui/qglyphrun.sip +%%PYQT_SIPDIR%%/QtGui/qguiapplication.sip +%%PYQT_SIPDIR%%/QtGui/qicon.sip +%%PYQT_SIPDIR%%/QtGui/qiconengine.sip +%%PYQT_SIPDIR%%/QtGui/qimage.sip +%%PYQT_SIPDIR%%/QtGui/qimageiohandler.sip +%%PYQT_SIPDIR%%/QtGui/qimagereader.sip +%%PYQT_SIPDIR%%/QtGui/qimagewriter.sip +%%PYQT_SIPDIR%%/QtGui/qinputmethod.sip +%%PYQT_SIPDIR%%/QtGui/qkeysequence.sip +%%PYQT_SIPDIR%%/QtGui/qmatrix4x4.sip +%%PYQT_SIPDIR%%/QtGui/qmovie.sip +%%PYQT_SIPDIR%%/QtGui/qoffscreensurface.sip +%%PYQT_SIPDIR%%/QtGui/qopenglbuffer.sip +%%PYQT_SIPDIR%%/QtGui/qopenglcontext.sip +%%PYQT_SIPDIR%%/QtGui/qopengldebug.sip +%%PYQT_SIPDIR%%/QtGui/qopenglframebufferobject.sip +%%PYQT_SIPDIR%%/QtGui/qopenglpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qopenglpixeltransferoptions.sip +%%PYQT_SIPDIR%%/QtGui/qopenglshaderprogram.sip +%%PYQT_SIPDIR%%/QtGui/qopengltexture.sip +%%PYQT_SIPDIR%%/QtGui/qopengltimerquery.sip +%%PYQT_SIPDIR%%/QtGui/qopenglversionfunctions.sip +%%PYQT_SIPDIR%%/QtGui/qopenglvertexarrayobject.sip +%%PYQT_SIPDIR%%/QtGui/qopenglwindow.sip +%%PYQT_SIPDIR%%/QtGui/qpagedpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qpagelayout.sip +%%PYQT_SIPDIR%%/QtGui/qpagesize.sip +%%PYQT_SIPDIR%%/QtGui/qpaintdevice.sip +%%PYQT_SIPDIR%%/QtGui/qpaintdevicewindow.sip +%%PYQT_SIPDIR%%/QtGui/qpaintengine.sip +%%PYQT_SIPDIR%%/QtGui/qpainter.sip +%%PYQT_SIPDIR%%/QtGui/qpainterpath.sip +%%PYQT_SIPDIR%%/QtGui/qpalette.sip +%%PYQT_SIPDIR%%/QtGui/qpdfwriter.sip +%%PYQT_SIPDIR%%/QtGui/qpen.sip +%%PYQT_SIPDIR%%/QtGui/qpicture.sip +%%PYQT_SIPDIR%%/QtGui/qpixelformat.sip +%%PYQT_SIPDIR%%/QtGui/qpixmap.sip +%%PYQT_SIPDIR%%/QtGui/qpixmapcache.sip +%%PYQT_SIPDIR%%/QtGui/qpolygon.sip +%%PYQT_SIPDIR%%/QtGui/qpygui_qlist.sip +%%PYQT_SIPDIR%%/QtGui/qpygui_qpair.sip +%%PYQT_SIPDIR%%/QtGui/qpygui_qvector.sip +%%PYQT_SIPDIR%%/QtGui/qquaternion.sip +%%PYQT_SIPDIR%%/QtGui/qrasterwindow.sip +%%PYQT_SIPDIR%%/QtGui/qrawfont.sip +%%PYQT_SIPDIR%%/QtGui/qregion.sip +%%PYQT_SIPDIR%%/QtGui/qrgb.sip +%%PYQT_SIPDIR%%/QtGui/qscreen.sip +%%PYQT_SIPDIR%%/QtGui/qsessionmanager.sip +%%PYQT_SIPDIR%%/QtGui/qstandarditemmodel.sip +%%PYQT_SIPDIR%%/QtGui/qstatictext.sip +%%PYQT_SIPDIR%%/QtGui/qstylehints.sip +%%PYQT_SIPDIR%%/QtGui/qsurface.sip +%%PYQT_SIPDIR%%/QtGui/qsurfaceformat.sip +%%PYQT_SIPDIR%%/QtGui/qsyntaxhighlighter.sip +%%PYQT_SIPDIR%%/QtGui/qtextcursor.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocument.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocumentfragment.sip +%%PYQT_SIPDIR%%/QtGui/qtextdocumentwriter.sip +%%PYQT_SIPDIR%%/QtGui/qtextformat.sip +%%PYQT_SIPDIR%%/QtGui/qtextlayout.sip +%%PYQT_SIPDIR%%/QtGui/qtextlist.sip +%%PYQT_SIPDIR%%/QtGui/qtextobject.sip +%%PYQT_SIPDIR%%/QtGui/qtextoption.sip +%%PYQT_SIPDIR%%/QtGui/qtexttable.sip +%%PYQT_SIPDIR%%/QtGui/qtouchdevice.sip +%%PYQT_SIPDIR%%/QtGui/qtransform.sip +%%PYQT_SIPDIR%%/QtGui/qvalidator.sip +%%PYQT_SIPDIR%%/QtGui/qvector2d.sip +%%PYQT_SIPDIR%%/QtGui/qvector3d.sip +%%PYQT_SIPDIR%%/QtGui/qvector4d.sip +%%PYQT_SIPDIR%%/QtGui/qwindow.sip +%%PYQT_SIPDIR%%/QtGui/qwindowdefs.sip +%%API%%share/qt5/qsci/api/python/QtGui.api diff --git a/x11-toolkits/py-qt5-widgets/Makefile b/x11-toolkits/py-qt5-widgets/Makefile new file mode 100644 index 000000000000..618dd400ae4f --- /dev/null +++ b/x11-toolkits/py-qt5-widgets/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= widgets +CATEGORIES= x11-toolkits devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtWidgets module + +CONFIGURE_ARGS= --enable QtWidgets +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run gui_run +USE_QT5= core gui widgets qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtGui API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/x11-toolkits/py-qt5-widgets/pkg-descr b/x11-toolkits/py-qt5-widgets/pkg-descr new file mode 100644 index 000000000000..2dcf93d2a243 --- /dev/null +++ b/x11-toolkits/py-qt5-widgets/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtWidgets module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/x11-toolkits/py-qt5-widgets/pkg-plist b/x11-toolkits/py-qt5-widgets/pkg-plist new file mode 100644 index 000000000000..285febef8684 --- /dev/null +++ b/x11-toolkits/py-qt5-widgets/pkg-plist @@ -0,0 +1,127 @@ +%%PYTHON_SITELIBDIR%%/PyQt5/QtWidgets.so +%%PYQT_SIPDIR%%/QtWidgets/QtWidgetsmod.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractitemdelegate.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractitemview.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractscrollarea.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractslider.sip +%%PYQT_SIPDIR%%/QtWidgets/qabstractspinbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qaction.sip +%%PYQT_SIPDIR%%/QtWidgets/qactiongroup.sip +%%PYQT_SIPDIR%%/QtWidgets/qapplication.sip +%%PYQT_SIPDIR%%/QtWidgets/qboxlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qbuttongroup.sip +%%PYQT_SIPDIR%%/QtWidgets/qcalendarwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qcheckbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qcolordialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qcolumnview.sip +%%PYQT_SIPDIR%%/QtWidgets/qcombobox.sip +%%PYQT_SIPDIR%%/QtWidgets/qcommandlinkbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qcommonstyle.sip +%%PYQT_SIPDIR%%/QtWidgets/qcompleter.sip +%%PYQT_SIPDIR%%/QtWidgets/qdatawidgetmapper.sip +%%PYQT_SIPDIR%%/QtWidgets/qdatetimeedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qdesktopwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qdial.sip +%%PYQT_SIPDIR%%/QtWidgets/qdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qdialogbuttonbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qdirmodel.sip +%%PYQT_SIPDIR%%/QtWidgets/qdockwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qdrawutil.sip +%%PYQT_SIPDIR%%/QtWidgets/qerrormessage.sip +%%PYQT_SIPDIR%%/QtWidgets/qfiledialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qfileiconprovider.sip +%%PYQT_SIPDIR%%/QtWidgets/qfilesystemmodel.sip +%%PYQT_SIPDIR%%/QtWidgets/qfocusframe.sip +%%PYQT_SIPDIR%%/QtWidgets/qfontcombobox.sip +%%PYQT_SIPDIR%%/QtWidgets/qfontdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qformlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qframe.sip +%%PYQT_SIPDIR%%/QtWidgets/qgesture.sip +%%PYQT_SIPDIR%%/QtWidgets/qgesturerecognizer.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsanchorlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicseffect.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsgridlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsitem.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicslayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicslayoutitem.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicslinearlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsproxywidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsscene.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicssceneevent.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicstransform.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicsview.sip +%%PYQT_SIPDIR%%/QtWidgets/qgraphicswidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qgridlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qgroupbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qheaderview.sip +%%PYQT_SIPDIR%%/QtWidgets/qinputdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qitemdelegate.sip +%%PYQT_SIPDIR%%/QtWidgets/qitemeditorfactory.sip +%%PYQT_SIPDIR%%/QtWidgets/qkeyeventtransition.sip +%%PYQT_SIPDIR%%/QtWidgets/qkeysequenceedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qlabel.sip +%%PYQT_SIPDIR%%/QtWidgets/qlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qlayoutitem.sip +%%PYQT_SIPDIR%%/QtWidgets/qlcdnumber.sip +%%PYQT_SIPDIR%%/QtWidgets/qlineedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qlistview.sip +%%PYQT_SIPDIR%%/QtWidgets/qlistwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qmaccocoaviewcontainer.sip +%%PYQT_SIPDIR%%/QtWidgets/qmainwindow.sip +%%PYQT_SIPDIR%%/QtWidgets/qmdiarea.sip +%%PYQT_SIPDIR%%/QtWidgets/qmdisubwindow.sip +%%PYQT_SIPDIR%%/QtWidgets/qmenu.sip +%%PYQT_SIPDIR%%/QtWidgets/qmenubar.sip +%%PYQT_SIPDIR%%/QtWidgets/qmessagebox.sip +%%PYQT_SIPDIR%%/QtWidgets/qmouseeventtransition.sip +%%PYQT_SIPDIR%%/QtWidgets/qopenglwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qplaintextedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qprogressbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qprogressdialog.sip +%%PYQT_SIPDIR%%/QtWidgets/qproxystyle.sip +%%PYQT_SIPDIR%%/QtWidgets/qpushbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qpywidgets_qlist.sip +%%PYQT_SIPDIR%%/QtWidgets/qradiobutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qrubberband.sip +%%PYQT_SIPDIR%%/QtWidgets/qscrollarea.sip +%%PYQT_SIPDIR%%/QtWidgets/qscrollbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qscroller.sip +%%PYQT_SIPDIR%%/QtWidgets/qscrollerproperties.sip +%%PYQT_SIPDIR%%/QtWidgets/qshortcut.sip +%%PYQT_SIPDIR%%/QtWidgets/qsizegrip.sip +%%PYQT_SIPDIR%%/QtWidgets/qsizepolicy.sip +%%PYQT_SIPDIR%%/QtWidgets/qslider.sip +%%PYQT_SIPDIR%%/QtWidgets/qspinbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qsplashscreen.sip +%%PYQT_SIPDIR%%/QtWidgets/qsplitter.sip +%%PYQT_SIPDIR%%/QtWidgets/qstackedlayout.sip +%%PYQT_SIPDIR%%/QtWidgets/qstackedwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qstatusbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qstyle.sip +%%PYQT_SIPDIR%%/QtWidgets/qstyleditemdelegate.sip +%%PYQT_SIPDIR%%/QtWidgets/qstylefactory.sip +%%PYQT_SIPDIR%%/QtWidgets/qstyleoption.sip +%%PYQT_SIPDIR%%/QtWidgets/qstylepainter.sip +%%PYQT_SIPDIR%%/QtWidgets/qsystemtrayicon.sip +%%PYQT_SIPDIR%%/QtWidgets/qtabbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qtableview.sip +%%PYQT_SIPDIR%%/QtWidgets/qtablewidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qtabwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qtextbrowser.sip +%%PYQT_SIPDIR%%/QtWidgets/qtextedit.sip +%%PYQT_SIPDIR%%/QtWidgets/qtoolbar.sip +%%PYQT_SIPDIR%%/QtWidgets/qtoolbox.sip +%%PYQT_SIPDIR%%/QtWidgets/qtoolbutton.sip +%%PYQT_SIPDIR%%/QtWidgets/qtooltip.sip +%%PYQT_SIPDIR%%/QtWidgets/qtreeview.sip +%%PYQT_SIPDIR%%/QtWidgets/qtreewidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qtreewidgetitemiterator.sip +%%PYQT_SIPDIR%%/QtWidgets/qundogroup.sip +%%PYQT_SIPDIR%%/QtWidgets/qundostack.sip +%%PYQT_SIPDIR%%/QtWidgets/qundoview.sip +%%PYQT_SIPDIR%%/QtWidgets/qwhatsthis.sip +%%PYQT_SIPDIR%%/QtWidgets/qwidget.sip +%%PYQT_SIPDIR%%/QtWidgets/qwidgetaction.sip +%%PYQT_SIPDIR%%/QtWidgets/qwizard.sip +%%API%%share/qt5/qsci/api/python/QtWidgets.api diff --git a/x11/Makefile b/x11/Makefile index 15bc89139b48..b64d8235b1da 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -232,6 +232,7 @@ SUBDIR += printscreen SUBDIR += props SUBDIR += py-qt4-opengl + SUBDIR += py-qt5-opengl SUBDIR += qimageblitz SUBDIR += qt4-graphicssystems-opengl SUBDIR += qt4-inputmethods diff --git a/x11/py-qt5-opengl/Makefile b/x11/py-qt5-opengl/Makefile new file mode 100644 index 000000000000..893416cbc360 --- /dev/null +++ b/x11/py-qt5-opengl/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= opengl +CATEGORIES= x11 devel python + +MAINTAINER= kde@FreeBSD.org +COMMENT= Python bindings for the Qt5 toolkit, QtOpenGL module + +CONFIGURE_ARGS= --enable QtOpenGL +PYQT_DIST= yes + +USES= python pyqt:5 +USE_GL= gl +USE_PYQT= sip_build core_run gui_run widgets_run +USE_QT5= core gui opengl widgets qmake_build + +OPTIONS_DEFINE= API DEBUG +OPTIONS_DEFAULT=API +OPTIONS_SUB= yes + +API_DESC= Install QtOpenGL API for QScintilla2 +API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${QSCIDIR} +API_CONFIGURE_OFF= --no-qsci-api +API_LIB_DEPENDS= libqscintilla2-qt5.so:${PORTSDIR}/devel/qscintilla2-qt5 +DEBUG_CONFIGURE_ON= --debug --trace + +.include <bsd.port.mk> diff --git a/x11/py-qt5-opengl/pkg-descr b/x11/py-qt5-opengl/pkg-descr new file mode 100644 index 000000000000..5b2a788a57f9 --- /dev/null +++ b/x11/py-qt5-opengl/pkg-descr @@ -0,0 +1,4 @@ +PyQt5 is a set of Python bindings for Digia's Qt5 application framework. +This package provides the QtOpenGL module. + +WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ diff --git a/x11/py-qt5-opengl/pkg-plist b/x11/py-qt5-opengl/pkg-plist new file mode 100644 index 000000000000..9e14cd09cce9 --- /dev/null +++ b/x11/py-qt5-opengl/pkg-plist @@ -0,0 +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 |