Index: head/Mk/Uses/pyqt.mk =================================================================== --- head/Mk/Uses/pyqt.mk (revision 487596) +++ head/Mk/Uses/pyqt.mk (revision 487597) @@ -1,298 +1,300 @@ # $FreeBSD$ # # Handle PyQt related ports # # Feature: pyqt # Usage: USES=pyqt:ARGS # Valid ARGS: 4,5 # # MAINTAINER: kde@FreeBSD.org # # Internal Port variables for PyQt ports: # PYQT_DIST - This port is part of PyQt4/5 itself. Variables and # targets are then set assuming a certain tarball and # port layout. # USE_PYQT - List of PyQt components to depend on # * foo_build only build depend # * foo_run only run depend # * foo both (default) # PYQT_SIPDIR - where sip files will be installed to # PYQT_APIDIR - where api files will be installed to # PYQT_DOCDIR - where doc files will be installed to # PYQT_EXAMPLESDIR - where examples will be installed to .if !defined(_INCLUDE_USES_PYQT_MK) _INCLUDE_USES_PYQT_MK= yes # At the moment we support PyQt bindings versions 4 and 5, sip # option is for internal use by the py-sip ports. _PYQT_SUPPORTED= 4 5 sip .if empty(pyqt_ARGS) IGNORE= pyqt needs a qt-version (${_PYQT_SUPPORTED}) .endif # At the moment we support PyQt bindings versions 4 and 5 .for ver in ${_PYQT_SUPPORTED:O:u} . if ${pyqt_ARGS:M${ver}} . if empty(_PYQT_VERSION) _PYQT_VERSION= ${ver} . else IGNORE?= cannot be installed: different PYQT versions specified via pyqt:[${_PYQT_SUPPORTED:S/ //g}] . endif . endif .endfor .if empty(_PYQT_VERSION) IGNORE?= USES=pyqt needs a version number (valid values: ${_PYQT_SUPPORTED}) .endif PYQT_MAINTAINER= kde@FreeBSD.org MASTER_SITE_RIVERBANK= http://www.riverbankcomputing.com/static/Downloads/%SUBDIR%/ MASTER_SITES_SIP= SF/pyqt/sip/sip-${PORTVERSION} \ GENTOO MASTER_SITES_PYQT4= SF/pyqt/PyQt4/PyQt-${PORTVERSION} \ GENTOO MASTER_SITES_PYQT5= SF/pyqt/PyQt5/PyQt-${PORTVERSION} \ GENTOO MASTER_SITES_QSCI2= SF/pyqt/QScintilla2/QScintilla-${PORTVERSION} \ GENTOO -SIP_VERSION= 4.19.8 -QSCI2_VERSION= 2.10.4 +SIP_VERSION= 4.19.13 +QSCI2_VERSION= 2.10.8 PYQT4_VERSION= 4.12.1 -PYQT5_VERSION= 5.10.1 +PYQT5_VERSION= 5.11.3 SIP_DISTNAME= sip-${SIP_VERSION} PYQT4_DISTNAME= PyQt4_gpl_x11-${PYQT4_VERSION} PYQT4_DISTINFO_FILE= ${.CURDIR:H:H}/devel/${PYQT_RELNAME}/distinfo PYQT5_DISTNAME= PyQt5_gpl-${PYQT5_VERSION} PYQT5_DISTINFO_FILE= ${.CURDIR:H:H}/devel/${PYQT_RELNAME}/distinfo QSCI2_DISTNAME= QScintilla_gpl-${QSCI2_VERSION} PYQT4_LICENSE= GPLv3 PYQT5_LICENSE= GPLv3 # Keep these synchronized with OPTIONS_DEFINE in devel/py-qt4 and devel/py-qt5 # PyQt components split up into pyqt4/pyqt5/... _USE_PYQT_ALL= core dbus dbussupport demo designer designerplugin \ gui multimedia network opengl qscintilla2 \ sql svg test webkit xml xmlpatterns sip # List of components only in pyqt4 _USE_PYQT4_ONLY= assistant declarative doc \ help phonon script scripttools # List of components only in pyqt5 _USE_PYQT5_ONLY= multimediawidgets printsupport qml quickwidgets \ serialport webchannel webengine webkitwidgets widgets # Unversioned variables for the rest of the file PYQT_VERSION= ${PYQT${_PYQT_VERSION}_VERSION} PYQT_RELNAME= py-qt${_PYQT_VERSION} PYQT_PY_RELNAME= ${PYTHON_PKGNAMEPREFIX}qt${_PYQT_VERSION} PYQT_MASTERSITES= ${MASTER_SITES_PYQT${_PYQT_VERSION}} PYQT_DISTNAME= ${PYQT${_PYQT_VERSION}_DISTNAME} PYQT_DISTINFO_FILE= ${PYQT${_PYQT_VERSION}_DISTINFO_FILE} PYQT_LICENSE= ${PYQT${_PYQT_VERSION}_LICENSE} py-sip_PATH= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION} py-assistant_PATH= ${PYQT_PY_RELNAME}-assistant>=${PYQT_VERSION} py-core_PATH= ${PYQT_PY_RELNAME}-core>=${PYQT_VERSION} py-dbus_PATH= ${PYQT_PY_RELNAME}-dbus>=${PYQT_VERSION} py-dbussupport_PATH= ${PYQT_PY_RELNAME}-dbussupport>=${PYQT_VERSION} py-declarative_PATH= ${PYQT_PY_RELNAME}-declarative>=${PYQT_VERSION} py-demo_PATH= ${PYQT_PY_RELNAME}-demo>=${PYQT_VERSION} py-designer_PATH= ${PYQT_PY_RELNAME}-designer>=${PYQT_VERSION} py-designerplugin_PATH= ${PYQT_PY_RELNAME}-designerplugin>=${PYQT_VERSION} py-doc_PATH= ${PYQT_PY_RELNAME}-doc>=${PYQT_VERSION} py-gui_PATH= ${PYQT_PY_RELNAME}-gui>=${PYQT_VERSION} py-help_PATH= ${PYQT_PY_RELNAME}-help>=${PYQT_VERSION} py-multimedia_PATH= ${PYQT_PY_RELNAME}-multimedia>=${PYQT_VERSION} py-network_PATH= ${PYQT_PY_RELNAME}-network>=${PYQT_VERSION} py-opengl_PATH= ${PYQT_PY_RELNAME}-opengl>=${PYQT_VERSION} py-phonon_PATH= ${PYQT_PY_RELNAME}-phonon>=${PYQT_VERSION} py-qscintilla2_PATH= ${PYQT_PY_RELNAME}-qscintilla2>=${QSCI2_VERSION} py-script_PATH= ${PYQT_PY_RELNAME}-script>=${PYQT_VERSION} py-scripttools_PATH= ${PYQT_PY_RELNAME}-scripttools>=${PYQT_VERSION} py-sql_PATH= ${PYQT_PY_RELNAME}-sql>=${PYQT_VERSION} py-svg_PATH= ${PYQT_PY_RELNAME}-svg>=${PYQT_VERSION} py-test_PATH= ${PYQT_PY_RELNAME}-test>=${PYQT_VERSION} py-webchannel_PATH= ${PYQT_PY_RELNAME}-webchannel>=${PYQT_VERSION} py-webengine_PATH= ${PYQT_PY_RELNAME}-webengine>=${PYQT_VERSION} py-webkit_PATH= ${PYQT_PY_RELNAME}-webkit>=${PYQT_VERSION} py-xml_PATH= ${PYQT_PY_RELNAME}-xml>=${PYQT_VERSION} py-xmlpatterns_PATH= ${PYQT_PY_RELNAME}-xmlpatterns>=${PYQT_VERSION} py-multimediawidgets_PATH= ${PYQT_PY_RELNAME}-multimediawidgets>=${PYQT_VERSION} py-qml_PATH= ${PYQT_PY_RELNAME}-qml>=${PYQT_VERSION} py-quickwidgets_PATH= ${PYQT_PY_RELNAME}-quickwidgets>=${PYQT_VERSION} py-printsupport_PATH= ${PYQT_PY_RELNAME}-printsupport>=${PYQT_VERSION} py-serialport_PATH= ${PYQT_PY_RELNAME}-serialport>=${PYQT_VERSION} py-webkitwidgets_PATH= ${PYQT_PY_RELNAME}-webkitwidgets>=${PYQT_VERSION} py-widgets_PATH= ${PYQT_PY_RELNAME}-widgets>=${PYQT_VERSION} py-sip_PORT= devel/py-sip py-assistant_PORT= devel/${PYQT_RELNAME}-assistant py-core_PORT= devel/${PYQT_RELNAME}-core py-dbus_PORT= devel/${PYQT_RELNAME}-dbus py-dbussupport_PORT= devel/${PYQT_RELNAME}-dbussupport py-declarative_PORT= devel/${PYQT_RELNAME}-declarative py-demo_PORT= misc/${PYQT_RELNAME}-demo py-designer_PORT= devel/${PYQT_RELNAME}-designer py-designerplugin_PORT= devel/${PYQT_RELNAME}-designerplugin py-doc_PORT= misc/${PYQT_RELNAME}-doc py-gui_PORT= x11-toolkits/${PYQT_RELNAME}-gui py-help_PORT= devel/${PYQT_RELNAME}-help py-multimedia_PORT= multimedia/${PYQT_RELNAME}-multimedia py-network_PORT= net/${PYQT_RELNAME}-network py-opengl_PORT= x11/${PYQT_RELNAME}-opengl py-phonon_PORT= multimedia/${PYQT_RELNAME}-phonon py-qscintilla2_PORT= devel/${PYQT_RELNAME}-qscintilla2 py-script_PORT= devel/${PYQT_RELNAME}-script py-scripttools_PORT= devel/${PYQT_RELNAME}-scripttools py-sql_PORT= databases/${PYQT_RELNAME}-sql py-svg_PORT= graphics/${PYQT_RELNAME}-svg py-test_PORT= devel/${PYQT_RELNAME}-test py-webchannel_PORT= www/${PYQT_RELNAME}-webchannel py-webengine_PORT= www/${PYQT_RELNAME}-webengine 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-quickwidgets_PORT= x11-toolkits/py-qt5-quickwidgets py-printsupport_PORT= print/py-qt5-printsupport py-serialport_PORT= comms/py-qt5-serialport py-webkitwidgets_PORT= www/py-qt5-webkitwidgets py-widgets_PORT= x11-toolkits/py-qt5-widgets py-assistant_DESC= Python bindings for QtAssistant module py-core_DESC= Python bindings for QtCore module py-dbus_DESC= Python bindings for QtDBus module py-dbussupport_DESC= Qt event loop support for dbus-python py-declarative_DESC= Python bindings for QtDeclarative module py-demo_DESC= PyQt demo and examples py-designer_DESC= Python bindings for QtDesigner module py-designerplugin_DESC= Python bindings for QtDesigner plugin py-doc_DESC= PyQt documentation py-gui_DESC= Python bindings for QtGui module py-help_DESC= Python bindings for QtHelp module py-multimedia_DESC= Python bindings for Multimedia module py-network_DESC= Python bindings for QtNetwork module py-opengl_DESC= Python bindings for QtOpenGL module py-phonon_DESC= Python bindings for Phonon module py-qscintilla2_DESC= Python bindings for QScintilla2 py-script_DESC= Python bindings for QtScript module py-scripttools_DESC= Python bindings for QtScriptTools module py-sql_DESC= Python bindings for QtSql module py-svg_DESC= Python bindings for QtSvg module py-test_DESC= Python bindings for QtTest module py-webchannel_DESC= Python bindings for QtWebChannel module py-webengine_DESC= Python bindings for QtWebEngine module py-webkit_DESC= Python bindings for QtWebKit module py-xml_DESC= Python bindings for QtXml module py-xmlpatterns_DESC= Python bindings for QtXmlPatterns module py-multimediawidgets_DESC= Python bindings for QtMultimediaWidgets module py-qml_DESC= Python bindings for Qml module py-quickwidgets_DESC= Python bindings for QtQuickWidgets 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 # The versionned executable of sip SIP= ${LOCALBASE}/bin/sip-${PYTHON_VER} # Relative directories _VERSION_SUBDIR_REL= PyQt${_PYQT_VERSION}/${PYTHON_VER} _APIDIR_REL= share/${_VERSION_SUBDIR_REL}/qsci _DOCDIR_REL= share/doc/${_VERSION_SUBDIR_REL} _EXAMPLEDIR_REL= share/examples/${_VERSION_SUBDIR_REL} _SIPDIR_REL= share/${_VERSION_SUBDIR_REL}/sip _DESIGNERDIR_REL= ${QT_PLUGINDIR_REL}/designer/${_VERSION_SUBDIR_REL} _QMLDIR_REL= ${QT_QMLDIR_REL}/${_VERSION_SUBDIR_REL} # Absolute direcotries PYQT_APIDIR= ${PREFIX}/${_APIDIR_REL} PYQT_DOCDIR= ${PREFIX}/${_DOCDIR_REL} PYQT_EXAMPLEDIR= ${PREFIX}/${_EXAMPLEDIR_REL} PYQT_SIPDIR= ${PREFIX}/${_SIPDIR_REL} PYQT_DESIGNERDIR= ${PREFIX}/${_DESIGNERDIR_REL} PYQT_QMLDIR= ${PREFIX}/${_QMLDIR_REL} PLIST_SUB+= PYQT_APIDIR=${_APIDIR_REL} \ PYQT_DOCDIR=${_DOCDIR_REL} \ PYQT_EXAMPLEDIR=${_EXAMPLEDIR_REL} \ PYQT_SIPDIR=${_SIPDIR_REL} \ PYQT_DESIGNERDIR=${_DESIGNERDIR_REL} \ PYQT_QMLDIR=${_QMLDIR_REL} .if defined(PYQT_DIST) PORTVERSION= ${PYQT_VERSION} MASTER_SITES= ${PYQT_MASTERSITES} PKGNAMEPREFIX= ${PYQT_PY_RELNAME}- DISTNAME= ${PYQT_DISTNAME} DISTINFO_FILE= ${PYQT_DISTINFO_FILE} LICENSE?= ${PYQT_LICENSE} HAS_CONFIGURE= yes .if ${_PYQT_VERSION} > 4 # PyQt5's configure.py generates .pro files and calls qmake to generate the # Makefiles. qmake's Makefiles use INSTALL_ROOT instead of DESTDIR. DESTDIRNAME= INSTALL_ROOT # Limit PyQt5's version to the Qt5 version in ports PORTSCOUT?= limit:^${_QT_VERSION:R} .endif PATCHDIR= ${.CURDIR}/../../devel/${PYQT_RELNAME}-core/files CONFIGURE_ARGS+=-b ${PREFIX}/bin \ -d ${PYTHONPREFIX_SITELIBDIR} \ -q ${QMAKE} \ --confirm-license \ --sip ${SIP} \ --sipdir ${PYQT_SIPDIR} -# Move the designer plugin and qml libraries to versioned folders. .if ${_PYQT_VERSION:M5} +# Move the designer plugin and qml libraries to versioned folders. CONFIGURE_ARGS+=--qml-plugindir ${PYQT_QMLDIR} \ --designer-plugindir ${PYQT_DESIGNERDIR} +# Further do not gernate the dinstinfo files. +CONFIGURE_ARGS+=--no-dist-info .endif # One of the things PyQt looks for to determine whether to build the Qt DBus # main loop module (${PYQT_RELNAME}-dbussupport) is whether the dbus/ directory is # present. Only extract it for that port then. .if ${PORTNAME} != "dbussupport" EXTRACT_AFTER_ARGS+= --exclude "${DISTNAME}/dbus" .endif # ${PORTNAME} != "dbussupport" .if !target(do-configure) do-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} .endif # !target(do-configure) .endif # defined(PYQT_DIST) # Set build and run depends -- we need to prefix them internally with "py-" # else we conflict with the ones defined in bsd.qt.mk with the same name _USE_PYQT_ALL+= ${_USE_PYQT${_PYQT_VERSION}_ONLY} .for comp in ${_USE_PYQT_ALL:O:u} _USE_PYQT_ALL_SUFFIXED+= py-${comp} py-${comp}_build py-${comp}_run py-${comp}_BUILD_DEPENDS?= ${py-${comp}_PATH}:${py-${comp}_PORT}@${PY_FLAVOR} py-${comp}_RUN_DEPENDS?= ${py-${comp}_PATH}:${py-${comp}_PORT}@${PY_FLAVOR} py-${comp}_build_BUILD_DEPENDS?= ${py-${comp}_BUILD_DEPENDS} py-${comp}_run_RUN_DEPENDS?= ${py-${comp}_RUN_DEPENDS} .endfor _USE_PYQT= ${USE_PYQT:O:u} .for comp in ${_USE_PYQT} . if ${_USE_PYQT_ALL_SUFFIXED:Mpy-${comp}} BUILD_DEPENDS+= ${py-${comp}_BUILD_DEPENDS} RUN_DEPENDS+= ${py-${comp}_RUN_DEPENDS} . else IGNORE?= cannot be installed: unknown USE_PYQT component ${comp} #' . endif .endfor .endif # defined(_INCLUDE_USES_PYQT_MK) Index: head/comms/py-qt5-serialport/Makefile =================================================================== --- head/comms/py-qt5-serialport/Makefile (revision 487596) +++ head/comms/py-qt5-serialport/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= serialport CATEGORIES= comms devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtSerialPort module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtSerialPort PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/databases/py-qt5-sql/Makefile =================================================================== --- head/databases/py-qt5-sql/Makefile (revision 487596) +++ head/databases/py-qt5-sql/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= sql CATEGORIES= databases devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtSql module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtSql PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/devel/py-pykde4-kde4/Makefile =================================================================== --- head/devel/py-pykde4-kde4/Makefile (revision 487596) +++ head/devel/py-pykde4-kde4/Makefile (revision 487597) @@ -1,54 +1,54 @@ # $FreeBSD$ PORTNAME= pykde4 PORTVERSION= ${KDE4_VERSION} PORTREVISION= 9 CATEGORIES= devel kde kde-kde4 python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqwt.so:x11-toolkits/qwt5 USES= cmake:outsource kde:4 python:2.7 pyqt:4 qt:4 tar:xz USE_KDE= kdelibs nepomuk-core okular pimlibs \ akonadi automoc4 soprano USE_PYQT= declarative designer gui network opengl phonon script sip \ sql svg webkit xml \ dbussupport_run USE_PYTHON= flavors USE_QT= corelib dbus designer_build gui network xml \ qmake_build moc_build uic_build rcc_build USE_CXXSTD= gnu++98 CMAKE_ARGS+= -DWITH_PolkitQt:BOOL=FALSE \ -DENABLE_PYTHON=ON \ -DPYTHON_INCLUDE_DIR:PATH=${WRKDIR}/include/${PYTHON_VERSION} SUB_FILES= kdebindings4.pth SUB_LIST= PYTHONPREFIX_SITELIBDIR=${PYTHONPREFIX_SITELIBDIR} -PLIST_SUB+= SIPDIR=share/sip +PLIST_SUB+= PYQT_SIPDIR=share/sip OPTIONS_DEFINE= EXAMPLES post-patch: ${FIND} -d ${PATCH_WRKSRC}/sip -name "*.orig" -delete pre-configure: ${REINPLACE_CMD} -e '/add_subdirectory(examples)/ d' \ -e '/add_subdirectory(tools)/ d' \ ${WRKSRC}/CMakeLists.txt ${RM} ${WRKSRC}/examples/CMakeLists.txt post-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} ${INSTALL_DATA} ${WRKDIR}/kdebindings4.pth ${STAGEDIR}${PYTHON_SITELIBDIR} .include Index: head/devel/py-pykde4-kde4/pkg-plist =================================================================== --- head/devel/py-pykde4-kde4/pkg-plist (revision 487596) +++ head/devel/py-pykde4-kde4/pkg-plist (revision 487597) @@ -1,989 +1,989 @@ lib/kde4/kpythonpluginfactory.so %%PYTHON_SITELIBDIR%%/PyKDE4/__init__.py %%PYTHON_SITELIBDIR%%/PyKDE4/%%PYCACHE%%__init__.%%PYC_SUFFIX%% %%PYTHON_SITELIBDIR%%/PyKDE4/%%PYCACHE%%__init__.%%PYO_SUFFIX%% %%PYTHON_SITELIBDIR%%/PyKDE4/akonadi.so %%PYTHON_SITELIBDIR%%/PyKDE4/dnssd.so %%PYTHON_SITELIBDIR%%/PyKDE4/kdecore.so %%PYTHON_SITELIBDIR%%/PyKDE4/kdeui.so %%PYTHON_SITELIBDIR%%/PyKDE4/khtml.so %%PYTHON_SITELIBDIR%%/PyKDE4/kio.so %%PYTHON_SITELIBDIR%%/PyKDE4/knewstuff.so %%PYTHON_SITELIBDIR%%/PyKDE4/kparts.so %%PYTHON_SITELIBDIR%%/PyKDE4/kterminal.so %%PYTHON_SITELIBDIR%%/PyKDE4/ktexteditor.so %%PYTHON_SITELIBDIR%%/PyKDE4/kutils.so %%PYTHON_SITELIBDIR%%/PyKDE4/nepomuk.so %%PYTHON_SITELIBDIR%%/PyKDE4/phonon.so %%PYTHON_SITELIBDIR%%/PyKDE4/plasma.so %%PYTHON_SITELIBDIR%%/PyKDE4/pykdeconfig.py %%PYTHON_SITELIBDIR%%/PyKDE4/%%PYCACHE%%pykdeconfig.%%PYC_SUFFIX%% %%PYTHON_SITELIBDIR%%/PyKDE4/%%PYCACHE%%pykdeconfig.%%PYO_SUFFIX%% %%PYTHON_SITELIBDIR%%/PyKDE4/solid.so %%PYTHON_SITELIBDIR%%/PyKDE4/soprano.so %%PORTEXAMPLES%%%%EXAMPLESDIR%%/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/default.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdecoreExamples/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdecoreExamples/kaboutdata.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdecoreExamples/kstandarddirs.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kaboutapplicationdialog.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kaboutkdedialog.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kapplication.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kcolorbutton.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kcolorcells.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kcolorcombo.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kcolordialog.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kcolorpatch.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kcombobox.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kdatepicker.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kdatewidget.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kfontdialog.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/klistwidget.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kdeuiExamples/kmainwindow.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/khtmlExamples/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kioExamples/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kpartsExamples/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kpartsExamples/katepart.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kpartsExamples/konsolepart.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/kutilsExamples/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polkitqtExamples/PkExampleUi.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polkitqtExamples/README %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polkitqtExamples/pkexample.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/polkitqtExamples/pkexamplehelper.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/solid_audiointerface.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/solid_device.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/solid_networkinterface.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/solid_processor.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/solid_storageaccess.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/solid_storagedrive.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solidExamples/solid_storagevolume.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/solid_demo.py -%%SIPDIR%%/PyKDE4/akonadi/abstractdifferencesreporter.sip -%%SIPDIR%%/PyKDE4/akonadi/addressattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/agentactionmanager.sip -%%SIPDIR%%/PyKDE4/akonadi/agentbase.sip -%%SIPDIR%%/PyKDE4/akonadi/agentfactory.sip -%%SIPDIR%%/PyKDE4/akonadi/agentfilterproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/agentinstance.sip -%%SIPDIR%%/PyKDE4/akonadi/agentinstancecreatejob.sip -%%SIPDIR%%/PyKDE4/akonadi/agentinstancemodel.sip -%%SIPDIR%%/PyKDE4/akonadi/agentinstancewidget.sip -%%SIPDIR%%/PyKDE4/akonadi/agentmanager.sip -%%SIPDIR%%/PyKDE4/akonadi/agentsearchinterface.sip -%%SIPDIR%%/PyKDE4/akonadi/agenttype.sip -%%SIPDIR%%/PyKDE4/akonadi/agenttypedialog.sip -%%SIPDIR%%/PyKDE4/akonadi/agenttypemodel.sip -%%SIPDIR%%/PyKDE4/akonadi/agenttypewidget.sip -%%SIPDIR%%/PyKDE4/akonadi/akonadimod.sip -%%SIPDIR%%/PyKDE4/akonadi/attribute.sip -%%SIPDIR%%/PyKDE4/akonadi/attributefactory.sip -%%SIPDIR%%/PyKDE4/akonadi/cachepolicy.sip -%%SIPDIR%%/PyKDE4/akonadi/changerecorder.sip -%%SIPDIR%%/PyKDE4/akonadi/collection.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionattributessynchronizationjob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectioncombobox.sip -%%SIPDIR%%/PyKDE4/akonadi/collectioncopyjob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectioncreatejob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectiondeletejob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectiondialog.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionfetchjob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionfetchscope.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionfilterproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionmodel.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionmodifyjob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionmovejob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionpropertiesdialog.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionpropertiespage.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionquotaattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionrequester.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionstatistics.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionstatisticsdelegate.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionstatisticsjob.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionstatisticsmodel.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionutils_p.sip -%%SIPDIR%%/PyKDE4/akonadi/collectionview.sip -%%SIPDIR%%/PyKDE4/akonadi/control.sip -%%SIPDIR%%/PyKDE4/akonadi/differencesalgorithminterface.sip -%%SIPDIR%%/PyKDE4/akonadi/entity.sip -%%SIPDIR%%/PyKDE4/akonadi/entitydeletedattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/entitydisplayattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/entityhiddenattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/entitylistview.sip -%%SIPDIR%%/PyKDE4/akonadi/entitymimetypefiltermodel.sip -%%SIPDIR%%/PyKDE4/akonadi/entityorderproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/entityrightsfiltermodel.sip -%%SIPDIR%%/PyKDE4/akonadi/entitytreemodel.sip -%%SIPDIR%%/PyKDE4/akonadi/entitytreeview.sip -%%SIPDIR%%/PyKDE4/akonadi/entitytreeviewstatesaver.sip -%%SIPDIR%%/PyKDE4/akonadi/etmviewstatesaver.sip -%%SIPDIR%%/PyKDE4/akonadi/favoritecollectionsmodel.sip -%%SIPDIR%%/PyKDE4/akonadi/indexpolicyattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/item.sip -%%SIPDIR%%/PyKDE4/akonadi/itemcopyjob.sip -%%SIPDIR%%/PyKDE4/akonadi/itemcreatejob.sip -%%SIPDIR%%/PyKDE4/akonadi/itemdeletejob.sip -%%SIPDIR%%/PyKDE4/akonadi/itemfetchjob.sip -%%SIPDIR%%/PyKDE4/akonadi/itemfetchscope.sip -%%SIPDIR%%/PyKDE4/akonadi/itemmodel.sip -%%SIPDIR%%/PyKDE4/akonadi/itemmodifyjob.sip -%%SIPDIR%%/PyKDE4/akonadi/itemmonitor.sip -%%SIPDIR%%/PyKDE4/akonadi/itemmovejob.sip -%%SIPDIR%%/PyKDE4/akonadi/itemsearchjob.sip -%%SIPDIR%%/PyKDE4/akonadi/itemserializerplugin.sip -%%SIPDIR%%/PyKDE4/akonadi/itemsync.sip -%%SIPDIR%%/PyKDE4/akonadi/itemview.sip -%%SIPDIR%%/PyKDE4/akonadi/job.sip -%%SIPDIR%%/PyKDE4/akonadi/linkjob.sip -%%SIPDIR%%/PyKDE4/akonadi/messageflags.sip -%%SIPDIR%%/PyKDE4/akonadi/messagefolderattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/messagemodel.sip -%%SIPDIR%%/PyKDE4/akonadi/messageparts.sip -%%SIPDIR%%/PyKDE4/akonadi/messagestatus.sip -%%SIPDIR%%/PyKDE4/akonadi/messagethreaderproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/messagethreadingattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/mimetypechecker.sip -%%SIPDIR%%/PyKDE4/akonadi/monitor.sip -%%SIPDIR%%/PyKDE4/akonadi/partfetcher.sip -%%SIPDIR%%/PyKDE4/akonadi/persistentsearchattribute.sip -%%SIPDIR%%/PyKDE4/akonadi/preprocessorbase.sip -%%SIPDIR%%/PyKDE4/akonadi/recursivecollectionfilterproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/recursiveitemfetchjob.sip -%%SIPDIR%%/PyKDE4/akonadi/resourcebase.sip -%%SIPDIR%%/PyKDE4/akonadi/resourcebasesettings.sip -%%SIPDIR%%/PyKDE4/akonadi/resourcesettings.sip -%%SIPDIR%%/PyKDE4/akonadi/resourcesynchronizationjob.sip -%%SIPDIR%%/PyKDE4/akonadi/searchcreatejob.sip -%%SIPDIR%%/PyKDE4/akonadi/selectionproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/servermanager.sip -%%SIPDIR%%/PyKDE4/akonadi/session.sip -%%SIPDIR%%/PyKDE4/akonadi/specialcollections.sip -%%SIPDIR%%/PyKDE4/akonadi/specialcollectionsrequestjob.sip -%%SIPDIR%%/PyKDE4/akonadi/specialmailcollections.sip -%%SIPDIR%%/PyKDE4/akonadi/specialmailcollectionsrequestjob.sip -%%SIPDIR%%/PyKDE4/akonadi/standardactionmanager.sip -%%SIPDIR%%/PyKDE4/akonadi/standardmailactionmanager.sip -%%SIPDIR%%/PyKDE4/akonadi/statisticsproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/transactionjobs.sip -%%SIPDIR%%/PyKDE4/akonadi/transactionsequence.sip -%%SIPDIR%%/PyKDE4/akonadi/transportresourcebase.sip -%%SIPDIR%%/PyKDE4/akonadi/trashfilterproxymodel.sip -%%SIPDIR%%/PyKDE4/akonadi/trashjob.sip -%%SIPDIR%%/PyKDE4/akonadi/trashrestorejob.sip -%%SIPDIR%%/PyKDE4/akonadi/trashsettings.sip -%%SIPDIR%%/PyKDE4/akonadi/unlinkjob.sip -%%SIPDIR%%/PyKDE4/dnssd/dnssdmod.sip -%%SIPDIR%%/PyKDE4/dnssd/domainbrowser.sip -%%SIPDIR%%/PyKDE4/dnssd/domainmodel.sip -%%SIPDIR%%/PyKDE4/dnssd/publicservice.sip -%%SIPDIR%%/PyKDE4/dnssd/remoteservice.sip -%%SIPDIR%%/PyKDE4/dnssd/servicebase.sip -%%SIPDIR%%/PyKDE4/dnssd/servicebrowser.sip -%%SIPDIR%%/PyKDE4/dnssd/servicemodel.sip -%%SIPDIR%%/PyKDE4/dnssd/servicetypebrowser.sip -%%SIPDIR%%/PyKDE4/glossary.html -%%SIPDIR%%/PyKDE4/kdecore/backgroundchecker.sip -%%SIPDIR%%/PyKDE4/kdecore/globals.sip -%%SIPDIR%%/PyKDE4/kdecore/kaboutdata.sip -%%SIPDIR%%/PyKDE4/kdecore/kascii.sip -%%SIPDIR%%/PyKDE4/kdecore/kauthaction.sip -%%SIPDIR%%/PyKDE4/kdecore/kauthactionreply.sip -%%SIPDIR%%/PyKDE4/kdecore/kauthactionwatcher.sip -%%SIPDIR%%/PyKDE4/kdecore/kauthhelpersupport.sip -%%SIPDIR%%/PyKDE4/kdecore/kauthorized.sip -%%SIPDIR%%/PyKDE4/kdecore/kautosavefile.sip -%%SIPDIR%%/PyKDE4/kdecore/kautostart.sip -%%SIPDIR%%/PyKDE4/kdecore/kcalendarsystem.sip -%%SIPDIR%%/PyKDE4/kdecore/kcharsets.sip -%%SIPDIR%%/PyKDE4/kdecore/kcmdlineargs.sip -%%SIPDIR%%/PyKDE4/kdecore/kcomponentdata.sip -%%SIPDIR%%/PyKDE4/kdecore/kcompositejob.sip -%%SIPDIR%%/PyKDE4/kdecore/kconfig.sip -%%SIPDIR%%/PyKDE4/kdecore/kconfigbase.sip -%%SIPDIR%%/PyKDE4/kdecore/kconfigdata.sip -%%SIPDIR%%/PyKDE4/kdecore/kconfiggroup.sip -%%SIPDIR%%/PyKDE4/kdecore/kconfigini.sip -%%SIPDIR%%/PyKDE4/kdecore/kcoreconfigskeleton.sip -%%SIPDIR%%/PyKDE4/kdecore/kcurrencycode.sip -%%SIPDIR%%/PyKDE4/kdecore/kdatetime.sip -%%SIPDIR%%/PyKDE4/kdecore/kdecoremod.sip -%%SIPDIR%%/PyKDE4/kdecore/kdedmodule.sip -%%SIPDIR%%/PyKDE4/kdecore/kdesktopfile.sip -%%SIPDIR%%/PyKDE4/kdecore/kencodingdetector.sip -%%SIPDIR%%/PyKDE4/kdecore/kencodingprober.sip -%%SIPDIR%%/PyKDE4/kdecore/kexportplugin.sip -%%SIPDIR%%/PyKDE4/kdecore/kfilterbase.sip -%%SIPDIR%%/PyKDE4/kdecore/kfilterdev.sip -%%SIPDIR%%/PyKDE4/kdecore/kglobal.sip -%%SIPDIR%%/PyKDE4/kdecore/kjob.sip -%%SIPDIR%%/PyKDE4/kdecore/kjobtrackerinterface.sip -%%SIPDIR%%/PyKDE4/kdecore/kjobuidelegate.sip -%%SIPDIR%%/PyKDE4/kdecore/klibloader.sip -%%SIPDIR%%/PyKDE4/kdecore/klibrary.sip -%%SIPDIR%%/PyKDE4/kdecore/klocale.sip -%%SIPDIR%%/PyKDE4/kdecore/klocalizeddate.sip -%%SIPDIR%%/PyKDE4/kdecore/klocalizedstring.sip -%%SIPDIR%%/PyKDE4/kdecore/klocalsocket.sip -%%SIPDIR%%/PyKDE4/kdecore/klockfile.sip -%%SIPDIR%%/PyKDE4/kdecore/kmacroexpander.sip -%%SIPDIR%%/PyKDE4/kdecore/kmessage.sip -%%SIPDIR%%/PyKDE4/kdecore/kmimetype.sip -%%SIPDIR%%/PyKDE4/kdecore/kmimetypetrader.sip -%%SIPDIR%%/PyKDE4/kdecore/kpluginfactory.sip -%%SIPDIR%%/PyKDE4/kdecore/kplugininfo.sip -%%SIPDIR%%/PyKDE4/kdecore/kpluginloader.sip -%%SIPDIR%%/PyKDE4/kdecore/kprocess.sip -%%SIPDIR%%/PyKDE4/kdecore/kprotocolinfo.sip -%%SIPDIR%%/PyKDE4/kdecore/kpty.sip -%%SIPDIR%%/PyKDE4/kdecore/kptydevice.sip -%%SIPDIR%%/PyKDE4/kdecore/kptyprocess.sip -%%SIPDIR%%/PyKDE4/kdecore/krandom.sip -%%SIPDIR%%/PyKDE4/kdecore/krandomsequence.sip -%%SIPDIR%%/PyKDE4/kdecore/ksavefile.sip -%%SIPDIR%%/PyKDE4/kdecore/kservice.sip -%%SIPDIR%%/PyKDE4/kdecore/kserviceaction.sip -%%SIPDIR%%/PyKDE4/kdecore/kservicegroup.sip -%%SIPDIR%%/PyKDE4/kdecore/kservicetype.sip -%%SIPDIR%%/PyKDE4/kdecore/kservicetypeprofile.sip -%%SIPDIR%%/PyKDE4/kdecore/kservicetypetrader.sip -%%SIPDIR%%/PyKDE4/kdecore/ksharedconfig.sip -%%SIPDIR%%/PyKDE4/kdecore/kshell.sip -%%SIPDIR%%/PyKDE4/kdecore/ksocketfactory.sip -%%SIPDIR%%/PyKDE4/kdecore/kstandarddirs.sip -%%SIPDIR%%/PyKDE4/kdecore/kstaticdeleter.sip -%%SIPDIR%%/PyKDE4/kdecore/kstringhandler.sip -%%SIPDIR%%/PyKDE4/kdecore/ksycoca.sip -%%SIPDIR%%/PyKDE4/kdecore/ksycocaentry.sip -%%SIPDIR%%/PyKDE4/kdecore/ksycocatype.sip -%%SIPDIR%%/PyKDE4/kdecore/ksystemtimezone.sip -%%SIPDIR%%/PyKDE4/kdecore/ktcpsocket.sip -%%SIPDIR%%/PyKDE4/kdecore/ktempdir.sip -%%SIPDIR%%/PyKDE4/kdecore/ktemporaryfile.sip -%%SIPDIR%%/PyKDE4/kdecore/ktimezone.sip -%%SIPDIR%%/PyKDE4/kdecore/ktoolinvocation.sip -%%SIPDIR%%/PyKDE4/kdecore/ktzfiletimezone.sip -%%SIPDIR%%/PyKDE4/kdecore/kurl.sip -%%SIPDIR%%/PyKDE4/kdecore/kuser.sip -%%SIPDIR%%/PyKDE4/kdecore/speller.sip -%%SIPDIR%%/PyKDE4/kdecore/typedefs.sip -%%SIPDIR%%/PyKDE4/kdeui/configdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/configwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/dialog.sip -%%SIPDIR%%/PyKDE4/kdeui/dictionarycombobox.sip -%%SIPDIR%%/PyKDE4/kdeui/fixx11h.sip -%%SIPDIR%%/PyKDE4/kdeui/highlighter.sip -%%SIPDIR%%/PyKDE4/kdeui/k3icon_p.sip -%%SIPDIR%%/PyKDE4/kdeui/kaboutapplicationdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kabstractwidgetjobtracker.sip -%%SIPDIR%%/PyKDE4/kdeui/kacceleratormanager.sip -%%SIPDIR%%/PyKDE4/kdeui/kaccelgen.sip -%%SIPDIR%%/PyKDE4/kdeui/kaction.sip -%%SIPDIR%%/PyKDE4/kdeui/kactioncategory.sip -%%SIPDIR%%/PyKDE4/kdeui/kactioncollection.sip -%%SIPDIR%%/PyKDE4/kdeui/kactionmenu.sip -%%SIPDIR%%/PyKDE4/kdeui/kactionselector.sip -%%SIPDIR%%/PyKDE4/kdeui/kanimatedbutton.sip -%%SIPDIR%%/PyKDE4/kdeui/kapplication.sip -%%SIPDIR%%/PyKDE4/kdeui/karrowbutton.sip -%%SIPDIR%%/PyKDE4/kdeui/kassistantdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kbreadcrumbselectionmodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kbugreport.sip -%%SIPDIR%%/PyKDE4/kdeui/kbuttongroup.sip -%%SIPDIR%%/PyKDE4/kdeui/kcapacitybar.sip -%%SIPDIR%%/PyKDE4/kdeui/kcategorizedsortfilterproxymodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kcategorizedview.sip -%%SIPDIR%%/PyKDE4/kdeui/kcategorydrawer.sip -%%SIPDIR%%/PyKDE4/kdeui/kcharselect.sip -%%SIPDIR%%/PyKDE4/kdeui/kcheckableproxymodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kcmodule.sip -%%SIPDIR%%/PyKDE4/kdeui/kcodecaction.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolorbutton.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolorchoosermode.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolorcollection.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolorcombo.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolordialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolormimedata.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolorscheme.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolorutils.sip -%%SIPDIR%%/PyKDE4/kdeui/kcolorvalueselector.sip -%%SIPDIR%%/PyKDE4/kdeui/kcombobox.sip -%%SIPDIR%%/PyKDE4/kdeui/kcompletion.sip -%%SIPDIR%%/PyKDE4/kdeui/kcompletionbox.sip -%%SIPDIR%%/PyKDE4/kdeui/kconfigdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kconfigdialogmanager.sip -%%SIPDIR%%/PyKDE4/kdeui/kconfigskeleton.sip -%%SIPDIR%%/PyKDE4/kdeui/kcrash.sip -%%SIPDIR%%/PyKDE4/kdeui/kcursor.sip -%%SIPDIR%%/PyKDE4/kdeui/kdatecombobox.sip -%%SIPDIR%%/PyKDE4/kdeui/kdatepicker.sip -%%SIPDIR%%/PyKDE4/kdeui/kdatetable.sip -%%SIPDIR%%/PyKDE4/kdeui/kdatetimeedit.sip -%%SIPDIR%%/PyKDE4/kdeui/kdatetimewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kdatewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kdeprintdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kdescendantsproxymodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kdeuimod.sip -%%SIPDIR%%/PyKDE4/kdeui/kdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kdialogbuttonbox.sip -%%SIPDIR%%/PyKDE4/kdeui/kdialogjobuidelegate.sip -%%SIPDIR%%/PyKDE4/kdeui/kdualaction.sip -%%SIPDIR%%/PyKDE4/kdeui/keditlistbox.sip -%%SIPDIR%%/PyKDE4/kdeui/keditlistwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kedittoolbar.sip -%%SIPDIR%%/PyKDE4/kdeui/kextendableitemdelegate.sip -%%SIPDIR%%/PyKDE4/kdeui/kfadewidgeteffect.sip -%%SIPDIR%%/PyKDE4/kdeui/kfilterproxysearchline.sip -%%SIPDIR%%/PyKDE4/kdeui/kfind.sip -%%SIPDIR%%/PyKDE4/kdeui/kfinddialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kfontaction.sip -%%SIPDIR%%/PyKDE4/kdeui/kfontchooser.sip -%%SIPDIR%%/PyKDE4/kdeui/kfontcombobox.sip -%%SIPDIR%%/PyKDE4/kdeui/kfontdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kfontrequester.sip -%%SIPDIR%%/PyKDE4/kdeui/kfontsizeaction.sip -%%SIPDIR%%/PyKDE4/kdeui/kfontutils.sip -%%SIPDIR%%/PyKDE4/kdeui/kgesture.sip -%%SIPDIR%%/PyKDE4/kdeui/kglobalaccel.sip -%%SIPDIR%%/PyKDE4/kdeui/kglobalsettings.sip -%%SIPDIR%%/PyKDE4/kdeui/kglobalshortcutinfo.sip -%%SIPDIR%%/PyKDE4/kdeui/kguiitem.sip -%%SIPDIR%%/PyKDE4/kdeui/khbox.sip -%%SIPDIR%%/PyKDE4/kdeui/khelpmenu.sip -%%SIPDIR%%/PyKDE4/kdeui/khistorycombobox.sip -%%SIPDIR%%/PyKDE4/kdeui/khuesaturationselect.sip -%%SIPDIR%%/PyKDE4/kdeui/kicon.sip -%%SIPDIR%%/PyKDE4/kdeui/kiconcache.sip -%%SIPDIR%%/PyKDE4/kdeui/kiconeffect.sip -%%SIPDIR%%/PyKDE4/kdeui/kiconloader.sip -%%SIPDIR%%/PyKDE4/kdeui/kicontheme.sip -%%SIPDIR%%/PyKDE4/kdeui/kidentityproxymodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kinputdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kkeysequencewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kkeyserver.sip -%%SIPDIR%%/PyKDE4/kdeui/kkeyserver_x11.sip -%%SIPDIR%%/PyKDE4/kdeui/klanguagebutton.sip -%%SIPDIR%%/PyKDE4/kdeui/kled.sip -%%SIPDIR%%/PyKDE4/kdeui/klineedit.sip -%%SIPDIR%%/PyKDE4/kdeui/klinkitemselectionmodel.sip -%%SIPDIR%%/PyKDE4/kdeui/klistwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/klistwidgetsearchline.sip -%%SIPDIR%%/PyKDE4/kdeui/kmainwindow.sip -%%SIPDIR%%/PyKDE4/kdeui/kmanagerselection.sip -%%SIPDIR%%/PyKDE4/kdeui/kmenu.sip -%%SIPDIR%%/PyKDE4/kdeui/kmenubar.sip -%%SIPDIR%%/PyKDE4/kdeui/kmessagebox.sip -%%SIPDIR%%/PyKDE4/kdeui/kmessageboxmessagehandler.sip -%%SIPDIR%%/PyKDE4/kdeui/kmessagewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kmodelindexproxymapper.sip -%%SIPDIR%%/PyKDE4/kdeui/kmodifierkeyinfo.sip -%%SIPDIR%%/PyKDE4/kdeui/kmultitabbar.sip -%%SIPDIR%%/PyKDE4/kdeui/knewpassworddialog.sip -%%SIPDIR%%/PyKDE4/kdeui/knotification.sip -%%SIPDIR%%/PyKDE4/kdeui/knotificationrestrictions.sip -%%SIPDIR%%/PyKDE4/kdeui/knuminput.sip -%%SIPDIR%%/PyKDE4/kdeui/knumvalidator.sip -%%SIPDIR%%/PyKDE4/kdeui/kpagedialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kpagemodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kpageview.sip -%%SIPDIR%%/PyKDE4/kdeui/kpagewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kpagewidgetmodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kpassivepopup.sip -%%SIPDIR%%/PyKDE4/kdeui/kpassivepopupmessagehandler.sip -%%SIPDIR%%/PyKDE4/kdeui/kpassworddialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kpastetextaction.sip -%%SIPDIR%%/PyKDE4/kdeui/kpixmapcache.sip -%%SIPDIR%%/PyKDE4/kdeui/kpixmapprovider.sip -%%SIPDIR%%/PyKDE4/kdeui/kpixmapregionselectordialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kpixmapregionselectorwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kpixmapsequence.sip -%%SIPDIR%%/PyKDE4/kdeui/kpixmapsequenceoverlaypainter.sip -%%SIPDIR%%/PyKDE4/kdeui/kpixmapsequencewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kplotaxis.sip -%%SIPDIR%%/PyKDE4/kdeui/kplotobject.sip -%%SIPDIR%%/PyKDE4/kdeui/kplotpoint.sip -%%SIPDIR%%/PyKDE4/kdeui/kplotwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kprogressdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kpushbutton.sip -%%SIPDIR%%/PyKDE4/kdeui/kratingpainter.sip -%%SIPDIR%%/PyKDE4/kdeui/kratingwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/krecentfilesaction.sip -%%SIPDIR%%/PyKDE4/kdeui/krecursivefilterproxymodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kreplace.sip -%%SIPDIR%%/PyKDE4/kdeui/kreplacedialog.sip -%%SIPDIR%%/PyKDE4/kdeui/krestrictedline.sip -%%SIPDIR%%/PyKDE4/kdeui/krichtextedit.sip -%%SIPDIR%%/PyKDE4/kdeui/krichtextwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/kruler.sip -%%SIPDIR%%/PyKDE4/kdeui/kselectaction.sip -%%SIPDIR%%/PyKDE4/kdeui/kselectionproxymodel.sip -%%SIPDIR%%/PyKDE4/kdeui/kselector.sip -%%SIPDIR%%/PyKDE4/kdeui/kseparator.sip -%%SIPDIR%%/PyKDE4/kdeui/ksessionmanager.sip -%%SIPDIR%%/PyKDE4/kdeui/kshortcut.sip -%%SIPDIR%%/PyKDE4/kdeui/kshortcutsdialog.sip -%%SIPDIR%%/PyKDE4/kdeui/kshortcutseditor.sip -%%SIPDIR%%/PyKDE4/kdeui/kshortcutwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/ksplashscreen.sip -%%SIPDIR%%/PyKDE4/kdeui/ksqueezedtextlabel.sip -%%SIPDIR%%/PyKDE4/kdeui/kstandardaction.sip -%%SIPDIR%%/PyKDE4/kdeui/kstandardguiitem.sip -%%SIPDIR%%/PyKDE4/kdeui/kstandardshortcut.sip -%%SIPDIR%%/PyKDE4/kdeui/kstartupinfo.sip -%%SIPDIR%%/PyKDE4/kdeui/kstatusbar.sip -%%SIPDIR%%/PyKDE4/kdeui/kstatusbarjobtracker.sip -%%SIPDIR%%/PyKDE4/kdeui/kstatusnotifieritem.sip -%%SIPDIR%%/PyKDE4/kdeui/kstringvalidator.sip -%%SIPDIR%%/PyKDE4/kdeui/kstyle.sip -%%SIPDIR%%/PyKDE4/kdeui/ksvgrenderer.sip -%%SIPDIR%%/PyKDE4/kdeui/ksystemeventfilter.sip -%%SIPDIR%%/PyKDE4/kdeui/ksystemtrayicon.sip -%%SIPDIR%%/PyKDE4/kdeui/ktabbar.sip -%%SIPDIR%%/PyKDE4/kdeui/ktabwidget.sip -%%SIPDIR%%/PyKDE4/kdeui/ktextbrowser.sip -%%SIPDIR%%/PyKDE4/kdeui/ktextedit.sip -%%SIPDIR%%/PyKDE4/kdeui/ktimecombobox.sip -%%SIPDIR%%/PyKDE4/kdeui/ktimezonewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/ktip.sip -%%SIPDIR%%/PyKDE4/kdeui/ktitlewidget.sip -%%SIPDIR%%/PyKDE4/kdeui/ktoggleaction.sip -%%SIPDIR%%/PyKDE4/kdeui/ktogglefullscreenaction.sip -%%SIPDIR%%/PyKDE4/kdeui/ktoggletoolbaraction.sip -%%SIPDIR%%/PyKDE4/kdeui/ktoolbar.sip -%%SIPDIR%%/PyKDE4/kdeui/ktoolbarlabelaction.sip -%%SIPDIR%%/PyKDE4/kdeui/ktoolbarpopupaction.sip -%%SIPDIR%%/PyKDE4/kdeui/ktoolbarspaceraction.sip -%%SIPDIR%%/PyKDE4/kdeui/ktreewidgetsearchline.sip -%%SIPDIR%%/PyKDE4/kdeui/kuiserverjobtracker.sip -%%SIPDIR%%/PyKDE4/kdeui/kundostack.sip -%%SIPDIR%%/PyKDE4/kdeui/kuniqueapplication.sip -%%SIPDIR%%/PyKDE4/kdeui/kurllabel.sip -%%SIPDIR%%/PyKDE4/kdeui/kvbox.sip -%%SIPDIR%%/PyKDE4/kdeui/kviewstatemaintainer.sip -%%SIPDIR%%/PyKDE4/kdeui/kviewstatesaver.sip -%%SIPDIR%%/PyKDE4/kdeui/kwallet.sip -%%SIPDIR%%/PyKDE4/kdeui/kwidgetitemdelegate.sip -%%SIPDIR%%/PyKDE4/kdeui/kwidgetjobtracker.sip -%%SIPDIR%%/PyKDE4/kdeui/kwindowinfo.sip -%%SIPDIR%%/PyKDE4/kdeui/kwindowsystem.sip -%%SIPDIR%%/PyKDE4/kdeui/kwordwrap.sip -%%SIPDIR%%/PyKDE4/kdeui/kxmessages.sip -%%SIPDIR%%/PyKDE4/kdeui/kxmlguibuilder.sip -%%SIPDIR%%/PyKDE4/kdeui/kxmlguiclient.sip -%%SIPDIR%%/PyKDE4/kdeui/kxmlguifactory.sip -%%SIPDIR%%/PyKDE4/kdeui/kxmlguiwindow.sip -%%SIPDIR%%/PyKDE4/kdeui/kxutils.sip -%%SIPDIR%%/PyKDE4/kdeui/kxyselector.sip -%%SIPDIR%%/PyKDE4/kdeui/netwm.sip -%%SIPDIR%%/PyKDE4/kdeui/netwm_def.sip -%%SIPDIR%%/PyKDE4/khtml/css_rule.sip -%%SIPDIR%%/PyKDE4/khtml/css_stylesheet.sip -%%SIPDIR%%/PyKDE4/khtml/css_value.sip -%%SIPDIR%%/PyKDE4/khtml/dom2_events.sip -%%SIPDIR%%/PyKDE4/khtml/dom2_range.sip -%%SIPDIR%%/PyKDE4/khtml/dom2_traversal.sip -%%SIPDIR%%/PyKDE4/khtml/dom2_views.sip -%%SIPDIR%%/PyKDE4/khtml/dom_doc.sip -%%SIPDIR%%/PyKDE4/khtml/dom_element.sip -%%SIPDIR%%/PyKDE4/khtml/dom_exception.sip -%%SIPDIR%%/PyKDE4/khtml/dom_misc.sip -%%SIPDIR%%/PyKDE4/khtml/dom_node.sip -%%SIPDIR%%/PyKDE4/khtml/dom_string.sip -%%SIPDIR%%/PyKDE4/khtml/dom_text.sip -%%SIPDIR%%/PyKDE4/khtml/dom_xml.sip -%%SIPDIR%%/PyKDE4/khtml/html_base.sip -%%SIPDIR%%/PyKDE4/khtml/html_block.sip -%%SIPDIR%%/PyKDE4/khtml/html_document.sip -%%SIPDIR%%/PyKDE4/khtml/html_element.sip -%%SIPDIR%%/PyKDE4/khtml/html_form.sip -%%SIPDIR%%/PyKDE4/khtml/html_head.sip -%%SIPDIR%%/PyKDE4/khtml/html_image.sip -%%SIPDIR%%/PyKDE4/khtml/html_inline.sip -%%SIPDIR%%/PyKDE4/khtml/html_list.sip -%%SIPDIR%%/PyKDE4/khtml/html_misc.sip -%%SIPDIR%%/PyKDE4/khtml/html_object.sip -%%SIPDIR%%/PyKDE4/khtml/html_table.sip -%%SIPDIR%%/PyKDE4/khtml/khtml_part.sip -%%SIPDIR%%/PyKDE4/khtml/khtml_settings.sip -%%SIPDIR%%/PyKDE4/khtml/khtmlmod.sip -%%SIPDIR%%/PyKDE4/khtml/khtmlview.sip -%%SIPDIR%%/PyKDE4/kio/accessmanager.sip -%%SIPDIR%%/PyKDE4/kio/authinfo.sip -%%SIPDIR%%/PyKDE4/kio/chmodjob.sip -%%SIPDIR%%/PyKDE4/kio/connection.sip -%%SIPDIR%%/PyKDE4/kio/copyjob.sip -%%SIPDIR%%/PyKDE4/kio/davjob.sip -%%SIPDIR%%/PyKDE4/kio/deletejob.sip -%%SIPDIR%%/PyKDE4/kio/directorysizejob.sip -%%SIPDIR%%/PyKDE4/kio/filejob.sip -%%SIPDIR%%/PyKDE4/kio/fileundomanager.sip -%%SIPDIR%%/PyKDE4/kio/forwardingslavebase.sip -%%SIPDIR%%/PyKDE4/kio/global.sip -%%SIPDIR%%/PyKDE4/kio/job.sip -%%SIPDIR%%/PyKDE4/kio/jobclasses.sip -%%SIPDIR%%/PyKDE4/kio/jobuidelegate.sip -%%SIPDIR%%/PyKDE4/kio/kabstractfileitemactionplugin.sip -%%SIPDIR%%/PyKDE4/kio/kabstractfilemodule.sip -%%SIPDIR%%/PyKDE4/kio/kabstractfilewidget.sip -%%SIPDIR%%/PyKDE4/kio/kacl.sip -%%SIPDIR%%/PyKDE4/kio/kar.sip -%%SIPDIR%%/PyKDE4/kio/karchive.sip -%%SIPDIR%%/PyKDE4/kio/kautomount.sip -%%SIPDIR%%/PyKDE4/kio/kbookmark.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkdialog.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkdombuilder.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkexporter.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkimporter.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkimporter_crash.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkimporter_ie.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkimporter_ns.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkimporter_opera.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkmanager.sip -%%SIPDIR%%/PyKDE4/kio/kbookmarkmenu.sip -%%SIPDIR%%/PyKDE4/kio/kbuildsycocaprogressdialog.sip -%%SIPDIR%%/PyKDE4/kio/kdatatool.sip -%%SIPDIR%%/PyKDE4/kio/kdbusservicestarter.sip -%%SIPDIR%%/PyKDE4/kio/kdesktopfileactions.sip -%%SIPDIR%%/PyKDE4/kio/kdevicelistmodel.sip -%%SIPDIR%%/PyKDE4/kio/kdirlister.sip -%%SIPDIR%%/PyKDE4/kio/kdirmodel.sip -%%SIPDIR%%/PyKDE4/kio/kdiroperator.sip -%%SIPDIR%%/PyKDE4/kio/kdirselectdialog.sip -%%SIPDIR%%/PyKDE4/kio/kdirsortfilterproxymodel.sip -%%SIPDIR%%/PyKDE4/kio/kdirwatch.sip -%%SIPDIR%%/PyKDE4/kio/kdiskfreespace.sip -%%SIPDIR%%/PyKDE4/kio/kdiskfreespaceinfo.sip -%%SIPDIR%%/PyKDE4/kio/kemailsettings.sip -%%SIPDIR%%/PyKDE4/kio/kencodingfiledialog.sip -%%SIPDIR%%/PyKDE4/kio/kfile.sip -%%SIPDIR%%/PyKDE4/kio/kfiledialog.sip -%%SIPDIR%%/PyKDE4/kio/kfilefiltercombo.sip -%%SIPDIR%%/PyKDE4/kio/kfileitem.sip -%%SIPDIR%%/PyKDE4/kio/kfileitemactionplugin.sip -%%SIPDIR%%/PyKDE4/kio/kfileitemactions.sip -%%SIPDIR%%/PyKDE4/kio/kfileitemdelegate.sip -%%SIPDIR%%/PyKDE4/kio/kfileitemlistproperties.sip -%%SIPDIR%%/PyKDE4/kio/kfilemetadataconfigurationwidget.sip -%%SIPDIR%%/PyKDE4/kio/kfilemetadatawidget.sip -%%SIPDIR%%/PyKDE4/kio/kfilemetainfo.sip -%%SIPDIR%%/PyKDE4/kio/kfilemetainfoitem.sip -%%SIPDIR%%/PyKDE4/kio/kfileplacesmodel.sip -%%SIPDIR%%/PyKDE4/kio/kfileplacesview.sip -%%SIPDIR%%/PyKDE4/kio/kfilepreviewgenerator.sip -%%SIPDIR%%/PyKDE4/kio/kfileshare.sip -%%SIPDIR%%/PyKDE4/kio/kfilesharedialog.sip -%%SIPDIR%%/PyKDE4/kio/kfilewidget.sip -%%SIPDIR%%/PyKDE4/kio/kfilewriteplugin.sip -%%SIPDIR%%/PyKDE4/kio/kicondialog.sip -%%SIPDIR%%/PyKDE4/kio/kimagefilepreview.sip -%%SIPDIR%%/PyKDE4/kio/kimageio.sip -%%SIPDIR%%/PyKDE4/kio/kiomod.sip -%%SIPDIR%%/PyKDE4/kio/kmimetypechooser.sip -%%SIPDIR%%/PyKDE4/kio/kmountpoint.sip -%%SIPDIR%%/PyKDE4/kio/knameandurlinputdialog.sip -%%SIPDIR%%/PyKDE4/kio/knewfilemenu.sip -%%SIPDIR%%/PyKDE4/kio/knfsshare.sip -%%SIPDIR%%/PyKDE4/kio/konqbookmarkmenu.sip -%%SIPDIR%%/PyKDE4/kio/kopenwithdialog.sip -%%SIPDIR%%/PyKDE4/kio/kpreviewwidgetbase.sip -%%SIPDIR%%/PyKDE4/kio/kpropertiesdialog.sip -%%SIPDIR%%/PyKDE4/kio/kprotocolmanager.sip -%%SIPDIR%%/PyKDE4/kio/krecentdirs.sip -%%SIPDIR%%/PyKDE4/kio/krecentdocument.sip -%%SIPDIR%%/PyKDE4/kio/kremoteencoding.sip -%%SIPDIR%%/PyKDE4/kio/krun.sip -%%SIPDIR%%/PyKDE4/kio/ksambashare.sip -%%SIPDIR%%/PyKDE4/kio/ksambasharedata.sip -%%SIPDIR%%/PyKDE4/kio/kscan.sip -%%SIPDIR%%/PyKDE4/kio/kservicegroup.sip -%%SIPDIR%%/PyKDE4/kio/kshellcompletion.sip -%%SIPDIR%%/PyKDE4/kio/ksslcertificatemanager.sip -%%SIPDIR%%/PyKDE4/kio/kstatusbarofflineindicator.sip -%%SIPDIR%%/PyKDE4/kio/ktar.sip -%%SIPDIR%%/PyKDE4/kio/kurifilter.sip -%%SIPDIR%%/PyKDE4/kio/kurlcombobox.sip -%%SIPDIR%%/PyKDE4/kio/kurlcompletion.sip -%%SIPDIR%%/PyKDE4/kio/kurlnavigator.sip -%%SIPDIR%%/PyKDE4/kio/kurlpixmapprovider.sip -%%SIPDIR%%/PyKDE4/kio/kurlrequester.sip -%%SIPDIR%%/PyKDE4/kio/kurlrequesterdialog.sip -%%SIPDIR%%/PyKDE4/kio/kzip.sip -%%SIPDIR%%/PyKDE4/kio/metainfojob.sip -%%SIPDIR%%/PyKDE4/kio/netaccess.sip -%%SIPDIR%%/PyKDE4/kio/passworddialog.sip -%%SIPDIR%%/PyKDE4/kio/paste.sip -%%SIPDIR%%/PyKDE4/kio/predicateproperties.sip -%%SIPDIR%%/PyKDE4/kio/previewjob.sip -%%SIPDIR%%/PyKDE4/kio/renamedialog.sip -%%SIPDIR%%/PyKDE4/kio/renamedialogplugin.sip -%%SIPDIR%%/PyKDE4/kio/scheduler.sip -%%SIPDIR%%/PyKDE4/kio/sessiondata.sip -%%SIPDIR%%/PyKDE4/kio/skipdialog.sip -%%SIPDIR%%/PyKDE4/kio/slave.sip -%%SIPDIR%%/PyKDE4/kio/slavebase.sip -%%SIPDIR%%/PyKDE4/kio/slaveconfig.sip -%%SIPDIR%%/PyKDE4/kio/slaveinterface.sip -%%SIPDIR%%/PyKDE4/kio/sslui.sip -%%SIPDIR%%/PyKDE4/kio/tcpslavebase.sip -%%SIPDIR%%/PyKDE4/kio/thumbcreator.sip -%%SIPDIR%%/PyKDE4/kio/thumbsequencecreator.sip -%%SIPDIR%%/PyKDE4/kio/udsentry.sip -%%SIPDIR%%/PyKDE4/knewstuff/author.sip -%%SIPDIR%%/PyKDE4/knewstuff/category.sip -%%SIPDIR%%/PyKDE4/knewstuff/engine.sip -%%SIPDIR%%/PyKDE4/knewstuff/entry.sip -%%SIPDIR%%/PyKDE4/knewstuff/installation.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuff3_downloaddialog.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuff3_downloadmanager.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuff3_downloadwidget.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuff3_entry.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuff3_knewstuffaction.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuff3_knewstuffbutton.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuff3_uploaddialog.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuffaction.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuffbutton.sip -%%SIPDIR%%/PyKDE4/knewstuff/knewstuffmod.sip -%%SIPDIR%%/PyKDE4/knewstuff/ktranslatable.sip -%%SIPDIR%%/PyKDE4/kparts/browserextension.sip -%%SIPDIR%%/PyKDE4/kparts/browserinterface.sip -%%SIPDIR%%/PyKDE4/kparts/browseropenorsavequestion.sip -%%SIPDIR%%/PyKDE4/kparts/browserrun.sip -%%SIPDIR%%/PyKDE4/kparts/event.sip -%%SIPDIR%%/PyKDE4/kparts/factory.sip -%%SIPDIR%%/PyKDE4/kparts/fileinfoextension.sip -%%SIPDIR%%/PyKDE4/kparts/genericfactory.sip -%%SIPDIR%%/PyKDE4/kparts/historyprovider.sip -%%SIPDIR%%/PyKDE4/kparts/htmlextension.sip -%%SIPDIR%%/PyKDE4/kparts/kpartsmod.sip -%%SIPDIR%%/PyKDE4/kparts/mainwindow.sip -%%SIPDIR%%/PyKDE4/kparts/part.sip -%%SIPDIR%%/PyKDE4/kparts/partmanager.sip -%%SIPDIR%%/PyKDE4/kparts/plugin.sip -%%SIPDIR%%/PyKDE4/kparts/scriptableextension.sip -%%SIPDIR%%/PyKDE4/kparts/statusbarextension.sip -%%SIPDIR%%/PyKDE4/kparts/textextension.sip -%%SIPDIR%%/PyKDE4/kterminal/kterminal.sip -%%SIPDIR%%/PyKDE4/kterminal/kterminalmod.sip -%%SIPDIR%%/PyKDE4/kterminal/terminal_interface.sip -%%SIPDIR%%/PyKDE4/kterminal/terminal_interface_v2.sip -%%SIPDIR%%/PyKDE4/ktexteditor/annotationinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/attribute.sip -%%SIPDIR%%/PyKDE4/ktexteditor/codecompletioninterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/codecompletionmodel.sip -%%SIPDIR%%/PyKDE4/ktexteditor/codecompletionmodelcontrollerinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/commandinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/configinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/configpage.sip -%%SIPDIR%%/PyKDE4/ktexteditor/containerinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/cursor.sip -%%SIPDIR%%/PyKDE4/ktexteditor/document.sip -%%SIPDIR%%/PyKDE4/ktexteditor/editor.sip -%%SIPDIR%%/PyKDE4/ktexteditor/editorchooser.sip -%%SIPDIR%%/PyKDE4/ktexteditor/factory.sip -%%SIPDIR%%/PyKDE4/ktexteditor/highlightinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/ktexteditormod.sip -%%SIPDIR%%/PyKDE4/ktexteditor/loadsavefiltercheckplugin.sip -%%SIPDIR%%/PyKDE4/ktexteditor/markinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/modeinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/modificationinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/movingcursor.sip -%%SIPDIR%%/PyKDE4/ktexteditor/movinginterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/movingrange.sip -%%SIPDIR%%/PyKDE4/ktexteditor/movingrangefeedback.sip -%%SIPDIR%%/PyKDE4/ktexteditor/plugin.sip -%%SIPDIR%%/PyKDE4/ktexteditor/range.sip -%%SIPDIR%%/PyKDE4/ktexteditor/recoveryinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/searchinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/sessionconfiginterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/templateinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/templateinterface2.sip -%%SIPDIR%%/PyKDE4/ktexteditor/texthintinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/variableinterface.sip -%%SIPDIR%%/PyKDE4/ktexteditor/view.sip -%%SIPDIR%%/PyKDE4/kutils/dialog.sip -%%SIPDIR%%/PyKDE4/kutils/dispatcher.sip -%%SIPDIR%%/PyKDE4/kutils/kcmoduleinfo.sip -%%SIPDIR%%/PyKDE4/kutils/kcmoduleloader.sip -%%SIPDIR%%/PyKDE4/kutils/kcmoduleproxy.sip -%%SIPDIR%%/PyKDE4/kutils/kcmultidialog.sip -%%SIPDIR%%/PyKDE4/kutils/kemoticons.sip -%%SIPDIR%%/PyKDE4/kutils/kemoticonsprovider.sip -%%SIPDIR%%/PyKDE4/kutils/kemoticonstheme.sip -%%SIPDIR%%/PyKDE4/kutils/kidletime.sip -%%SIPDIR%%/PyKDE4/kutils/kpluginselector.sip -%%SIPDIR%%/PyKDE4/kutils/kprintpreview.sip -%%SIPDIR%%/PyKDE4/kutils/kutilsmod.sip -%%SIPDIR%%/PyKDE4/kutils/pluginpage.sip -%%SIPDIR%%/PyKDE4/nepomuk/andterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/class.sip -%%SIPDIR%%/PyKDE4/nepomuk/comparisonterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/entity.sip -%%SIPDIR%%/PyKDE4/nepomuk/file.sip -%%SIPDIR%%/PyKDE4/nepomuk/filequery.sip -%%SIPDIR%%/PyKDE4/nepomuk/global.sip -%%SIPDIR%%/PyKDE4/nepomuk/groupterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/kmetadatatagcloud.sip -%%SIPDIR%%/PyKDE4/nepomuk/ktagcloudwidget.sip -%%SIPDIR%%/PyKDE4/nepomuk/ktagdisplaywidget.sip -%%SIPDIR%%/PyKDE4/nepomuk/literal.sip -%%SIPDIR%%/PyKDE4/nepomuk/literalterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/ncal.sip -%%SIPDIR%%/PyKDE4/nepomuk/nco.sip -%%SIPDIR%%/PyKDE4/nepomuk/ndo.sip -%%SIPDIR%%/PyKDE4/nepomuk/negationterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/nepomukmassupdatejob.sip -%%SIPDIR%%/PyKDE4/nepomuk/nepomukmod.sip -%%SIPDIR%%/PyKDE4/nepomuk/nepomukontologyloader.sip -%%SIPDIR%%/PyKDE4/nepomuk/nepomukservice.sip -%%SIPDIR%%/PyKDE4/nepomuk/nfo.sip -%%SIPDIR%%/PyKDE4/nepomuk/nie.sip -%%SIPDIR%%/PyKDE4/nepomuk/nmm.sip -%%SIPDIR%%/PyKDE4/nepomuk/nuao.sip -%%SIPDIR%%/PyKDE4/nepomuk/ontology.sip -%%SIPDIR%%/PyKDE4/nepomuk/optionalterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/orterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/pimo.sip -%%SIPDIR%%/PyKDE4/nepomuk/property.sip -%%SIPDIR%%/PyKDE4/nepomuk/query.sip -%%SIPDIR%%/PyKDE4/nepomuk/queryparser.sip -%%SIPDIR%%/PyKDE4/nepomuk/queryserviceclient.sip -%%SIPDIR%%/PyKDE4/nepomuk/resource.sip -%%SIPDIR%%/PyKDE4/nepomuk/resourcemanager.sip -%%SIPDIR%%/PyKDE4/nepomuk/resourceterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/resourcetypeterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/result.sip -%%SIPDIR%%/PyKDE4/nepomuk/simpleterm.sip -%%SIPDIR%%/PyKDE4/nepomuk/standardqueries.sip -%%SIPDIR%%/PyKDE4/nepomuk/tag.sip -%%SIPDIR%%/PyKDE4/nepomuk/tagwidget.sip -%%SIPDIR%%/PyKDE4/nepomuk/term.sip -%%SIPDIR%%/PyKDE4/nepomuk/thing.sip -%%SIPDIR%%/PyKDE4/nepomuk/tmo.sip -%%SIPDIR%%/PyKDE4/nepomuk/tools.sip -%%SIPDIR%%/PyKDE4/nepomuk/variant.sip -%%SIPDIR%%/PyKDE4/phonon/abstractaudiodataoutput.sip -%%SIPDIR%%/PyKDE4/phonon/abstractaudiooutput.sip -%%SIPDIR%%/PyKDE4/phonon/abstractmediastream.sip -%%SIPDIR%%/PyKDE4/phonon/abstractvideodataoutput.sip -%%SIPDIR%%/PyKDE4/phonon/abstractvideooutput.sip -%%SIPDIR%%/PyKDE4/phonon/audiodataoutput.sip -%%SIPDIR%%/PyKDE4/phonon/audiodataoutputinterface.sip -%%SIPDIR%%/PyKDE4/phonon/audioformat.sip -%%SIPDIR%%/PyKDE4/phonon/audiooutput.sip -%%SIPDIR%%/PyKDE4/phonon/avcapture.sip -%%SIPDIR%%/PyKDE4/phonon/backendcapabilities.sip -%%SIPDIR%%/PyKDE4/phonon/effect.sip -%%SIPDIR%%/PyKDE4/phonon/effectparameter.sip -%%SIPDIR%%/PyKDE4/phonon/effectwidget.sip -%%SIPDIR%%/PyKDE4/phonon/experimental_phononnamespace.sip -%%SIPDIR%%/PyKDE4/phonon/globalconfig.sip -%%SIPDIR%%/PyKDE4/phonon/mediacontroller.sip -%%SIPDIR%%/PyKDE4/phonon/medianode.sip -%%SIPDIR%%/PyKDE4/phonon/mediaobject.sip -%%SIPDIR%%/PyKDE4/phonon/mediasource.sip -%%SIPDIR%%/PyKDE4/phonon/mrl.sip -%%SIPDIR%%/PyKDE4/phonon/objectdescription.sip -%%SIPDIR%%/PyKDE4/phonon/objectdescriptionmodel.sip -%%SIPDIR%%/PyKDE4/phonon/packet.sip -%%SIPDIR%%/PyKDE4/phonon/packetpool.sip -%%SIPDIR%%/PyKDE4/phonon/path.sip -%%SIPDIR%%/PyKDE4/phonon/phononmod.sip -%%SIPDIR%%/PyKDE4/phonon/phononnamespace.sip -%%SIPDIR%%/PyKDE4/phonon/pulsesupport.sip -%%SIPDIR%%/PyKDE4/phonon/seekslider.sip -%%SIPDIR%%/PyKDE4/phonon/snapshotinterface.sip -%%SIPDIR%%/PyKDE4/phonon/streaminterface.sip -%%SIPDIR%%/PyKDE4/phonon/videodataoutput.sip -%%SIPDIR%%/PyKDE4/phonon/videodataoutput2.sip -%%SIPDIR%%/PyKDE4/phonon/videodataoutputinterface.sip -%%SIPDIR%%/PyKDE4/phonon/videoframe.sip -%%SIPDIR%%/PyKDE4/phonon/videoframe2.sip -%%SIPDIR%%/PyKDE4/phonon/videoplayer.sip -%%SIPDIR%%/PyKDE4/phonon/videowidget.sip -%%SIPDIR%%/PyKDE4/phonon/videowidgetinterface.sip -%%SIPDIR%%/PyKDE4/phonon/visualization.sip -%%SIPDIR%%/PyKDE4/phonon/volumefadereffect.sip -%%SIPDIR%%/PyKDE4/phonon/volumeslider.sip -%%SIPDIR%%/PyKDE4/plasma/abstractdialogmanager.sip -%%SIPDIR%%/PyKDE4/plasma/abstractrunner.sip -%%SIPDIR%%/PyKDE4/plasma/abstracttoolbox.sip -%%SIPDIR%%/PyKDE4/plasma/accessappletjob.sip -%%SIPDIR%%/PyKDE4/plasma/accessmanager.sip -%%SIPDIR%%/PyKDE4/plasma/animation.sip -%%SIPDIR%%/PyKDE4/plasma/animationdriver.sip -%%SIPDIR%%/PyKDE4/plasma/animator.sip -%%SIPDIR%%/PyKDE4/plasma/applet.sip -%%SIPDIR%%/PyKDE4/plasma/appletscript.sip -%%SIPDIR%%/PyKDE4/plasma/authorizationinterface.sip -%%SIPDIR%%/PyKDE4/plasma/authorizationmanager.sip -%%SIPDIR%%/PyKDE4/plasma/authorizationrule.sip -%%SIPDIR%%/PyKDE4/plasma/busywidget.sip -%%SIPDIR%%/PyKDE4/plasma/checkbox.sip -%%SIPDIR%%/PyKDE4/plasma/clientpinrequest.sip -%%SIPDIR%%/PyKDE4/plasma/combobox.sip -%%SIPDIR%%/PyKDE4/plasma/configloader.sip -%%SIPDIR%%/PyKDE4/plasma/containment.sip -%%SIPDIR%%/PyKDE4/plasma/containmentactions.sip -%%SIPDIR%%/PyKDE4/plasma/containmentactionspluginsconfig.sip -%%SIPDIR%%/PyKDE4/plasma/context.sip -%%SIPDIR%%/PyKDE4/plasma/corona.sip -%%SIPDIR%%/PyKDE4/plasma/datacontainer.sip -%%SIPDIR%%/PyKDE4/plasma/dataengine.sip -%%SIPDIR%%/PyKDE4/plasma/dataenginemanager.sip -%%SIPDIR%%/PyKDE4/plasma/dataenginescript.sip -%%SIPDIR%%/PyKDE4/plasma/declarativewidget.sip -%%SIPDIR%%/PyKDE4/plasma/delegate.sip -%%SIPDIR%%/PyKDE4/plasma/dialog.sip -%%SIPDIR%%/PyKDE4/plasma/extender.sip -%%SIPDIR%%/PyKDE4/plasma/extendergroup.sip -%%SIPDIR%%/PyKDE4/plasma/extenderitem.sip -%%SIPDIR%%/PyKDE4/plasma/flashinglabel.sip -%%SIPDIR%%/PyKDE4/plasma/frame.sip -%%SIPDIR%%/PyKDE4/plasma/framesvg.sip -%%SIPDIR%%/PyKDE4/plasma/glapplet.sip -%%SIPDIR%%/PyKDE4/plasma/groupbox.sip -%%SIPDIR%%/PyKDE4/plasma/iconwidget.sip -%%SIPDIR%%/PyKDE4/plasma/itembackground.sip -%%SIPDIR%%/PyKDE4/plasma/label.sip -%%SIPDIR%%/PyKDE4/plasma/lineedit.sip -%%SIPDIR%%/PyKDE4/plasma/meter.sip -%%SIPDIR%%/PyKDE4/plasma/package.sip -%%SIPDIR%%/PyKDE4/plasma/packagemetadata.sip -%%SIPDIR%%/PyKDE4/plasma/packagestructure.sip -%%SIPDIR%%/PyKDE4/plasma/paintutils.sip -%%SIPDIR%%/PyKDE4/plasma/plasma.sip -%%SIPDIR%%/PyKDE4/plasma/plasmamod.sip -%%SIPDIR%%/PyKDE4/plasma/pluginloader.sip -%%SIPDIR%%/PyKDE4/plasma/popupapplet.sip -%%SIPDIR%%/PyKDE4/plasma/pushbutton.sip -%%SIPDIR%%/PyKDE4/plasma/querymatch.sip -%%SIPDIR%%/PyKDE4/plasma/radiobutton.sip -%%SIPDIR%%/PyKDE4/plasma/runnercontext.sip -%%SIPDIR%%/PyKDE4/plasma/runnermanager.sip -%%SIPDIR%%/PyKDE4/plasma/runnerscript.sip -%%SIPDIR%%/PyKDE4/plasma/runnersyntax.sip -%%SIPDIR%%/PyKDE4/plasma/scriptengine.sip -%%SIPDIR%%/PyKDE4/plasma/scrollbar.sip -%%SIPDIR%%/PyKDE4/plasma/scrollwidget.sip -%%SIPDIR%%/PyKDE4/plasma/separator.sip -%%SIPDIR%%/PyKDE4/plasma/service.sip -%%SIPDIR%%/PyKDE4/plasma/serviceaccessjob.sip -%%SIPDIR%%/PyKDE4/plasma/servicejob.sip -%%SIPDIR%%/PyKDE4/plasma/signalplotter.sip -%%SIPDIR%%/PyKDE4/plasma/slider.sip -%%SIPDIR%%/PyKDE4/plasma/spinbox.sip -%%SIPDIR%%/PyKDE4/plasma/svg.sip -%%SIPDIR%%/PyKDE4/plasma/svgwidget.sip -%%SIPDIR%%/PyKDE4/plasma/tabbar.sip -%%SIPDIR%%/PyKDE4/plasma/textbrowser.sip -%%SIPDIR%%/PyKDE4/plasma/textedit.sip -%%SIPDIR%%/PyKDE4/plasma/theme.sip -%%SIPDIR%%/PyKDE4/plasma/toolbutton.sip -%%SIPDIR%%/PyKDE4/plasma/tooltipcontent.sip -%%SIPDIR%%/PyKDE4/plasma/tooltipmanager.sip -%%SIPDIR%%/PyKDE4/plasma/treeview.sip -%%SIPDIR%%/PyKDE4/plasma/version.sip -%%SIPDIR%%/PyKDE4/plasma/videowidget.sip -%%SIPDIR%%/PyKDE4/plasma/view.sip -%%SIPDIR%%/PyKDE4/plasma/wallpaper.sip -%%SIPDIR%%/PyKDE4/plasma/wallpaperscript.sip -%%SIPDIR%%/PyKDE4/plasma/webview.sip -%%SIPDIR%%/PyKDE4/plasma/windoweffects.sip -%%SIPDIR%%/PyKDE4/polkitqt/action.sip -%%SIPDIR%%/PyKDE4/polkitqt/actionbutton.sip -%%SIPDIR%%/PyKDE4/polkitqt/actionbuttons.sip -%%SIPDIR%%/PyKDE4/polkitqt/auth.sip -%%SIPDIR%%/PyKDE4/polkitqt/context.sip -%%SIPDIR%%/PyKDE4/polkitqt/polkitqtmod.sip -%%SIPDIR%%/PyKDE4/pykde_config.sip -%%SIPDIR%%/PyKDE4/solid/acadapter.sip -%%SIPDIR%%/PyKDE4/solid/audiointerface.sip -%%SIPDIR%%/PyKDE4/solid/battery.sip -%%SIPDIR%%/PyKDE4/solid/block.sip -%%SIPDIR%%/PyKDE4/solid/button.sip -%%SIPDIR%%/PyKDE4/solid/camera.sip -%%SIPDIR%%/PyKDE4/solid/device.sip -%%SIPDIR%%/PyKDE4/solid/deviceinterface.sip -%%SIPDIR%%/PyKDE4/solid/devicenotifier.sip -%%SIPDIR%%/PyKDE4/solid/dvbinterface.sip -%%SIPDIR%%/PyKDE4/solid/genericinterface.sip -%%SIPDIR%%/PyKDE4/solid/internetgateway.sip -%%SIPDIR%%/PyKDE4/solid/networking.sip -%%SIPDIR%%/PyKDE4/solid/networkinterface.sip -%%SIPDIR%%/PyKDE4/solid/networkshare.sip -%%SIPDIR%%/PyKDE4/solid/opticaldisc.sip -%%SIPDIR%%/PyKDE4/solid/opticaldrive.sip -%%SIPDIR%%/PyKDE4/solid/portablemediaplayer.sip -%%SIPDIR%%/PyKDE4/solid/powermanagement.sip -%%SIPDIR%%/PyKDE4/solid/predicate.sip -%%SIPDIR%%/PyKDE4/solid/processor.sip -%%SIPDIR%%/PyKDE4/solid/serialinterface.sip -%%SIPDIR%%/PyKDE4/solid/smartcardreader.sip -%%SIPDIR%%/PyKDE4/solid/solidmod.sip -%%SIPDIR%%/PyKDE4/solid/solidnamespace.sip -%%SIPDIR%%/PyKDE4/solid/storageaccess.sip -%%SIPDIR%%/PyKDE4/solid/storagedrive.sip -%%SIPDIR%%/PyKDE4/solid/storagevolume.sip -%%SIPDIR%%/PyKDE4/solid/video.sip -%%SIPDIR%%/PyKDE4/soprano/asyncmodel.sip -%%SIPDIR%%/PyKDE4/soprano/asyncquery.sip -%%SIPDIR%%/PyKDE4/soprano/asyncresult.sip -%%SIPDIR%%/PyKDE4/soprano/backend.sip -%%SIPDIR%%/PyKDE4/soprano/bindingset.sip -%%SIPDIR%%/PyKDE4/soprano/dbusclient.sip -%%SIPDIR%%/PyKDE4/soprano/dbusexportiterator.sip -%%SIPDIR%%/PyKDE4/soprano/dbusexportmodel.sip -%%SIPDIR%%/PyKDE4/soprano/dbusmodel.sip -%%SIPDIR%%/PyKDE4/soprano/dbusnodeiterator.sip -%%SIPDIR%%/PyKDE4/soprano/dbusqueryresultiterator.sip -%%SIPDIR%%/PyKDE4/soprano/dbusstatementiterator.sip -%%SIPDIR%%/PyKDE4/soprano/dummymodel.sip -%%SIPDIR%%/PyKDE4/soprano/error.sip -%%SIPDIR%%/PyKDE4/soprano/filtermodel.sip -%%SIPDIR%%/PyKDE4/soprano/global.sip -%%SIPDIR%%/PyKDE4/soprano/graph.sip -%%SIPDIR%%/PyKDE4/soprano/inferencemodel.sip -%%SIPDIR%%/PyKDE4/soprano/inferencerule.sip -%%SIPDIR%%/PyKDE4/soprano/inferenceruleparser.sip -%%SIPDIR%%/PyKDE4/soprano/inferenceruleset.sip -%%SIPDIR%%/PyKDE4/soprano/iterator.sip -%%SIPDIR%%/PyKDE4/soprano/iteratorbackend.sip -%%SIPDIR%%/PyKDE4/soprano/languagetag.sip -%%SIPDIR%%/PyKDE4/soprano/literalvalue.sip -%%SIPDIR%%/PyKDE4/soprano/localsocketclient.sip -%%SIPDIR%%/PyKDE4/soprano/locator.sip -%%SIPDIR%%/PyKDE4/soprano/model.sip -%%SIPDIR%%/PyKDE4/soprano/mutexmodel.sip -%%SIPDIR%%/PyKDE4/soprano/nao.sip -%%SIPDIR%%/PyKDE4/soprano/node.sip -%%SIPDIR%%/PyKDE4/soprano/nodeiterator.sip -%%SIPDIR%%/PyKDE4/soprano/nodepattern.sip -%%SIPDIR%%/PyKDE4/soprano/nrl.sip -%%SIPDIR%%/PyKDE4/soprano/nrlmodel.sip -%%SIPDIR%%/PyKDE4/soprano/owl.sip -%%SIPDIR%%/PyKDE4/soprano/parser.sip -%%SIPDIR%%/PyKDE4/soprano/plugin.sip -%%SIPDIR%%/PyKDE4/soprano/pluginmanager.sip -%%SIPDIR%%/PyKDE4/soprano/queryresultiterator.sip -%%SIPDIR%%/PyKDE4/soprano/queryresultiteratorbackend.sip -%%SIPDIR%%/PyKDE4/soprano/rdf.sip -%%SIPDIR%%/PyKDE4/soprano/rdfs.sip -%%SIPDIR%%/PyKDE4/soprano/rdfschemamodel.sip -%%SIPDIR%%/PyKDE4/soprano/readonlymodel.sip -%%SIPDIR%%/PyKDE4/soprano/serializer.sip -%%SIPDIR%%/PyKDE4/soprano/servercore.sip -%%SIPDIR%%/PyKDE4/soprano/signalcachemodel.sip -%%SIPDIR%%/PyKDE4/soprano/sil.sip -%%SIPDIR%%/PyKDE4/soprano/simplenodeiterator.sip -%%SIPDIR%%/PyKDE4/soprano/simplestatementiterator.sip -%%SIPDIR%%/PyKDE4/soprano/sopranomod.sip -%%SIPDIR%%/PyKDE4/soprano/sopranotypes.sip -%%SIPDIR%%/PyKDE4/soprano/sparqlmodel.sip -%%SIPDIR%%/PyKDE4/soprano/statement.sip -%%SIPDIR%%/PyKDE4/soprano/statementiterator.sip -%%SIPDIR%%/PyKDE4/soprano/statementpattern.sip -%%SIPDIR%%/PyKDE4/soprano/storagemodel.sip -%%SIPDIR%%/PyKDE4/soprano/tcpclient.sip -%%SIPDIR%%/PyKDE4/soprano/xesam.sip -%%SIPDIR%%/PyKDE4/soprano/xsd.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/abstractdifferencesreporter.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/addressattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentactionmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentbase.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentfactory.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentfilterproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentinstance.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentinstancecreatejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentinstancemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentinstancewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agentsearchinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agenttype.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agenttypedialog.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agenttypemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/agenttypewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/akonadimod.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/attribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/attributefactory.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/cachepolicy.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/changerecorder.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collection.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionattributessynchronizationjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectioncombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectioncopyjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectioncreatejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectiondeletejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectiondialog.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionfetchjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionfetchscope.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionfilterproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionmodifyjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionmovejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionpropertiesdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionpropertiespage.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionquotaattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionrequester.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionstatistics.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionstatisticsdelegate.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionstatisticsjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionstatisticsmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionutils_p.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/collectionview.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/control.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/differencesalgorithminterface.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entity.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entitydeletedattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entitydisplayattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entityhiddenattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entitylistview.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entitymimetypefiltermodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entityorderproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entityrightsfiltermodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entitytreemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entitytreeview.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/entitytreeviewstatesaver.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/etmviewstatesaver.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/favoritecollectionsmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/indexpolicyattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/item.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemcopyjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemcreatejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemdeletejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemfetchjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemfetchscope.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemmodifyjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemmonitor.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemmovejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemsearchjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemserializerplugin.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemsync.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/itemview.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/job.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/linkjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/messageflags.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/messagefolderattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/messagemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/messageparts.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/messagestatus.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/messagethreaderproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/messagethreadingattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/mimetypechecker.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/monitor.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/partfetcher.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/persistentsearchattribute.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/preprocessorbase.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/recursivecollectionfilterproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/recursiveitemfetchjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/resourcebase.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/resourcebasesettings.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/resourcesettings.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/resourcesynchronizationjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/searchcreatejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/selectionproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/servermanager.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/session.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/specialcollections.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/specialcollectionsrequestjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/specialmailcollections.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/specialmailcollectionsrequestjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/standardactionmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/standardmailactionmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/statisticsproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/transactionjobs.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/transactionsequence.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/transportresourcebase.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/trashfilterproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/trashjob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/trashrestorejob.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/trashsettings.sip +%%PYQT_SIPDIR%%/PyKDE4/akonadi/unlinkjob.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/dnssdmod.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/domainbrowser.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/domainmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/publicservice.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/remoteservice.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/servicebase.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/servicebrowser.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/servicemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/dnssd/servicetypebrowser.sip +%%PYQT_SIPDIR%%/PyKDE4/glossary.html +%%PYQT_SIPDIR%%/PyKDE4/kdecore/backgroundchecker.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/globals.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kaboutdata.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kascii.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kauthaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kauthactionreply.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kauthactionwatcher.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kauthhelpersupport.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kauthorized.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kautosavefile.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kautostart.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kcalendarsystem.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kcharsets.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kcmdlineargs.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kcomponentdata.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kcompositejob.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kconfig.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kconfigbase.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kconfigdata.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kconfiggroup.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kconfigini.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kcoreconfigskeleton.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kcurrencycode.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kdatetime.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kdecoremod.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kdedmodule.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kdesktopfile.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kencodingdetector.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kencodingprober.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kexportplugin.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kfilterbase.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kfilterdev.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kglobal.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kjob.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kjobtrackerinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kjobuidelegate.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/klibloader.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/klibrary.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/klocale.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/klocalizeddate.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/klocalizedstring.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/klocalsocket.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/klockfile.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kmacroexpander.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kmessage.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kmimetype.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kmimetypetrader.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kpluginfactory.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kplugininfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kpluginloader.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kprocess.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kprotocolinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kpty.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kptydevice.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kptyprocess.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/krandom.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/krandomsequence.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ksavefile.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kservice.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kserviceaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kservicegroup.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kservicetype.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kservicetypeprofile.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kservicetypetrader.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ksharedconfig.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kshell.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ksocketfactory.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kstandarddirs.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kstaticdeleter.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kstringhandler.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ksycoca.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ksycocaentry.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ksycocatype.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ksystemtimezone.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ktcpsocket.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ktempdir.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ktemporaryfile.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ktimezone.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ktoolinvocation.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/ktzfiletimezone.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kurl.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/kuser.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/speller.sip +%%PYQT_SIPDIR%%/PyKDE4/kdecore/typedefs.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/configdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/configwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/dialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/dictionarycombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/fixx11h.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/highlighter.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/k3icon_p.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kaboutapplicationdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kabstractwidgetjobtracker.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kacceleratormanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kaccelgen.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kactioncategory.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kactioncollection.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kactionmenu.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kactionselector.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kanimatedbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kapplication.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/karrowbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kassistantdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kbreadcrumbselectionmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kbugreport.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kbuttongroup.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcapacitybar.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcategorizedsortfilterproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcategorizedview.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcategorydrawer.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcharselect.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcheckableproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcmodule.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcodecaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolorbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolorchoosermode.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolorcollection.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolorcombo.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolordialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolormimedata.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolorscheme.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolorutils.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcolorvalueselector.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcompletion.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcompletionbox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kconfigdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kconfigdialogmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kconfigskeleton.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcrash.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kcursor.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdatecombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdatepicker.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdatetable.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdatetimeedit.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdatetimewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdatewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdeprintdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdescendantsproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdeuimod.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdialogbuttonbox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdialogjobuidelegate.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kdualaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/keditlistbox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/keditlistwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kedittoolbar.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kextendableitemdelegate.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfadewidgeteffect.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfilterproxysearchline.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfind.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfinddialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfontaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfontchooser.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfontcombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfontdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfontrequester.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfontsizeaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kfontutils.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kgesture.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kglobalaccel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kglobalsettings.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kglobalshortcutinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kguiitem.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/khbox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/khelpmenu.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/khistorycombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/khuesaturationselect.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kicon.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kiconcache.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kiconeffect.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kiconloader.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kicontheme.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kidentityproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kinputdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kkeysequencewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kkeyserver.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kkeyserver_x11.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/klanguagebutton.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kled.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/klineedit.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/klinkitemselectionmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/klistwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/klistwidgetsearchline.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmainwindow.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmanagerselection.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmenu.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmenubar.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmessagebox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmessageboxmessagehandler.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmessagewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmodelindexproxymapper.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmodifierkeyinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kmultitabbar.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/knewpassworddialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/knotification.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/knotificationrestrictions.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/knuminput.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/knumvalidator.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpagedialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpagemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpageview.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpagewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpagewidgetmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpassivepopup.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpassivepopupmessagehandler.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpassworddialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpastetextaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpixmapcache.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpixmapprovider.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpixmapregionselectordialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpixmapregionselectorwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpixmapsequence.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpixmapsequenceoverlaypainter.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpixmapsequencewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kplotaxis.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kplotobject.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kplotpoint.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kplotwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kprogressdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kpushbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kratingpainter.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kratingwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/krecentfilesaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/krecursivefilterproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kreplace.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kreplacedialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/krestrictedline.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/krichtextedit.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/krichtextwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kruler.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kselectaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kselectionproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kselector.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kseparator.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ksessionmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kshortcut.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kshortcutsdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kshortcutseditor.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kshortcutwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ksplashscreen.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ksqueezedtextlabel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstandardaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstandardguiitem.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstandardshortcut.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstartupinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstatusbar.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstatusbarjobtracker.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstatusnotifieritem.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstringvalidator.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kstyle.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ksvgrenderer.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ksystemeventfilter.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ksystemtrayicon.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktabbar.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktabwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktextbrowser.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktextedit.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktimecombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktimezonewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktip.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktitlewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktoggleaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktogglefullscreenaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktoggletoolbaraction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktoolbar.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktoolbarlabelaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktoolbarpopupaction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktoolbarspaceraction.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/ktreewidgetsearchline.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kuiserverjobtracker.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kundostack.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kuniqueapplication.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kurllabel.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kvbox.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kviewstatemaintainer.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kviewstatesaver.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kwallet.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kwidgetitemdelegate.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kwidgetjobtracker.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kwindowinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kwindowsystem.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kwordwrap.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kxmessages.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kxmlguibuilder.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kxmlguiclient.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kxmlguifactory.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kxmlguiwindow.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kxutils.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/kxyselector.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/netwm.sip +%%PYQT_SIPDIR%%/PyKDE4/kdeui/netwm_def.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/css_rule.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/css_stylesheet.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/css_value.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom2_events.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom2_range.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom2_traversal.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom2_views.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_doc.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_element.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_exception.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_misc.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_node.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_string.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_text.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/dom_xml.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_base.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_block.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_document.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_element.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_form.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_head.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_image.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_inline.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_list.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_misc.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_object.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/html_table.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/khtml_part.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/khtml_settings.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/khtmlmod.sip +%%PYQT_SIPDIR%%/PyKDE4/khtml/khtmlview.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/accessmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/authinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/chmodjob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/connection.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/copyjob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/davjob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/deletejob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/directorysizejob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/filejob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/fileundomanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/forwardingslavebase.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/global.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/job.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/jobclasses.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/jobuidelegate.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kabstractfileitemactionplugin.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kabstractfilemodule.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kabstractfilewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kacl.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kar.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/karchive.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kautomount.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmark.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkdombuilder.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkexporter.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkimporter.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkimporter_crash.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkimporter_ie.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkimporter_ns.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkimporter_opera.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbookmarkmenu.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kbuildsycocaprogressdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdatatool.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdbusservicestarter.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdesktopfileactions.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdevicelistmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdirlister.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdirmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdiroperator.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdirselectdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdirsortfilterproxymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdirwatch.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdiskfreespace.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kdiskfreespaceinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kemailsettings.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kencodingfiledialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfile.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfiledialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilefiltercombo.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileitem.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileitemactionplugin.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileitemactions.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileitemdelegate.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileitemlistproperties.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilemetadataconfigurationwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilemetadatawidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilemetainfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilemetainfoitem.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileplacesmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileplacesview.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilepreviewgenerator.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfileshare.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilesharedialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kfilewriteplugin.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kicondialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kimagefilepreview.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kimageio.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kiomod.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kmimetypechooser.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kmountpoint.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/knameandurlinputdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/knewfilemenu.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/knfsshare.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/konqbookmarkmenu.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kopenwithdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kpreviewwidgetbase.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kpropertiesdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kprotocolmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/krecentdirs.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/krecentdocument.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kremoteencoding.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/krun.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/ksambashare.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/ksambasharedata.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kscan.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kservicegroup.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kshellcompletion.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/ksslcertificatemanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kstatusbarofflineindicator.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/ktar.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kurifilter.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kurlcombobox.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kurlcompletion.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kurlnavigator.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kurlpixmapprovider.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kurlrequester.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kurlrequesterdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/kzip.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/metainfojob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/netaccess.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/passworddialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/paste.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/predicateproperties.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/previewjob.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/renamedialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/renamedialogplugin.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/scheduler.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/sessiondata.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/skipdialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/slave.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/slavebase.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/slaveconfig.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/slaveinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/sslui.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/tcpslavebase.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/thumbcreator.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/thumbsequencecreator.sip +%%PYQT_SIPDIR%%/PyKDE4/kio/udsentry.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/author.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/category.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/engine.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/entry.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/installation.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuff3_downloaddialog.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuff3_downloadmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuff3_downloadwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuff3_entry.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuff3_knewstuffaction.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuff3_knewstuffbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuff3_uploaddialog.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuffaction.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuffbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/knewstuffmod.sip +%%PYQT_SIPDIR%%/PyKDE4/knewstuff/ktranslatable.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/browserextension.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/browserinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/browseropenorsavequestion.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/browserrun.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/event.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/factory.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/fileinfoextension.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/genericfactory.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/historyprovider.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/htmlextension.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/kpartsmod.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/mainwindow.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/part.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/partmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/plugin.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/scriptableextension.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/statusbarextension.sip +%%PYQT_SIPDIR%%/PyKDE4/kparts/textextension.sip +%%PYQT_SIPDIR%%/PyKDE4/kterminal/kterminal.sip +%%PYQT_SIPDIR%%/PyKDE4/kterminal/kterminalmod.sip +%%PYQT_SIPDIR%%/PyKDE4/kterminal/terminal_interface.sip +%%PYQT_SIPDIR%%/PyKDE4/kterminal/terminal_interface_v2.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/annotationinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/attribute.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/codecompletioninterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/codecompletionmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/codecompletionmodelcontrollerinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/commandinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/configinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/configpage.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/containerinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/cursor.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/document.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/editor.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/editorchooser.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/factory.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/highlightinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/ktexteditormod.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/loadsavefiltercheckplugin.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/markinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/modeinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/modificationinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/movingcursor.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/movinginterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/movingrange.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/movingrangefeedback.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/plugin.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/range.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/recoveryinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/searchinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/sessionconfiginterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/templateinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/templateinterface2.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/texthintinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/variableinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/ktexteditor/view.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/dialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/dispatcher.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kcmoduleinfo.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kcmoduleloader.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kcmoduleproxy.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kcmultidialog.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kemoticons.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kemoticonsprovider.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kemoticonstheme.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kidletime.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kpluginselector.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kprintpreview.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/kutilsmod.sip +%%PYQT_SIPDIR%%/PyKDE4/kutils/pluginpage.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/andterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/class.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/comparisonterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/entity.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/file.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/filequery.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/global.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/groupterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/kmetadatatagcloud.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/ktagcloudwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/ktagdisplaywidget.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/literal.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/literalterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/ncal.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nco.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/ndo.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/negationterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nepomukmassupdatejob.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nepomukmod.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nepomukontologyloader.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nepomukservice.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nfo.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nie.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nmm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/nuao.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/ontology.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/optionalterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/orterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/pimo.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/property.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/query.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/queryparser.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/queryserviceclient.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/resource.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/resourcemanager.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/resourceterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/resourcetypeterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/result.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/simpleterm.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/standardqueries.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/tag.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/tagwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/term.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/thing.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/tmo.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/tools.sip +%%PYQT_SIPDIR%%/PyKDE4/nepomuk/variant.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/abstractaudiodataoutput.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/abstractaudiooutput.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/abstractmediastream.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/abstractvideodataoutput.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/abstractvideooutput.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/audiodataoutput.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/audiodataoutputinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/audioformat.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/audiooutput.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/avcapture.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/backendcapabilities.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/effect.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/effectparameter.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/effectwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/experimental_phononnamespace.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/globalconfig.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/mediacontroller.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/medianode.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/mediaobject.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/mediasource.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/mrl.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/objectdescription.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/objectdescriptionmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/packet.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/packetpool.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/path.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/phononmod.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/phononnamespace.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/pulsesupport.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/seekslider.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/snapshotinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/streaminterface.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videodataoutput.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videodataoutput2.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videodataoutputinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videoframe.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videoframe2.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videoplayer.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videowidget.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/videowidgetinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/visualization.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/volumefadereffect.sip +%%PYQT_SIPDIR%%/PyKDE4/phonon/volumeslider.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/abstractdialogmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/abstractrunner.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/abstracttoolbox.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/accessappletjob.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/accessmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/animation.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/animationdriver.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/animator.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/applet.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/appletscript.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/authorizationinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/authorizationmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/authorizationrule.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/busywidget.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/checkbox.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/clientpinrequest.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/combobox.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/configloader.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/containment.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/containmentactions.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/containmentactionspluginsconfig.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/context.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/corona.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/datacontainer.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/dataengine.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/dataenginemanager.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/dataenginescript.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/declarativewidget.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/delegate.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/dialog.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/extender.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/extendergroup.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/extenderitem.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/flashinglabel.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/frame.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/framesvg.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/glapplet.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/groupbox.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/iconwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/itembackground.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/label.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/lineedit.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/meter.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/package.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/packagemetadata.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/packagestructure.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/paintutils.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/plasma.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/plasmamod.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/pluginloader.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/popupapplet.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/pushbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/querymatch.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/radiobutton.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/runnercontext.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/runnermanager.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/runnerscript.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/runnersyntax.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/scriptengine.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/scrollbar.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/scrollwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/separator.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/service.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/serviceaccessjob.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/servicejob.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/signalplotter.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/slider.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/spinbox.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/svg.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/svgwidget.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/tabbar.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/textbrowser.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/textedit.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/theme.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/toolbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/tooltipcontent.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/tooltipmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/treeview.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/version.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/videowidget.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/view.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/wallpaper.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/wallpaperscript.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/webview.sip +%%PYQT_SIPDIR%%/PyKDE4/plasma/windoweffects.sip +%%PYQT_SIPDIR%%/PyKDE4/polkitqt/action.sip +%%PYQT_SIPDIR%%/PyKDE4/polkitqt/actionbutton.sip +%%PYQT_SIPDIR%%/PyKDE4/polkitqt/actionbuttons.sip +%%PYQT_SIPDIR%%/PyKDE4/polkitqt/auth.sip +%%PYQT_SIPDIR%%/PyKDE4/polkitqt/context.sip +%%PYQT_SIPDIR%%/PyKDE4/polkitqt/polkitqtmod.sip +%%PYQT_SIPDIR%%/PyKDE4/pykde_config.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/acadapter.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/audiointerface.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/battery.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/block.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/button.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/camera.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/device.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/deviceinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/devicenotifier.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/dvbinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/genericinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/internetgateway.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/networking.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/networkinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/networkshare.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/opticaldisc.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/opticaldrive.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/portablemediaplayer.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/powermanagement.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/predicate.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/processor.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/serialinterface.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/smartcardreader.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/solidmod.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/solidnamespace.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/storageaccess.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/storagedrive.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/storagevolume.sip +%%PYQT_SIPDIR%%/PyKDE4/solid/video.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/asyncmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/asyncquery.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/asyncresult.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/backend.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/bindingset.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dbusclient.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dbusexportiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dbusexportmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dbusmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dbusnodeiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dbusqueryresultiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dbusstatementiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/dummymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/error.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/filtermodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/global.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/graph.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/inferencemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/inferencerule.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/inferenceruleparser.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/inferenceruleset.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/iterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/iteratorbackend.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/languagetag.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/literalvalue.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/localsocketclient.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/locator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/model.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/mutexmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/nao.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/node.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/nodeiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/nodepattern.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/nrl.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/nrlmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/owl.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/parser.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/plugin.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/pluginmanager.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/queryresultiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/queryresultiteratorbackend.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/rdf.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/rdfs.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/rdfschemamodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/readonlymodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/serializer.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/servercore.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/signalcachemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/sil.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/simplenodeiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/simplestatementiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/sopranomod.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/sopranotypes.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/sparqlmodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/statement.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/statementiterator.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/statementpattern.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/storagemodel.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/tcpclient.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/xesam.sip +%%PYQT_SIPDIR%%/PyKDE4/soprano/xsd.sip %%LOCALBASE%%/%%PYTHON_SITELIBDIR%%/kdebindings4.pth Index: head/devel/py-qt4-dbussupport/Makefile =================================================================== --- head/devel/py-qt4-dbussupport/Makefile (revision 487596) +++ head/devel/py-qt4-dbussupport/Makefile (revision 487597) @@ -1,31 +1,32 @@ # $FreeBSD$ PORTNAME= dbussupport +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Qt event loop support for dbus-python DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2019-03-15 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:devel/py-dbus@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:devel/py-dbus@${PY_FLAVOR} CONFIGURE_ARGS= --enable QtCore PYQT_DIST= yes USES= pkgconfig python pyqt:4 qt:4 USE_PYQT= sip_build -USE_PYTHON= flavors +USE_PYTHON= concurrent flavors py3kplist USE_QT= corelib qmake_build moc_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace BUILD_WRKSRC= ${WRKSRC}/dbus INSTALL_WRKSRC= ${WRKSRC}/dbus PLIST_FILES= %%PYTHON_SITELIBDIR%%/dbus/mainloop/qt.so .include Index: head/devel/py-qt4-designerplugin/Makefile =================================================================== --- head/devel/py-qt4-designerplugin/Makefile (revision 487596) +++ head/devel/py-qt4-designerplugin/Makefile (revision 487597) @@ -1,31 +1,32 @@ # Created by: Danny Pansters # $FreeBSD$ PORTNAME= designerplugin +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, QtDesigner plugin DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2019-03-15 BUILD_WRKSRC= ${WRKSRC}/designer INSTALL_WRKSRC= ${WRKSRC}/designer DESTDIRNAME= INSTALL_ROOT CONFIGURE_ARGS= --enable QtDesigner PYQT_DIST= yes USES= python pyqt:4 qt:4 USE_PYQT= sip_build -USE_PYTHON= flavors +USE_PYTHON= concurrent flavors py3kplist USE_QT= corelib designer gui script xml moc_build qmake_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace PLIST_FILES= %%QT_PLUGINDIR%%/designer/libpyqt4.so .include Index: head/devel/py-qt4-qscintilla2/Makefile =================================================================== --- head/devel/py-qt4-qscintilla2/Makefile (revision 487596) +++ head/devel/py-qt4-qscintilla2/Makefile (revision 487597) @@ -1,45 +1,44 @@ # Created by: Danny Pansters # $FreeBSD$ PORTNAME= qscintilla2 PORTVERSION= ${QSCI2_VERSION} -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITES_QSCI2} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt4- DISTNAME= ${QSCI2_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for QScintilla2 (PyQt4), QSci module DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2019-03-15 LIB_DEPENDS= libqscintilla2_qt4.so:devel/qscintilla2 DISTINFO_FILE= ${.CURDIR:H}/qscintilla2/distinfo DESTDIRNAME= INSTALL_ROOT HAS_CONFIGURE= yes USES= python pyqt:4 qmake:no_env qt:4 USE_PYQT= sip core gui USE_PYTHON= concurrent flavors py3kplist USE_QT= corelib gui moc_build qmake_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace PYQT_APIDIR= ${PREFIX}/share/qt4/qsci CONFIGURE_ARGS= --pyqt PyQt4 -d ${PYTHONPREFIX_SITELIBDIR}/PyQt4 -v ${PYQT_SIPDIR} \ --apidir ${PYQT_APIDIR} --qmake ${QMAKE} --pyqt-sipdir ${PYQT_SIPDIR} \ --sip ${SIP} WRKSRC= ${WRKDIR}/${DISTNAME}/Python ALL_TARGET= #empty do-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV}\ ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} .include Index: head/devel/py-qt4-qscintilla2/pkg-plist =================================================================== --- head/devel/py-qt4-qscintilla2/pkg-plist (revision 487596) +++ head/devel/py-qt4-qscintilla2/pkg-plist (revision 487597) @@ -1,57 +1,61 @@ +%%PYTHON_SITELIBDIR%%/QScintilla-2.10.8.dist-info/INSTALLER +%%PYTHON_SITELIBDIR%%/QScintilla-2.10.8.dist-info/METADATA +%%PYTHON_SITELIBDIR%%/QScintilla-2.10.8.dist-info/RECORD %%PYTHON_SITELIBDIR%%/PyQt4/Qsci.pyi %%PYTHON_SITELIBDIR%%/PyQt4/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/qscilexeredifact.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/qscilexerjson.sip %%PYQT_SIPDIR%%/Qsci/qscilexerlua.sip %%PYQT_SIPDIR%%/Qsci/qscilexermakefile.sip %%PYQT_SIPDIR%%/Qsci/qscilexermarkdown.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 %%PYQT_APIDIR%%/api/python/QScintilla2.api Index: head/devel/py-qt5/Makefile =================================================================== --- head/devel/py-qt5/Makefile (revision 487596) +++ head/devel/py-qt5/Makefile (revision 487597) @@ -1,27 +1,27 @@ # $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 -USE_PYTHON= flavors +USE_PYTHON= concurrent flavors py3kplist # Keep these synchronized with _USE_PYQT_ALL / _USE_PYQT5_ONLY in Mk/Use/pyqt.mk OPTIONS_DEFINE= core dbus dbussupport demo designer \ designerplugin gui multimedia multimediawidgets \ network opengl printsupport qml qscintilla2 quickwidgets \ sql serialport svg test webchannel webengine webkit \ webkitwidgets widgets xml xmlpatterns OPTIONS_DEFAULT=${OPTIONS_DEFINE:Nwebengine} .for opt in ${OPTIONS_DEFINE} ${opt}_USE= PYQT=${opt}_run ${opt}_DESC= ${py-${opt}_DESC} .endfor .include Index: head/devel/py-qt5/distinfo =================================================================== --- head/devel/py-qt5/distinfo (revision 487596) +++ head/devel/py-qt5/distinfo (revision 487597) @@ -1,3 +1,3 @@ -TIMESTAMP = 1487865147 -SHA256 (PyQt5_gpl-5.10.1.tar.gz) = 9932e971e825ece4ea08f84ad95017837fa8f3f29c6b0496985fa1093661e9ef -SIZE (PyQt5_gpl-5.10.1.tar.gz) = 3110469 +TIMESTAMP = 1539599822 +SHA256 (PyQt5_gpl-5.11.3.tar.gz) = c9b57d15601d436faf35dacf8e0acefa220194829a653e771e80b189b3261073 +SIZE (PyQt5_gpl-5.11.3.tar.gz) = 3121036 Index: head/devel/py-qt5-core/Makefile =================================================================== --- head/devel/py-qt5-core/Makefile (revision 487596) +++ head/devel/py-qt5-core/Makefile (revision 487597) @@ -1,53 +1,56 @@ # $FreeBSD$ PORTNAME= core CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtCore module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + PYQT_MODULE= QtCore CONFIGURE_ARGS= ${PYQT5_MODULES_ALL:N${PYQT_MODULE}:C/.*/--disable=&/} \ --enable=${PYQT_MODULE} PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_PYTHON= concurrent flavors py3kplist USE_PYQT= sip_build USE_QT= core buildtools_build 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include # 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} -r ${WRKSRC}/pyuic/uic/port_v3 .elif ${PYTHON_MAJOR_VER} == "3" ${RM} -r ${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}/PyQt5 \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR}/PyQt5 \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 .include Index: head/devel/py-qt5-core/files/patch-sip_QtTest_qtestmouse.sip =================================================================== --- head/devel/py-qt5-core/files/patch-sip_QtTest_qtestmouse.sip (revision 487596) +++ head/devel/py-qt5-core/files/patch-sip_QtTest_qtestmouse.sip (nonexistent) @@ -1,12 +0,0 @@ -Fix build with Qt 5.11 (fixed upstream) - ---- sip/QtTest/qtestmouse.sip.orig 2018-09-04 08:52:38 UTC -+++ sip/QtTest/qtestmouse.sip -@@ -41,7 +41,6 @@ namespace QTest - void mousePress(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers modifier = 0, QPoint pos = QPoint(), int delay = -1); - void mouseRelease(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers modifier = 0, QPoint pos = QPoint(), int delay = -1); - void mouseEvent(QTest::MouseAction action, QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers modifier, QPoint pos, int delay = -1); -- void waitForEvents() /ReleaseGIL/; - void mouseEvent(QTest::MouseAction action, QWindow *window, Qt::MouseButton button, Qt::KeyboardModifiers modifier, QPoint pos, int delay = -1); - void mousePress(QWindow *window, Qt::MouseButton button, Qt::KeyboardModifiers modifier = Qt::KeyboardModifiers(), QPoint pos = QPoint(), int delay = -1); - void mouseRelease(QWindow *window, Qt::MouseButton button, Qt::KeyboardModifiers modifier = Qt::KeyboardModifiers(), QPoint pos = QPoint(), int delay = -1); Property changes on: head/devel/py-qt5-core/files/patch-sip_QtTest_qtestmouse.sip ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/py-qt5-core/files/patch-configure.py =================================================================== --- head/devel/py-qt5-core/files/patch-configure.py (revision 487596) +++ head/devel/py-qt5-core/files/patch-configure.py (revision 487597) @@ -1,191 +1,215 @@ This patch is necessary for us to split PyQt5 up into several different ports. It works by conditionally building and installing some tools (such as pylupdate5 and pyrcc5), replacing the all-encompassing PyQt5.api file that depends on different modules with module-specific .api files. Also fixes a bug where dbus support drops multiple -I flags produced by pkg-config --cflags dbus-1 . Also fixes the build of www/py-qt5-webengine@py36 by adding printsupport to QtWebEngineWidgets. Also causes .pyi files to be installed regardless of the Python version to simplify plist handling. ---- configure.py.orig 2017-11-23 14:44:03 UTC +--- configure.py.orig 2018-10-01 13:38:10 UTC +++ configure.py -@@ -98,7 +98,7 @@ MODULE_METADATA = { +@@ -102,7 +102,7 @@ MODULE_METADATA = { 'QtWebEngineCore': ModuleMetadata(qmake_QT=['webenginecore', '-gui']), 'QtWebEngineWidgets': ModuleMetadata( qmake_QT=['webenginewidgets', 'webchannel', - 'network', 'widgets'], -+ 'network', 'printsupport', 'widgets'], ++ 'network', 'printsupport', 'widgets'], cpp11=True), 'QtWebKit': ModuleMetadata(qmake_QT=['webkit', 'network']), 'QtWebKitWidgets': ModuleMetadata( -@@ -503,7 +503,7 @@ class TargetConfiguration: +@@ -527,7 +527,7 @@ class TargetConfiguration: self.no_pydbus = False self.no_qml_plugin = False self.no_tools = False - self.prot_is_public = (self.py_platform.startswith('linux') or self.py_platform == 'darwin') + self.prot_is_public = (self.py_platform.startswith('linux') or self.py_platform.startswith('freebsd') or self.py_platform == 'darwin') self.qmake = self._find_exe('qmake') self.qmake_spec = '' self.qmake_spec_default = '' -@@ -773,7 +773,7 @@ class TargetConfiguration: +@@ -805,7 +805,7 @@ class TargetConfiguration: """ # The platform may have changed so update the default. - if self.py_platform.startswith('linux') or self.py_platform == 'darwin': + if self.py_platform.startswith('linux') or self.py_platform.startswith('freebsd') or self.py_platform == 'darwin': self.prot_is_public = True self.vend_inc_dir = self.py_venv_inc_dir -@@ -1450,8 +1450,9 @@ def generate_makefiles(target_config, verbose, parts, +@@ -1506,8 +1506,9 @@ def generate_makefiles(target_config, verbose, parts, # Add the internal modules if they are required. if not target_config.no_tools: - pyqt_modules.append('pylupdate') - pyqt_modules.append('pyrcc') + if "QtXml" in target_config.pyqt_modules: + pyqt_modules.append('pylupdate') + pyqt_modules.append('pyrcc') for mname in pyqt_modules: metadata = MODULE_METADATA[mname] -@@ -1493,20 +1494,17 @@ def generate_makefiles(target_config, verbose, parts, +@@ -1549,22 +1550,20 @@ def generate_makefiles(target_config, verbose, parts, f.close() - generate_sip_module_code(target_config, verbose, parts, tracing, 'Qt', - fatal_warnings, sip_flags, False) - subdirs.append('Qt') - wrappers = [] if not target_config.no_tools: - # Generate the pylupdate5 and pyrcc5 wrappers. - for tool in ('pylupdate', 'pyrcc'): - wrappers.append((tool, - generate_tool_wrapper(target_config, tool + '5', - 'PyQt5.%s_main' % tool))) -- -- # Generate the pyuic5 wrapper. -- wrappers.append(('pyuic', + if "QtXml" in target_config.pyqt_modules: + # Generate the pylupdate5 and pyrcc5 wrappers. + for tool in ('pylupdate', 'pyrcc'): + wrappers.append((tool, + generate_tool_wrapper(target_config, tool + '5', + 'PyQt5.%s_main' % tool))) + +- # Generate the pyuic5 wrapper. +- wrappers.append(('pyuic', +- generate_tool_wrapper(target_config, 'pyuic5', +- 'PyQt5.uic.pyuic'))) + if "QtCore" in target_config.pyqt_modules: + # Generate the pyuic5 wrapper. + wrappers.append(('pyuic', - generate_tool_wrapper(target_config, 'pyuic5', - 'PyQt5.uic.pyuic'))) ++ generate_tool_wrapper(target_config, 'pyuic5', ++ 'PyQt5.uic.pyuic'))) -@@ -1524,23 +1522,6 @@ def generate_makefiles(target_config, verbose, parts, + # Generate the Qt Designer plugin. + if not target_config.no_designer_plugin and 'QtDesigner' in target_config.pyqt_modules: +@@ -1580,23 +1579,6 @@ def generate_makefiles(target_config, verbose, parts, 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: - if MODULE_METADATA[mname].public: - 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' -@@ -1568,14 +1549,18 @@ def generate_makefiles(target_config, verbose, parts, +@@ -1627,27 +1609,31 @@ def generate_makefiles(target_config, verbose, parts, + all_installs.append( + root_dir + '/' + module_file_name(target_config, mname)) + +- all_installs.append(root_dir + '/' + module_file_name(target_config, 'Qt')) ++ # all_installs.append(root_dir + '/' + module_file_name(target_config, 'Qt')) + 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 INSTALLS += init_py -''' % (' '.join(subdirs), source_path('__init__.py'), root_dir)) +''' % (source_path('__init__.py'), root_dir)) +- all_installs.append(root_dir + '/__init__.py') ++ # all_installs.append(root_dir + '/__init__.py') + - # Install the uic module. - out_f.write(''' + if not target_config.no_tools: + # Install the uic module. + out_f.write(''' uic_package.files = %s uic_package.path = %s INSTALLS += uic_package -@@ -1603,6 +1588,8 @@ INSTALLS += tools + ''' % (source_path('pyuic', 'uic'), root_dir)) + +- all_installs.append(root_dir + '/uic') ++ # all_installs.append(root_dir + '/uic') + + # Install the tool main scripts and wrappers. + if wrappers: +@@ -1676,6 +1662,8 @@ INSTALLS += tools # Install the .sip files. if target_config.pyqt_sip_dir: for mname, metadata in MODULE_METADATA.items(): + if mname not in pyqt_modules: + continue if metadata.public and mname != 'Qt': sip_files = matching_files(source_path('sip', mname, '*.sip')) -@@ -1618,7 +1605,7 @@ INSTALLS += sip%s - )) +@@ -1695,7 +1683,7 @@ INSTALLS += sip%s + all_installs.append(mdir) # Install the stub files. - if target_config.py_version >= 0x030500 and target_config.pyqt_stubs_dir: + if target_config.pyqt_stubs_dir: - out_f.write(''' - pep484_stubs.files = %s Qt.pyi - pep484_stubs.path = %s -@@ -1628,11 +1615,12 @@ INSTALLS += pep484_stubs + pyi_names = [mname + '.pyi' + for mname in target_config.pyqt_modules if mname[0] != '_'] +@@ -1713,14 +1701,15 @@ INSTALLS += pep484_stubs # Install the QScintilla .api file. if target_config.qsci_api: + api_dir = target_config.qsci_api_dir + '/api/python' + 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.files = %s qscintilla_api.path = %s INSTALLS += qscintilla_api --''' % qmake_quote(target_config.qsci_api_dir + '/api/python')) -+''' % (api_list, qmake_quote(target_config.qsci_api_dir + '/api/python'))) +-''' % qmake_quote(api_dir)) ++''' % (api_list, qmake_quote(api_dir))) - out_f.close() +- all_installs.append(api_dir + '/PyQt5.api') ++ # all_installs.append(api_dir + '/PyQt5.api') -@@ -1864,7 +1852,7 @@ def inform_user(target_config, sip_version): + if distinfo: + # The command to run to generate the .dist-info directory. +@@ -1984,7 +1973,7 @@ def inform_user(target_config, sip_version): os.path.join( target_config.qsci_api_dir, 'api', 'python')) - if target_config.py_version >= 0x030500 and target_config.pyqt_stubs_dir: + if target_config.pyqt_stubs_dir: inform("The PyQt5 PEP 484 stub files will be installed in %s." % target_config.pyqt_stubs_dir) -@@ -2431,7 +2419,7 @@ def generate_sip_module_code(target_config, verbose, p +@@ -2553,7 +2542,7 @@ def generate_sip_module_code(target_config, verbose, p argv.append('-a') argv.append(mname + '.api') - if target_config.py_version >= 0x030500 and target_config.pyqt_stubs_dir: + if target_config.pyqt_stubs_dir: argv.append('-y') argv.append(mname + '.pyi') -@@ -2604,7 +2592,7 @@ target.files = $$PY_MODULE +@@ -2726,7 +2715,7 @@ target.files = $$PY_MODULE pro_lines.append('INSTALLS += target') # This optimisation could apply to other platforms. - if 'linux' in target_config.qmake_spec and not target_config.static: + if not target_config.static: if target_config.py_version >= 0x030000: entry_point = 'PyInit_%s' % target_name else: Index: head/devel/py-qt5-core/pkg-plist =================================================================== --- head/devel/py-qt5-core/pkg-plist (revision 487596) +++ head/devel/py-qt5-core/pkg-plist (revision 487597) @@ -1,224 +1,225 @@ 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/QtCore.pyi +%%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%%/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/qtcharts.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtcharts.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtcharts.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/qtwebenginewidgets.py %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebenginewidgets.pyc %%PYTHON_SITELIBDIR%%/PyQt5/uic/widget-plugins/qtwebenginewidgets.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 +%%API%%%%PYQT_APIDIR%%/api/python/QtCore.api %%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/qdeadlinetimer.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/qoperatingsystemversion.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_qvariantmap.sip %%PYQT_SIPDIR%%/QtCore/qpycore_qvector.sip %%PYQT_SIPDIR%%/QtCore/qpycore_virtual_error_handler.sip %%PYQT_SIPDIR%%/QtCore/qrandom.sip %%PYQT_SIPDIR%%/QtCore/qreadwritelock.sip %%PYQT_SIPDIR%%/QtCore/qrect.sip %%PYQT_SIPDIR%%/QtCore/qregexp.sip %%PYQT_SIPDIR%%/QtCore/qregularexpression.sip %%PYQT_SIPDIR%%/QtCore/qresource.sip %%PYQT_SIPDIR%%/QtCore/qrunnable.sip %%PYQT_SIPDIR%%/QtCore/qsavefile.sip %%PYQT_SIPDIR%%/QtCore/qsemaphore.sip %%PYQT_SIPDIR%%/QtCore/qsequentialanimationgroup.sip %%PYQT_SIPDIR%%/QtCore/qsettings.sip %%PYQT_SIPDIR%%/QtCore/qsharedmemory.sip %%PYQT_SIPDIR%%/QtCore/qsignalmapper.sip %%PYQT_SIPDIR%%/QtCore/qsignaltransition.sip %%PYQT_SIPDIR%%/QtCore/qsize.sip %%PYQT_SIPDIR%%/QtCore/qsocketnotifier.sip %%PYQT_SIPDIR%%/QtCore/qsortfilterproxymodel.sip %%PYQT_SIPDIR%%/QtCore/qstandardpaths.sip %%PYQT_SIPDIR%%/QtCore/qstate.sip %%PYQT_SIPDIR%%/QtCore/qstatemachine.sip %%PYQT_SIPDIR%%/QtCore/qstorageinfo.sip %%PYQT_SIPDIR%%/QtCore/qstring.sip %%PYQT_SIPDIR%%/QtCore/qstringlist.sip %%PYQT_SIPDIR%%/QtCore/qstringlistmodel.sip %%PYQT_SIPDIR%%/QtCore/qsysinfo.sip %%PYQT_SIPDIR%%/QtCore/qsystemsemaphore.sip %%PYQT_SIPDIR%%/QtCore/qtemporarydir.sip %%PYQT_SIPDIR%%/QtCore/qtemporaryfile.sip %%PYQT_SIPDIR%%/QtCore/qtextboundaryfinder.sip %%PYQT_SIPDIR%%/QtCore/qtextcodec.sip %%PYQT_SIPDIR%%/QtCore/qtextstream.sip %%PYQT_SIPDIR%%/QtCore/qthread.sip %%PYQT_SIPDIR%%/QtCore/qthreadpool.sip %%PYQT_SIPDIR%%/QtCore/qtimeline.sip %%PYQT_SIPDIR%%/QtCore/qtimer.sip %%PYQT_SIPDIR%%/QtCore/qtimezone.sip %%PYQT_SIPDIR%%/QtCore/qtranslator.sip %%PYQT_SIPDIR%%/QtCore/qurl.sip %%PYQT_SIPDIR%%/QtCore/qurlquery.sip %%PYQT_SIPDIR%%/QtCore/quuid.sip %%PYQT_SIPDIR%%/QtCore/qvariant.sip %%PYQT_SIPDIR%%/QtCore/qvariantanimation.sip %%PYQT_SIPDIR%%/QtCore/qversionnumber.sip %%PYQT_SIPDIR%%/QtCore/qwaitcondition.sip %%PYQT_SIPDIR%%/QtCore/qwineventnotifier.sip %%PYQT_SIPDIR%%/QtCore/qxmlstream.sip -%%API%%%%PYQT_APIDIR%%/api/python/QtCore.api Index: head/devel/py-qt5-dbus/Makefile =================================================================== --- head/devel/py-qt5-dbus/Makefile (revision 487596) +++ head/devel/py-qt5-dbus/Makefile (revision 487597) @@ -1,27 +1,30 @@ # $FreeBSD$ PORTNAME= dbus CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtDBus module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtDBus PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_PYQT= sip_build core_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/devel/py-qt5-dbussupport/Makefile =================================================================== --- head/devel/py-qt5-dbussupport/Makefile (revision 487596) +++ head/devel/py-qt5-dbussupport/Makefile (revision 487597) @@ -1,28 +1,30 @@ # $FreeBSD$ PORTNAME= dbussupport CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Qt event loop support for dbus-python -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:devel/py-dbus@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:devel/py-dbus@${PY_FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:devel/py-dbus@${PY_FLAVOR} \ + ${PY_ENUM34} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.8:devel/py-dbus@${PY_FLAVOR} \ + ${PY_ENUM34} CONFIGURE_ARGS= --enable QtCore PYQT_DIST= yes USES= pkgconfig python pyqt:5 qt:5 USE_PYQT= sip_build USE_PYTHON= concurrent flavors py3kplist USE_QT= 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 Index: head/devel/py-qt5-designer/Makefile =================================================================== --- head/devel/py-qt5-designer/Makefile (revision 487596) +++ head/devel/py-qt5-designer/Makefile (revision 487597) @@ -1,29 +1,32 @@ # $FreeBSD$ PORTNAME= designer CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtDesigner module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtDesigner --no-designer-plugin PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= yes USE_PYQT= sip_build core_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/devel/py-qt5-designerplugin/Makefile =================================================================== --- head/devel/py-qt5-designerplugin/Makefile (revision 487596) +++ head/devel/py-qt5-designerplugin/Makefile (revision 487597) @@ -1,29 +1,32 @@ # $FreeBSD$ PORTNAME= designerplugin CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtDesigner plugin +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + BUILD_WRKSRC= ${WRKSRC}/designer INSTALL_WRKSRC= ${WRKSRC}/designer DESTDIRNAME= INSTALL_ROOT CONFIGURE_ARGS= --enable QtDesigner PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build USE_PYTHON= concurrent flavors py3kplist USE_QT= core designer gui xml widgets \ buildtools_build qmake_build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace PLIST_FILES= ${PYQT_DESIGNERDIR}/libpyqt5.so .include Index: head/devel/py-qt5-help/Makefile =================================================================== --- head/devel/py-qt5-help/Makefile (revision 487596) +++ head/devel/py-qt5-help/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= help CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtHelp module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtHelp PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= core gui widgets help network sql buildtools_build qmake_build xml OPTIONS_DEFINE= API DEBUG OPTIONS_DEFAULT=API OPTIONS_SUB= yes API_DESC= Install QtHelp API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/devel/py-qt5-qscintilla2/pkg-plist =================================================================== --- head/devel/py-qt5-qscintilla2/pkg-plist (revision 487596) +++ head/devel/py-qt5-qscintilla2/pkg-plist (revision 487597) @@ -1,57 +1,61 @@ +%%PYTHON_SITELIBDIR%%/QScintilla-2.10.8.dist-info/INSTALLER +%%PYTHON_SITELIBDIR%%/QScintilla-2.10.8.dist-info/METADATA +%%PYTHON_SITELIBDIR%%/QScintilla-2.10.8.dist-info/RECORD %%PYTHON_SITELIBDIR%%/PyQt5/Qsci.pyi %%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/qscilexeredifact.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/qscilexerjson.sip %%PYQT_SIPDIR%%/Qsci/qscilexerlua.sip %%PYQT_SIPDIR%%/Qsci/qscilexermakefile.sip %%PYQT_SIPDIR%%/Qsci/qscilexermarkdown.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 %%PYQT_APIDIR%%/api/python/QScintilla2.api Index: head/devel/py-qt5-test/Makefile =================================================================== --- head/devel/py-qt5-test/Makefile (revision 487596) +++ head/devel/py-qt5-test/Makefile (revision 487597) @@ -1,29 +1,32 @@ # $FreeBSD$ PORTNAME= test CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtTest module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtTest PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/devel/py-qt5-test/pkg-plist =================================================================== --- head/devel/py-qt5-test/pkg-plist (revision 487596) +++ head/devel/py-qt5-test/pkg-plist (revision 487597) @@ -1,10 +1,11 @@ %%PYTHON_SITELIBDIR%%/PyQt5/QtTest.so %%PYTHON_SITELIBDIR%%/PyQt5/QtTest.pyi %%PYQT_SIPDIR%%/QtTest/QtTestmod.sip +%%PYQT_SIPDIR%%/QtTest/qabstractitemmodeltester.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%%%%PYQT_APIDIR%%/api/python/QtTest.api Index: head/devel/py-sip/Makefile =================================================================== --- head/devel/py-sip/Makefile (revision 487596) +++ head/devel/py-sip/Makefile (revision 487597) @@ -1,48 +1,71 @@ # Created by: nbm # $FreeBSD$ PORTNAME= sip PORTVERSION= ${SIP_VERSION} PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITES_SIP} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${SIP_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Python to C and C++ bindings generator USES= python pyqt:sip USE_PYTHON= concurrent py3kplist flavors USE_PYQT= # CONFIGURE_ARGS= -b ${PREFIX}/bin -d ${PYTHONPREFIX_SITELIBDIR} \ -e ${PYTHONPREFIX_INCLUDEDIR} -v ${DATADIR} \ + --sipdir ${PYQT_SIPDIR} \ CC="${CC}" CXX="${CXX}" LINK="${CXX}" LINK_SHLIB="${CXX}" \ CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ INCDIR="${LOCALBASE}/include" LIBDIR="${LOCALBASE}/lib" PORTDOCS= * OPTIONS_DEFINE= DOCS DEBUG DEBUG_CONFIGURE_ON= --debug +# From upstreams site: +# When building PyQt5 v5.11 or later you must configure SIP to create a +# private copy of the sip module using a command line similar to the following: +# > python configure.py --sip-module PyQt5.sip --no-tools +# As this port is already flavored we cannot add further Qt4/Qt5 flavoring. +CONFIGURE_WRKSRC= ${WRKSRC}/default +BUILD_WRKSRC= ${CONFIGURE_WRKSRC} +INSTALL_WRKSRC= ${CONFIGURE_WRKSRC} + do-configure: - cd ${WRKSRC} && ${PYTHON_CMD} configure.py ${CONFIGURE_ARGS} - ${REINPLACE_CMD} -e '/sip_bin.:/s|'\'',$$|-${PYTHON_VER}'\'',|' \ - ${WRKSRC}/sipconfig.py + # The default sip 'flavor' + ${MKDIR} ${CONFIGURE_WRKSRC} && \ + cd ${CONFIGURE_WRKSRC} && \ + ${PYTHON_CMD} ${WRKSRC}/configure.py ${CONFIGURE_ARGS} && \ + ${REINPLACE_CMD} -e '/sip_bin.:/s|'\'',$$|-${PYTHON_VER}'\'',|' ${CONFIGURE_WRKSRC}/sipconfig.py + # The now needed version for 5.11 (which will be the default from 2019-03-16). + ${MKDIR} ${WRKSRC}/sip_qt5 && \ + cd ${WRKSRC}/sip_qt5 && \ + ${PYTHON_CMD} ${WRKSRC}/configure.py ${CONFIGURE_ARGS} --sip-module PyQt5.sip --no-tools && \ + ${REINPLACE_CMD} -e '/sip_bin.:/s|'\'',$$|-${PYTHON_VER}'\'',|' ${WRKSRC}/sip_qt5/sipconfig.py +post-build: + cd ${WRKSRC}/sip_qt5 && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} + post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} && cd ${WRKSRC}/doc/html && \ ${COPYTREE_SHARE} \. ${STAGEDIR}${DOCSDIR} ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR} \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} - ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/bin/sip + ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/bin/sip ${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/sip.so + + cd ${WRKSRC}/sip_qt5 && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install + ${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/PyQt5/sip.so .include Index: head/devel/py-sip/distinfo =================================================================== --- head/devel/py-sip/distinfo (revision 487596) +++ head/devel/py-sip/distinfo (revision 487597) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520623489 -SHA256 (sip-4.19.8.tar.gz) = 7eaf7a2ea7d4d38a56dd6d2506574464bddf7cf284c960801679942377c297bc -SIZE (sip-4.19.8.tar.gz) = 1024548 +TIMESTAMP = 1539599371 +SHA256 (sip-4.19.13.tar.gz) = e353a7056599bf5fbd5d3ff9842a6ab2ea3cf4e0304a0f925ec5862907c0d15e +SIZE (sip-4.19.13.tar.gz) = 1038815 Index: head/devel/py-sip/pkg-plist =================================================================== --- head/devel/py-sip/pkg-plist (revision 487596) +++ head/devel/py-sip/pkg-plist (revision 487597) @@ -1,10 +1,18 @@ bin/sip %%PYTHON_INCLUDEDIR%%/sip.h -%%PYTHON_SITELIBDIR%%/sip.so +%%PYTHON_SITELIBDIR%%/PyQt5/sip.pyi +%%PYTHON_SITELIBDIR%%/PyQt5/sip.so +%%PYTHON_SITELIBDIR%%/PyQt5_sip-4.19.13.dist-info/INSTALLER +%%PYTHON_SITELIBDIR%%/PyQt5_sip-4.19.13.dist-info/METADATA +%%PYTHON_SITELIBDIR%%/PyQt5_sip-4.19.13.dist-info/RECORD +%%PYTHON_SITELIBDIR%%/sip-4.19.13.dist-info/INSTALLER +%%PYTHON_SITELIBDIR%%/sip-4.19.13.dist-info/METADATA +%%PYTHON_SITELIBDIR%%/sip-4.19.13.dist-info/RECORD %%PYTHON_SITELIBDIR%%/sip.pyi +%%PYTHON_SITELIBDIR%%/sip.so %%PYTHON_SITELIBDIR%%/sipconfig.py %%PYTHON_SITELIBDIR%%/sipconfig.pyc %%PYTHON_SITELIBDIR%%/sipconfig.pyo %%PYTHON_SITELIBDIR%%/sipdistutils.py %%PYTHON_SITELIBDIR%%/sipdistutils.pyc %%PYTHON_SITELIBDIR%%/sipdistutils.pyo Index: head/devel/qscintilla2/Makefile =================================================================== --- head/devel/qscintilla2/Makefile (revision 487596) +++ head/devel/qscintilla2/Makefile (revision 487597) @@ -1,61 +1,60 @@ # Created by: Danny Pansters # $FreeBSD$ PORTNAME= qscintilla2 PORTVERSION= ${QSCI2_VERSION} -PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} DISTNAME= ${QSCI2_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Qt 4 port of the Scintilla C++ editor class DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2019-03-15 USES= compiler:c++11-lib qmake pyqt:4 qt:4 USE_PYQT= # USE_QT= moc_build corelib gui xml designer USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/Qt4Qt5 CONFIGURE_WRKSRC= ${BUILD_WRKSRC} INSTALL_WRKSRC= ${BUILD_WRKSRC} QMAKE_ARGS= DEFINES=QT_NO_ACCESSIBILITY PORTDOCS= * PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES NLS OPTIONS_SUB= yes .include post-patch: cd ${BUILD_WRKSRC} && ${REINPLACE_CMD} -e \ 's|$$$$\[QT_INSTALL_HEADERS\]|${PREFIX}/${QT_INCDIR_REL}|; \ s|$$$$\[QT_INSTALL_LIBS\]|${PREFIX}/${QT_LIBDIR_REL}|; \ s|$$$$\[QT_INSTALL_TRANSLATIONS\]|${PREFIX}/share/qt4/translations|; \ s|$$$$\[QT_INSTALL_DATA\]|${PREFIX}/share/qt4|' \ qscintilla.pro .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 Index: head/devel/qscintilla2/distinfo =================================================================== --- head/devel/qscintilla2/distinfo (revision 487596) +++ head/devel/qscintilla2/distinfo (revision 487597) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525014650 -SHA256 (QScintilla_gpl-2.10.4.tar.gz) = 0353e694a67081e2ecdd7c80e1a848cf79a36dbba78b2afa36009482149b022d -SIZE (QScintilla_gpl-2.10.4.tar.gz) = 2721322 +TIMESTAMP = 1543101934 +SHA256 (QScintilla_gpl-2.10.8.tar.gz) = 46cd5b4e609ca5e13130ba8cc7028d44fd1dc5b037f97c492899006ed0c992eb +SIZE (QScintilla_gpl-2.10.8.tar.gz) = 2736054 Index: head/devel/qscintilla2/pkg-plist =================================================================== --- head/devel/qscintilla2/pkg-plist (revision 487596) +++ head/devel/qscintilla2/pkg-plist (revision 487597) @@ -1,73 +1,74 @@ %%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/qscilexeredifact.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/qscilexerjson.h %%QT_INCDIR%%/Qsci/qscilexerlua.h %%QT_INCDIR%%/Qsci/qscilexermakefile.h %%QT_INCDIR%%/Qsci/qscilexermarkdown.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_qt4.so %%QT_LIBDIR%%/libqscintilla2_qt4.so.13 -%%QT_LIBDIR%%/libqscintilla2_qt4.so.13.1 -%%QT_LIBDIR%%/libqscintilla2_qt4.so.13.1.1 +%%QT_LIBDIR%%/libqscintilla2_qt4.so.13.2 +%%QT_LIBDIR%%/libqscintilla2_qt4.so.13.2.1 %%QT_MKSPECDIR%%/features/qscintilla2.prf share/qt4/qsci/api/python/Python-2.4.api share/qt4/qsci/api/python/Python-2.5.api share/qt4/qsci/api/python/Python-2.6.api share/qt4/qsci/api/python/Python-2.7.api share/qt4/qsci/api/python/Python-3.1.api share/qt4/qsci/api/python/Python-3.2.api share/qt4/qsci/api/python/Python-3.3.api share/qt4/qsci/api/python/Python-3.4.api share/qt4/qsci/api/python/Python-3.5.api share/qt4/qsci/api/python/Python-3.6.api share/qt4/qsci/api/python/Python-3.7.api %%NLS%%share/qt4/translations/qscintilla_cs.qm %%NLS%%share/qt4/translations/qscintilla_de.qm %%NLS%%share/qt4/translations/qscintilla_es.qm %%NLS%%share/qt4/translations/qscintilla_fr.qm %%NLS%%share/qt4/translations/qscintilla_pt_br.qm Index: head/devel/qscintilla2-designerplugin/Makefile =================================================================== --- head/devel/qscintilla2-designerplugin/Makefile (revision 487596) +++ head/devel/qscintilla2-designerplugin/Makefile (revision 487597) @@ -1,34 +1,33 @@ # Created by: Danny Pansters # $FreeBSD$ PORTNAME= designerplugin PORTVERSION= ${QSCI2_VERSION} -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} PKGNAMEPREFIX= qscintilla2- DISTNAME= ${QSCI2_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Qt4 Designer plugin for QScintilla2 DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2019-03-15 LIB_DEPENDS= libqscintilla2_qt4.so:devel/qscintilla2 DISTINFO_FILE= ${.CURDIR:H}/qscintilla2/distinfo USES= qmake pyqt:4 qt:4 USE_QT= qmake_build moc_build gui xml designer WRKSRC= ${WRKDIR}/${DISTNAME}/designer-Qt4Qt5 PLIST_FILES= %%QT_PLUGINDIR%%/designer/libqscintillaplugin.so pre-configure: ${REINPLACE_CMD} -e \ 's|$$$$\[QT_INSTALL_PLUGINS\]|${PREFIX}/${QT_PLUGINDIR_REL}|' \ ${WRKSRC}/designer.pro .include Index: head/devel/qscintilla2-designerplugin-qt5/Makefile =================================================================== --- head/devel/qscintilla2-designerplugin-qt5/Makefile (revision 487596) +++ head/devel/qscintilla2-designerplugin-qt5/Makefile (revision 487597) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= designerplugin-qt5 PORTVERSION= ${QSCI2_VERSION} -PORTREVISION= 2 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:devel/qscintilla2-qt5 DISTINFO_FILE= ${.CURDIR:H}/qscintilla2-qt5/distinfo USE_GL= gl USES= compiler:c++11-lang qmake pyqt:5 qt:5 USE_QT= core designer printsupport gui widgets xml \ buildtools_build qmake_build WRKSRC= ${WRKDIR}/${DISTNAME}/designer-Qt4Qt5 PLIST_FILES= %%QT_PLUGINDIR%%/designer/libqscintillaplugin.so .include Index: head/devel/qscintilla2-qt5/Makefile =================================================================== --- head/devel/qscintilla2-qt5/Makefile (revision 487596) +++ head/devel/qscintilla2-qt5/Makefile (revision 487597) @@ -1,48 +1,47 @@ # $FreeBSD$ PORTNAME= qscintilla2-qt5 PORTVERSION= ${QSCI2_VERSION} -PORTREVISION= 2 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= compiler:c++11-lang qmake pyqt:5 qt:5 USE_GL= gl USE_PYQT= # USE_QT= buildtools_build core 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 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 Index: head/devel/qscintilla2-qt5/distinfo =================================================================== --- head/devel/qscintilla2-qt5/distinfo (revision 487596) +++ head/devel/qscintilla2-qt5/distinfo (revision 487597) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525014650 -SHA256 (QScintilla_gpl-2.10.4.tar.gz) = 0353e694a67081e2ecdd7c80e1a848cf79a36dbba78b2afa36009482149b022d -SIZE (QScintilla_gpl-2.10.4.tar.gz) = 2721322 +TIMESTAMP = 1543102039 +SHA256 (QScintilla_gpl-2.10.8.tar.gz) = 46cd5b4e609ca5e13130ba8cc7028d44fd1dc5b037f97c492899006ed0c992eb +SIZE (QScintilla_gpl-2.10.8.tar.gz) = 2736054 Index: head/devel/qscintilla2-qt5/pkg-plist =================================================================== --- head/devel/qscintilla2-qt5/pkg-plist (revision 487596) +++ head/devel/qscintilla2-qt5/pkg-plist (revision 487597) @@ -1,73 +1,74 @@ %%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/qscilexeredifact.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/qscilexerjson.h %%QT_INCDIR%%/Qsci/qscilexerlua.h %%QT_INCDIR%%/Qsci/qscilexermakefile.h %%QT_INCDIR%%/Qsci/qscilexermarkdown.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.13 -%%QT_LIBDIR%%/libqscintilla2_qt5.so.13.1 -%%QT_LIBDIR%%/libqscintilla2_qt5.so.13.1.1 +%%QT_LIBDIR%%/libqscintilla2_qt5.so.13.2 +%%QT_LIBDIR%%/libqscintilla2_qt5.so.13.2.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 %%QT_DATADIR%%/qsci/api/python/Python-3.6.api %%QT_DATADIR%%/qsci/api/python/Python-3.7.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 Index: head/graphics/py-qt5-svg/Makefile =================================================================== --- head/graphics/py-qt5-svg/Makefile (revision 487596) +++ head/graphics/py-qt5-svg/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= svg CATEGORIES= graphics devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtSvg module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtSvg PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/lang/py-qt5-qml/Makefile =================================================================== --- head/lang/py-qt5-qml/Makefile (revision 487596) +++ head/lang/py-qt5-qml/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= qml CATEGORIES= lang devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QML module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtQml PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run network_run USE_PYTHON= concurrent flavors py3kplist USE_QT= core declarative gui network 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/misc/py-qt4-doc/Makefile =================================================================== --- head/misc/py-qt4-doc/Makefile (revision 487596) +++ head/misc/py-qt4-doc/Makefile (revision 487597) @@ -1,37 +1,36 @@ # Created by: Danny Pansters # $FreeBSD$ PORTNAME= doc PORTVERSION= ${PYQT4_VERSION} +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= misc devel python MASTER_SITES= ${MASTER_SITES_PYQT4} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt4- DISTNAME= ${PYQT4_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, documentation DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2019-03-15 DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} NO_BUILD= yes USES= python pyqt:4 USE_PYQT= # -USE_PYTHON= flavors +USE_PYTHON= concurrent flavors py3kplist -DOCSDIR= ${PREFIX}/share/doc/py-qt4 - do-install: cd ${WRKSRC} &&\ - ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ + ${MKDIR} ${STAGEDIR}${PYQT_DOCDIR} &&\ ${INSTALL_DATA} LICENSE \ NEWS \ README \ THANKS\ - ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} + ${STAGEDIR}${PYQT_DOCDIR} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${PYQT_DOCDIR} .include Index: head/misc/py-qt4-doc/pkg-plist =================================================================== --- head/misc/py-qt4-doc/pkg-plist (revision 487596) +++ head/misc/py-qt4-doc/pkg-plist (revision 487597) @@ -1,1337 +1,1337 @@ -%%DOCSDIR%%/LICENSE -%%DOCSDIR%%/NEWS -%%DOCSDIR%%/README -%%DOCSDIR%%/THANKS -%%DOCSDIR%%/html/_sources/buffer_interface.rst.txt -%%DOCSDIR%%/html/_sources/build_system.rst.txt -%%DOCSDIR%%/html/_sources/dbus.rst.txt -%%DOCSDIR%%/html/_sources/deploy_commercial.rst.txt -%%DOCSDIR%%/html/_sources/designer.rst.txt -%%DOCSDIR%%/html/_sources/extension_api.rst.txt -%%DOCSDIR%%/html/_sources/gotchas.rst.txt -%%DOCSDIR%%/html/_sources/i18n.rst.txt -%%DOCSDIR%%/html/_sources/incompatibilities.rst.txt -%%DOCSDIR%%/html/_sources/incompatible_apis.rst.txt -%%DOCSDIR%%/html/_sources/index.rst.txt -%%DOCSDIR%%/html/_sources/installation.rst.txt -%%DOCSDIR%%/html/_sources/introduction.rst.txt -%%DOCSDIR%%/html/_sources/keyword_arguments.rst.txt -%%DOCSDIR%%/html/_sources/new_style_signals_slots.rst.txt -%%DOCSDIR%%/html/_sources/old_style_signals_slots.rst.txt -%%DOCSDIR%%/html/_sources/pickle.rst.txt -%%DOCSDIR%%/html/_sources/pyqt_qsettings.rst.txt -%%DOCSDIR%%/html/_sources/pyqt_qvariant.rst.txt -%%DOCSDIR%%/html/_sources/python_shell.rst.txt -%%DOCSDIR%%/html/_sources/python_v3.rst.txt -%%DOCSDIR%%/html/_sources/qml.rst.txt -%%DOCSDIR%%/html/_sources/qt_properties.rst.txt -%%DOCSDIR%%/html/_sources/qt_v5.rst.txt -%%DOCSDIR%%/html/_sources/resources.rst.txt -%%DOCSDIR%%/html/_sources/webkit.rst.txt -%%DOCSDIR%%/html/_static/ajax-loader.gif -%%DOCSDIR%%/html/_static/basic.css -%%DOCSDIR%%/html/_static/classic.css -%%DOCSDIR%%/html/_static/comment-bright.png -%%DOCSDIR%%/html/_static/comment-close.png -%%DOCSDIR%%/html/_static/comment.png -%%DOCSDIR%%/html/_static/doctools.js -%%DOCSDIR%%/html/_static/down-pressed.png -%%DOCSDIR%%/html/_static/down.png -%%DOCSDIR%%/html/_static/file.png -%%DOCSDIR%%/html/_static/jquery-3.1.0.js -%%DOCSDIR%%/html/_static/jquery.js -%%DOCSDIR%%/html/_static/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/assistant-manual.html -%%DOCSDIR%%/html/buffer_interface.html -%%DOCSDIR%%/html/build_system.html -%%DOCSDIR%%/html/classes.html -%%DOCSDIR%%/html/dbus.html -%%DOCSDIR%%/html/deploy_commercial.html -%%DOCSDIR%%/html/designer.html -%%DOCSDIR%%/html/extension_api.html -%%DOCSDIR%%/html/genindex.html -%%DOCSDIR%%/html/gotchas.html -%%DOCSDIR%%/html/i18n.html -%%DOCSDIR%%/html/images/alphafill.png -%%DOCSDIR%%/html/images/assistant-toolbar.png -%%DOCSDIR%%/html/images/bearings.png -%%DOCSDIR%%/html/images/brush-outline.png -%%DOCSDIR%%/html/images/brush-styles.png -%%DOCSDIR%%/html/images/buttonbox-gnomelayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-gnomelayout-vertical.png -%%DOCSDIR%%/html/images/buttonbox-kdelayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-kdelayout-vertical.png -%%DOCSDIR%%/html/images/buttonbox-mac-modeless-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-maclayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-maclayout-vertical.png -%%DOCSDIR%%/html/images/buttonbox-winlayout-horizontal.png -%%DOCSDIR%%/html/images/buttonbox-winlayout-vertical.png -%%DOCSDIR%%/html/images/cde-lcdnumber.png -%%DOCSDIR%%/html/images/checkboxes-exclusive.png -%%DOCSDIR%%/html/images/checkboxes-non-exclusive.png -%%DOCSDIR%%/html/images/cleanlooks-calendarwidget.png -%%DOCSDIR%%/html/images/cleanlooks-pushbutton-menu.png -%%DOCSDIR%%/html/images/conceptaudio.png -%%DOCSDIR%%/html/images/conceptvideo.png -%%DOCSDIR%%/html/images/containerextension-example.png -%%DOCSDIR%%/html/images/cursor-arrow.png -%%DOCSDIR%%/html/images/cursor-busy.png -%%DOCSDIR%%/html/images/cursor-closedhand.png -%%DOCSDIR%%/html/images/cursor-cross.png -%%DOCSDIR%%/html/images/cursor-forbidden.png -%%DOCSDIR%%/html/images/cursor-hand.png -%%DOCSDIR%%/html/images/cursor-hsplit.png -%%DOCSDIR%%/html/images/cursor-ibeam.png -%%DOCSDIR%%/html/images/cursor-openhand.png -%%DOCSDIR%%/html/images/cursor-sizeall.png -%%DOCSDIR%%/html/images/cursor-sizeb.png -%%DOCSDIR%%/html/images/cursor-sizef.png -%%DOCSDIR%%/html/images/cursor-sizeh.png -%%DOCSDIR%%/html/images/cursor-sizev.png -%%DOCSDIR%%/html/images/cursor-uparrow.png -%%DOCSDIR%%/html/images/cursor-vsplit.png -%%DOCSDIR%%/html/images/cursor-wait.png -%%DOCSDIR%%/html/images/cursor-whatsthis.png -%%DOCSDIR%%/html/images/effectwidget.png -%%DOCSDIR%%/html/images/filedialogurls.png -%%DOCSDIR%%/html/images/foreignkeys.png -%%DOCSDIR%%/html/images/frames.png -%%DOCSDIR%%/html/images/graphicseffect-blur.png -%%DOCSDIR%%/html/images/graphicseffect-colorize.png -%%DOCSDIR%%/html/images/graphicseffect-drop-shadow.png -%%DOCSDIR%%/html/images/graphicseffect-opacity.png -%%DOCSDIR%%/html/images/graphicseffect-plain.png -%%DOCSDIR%%/html/images/graphicseffect-widget.png -%%DOCSDIR%%/html/images/graphicsview-ellipseitem-pie.png -%%DOCSDIR%%/html/images/graphicsview-ellipseitem.png -%%DOCSDIR%%/html/images/graphicsview-items.png -%%DOCSDIR%%/html/images/graphicsview-lineitem.png -%%DOCSDIR%%/html/images/graphicsview-parentchild.png -%%DOCSDIR%%/html/images/graphicsview-pathitem.png -%%DOCSDIR%%/html/images/graphicsview-pixmapitem.png -%%DOCSDIR%%/html/images/graphicsview-polygonitem.png -%%DOCSDIR%%/html/images/graphicsview-rectitem.png -%%DOCSDIR%%/html/images/graphicsview-simpletextitem.png -%%DOCSDIR%%/html/images/graphicsview-textitem.png -%%DOCSDIR%%/html/images/graphicsview-view.png -%%DOCSDIR%%/html/images/graphicsview-zorder.png -%%DOCSDIR%%/html/images/gridlayout.png -%%DOCSDIR%%/html/images/hoverevents.png -%%DOCSDIR%%/html/images/httpstack.png -%%DOCSDIR%%/html/images/icon.png -%%DOCSDIR%%/html/images/imageprovider.png -%%DOCSDIR%%/html/images/inputdialogs.png -%%DOCSDIR%%/html/images/insertrowinmodelview.png -%%DOCSDIR%%/html/images/licensewizard-flow.png -%%DOCSDIR%%/html/images/macintosh-checkbox.png -%%DOCSDIR%%/html/images/macintosh-dateedit.png -%%DOCSDIR%%/html/images/macintosh-datetimeedit.png -%%DOCSDIR%%/html/images/macintosh-dial.png -%%DOCSDIR%%/html/images/macintosh-groupbox.png -%%DOCSDIR%%/html/images/macintosh-horizontalscrollbar.png -%%DOCSDIR%%/html/images/macintosh-label.png -%%DOCSDIR%%/html/images/macintosh-lcdnumber.png -%%DOCSDIR%%/html/images/macintosh-lineedit.png -%%DOCSDIR%%/html/images/macintosh-listview.png -%%DOCSDIR%%/html/images/macintosh-menu.png -%%DOCSDIR%%/html/images/macintosh-progressbar.png -%%DOCSDIR%%/html/images/macintosh-pushbutton.png -%%DOCSDIR%%/html/images/macintosh-radiobutton.png -%%DOCSDIR%%/html/images/macintosh-slider.png -%%DOCSDIR%%/html/images/macintosh-spinbox.png -%%DOCSDIR%%/html/images/macintosh-tableview.png -%%DOCSDIR%%/html/images/macintosh-tabwidget.png -%%DOCSDIR%%/html/images/macintosh-timeedit.png -%%DOCSDIR%%/html/images/macintosh-treeview.png -%%DOCSDIR%%/html/images/mainwindow-docks.png -%%DOCSDIR%%/html/images/mainwindowlayout.png -%%DOCSDIR%%/html/images/mdi-cascade.png -%%DOCSDIR%%/html/images/mdi-tile.png -%%DOCSDIR%%/html/images/modelindex-no-parent.png -%%DOCSDIR%%/html/images/modelview-begin-append-columns.png -%%DOCSDIR%%/html/images/modelview-begin-append-rows.png -%%DOCSDIR%%/html/images/modelview-begin-insert-columns.png -%%DOCSDIR%%/html/images/modelview-begin-insert-rows.png -%%DOCSDIR%%/html/images/modelview-begin-remove-columns.png -%%DOCSDIR%%/html/images/modelview-begin-remove-rows.png -%%DOCSDIR%%/html/images/modelview-move-rows-1.png -%%DOCSDIR%%/html/images/modelview-move-rows-2.png -%%DOCSDIR%%/html/images/modelview-move-rows-3.png -%%DOCSDIR%%/html/images/modelview-move-rows-4.png -%%DOCSDIR%%/html/images/motif-lcdnumber.png -%%DOCSDIR%%/html/images/motif-menubar.png -%%DOCSDIR%%/html/images/msgbox1.png -%%DOCSDIR%%/html/images/msgbox2.png -%%DOCSDIR%%/html/images/msgbox3.png -%%DOCSDIR%%/html/images/msgbox4.png -%%DOCSDIR%%/html/images/noforeignkeys.png -%%DOCSDIR%%/html/images/palette.png -%%DOCSDIR%%/html/images/pangesture.png -%%DOCSDIR%%/html/images/parent-child-widgets.png -%%DOCSDIR%%/html/images/patternist-wordProcessor.png -%%DOCSDIR%%/html/images/pinchgesture.png -%%DOCSDIR%%/html/images/plastique-checkbox.png -%%DOCSDIR%%/html/images/plastique-colordialog.png -%%DOCSDIR%%/html/images/plastique-dateedit.png -%%DOCSDIR%%/html/images/plastique-datetimeedit.png -%%DOCSDIR%%/html/images/plastique-dial.png -%%DOCSDIR%%/html/images/plastique-fontdialog.png -%%DOCSDIR%%/html/images/plastique-groupbox.png -%%DOCSDIR%%/html/images/plastique-horizontalscrollbar.png -%%DOCSDIR%%/html/images/plastique-label.png -%%DOCSDIR%%/html/images/plastique-lcdnumber.png -%%DOCSDIR%%/html/images/plastique-lineedit.png -%%DOCSDIR%%/html/images/plastique-listview.png -%%DOCSDIR%%/html/images/plastique-menu.png -%%DOCSDIR%%/html/images/plastique-menubar.png -%%DOCSDIR%%/html/images/plastique-printdialog-properties.png -%%DOCSDIR%%/html/images/plastique-printdialog.png -%%DOCSDIR%%/html/images/plastique-progressbar.png -%%DOCSDIR%%/html/images/plastique-progressdialog.png -%%DOCSDIR%%/html/images/plastique-pushbutton-menu.png -%%DOCSDIR%%/html/images/plastique-pushbutton.png -%%DOCSDIR%%/html/images/plastique-radiobutton.png -%%DOCSDIR%%/html/images/plastique-sizegrip.png -%%DOCSDIR%%/html/images/plastique-slider.png -%%DOCSDIR%%/html/images/plastique-spinbox.png -%%DOCSDIR%%/html/images/plastique-statusbar.png -%%DOCSDIR%%/html/images/plastique-tabbar-truncated.png -%%DOCSDIR%%/html/images/plastique-tabbar.png -%%DOCSDIR%%/html/images/plastique-tableview.png -%%DOCSDIR%%/html/images/plastique-tabwidget.png -%%DOCSDIR%%/html/images/plastique-timeedit.png -%%DOCSDIR%%/html/images/plastique-treeview.png -%%DOCSDIR%%/html/images/propagation-custom.png -%%DOCSDIR%%/html/images/propagation-standard.png -%%DOCSDIR%%/html/images/qactiongroup-align.png -%%DOCSDIR%%/html/images/qcalendarwidget-grid.png -%%DOCSDIR%%/html/images/qcolor-cmyk.png -%%DOCSDIR%%/html/images/qcolor-hsv.png -%%DOCSDIR%%/html/images/qcolor-hue.png -%%DOCSDIR%%/html/images/qcolor-rgb.png -%%DOCSDIR%%/html/images/qcolor-saturation.png -%%DOCSDIR%%/html/images/qcolor-value.png -%%DOCSDIR%%/html/images/qcolumnview.png -%%DOCSDIR%%/html/images/qconicalgradient.png -%%DOCSDIR%%/html/images/qdesktopwidget.png -%%DOCSDIR%%/html/images/qeasingcurve-inback.png -%%DOCSDIR%%/html/images/qeasingcurve-inbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-incirc.png -%%DOCSDIR%%/html/images/qeasingcurve-incubic.png -%%DOCSDIR%%/html/images/qeasingcurve-inelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-inexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutback.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutcirc.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutcubic.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutquad.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutquart.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutquint.png -%%DOCSDIR%%/html/images/qeasingcurve-inoutsine.png -%%DOCSDIR%%/html/images/qeasingcurve-inquad.png -%%DOCSDIR%%/html/images/qeasingcurve-inquart.png -%%DOCSDIR%%/html/images/qeasingcurve-inquint.png -%%DOCSDIR%%/html/images/qeasingcurve-insine.png -%%DOCSDIR%%/html/images/qeasingcurve-linear.png -%%DOCSDIR%%/html/images/qeasingcurve-outback.png -%%DOCSDIR%%/html/images/qeasingcurve-outbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-outcirc.png -%%DOCSDIR%%/html/images/qeasingcurve-outcubic.png -%%DOCSDIR%%/html/images/qeasingcurve-outelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-outexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-outinback.png -%%DOCSDIR%%/html/images/qeasingcurve-outinbounce.png -%%DOCSDIR%%/html/images/qeasingcurve-outincirc.png -%%DOCSDIR%%/html/images/qeasingcurve-outincubic.png -%%DOCSDIR%%/html/images/qeasingcurve-outinelastic.png -%%DOCSDIR%%/html/images/qeasingcurve-outinexpo.png -%%DOCSDIR%%/html/images/qeasingcurve-outinquad.png -%%DOCSDIR%%/html/images/qeasingcurve-outinquart.png -%%DOCSDIR%%/html/images/qeasingcurve-outinquint.png -%%DOCSDIR%%/html/images/qeasingcurve-outinsine.png -%%DOCSDIR%%/html/images/qeasingcurve-outquad.png -%%DOCSDIR%%/html/images/qeasingcurve-outquart.png -%%DOCSDIR%%/html/images/qeasingcurve-outquint.png -%%DOCSDIR%%/html/images/qeasingcurve-outsine.png -%%DOCSDIR%%/html/images/qerrormessage.png -%%DOCSDIR%%/html/images/qformlayout-kde.png -%%DOCSDIR%%/html/images/qformlayout-mac.png -%%DOCSDIR%%/html/images/qformlayout-qpe.png -%%DOCSDIR%%/html/images/qformlayout-win.png -%%DOCSDIR%%/html/images/qgradient-conical.png -%%DOCSDIR%%/html/images/qgradient-linear.png -%%DOCSDIR%%/html/images/qgradient-radial.png -%%DOCSDIR%%/html/images/qgraphicsproxywidget-embed.png -%%DOCSDIR%%/html/images/qhboxlayout-with-5-children.png -%%DOCSDIR%%/html/images/qimage-32bit_scaled.png -%%DOCSDIR%%/html/images/qimage-8bit_scaled.png -%%DOCSDIR%%/html/images/qimage-scaling.png -%%DOCSDIR%%/html/images/qline-coordinates.png -%%DOCSDIR%%/html/images/qline-point.png -%%DOCSDIR%%/html/images/qlineargradient-pad.png -%%DOCSDIR%%/html/images/qlineargradient-reflect.png -%%DOCSDIR%%/html/images/qlineargradient-repeat.png -%%DOCSDIR%%/html/images/qlinef-bounded.png -%%DOCSDIR%%/html/images/qlinef-normalvector.png -%%DOCSDIR%%/html/images/qlinef-unbounded.png -%%DOCSDIR%%/html/images/qmatrix-combinedtransformation.png -%%DOCSDIR%%/html/images/qmatrix-representation.png -%%DOCSDIR%%/html/images/qmatrix-simpletransformation.png -%%DOCSDIR%%/html/images/qmdisubwindowlayout.png -%%DOCSDIR%%/html/images/qmessagebox-crit.png -%%DOCSDIR%%/html/images/qmessagebox-info.png -%%DOCSDIR%%/html/images/qmessagebox-quest.png -%%DOCSDIR%%/html/images/qmessagebox-warn.png -%%DOCSDIR%%/html/images/qpainter-affinetransformations.png -%%DOCSDIR%%/html/images/qpainter-arc.png -%%DOCSDIR%%/html/images/qpainter-basicdrawing.png -%%DOCSDIR%%/html/images/qpainter-chord.png -%%DOCSDIR%%/html/images/qpainter-clock.png -%%DOCSDIR%%/html/images/qpainter-compositiondemo.png -%%DOCSDIR%%/html/images/qpainter-compositionmode1.png -%%DOCSDIR%%/html/images/qpainter-compositionmode2.png -%%DOCSDIR%%/html/images/qpainter-concentriccircles.png -%%DOCSDIR%%/html/images/qpainter-ellipse.png -%%DOCSDIR%%/html/images/qpainter-gradients.png -%%DOCSDIR%%/html/images/qpainter-line.png -%%DOCSDIR%%/html/images/qpainter-painterpaths.png -%%DOCSDIR%%/html/images/qpainter-path.png -%%DOCSDIR%%/html/images/qpainter-pathstroking.png -%%DOCSDIR%%/html/images/qpainter-pie.png -%%DOCSDIR%%/html/images/qpainter-polygon.png -%%DOCSDIR%%/html/images/qpainter-rectangle.png -%%DOCSDIR%%/html/images/qpainter-rotation.png -%%DOCSDIR%%/html/images/qpainter-roundrect.png -%%DOCSDIR%%/html/images/qpainter-scale.png -%%DOCSDIR%%/html/images/qpainter-translation.png -%%DOCSDIR%%/html/images/qpainter-vectordeformation.png -%%DOCSDIR%%/html/images/qpainterpath-addellipse.png -%%DOCSDIR%%/html/images/qpainterpath-addpolygon.png -%%DOCSDIR%%/html/images/qpainterpath-addrectangle.png -%%DOCSDIR%%/html/images/qpainterpath-addtext.png -%%DOCSDIR%%/html/images/qpainterpath-arcto.png -%%DOCSDIR%%/html/images/qpainterpath-construction.png -%%DOCSDIR%%/html/images/qpainterpath-cubicto.png -%%DOCSDIR%%/html/images/qpainterpath-demo.png -%%DOCSDIR%%/html/images/qpainterpath-example.png -%%DOCSDIR%%/html/images/qpen-bevel.png -%%DOCSDIR%%/html/images/qpen-custom.png -%%DOCSDIR%%/html/images/qpen-dash.png -%%DOCSDIR%%/html/images/qpen-dashdot.png -%%DOCSDIR%%/html/images/qpen-dashdotdot.png -%%DOCSDIR%%/html/images/qpen-dashpattern.png -%%DOCSDIR%%/html/images/qpen-demo.png -%%DOCSDIR%%/html/images/qpen-dot.png -%%DOCSDIR%%/html/images/qpen-flat.png -%%DOCSDIR%%/html/images/qpen-miter.png -%%DOCSDIR%%/html/images/qpen-miterlimit.png -%%DOCSDIR%%/html/images/qpen-roundcap.png -%%DOCSDIR%%/html/images/qpen-roundjoin.png -%%DOCSDIR%%/html/images/qpen-solid.png -%%DOCSDIR%%/html/images/qpen-square.png -%%DOCSDIR%%/html/images/qradialgradient-pad.png -%%DOCSDIR%%/html/images/qradialgradient-reflect.png -%%DOCSDIR%%/html/images/qradialgradient-repeat.png -%%DOCSDIR%%/html/images/qrect-coordinates.png -%%DOCSDIR%%/html/images/qrect-diagram-one.png -%%DOCSDIR%%/html/images/qrect-diagram-three.png -%%DOCSDIR%%/html/images/qrect-diagram-two.png -%%DOCSDIR%%/html/images/qrect-diagram-zero.png -%%DOCSDIR%%/html/images/qrect-intersect.png -%%DOCSDIR%%/html/images/qrect-unite.png -%%DOCSDIR%%/html/images/qrectf-coordinates.png -%%DOCSDIR%%/html/images/qrectf-diagram-one.png -%%DOCSDIR%%/html/images/qrectf-diagram-three.png -%%DOCSDIR%%/html/images/qrectf-diagram-two.png -%%DOCSDIR%%/html/images/qscrollarea-noscrollbars.png -%%DOCSDIR%%/html/images/qscrollarea-onescrollbar.png -%%DOCSDIR%%/html/images/qscrollarea-twoscrollbars.png -%%DOCSDIR%%/html/images/qscrollbar-picture.png -%%DOCSDIR%%/html/images/qscrollbar-values.png -%%DOCSDIR%%/html/images/qsortfilterproxymodel-sorting.png -%%DOCSDIR%%/html/images/qspinbox-plusminus.png -%%DOCSDIR%%/html/images/qspinbox-updown.png -%%DOCSDIR%%/html/images/qstatustipevent-action.png -%%DOCSDIR%%/html/images/qstatustipevent-widget.png -%%DOCSDIR%%/html/images/qstyle-comboboxes.png -%%DOCSDIR%%/html/images/qstyleoptiontoolbar-position.png -%%DOCSDIR%%/html/images/qt-colors.png -%%DOCSDIR%%/html/images/qt-fillrule-oddeven.png -%%DOCSDIR%%/html/images/qt-fillrule-winding.png -%%DOCSDIR%%/html/images/qtabletevent-tilt.png -%%DOCSDIR%%/html/images/qtableview-resized.png -%%DOCSDIR%%/html/images/qtextblock-sequence.png -%%DOCSDIR%%/html/images/qtextfragment-split.png -%%DOCSDIR%%/html/images/qtextframe-style.png -%%DOCSDIR%%/html/images/qtexttableformat-cell.png -%%DOCSDIR%%/html/images/qtransform-combinedtransformation.png -%%DOCSDIR%%/html/images/qtransform-combinedtransformation2.png -%%DOCSDIR%%/html/images/qtransform-representation.png -%%DOCSDIR%%/html/images/qtransform-simpletransformation.png -%%DOCSDIR%%/html/images/qtwizard-aero1.png -%%DOCSDIR%%/html/images/qtwizard-aero2.png -%%DOCSDIR%%/html/images/qtwizard-classic1.png -%%DOCSDIR%%/html/images/qtwizard-classic2.png -%%DOCSDIR%%/html/images/qtwizard-mac1.png -%%DOCSDIR%%/html/images/qtwizard-mac2.png -%%DOCSDIR%%/html/images/qtwizard-macpage.png -%%DOCSDIR%%/html/images/qtwizard-modern1.png -%%DOCSDIR%%/html/images/qtwizard-modern2.png -%%DOCSDIR%%/html/images/qtwizard-nonmacpage.png -%%DOCSDIR%%/html/images/qundoview.png -%%DOCSDIR%%/html/images/qurl-authority.png -%%DOCSDIR%%/html/images/qurl-authority2.png -%%DOCSDIR%%/html/images/qurl-authority3.png -%%DOCSDIR%%/html/images/qurl-fragment.png -%%DOCSDIR%%/html/images/qurl-ftppath.png -%%DOCSDIR%%/html/images/qurl-mailtopath.png -%%DOCSDIR%%/html/images/qurl-querystring.png -%%DOCSDIR%%/html/images/qvboxlayout-with-5-children.png -%%DOCSDIR%%/html/images/qwebview-diagram.png -%%DOCSDIR%%/html/images/rb-logo.png -%%DOCSDIR%%/html/images/relationaltable.png -%%DOCSDIR%%/html/images/rintersect.png -%%DOCSDIR%%/html/images/roaming-states.png -%%DOCSDIR%%/html/images/rsubtract.png -%%DOCSDIR%%/html/images/runion.png -%%DOCSDIR%%/html/images/rxor.png -%%DOCSDIR%%/html/images/simpleanchorlayout-example.png -%%DOCSDIR%%/html/images/swipegesture.png -%%DOCSDIR%%/html/images/system-tray.png -%%DOCSDIR%%/html/images/taskmenuextension-example-faded.png -%%DOCSDIR%%/html/images/tcpstream.png -%%DOCSDIR%%/html/images/texttable-merge.png -%%DOCSDIR%%/html/images/texttable-split.png -%%DOCSDIR%%/html/images/udppackets.png -%%DOCSDIR%%/html/images/whatsthis.png -%%DOCSDIR%%/html/images/widgetdelegate.png -%%DOCSDIR%%/html/images/windows-checkbox.png -%%DOCSDIR%%/html/images/windows-lcdnumber.png -%%DOCSDIR%%/html/images/windows-lineedit.png -%%DOCSDIR%%/html/images/windows-radiobutton.png -%%DOCSDIR%%/html/images/windows-slider.png -%%DOCSDIR%%/html/images/windowsxp-dateedit.png -%%DOCSDIR%%/html/images/windowsxp-datetimeedit.png -%%DOCSDIR%%/html/images/windowsxp-dial.png -%%DOCSDIR%%/html/images/windowsxp-fontcombobox.png -%%DOCSDIR%%/html/images/windowsxp-groupbox.png -%%DOCSDIR%%/html/images/windowsxp-horizontalscrollbar.png -%%DOCSDIR%%/html/images/windowsxp-label.png -%%DOCSDIR%%/html/images/windowsxp-lcdnumber.png -%%DOCSDIR%%/html/images/windowsxp-listview.png -%%DOCSDIR%%/html/images/windowsxp-menu.png -%%DOCSDIR%%/html/images/windowsxp-progressbar.png -%%DOCSDIR%%/html/images/windowsxp-pushbutton.png -%%DOCSDIR%%/html/images/windowsxp-spinbox.png -%%DOCSDIR%%/html/images/windowsxp-tableview.png -%%DOCSDIR%%/html/images/windowsxp-tabwidget.png -%%DOCSDIR%%/html/images/windowsxp-timeedit.png -%%DOCSDIR%%/html/images/windowsxp-treeview.png -%%DOCSDIR%%/html/incompatibilities.html -%%DOCSDIR%%/html/incompatible_apis.html -%%DOCSDIR%%/html/index.html -%%DOCSDIR%%/html/installation.html -%%DOCSDIR%%/html/introduction.html -%%DOCSDIR%%/html/keyword_arguments.html -%%DOCSDIR%%/html/modules.html -%%DOCSDIR%%/html/new_style_signals_slots.html -%%DOCSDIR%%/html/objects.inv -%%DOCSDIR%%/html/old_style_signals_slots.html -%%DOCSDIR%%/html/phonon-abstractaudiooutput.html -%%DOCSDIR%%/html/phonon-abstractvideooutput.html -%%DOCSDIR%%/html/phonon-audiocapturedevice.html -%%DOCSDIR%%/html/phonon-audiochanneldescription.html -%%DOCSDIR%%/html/phonon-audiooutput.html -%%DOCSDIR%%/html/phonon-audiooutputdevice.html -%%DOCSDIR%%/html/phonon-audiooutputdevicemodel.html -%%DOCSDIR%%/html/phonon-backendcapabilities-notifier.html -%%DOCSDIR%%/html/phonon-backendcapabilities.html -%%DOCSDIR%%/html/phonon-effect.html -%%DOCSDIR%%/html/phonon-effectdescription.html -%%DOCSDIR%%/html/phonon-effectdescriptionmodel.html -%%DOCSDIR%%/html/phonon-effectparameter-hints.html -%%DOCSDIR%%/html/phonon-effectparameter.html -%%DOCSDIR%%/html/phonon-effectwidget.html -%%DOCSDIR%%/html/phonon-mediacontroller-features.html -%%DOCSDIR%%/html/phonon-mediacontroller.html -%%DOCSDIR%%/html/phonon-medianode.html -%%DOCSDIR%%/html/phonon-mediaobject.html -%%DOCSDIR%%/html/phonon-mediasource.html -%%DOCSDIR%%/html/phonon-module.html -%%DOCSDIR%%/html/phonon-path.html -%%DOCSDIR%%/html/phonon-seekslider.html -%%DOCSDIR%%/html/phonon-subtitledescription.html -%%DOCSDIR%%/html/phonon-videoplayer.html -%%DOCSDIR%%/html/phonon-videowidget.html -%%DOCSDIR%%/html/phonon-volumeslider.html -%%DOCSDIR%%/html/phonon.html -%%DOCSDIR%%/html/pickle.html -%%DOCSDIR%%/html/py-modindex.html -%%DOCSDIR%%/html/pyqt_qsettings.html -%%DOCSDIR%%/html/pyqt_qvariant.html -%%DOCSDIR%%/html/python_shell.html -%%DOCSDIR%%/html/python_v3.html -%%DOCSDIR%%/html/qabstractanimation.html -%%DOCSDIR%%/html/qabstractbutton.html -%%DOCSDIR%%/html/qabstracteventdispatcher.html -%%DOCSDIR%%/html/qabstractextensionfactory.html -%%DOCSDIR%%/html/qabstractextensionmanager.html -%%DOCSDIR%%/html/qabstractfileengine-fileflags.html -%%DOCSDIR%%/html/qabstractfileengine.html -%%DOCSDIR%%/html/qabstractfileenginehandler.html -%%DOCSDIR%%/html/qabstractfileengineiterator.html -%%DOCSDIR%%/html/qabstractformbuilder.html -%%DOCSDIR%%/html/qabstractgraphicsshapeitem.html -%%DOCSDIR%%/html/qabstractitemdelegate.html -%%DOCSDIR%%/html/qabstractitemmodel.html -%%DOCSDIR%%/html/qabstractitemview-edittriggers.html -%%DOCSDIR%%/html/qabstractitemview.html -%%DOCSDIR%%/html/qabstractlistmodel.html -%%DOCSDIR%%/html/qabstractmessagehandler.html -%%DOCSDIR%%/html/qabstractnetworkcache.html -%%DOCSDIR%%/html/qabstractprintdialog-printdialogoptions.html -%%DOCSDIR%%/html/qabstractprintdialog.html -%%DOCSDIR%%/html/qabstractproxymodel.html -%%DOCSDIR%%/html/qabstractscrollarea.html -%%DOCSDIR%%/html/qabstractslider.html -%%DOCSDIR%%/html/qabstractsocket.html -%%DOCSDIR%%/html/qabstractspinbox-stepenabled.html -%%DOCSDIR%%/html/qabstractspinbox.html -%%DOCSDIR%%/html/qabstractstate.html -%%DOCSDIR%%/html/qabstracttablemodel.html -%%DOCSDIR%%/html/qabstracttextdocumentlayout-paintcontext.html -%%DOCSDIR%%/html/qabstracttextdocumentlayout-selection.html -%%DOCSDIR%%/html/qabstracttextdocumentlayout.html -%%DOCSDIR%%/html/qabstracttransition.html -%%DOCSDIR%%/html/qabstracturiresolver.html -%%DOCSDIR%%/html/qabstractvideobuffer.html -%%DOCSDIR%%/html/qabstractvideosurface.html -%%DOCSDIR%%/html/qabstractxmlnodemodel.html -%%DOCSDIR%%/html/qabstractxmlreceiver.html -%%DOCSDIR%%/html/qaction.html -%%DOCSDIR%%/html/qactionevent.html -%%DOCSDIR%%/html/qactiongroup.html -%%DOCSDIR%%/html/qanimationgroup.html -%%DOCSDIR%%/html/qapplication.html -%%DOCSDIR%%/html/qassistantclient.html -%%DOCSDIR%%/html/qaudio.html -%%DOCSDIR%%/html/qaudiodeviceinfo.html -%%DOCSDIR%%/html/qaudioformat.html -%%DOCSDIR%%/html/qaudioinput.html -%%DOCSDIR%%/html/qaudiooutput.html -%%DOCSDIR%%/html/qauthenticator.html -%%DOCSDIR%%/html/qaxcontainer.html -%%DOCSDIR%%/html/qbasictimer.html -%%DOCSDIR%%/html/qbitarray.html -%%DOCSDIR%%/html/qbitmap.html -%%DOCSDIR%%/html/qboxlayout.html -%%DOCSDIR%%/html/qbrush.html -%%DOCSDIR%%/html/qbuffer.html -%%DOCSDIR%%/html/qbuttongroup.html -%%DOCSDIR%%/html/qbytearray.html -%%DOCSDIR%%/html/qbytearraymatcher.html -%%DOCSDIR%%/html/qcalendarwidget.html -%%DOCSDIR%%/html/qchar.html -%%DOCSDIR%%/html/qcheckbox.html -%%DOCSDIR%%/html/qchildevent.html -%%DOCSDIR%%/html/qclipboard.html -%%DOCSDIR%%/html/qcloseevent.html -%%DOCSDIR%%/html/qcolor.html -%%DOCSDIR%%/html/qcolordialog-colordialogoptions.html -%%DOCSDIR%%/html/qcolordialog.html -%%DOCSDIR%%/html/qcolumnview.html -%%DOCSDIR%%/html/qcombobox.html -%%DOCSDIR%%/html/qcommandlinkbutton.html -%%DOCSDIR%%/html/qcommonstyle.html -%%DOCSDIR%%/html/qcompleter.html -%%DOCSDIR%%/html/qconicalgradient.html -%%DOCSDIR%%/html/qcontextmenuevent.html -%%DOCSDIR%%/html/qcoreapplication.html -%%DOCSDIR%%/html/qcryptographichash.html -%%DOCSDIR%%/html/qcursor.html -%%DOCSDIR%%/html/qdatastream.html -%%DOCSDIR%%/html/qdatawidgetmapper.html -%%DOCSDIR%%/html/qdate.html -%%DOCSDIR%%/html/qdateedit.html -%%DOCSDIR%%/html/qdatetime.html -%%DOCSDIR%%/html/qdatetimeedit-sections.html -%%DOCSDIR%%/html/qdatetimeedit.html -%%DOCSDIR%%/html/qdbus.html -%%DOCSDIR%%/html/qdbusabstractadaptor.html -%%DOCSDIR%%/html/qdbusabstractinterface.html -%%DOCSDIR%%/html/qdbusargument.html -%%DOCSDIR%%/html/qdbusconnection-connectioncapabilities.html -%%DOCSDIR%%/html/qdbusconnection-registeroptions.html -%%DOCSDIR%%/html/qdbusconnection.html -%%DOCSDIR%%/html/qdbusconnectioninterface.html -%%DOCSDIR%%/html/qdbuserror.html -%%DOCSDIR%%/html/qdbusinterface.html -%%DOCSDIR%%/html/qdbusmessage.html -%%DOCSDIR%%/html/qdbusobjectpath.html -%%DOCSDIR%%/html/qdbuspendingcall.html -%%DOCSDIR%%/html/qdbuspendingcallwatcher.html -%%DOCSDIR%%/html/qdbuspendingreply.html -%%DOCSDIR%%/html/qdbusreply.html -%%DOCSDIR%%/html/qdbusservicewatcher-watchmode.html -%%DOCSDIR%%/html/qdbusservicewatcher.html -%%DOCSDIR%%/html/qdbussignature.html -%%DOCSDIR%%/html/qdbusunixfiledescriptor.html -%%DOCSDIR%%/html/qdbusvariant.html -%%DOCSDIR%%/html/qdeclarativecomponent.html -%%DOCSDIR%%/html/qdeclarativecontext.html -%%DOCSDIR%%/html/qdeclarativeengine.html -%%DOCSDIR%%/html/qdeclarativeerror.html -%%DOCSDIR%%/html/qdeclarativeexpression.html -%%DOCSDIR%%/html/qdeclarativeextensionplugin.html -%%DOCSDIR%%/html/qdeclarativeimageprovider.html -%%DOCSDIR%%/html/qdeclarativeitem.html -%%DOCSDIR%%/html/qdeclarativelistreference.html -%%DOCSDIR%%/html/qdeclarativenetworkaccessmanagerfactory.html -%%DOCSDIR%%/html/qdeclarativeparserstatus.html -%%DOCSDIR%%/html/qdeclarativeproperty.html -%%DOCSDIR%%/html/qdeclarativepropertymap.html -%%DOCSDIR%%/html/qdeclarativepropertyvaluesource.html -%%DOCSDIR%%/html/qdeclarativescriptstring.html -%%DOCSDIR%%/html/qdeclarativeview.html -%%DOCSDIR%%/html/qdesigneractioneditorinterface.html -%%DOCSDIR%%/html/qdesignercontainerextension.html -%%DOCSDIR%%/html/qdesignercustomwidgetcollectioninterface.html -%%DOCSDIR%%/html/qdesignercustomwidgetinterface.html -%%DOCSDIR%%/html/qdesignerformeditorinterface.html -%%DOCSDIR%%/html/qdesignerformwindowcursorinterface.html -%%DOCSDIR%%/html/qdesignerformwindowinterface-feature.html -%%DOCSDIR%%/html/qdesignerformwindowinterface.html -%%DOCSDIR%%/html/qdesignerformwindowmanagerinterface.html -%%DOCSDIR%%/html/qdesignermembersheetextension.html -%%DOCSDIR%%/html/qdesignerobjectinspectorinterface.html -%%DOCSDIR%%/html/qdesignerpropertyeditorinterface.html -%%DOCSDIR%%/html/qdesignerpropertysheetextension.html -%%DOCSDIR%%/html/qdesignertaskmenuextension.html -%%DOCSDIR%%/html/qdesignerwidgetboxinterface.html -%%DOCSDIR%%/html/qdesktopservices.html -%%DOCSDIR%%/html/qdesktopwidget.html -%%DOCSDIR%%/html/qdial.html -%%DOCSDIR%%/html/qdialog.html -%%DOCSDIR%%/html/qdialogbuttonbox-standardbuttons.html -%%DOCSDIR%%/html/qdialogbuttonbox.html -%%DOCSDIR%%/html/qdir-filters.html -%%DOCSDIR%%/html/qdir-sortflags.html -%%DOCSDIR%%/html/qdir.html -%%DOCSDIR%%/html/qdiriterator-iteratorflags.html -%%DOCSDIR%%/html/qdiriterator.html -%%DOCSDIR%%/html/qdirmodel.html -%%DOCSDIR%%/html/qdockwidget-dockwidgetfeatures.html -%%DOCSDIR%%/html/qdockwidget.html -%%DOCSDIR%%/html/qdomattr.html -%%DOCSDIR%%/html/qdomcdatasection.html -%%DOCSDIR%%/html/qdomcharacterdata.html -%%DOCSDIR%%/html/qdomcomment.html -%%DOCSDIR%%/html/qdomdocument.html -%%DOCSDIR%%/html/qdomdocumentfragment.html -%%DOCSDIR%%/html/qdomdocumenttype.html -%%DOCSDIR%%/html/qdomelement.html -%%DOCSDIR%%/html/qdomentity.html -%%DOCSDIR%%/html/qdomentityreference.html -%%DOCSDIR%%/html/qdomimplementation.html -%%DOCSDIR%%/html/qdomnamednodemap.html -%%DOCSDIR%%/html/qdomnode.html -%%DOCSDIR%%/html/qdomnodelist.html -%%DOCSDIR%%/html/qdomnotation.html -%%DOCSDIR%%/html/qdomprocessinginstruction.html -%%DOCSDIR%%/html/qdomtext.html -%%DOCSDIR%%/html/qdoublespinbox.html -%%DOCSDIR%%/html/qdoublevalidator.html -%%DOCSDIR%%/html/qdrag.html -%%DOCSDIR%%/html/qdragenterevent.html -%%DOCSDIR%%/html/qdragleaveevent.html -%%DOCSDIR%%/html/qdragmoveevent.html -%%DOCSDIR%%/html/qdropevent.html -%%DOCSDIR%%/html/qdynamicpropertychangeevent.html -%%DOCSDIR%%/html/qeasingcurve.html -%%DOCSDIR%%/html/qelapsedtimer.html -%%DOCSDIR%%/html/qerrormessage.html -%%DOCSDIR%%/html/qevent.html -%%DOCSDIR%%/html/qeventloop-processeventsflags.html -%%DOCSDIR%%/html/qeventloop.html -%%DOCSDIR%%/html/qeventtransition.html -%%DOCSDIR%%/html/qextensionfactory.html -%%DOCSDIR%%/html/qextensionmanager.html -%%DOCSDIR%%/html/qfile-filehandleflags.html -%%DOCSDIR%%/html/qfile-permissions.html -%%DOCSDIR%%/html/qfile.html -%%DOCSDIR%%/html/qfiledialog-options.html -%%DOCSDIR%%/html/qfiledialog.html -%%DOCSDIR%%/html/qfileiconprovider.html -%%DOCSDIR%%/html/qfileinfo.html -%%DOCSDIR%%/html/qfileopenevent.html -%%DOCSDIR%%/html/qfilesystemmodel.html -%%DOCSDIR%%/html/qfilesystemwatcher.html -%%DOCSDIR%%/html/qfinalstate.html -%%DOCSDIR%%/html/qfocusevent.html -%%DOCSDIR%%/html/qfocusframe.html -%%DOCSDIR%%/html/qfont.html -%%DOCSDIR%%/html/qfontcombobox-fontfilters.html -%%DOCSDIR%%/html/qfontcombobox.html -%%DOCSDIR%%/html/qfontdatabase.html -%%DOCSDIR%%/html/qfontdialog-fontdialogoptions.html -%%DOCSDIR%%/html/qfontdialog.html -%%DOCSDIR%%/html/qfontinfo.html -%%DOCSDIR%%/html/qfontmetrics.html -%%DOCSDIR%%/html/qfontmetricsf.html -%%DOCSDIR%%/html/qformbuilder.html -%%DOCSDIR%%/html/qformlayout.html -%%DOCSDIR%%/html/qframe.html -%%DOCSDIR%%/html/qfsfileengine.html -%%DOCSDIR%%/html/qftp.html -%%DOCSDIR%%/html/qgenericargument.html -%%DOCSDIR%%/html/qgenericreturnargument.html -%%DOCSDIR%%/html/qgesture.html -%%DOCSDIR%%/html/qgestureevent.html -%%DOCSDIR%%/html/qgesturerecognizer-result.html -%%DOCSDIR%%/html/qgesturerecognizer.html -%%DOCSDIR%%/html/qgl-formatoptions.html -%%DOCSDIR%%/html/qgl.html -%%DOCSDIR%%/html/qglbuffer.html -%%DOCSDIR%%/html/qglcolormap.html -%%DOCSDIR%%/html/qglcontext-bindoptions.html -%%DOCSDIR%%/html/qglcontext.html -%%DOCSDIR%%/html/qglformat-openglversionflags.html -%%DOCSDIR%%/html/qglformat.html -%%DOCSDIR%%/html/qglframebufferobject.html -%%DOCSDIR%%/html/qglframebufferobjectformat.html -%%DOCSDIR%%/html/qglpixelbuffer.html -%%DOCSDIR%%/html/qglshader-shadertype.html -%%DOCSDIR%%/html/qglshader.html -%%DOCSDIR%%/html/qglshaderprogram.html -%%DOCSDIR%%/html/qglwidget.html -%%DOCSDIR%%/html/qglyphrun.html -%%DOCSDIR%%/html/qgradient.html -%%DOCSDIR%%/html/qgraphicsanchor.html -%%DOCSDIR%%/html/qgraphicsanchorlayout.html -%%DOCSDIR%%/html/qgraphicsblureffect-blurhints.html -%%DOCSDIR%%/html/qgraphicsblureffect.html -%%DOCSDIR%%/html/qgraphicscolorizeeffect.html -%%DOCSDIR%%/html/qgraphicsdropshadoweffect.html -%%DOCSDIR%%/html/qgraphicseffect-changeflags.html -%%DOCSDIR%%/html/qgraphicseffect.html -%%DOCSDIR%%/html/qgraphicsellipseitem.html -%%DOCSDIR%%/html/qgraphicsgridlayout.html -%%DOCSDIR%%/html/qgraphicsitem-graphicsitemflags.html -%%DOCSDIR%%/html/qgraphicsitem.html -%%DOCSDIR%%/html/qgraphicsitemanimation.html -%%DOCSDIR%%/html/qgraphicsitemgroup.html -%%DOCSDIR%%/html/qgraphicslayout.html -%%DOCSDIR%%/html/qgraphicslayoutitem.html -%%DOCSDIR%%/html/qgraphicslinearlayout.html -%%DOCSDIR%%/html/qgraphicslineitem.html -%%DOCSDIR%%/html/qgraphicsobject.html -%%DOCSDIR%%/html/qgraphicsopacityeffect.html -%%DOCSDIR%%/html/qgraphicspathitem.html -%%DOCSDIR%%/html/qgraphicspixmapitem.html -%%DOCSDIR%%/html/qgraphicspolygonitem.html -%%DOCSDIR%%/html/qgraphicsproxywidget.html -%%DOCSDIR%%/html/qgraphicsrectitem.html -%%DOCSDIR%%/html/qgraphicsrotation.html -%%DOCSDIR%%/html/qgraphicsscale.html -%%DOCSDIR%%/html/qgraphicsscene-scenelayers.html -%%DOCSDIR%%/html/qgraphicsscene.html -%%DOCSDIR%%/html/qgraphicsscenecontextmenuevent.html -%%DOCSDIR%%/html/qgraphicsscenedragdropevent.html -%%DOCSDIR%%/html/qgraphicssceneevent.html -%%DOCSDIR%%/html/qgraphicsscenehelpevent.html -%%DOCSDIR%%/html/qgraphicsscenehoverevent.html -%%DOCSDIR%%/html/qgraphicsscenemouseevent.html -%%DOCSDIR%%/html/qgraphicsscenemoveevent.html -%%DOCSDIR%%/html/qgraphicssceneresizeevent.html -%%DOCSDIR%%/html/qgraphicsscenewheelevent.html -%%DOCSDIR%%/html/qgraphicssimpletextitem.html -%%DOCSDIR%%/html/qgraphicssvgitem.html -%%DOCSDIR%%/html/qgraphicstextitem.html -%%DOCSDIR%%/html/qgraphicstransform.html -%%DOCSDIR%%/html/qgraphicsview-cachemode.html -%%DOCSDIR%%/html/qgraphicsview-optimizationflags.html -%%DOCSDIR%%/html/qgraphicsview.html -%%DOCSDIR%%/html/qgraphicswebview.html -%%DOCSDIR%%/html/qgraphicswidget.html -%%DOCSDIR%%/html/qgridlayout.html -%%DOCSDIR%%/html/qgroupbox.html -%%DOCSDIR%%/html/qhboxlayout.html -%%DOCSDIR%%/html/qheaderview.html -%%DOCSDIR%%/html/qhelpcontentitem.html -%%DOCSDIR%%/html/qhelpcontentmodel.html -%%DOCSDIR%%/html/qhelpcontentwidget.html -%%DOCSDIR%%/html/qhelpengine.html -%%DOCSDIR%%/html/qhelpenginecore.html -%%DOCSDIR%%/html/qhelpevent.html -%%DOCSDIR%%/html/qhelpindexmodel.html -%%DOCSDIR%%/html/qhelpindexwidget.html -%%DOCSDIR%%/html/qhelpsearchengine.html -%%DOCSDIR%%/html/qhelpsearchquery.html -%%DOCSDIR%%/html/qhelpsearchquerywidget.html -%%DOCSDIR%%/html/qhelpsearchresultwidget.html -%%DOCSDIR%%/html/qhideevent.html -%%DOCSDIR%%/html/qhistorystate.html -%%DOCSDIR%%/html/qhostaddress.html -%%DOCSDIR%%/html/qhostinfo.html -%%DOCSDIR%%/html/qhoverevent.html -%%DOCSDIR%%/html/qhttp.html -%%DOCSDIR%%/html/qhttpheader.html -%%DOCSDIR%%/html/qhttpmultipart.html -%%DOCSDIR%%/html/qhttppart.html -%%DOCSDIR%%/html/qhttprequestheader.html -%%DOCSDIR%%/html/qhttpresponseheader.html -%%DOCSDIR%%/html/qicon.html -%%DOCSDIR%%/html/qicondragevent.html -%%DOCSDIR%%/html/qiconengine.html -%%DOCSDIR%%/html/qiconenginev2-availablesizesargument.html -%%DOCSDIR%%/html/qiconenginev2.html -%%DOCSDIR%%/html/qidentityproxymodel.html -%%DOCSDIR%%/html/qimage.html -%%DOCSDIR%%/html/qimageiohandler.html -%%DOCSDIR%%/html/qimagereader.html -%%DOCSDIR%%/html/qimagewriter.html -%%DOCSDIR%%/html/qinputcontext.html -%%DOCSDIR%%/html/qinputcontextfactory.html -%%DOCSDIR%%/html/qinputdialog-inputdialogoptions.html -%%DOCSDIR%%/html/qinputdialog.html -%%DOCSDIR%%/html/qinputevent.html -%%DOCSDIR%%/html/qinputmethodevent-attribute.html -%%DOCSDIR%%/html/qinputmethodevent.html -%%DOCSDIR%%/html/qintvalidator.html -%%DOCSDIR%%/html/qiodevice-openmode.html -%%DOCSDIR%%/html/qiodevice.html -%%DOCSDIR%%/html/qitemdelegate.html -%%DOCSDIR%%/html/qitemeditorcreatorbase.html -%%DOCSDIR%%/html/qitemeditorfactory.html -%%DOCSDIR%%/html/qitemselection.html -%%DOCSDIR%%/html/qitemselectionmodel-selectionflags.html -%%DOCSDIR%%/html/qitemselectionmodel.html -%%DOCSDIR%%/html/qitemselectionrange.html -%%DOCSDIR%%/html/qkeyevent.html -%%DOCSDIR%%/html/qkeyeventtransition.html -%%DOCSDIR%%/html/qkeysequence.html -%%DOCSDIR%%/html/qlabel.html -%%DOCSDIR%%/html/qlatin1char.html -%%DOCSDIR%%/html/qlatin1string.html -%%DOCSDIR%%/html/qlayout.html -%%DOCSDIR%%/html/qlayoutitem.html -%%DOCSDIR%%/html/qlcdnumber.html -%%DOCSDIR%%/html/qlibrary-loadhints.html -%%DOCSDIR%%/html/qlibrary.html -%%DOCSDIR%%/html/qlibraryinfo.html -%%DOCSDIR%%/html/qline.html -%%DOCSDIR%%/html/qlineargradient.html -%%DOCSDIR%%/html/qlineedit.html -%%DOCSDIR%%/html/qlinef.html -%%DOCSDIR%%/html/qlistview.html -%%DOCSDIR%%/html/qlistwidget.html -%%DOCSDIR%%/html/qlistwidgetitem.html -%%DOCSDIR%%/html/qlocale-numberoptions.html -%%DOCSDIR%%/html/qlocale.html -%%DOCSDIR%%/html/qlocalserver.html -%%DOCSDIR%%/html/qlocalsocket.html -%%DOCSDIR%%/html/qmainwindow-dockoptions.html -%%DOCSDIR%%/html/qmainwindow.html -%%DOCSDIR%%/html/qmargins.html -%%DOCSDIR%%/html/qmatrix.html -%%DOCSDIR%%/html/qmatrix2x2.html -%%DOCSDIR%%/html/qmatrix2x3.html -%%DOCSDIR%%/html/qmatrix2x4.html -%%DOCSDIR%%/html/qmatrix3x2.html -%%DOCSDIR%%/html/qmatrix3x3.html -%%DOCSDIR%%/html/qmatrix3x4.html -%%DOCSDIR%%/html/qmatrix4x2.html -%%DOCSDIR%%/html/qmatrix4x3.html -%%DOCSDIR%%/html/qmatrix4x4.html -%%DOCSDIR%%/html/qmdiarea-areaoptions.html -%%DOCSDIR%%/html/qmdiarea.html -%%DOCSDIR%%/html/qmdisubwindow-subwindowoptions.html -%%DOCSDIR%%/html/qmdisubwindow.html -%%DOCSDIR%%/html/qmenu.html -%%DOCSDIR%%/html/qmenubar.html -%%DOCSDIR%%/html/qmessagebox-standardbuttons.html -%%DOCSDIR%%/html/qmessagebox.html -%%DOCSDIR%%/html/qmetaclassinfo.html -%%DOCSDIR%%/html/qmetaenum.html -%%DOCSDIR%%/html/qmetamethod.html -%%DOCSDIR%%/html/qmetaobject.html -%%DOCSDIR%%/html/qmetaproperty.html -%%DOCSDIR%%/html/qmetatype.html -%%DOCSDIR%%/html/qmimedata.html -%%DOCSDIR%%/html/qmimesource.html -%%DOCSDIR%%/html/qml.html -%%DOCSDIR%%/html/qmodelindex.html -%%DOCSDIR%%/html/qmouseevent.html -%%DOCSDIR%%/html/qmouseeventtransition.html -%%DOCSDIR%%/html/qmoveevent.html -%%DOCSDIR%%/html/qmovie.html -%%DOCSDIR%%/html/qmutex.html -%%DOCSDIR%%/html/qmutexlocker.html -%%DOCSDIR%%/html/qnetworkaccessmanager.html -%%DOCSDIR%%/html/qnetworkaddressentry.html -%%DOCSDIR%%/html/qnetworkcachemetadata.html -%%DOCSDIR%%/html/qnetworkconfiguration-stateflags.html -%%DOCSDIR%%/html/qnetworkconfiguration.html -%%DOCSDIR%%/html/qnetworkconfigurationmanager-capabilities.html -%%DOCSDIR%%/html/qnetworkconfigurationmanager.html -%%DOCSDIR%%/html/qnetworkcookie.html -%%DOCSDIR%%/html/qnetworkcookiejar.html -%%DOCSDIR%%/html/qnetworkdiskcache.html -%%DOCSDIR%%/html/qnetworkinterface-interfaceflags.html -%%DOCSDIR%%/html/qnetworkinterface.html -%%DOCSDIR%%/html/qnetworkproxy-capabilities.html -%%DOCSDIR%%/html/qnetworkproxy.html -%%DOCSDIR%%/html/qnetworkproxyfactory.html -%%DOCSDIR%%/html/qnetworkproxyquery.html -%%DOCSDIR%%/html/qnetworkreply.html -%%DOCSDIR%%/html/qnetworkrequest.html -%%DOCSDIR%%/html/qnetworksession.html -%%DOCSDIR%%/html/qobject.html -%%DOCSDIR%%/html/qobjectcleanuphandler.html -%%DOCSDIR%%/html/qpagesetupdialog-pagesetupdialogoptions.html -%%DOCSDIR%%/html/qpagesetupdialog.html -%%DOCSDIR%%/html/qpaintdevice.html -%%DOCSDIR%%/html/qpaintengine-dirtyflags.html -%%DOCSDIR%%/html/qpaintengine-paintenginefeatures.html -%%DOCSDIR%%/html/qpaintengine.html -%%DOCSDIR%%/html/qpaintenginestate.html -%%DOCSDIR%%/html/qpainter-pixmapfragment.html -%%DOCSDIR%%/html/qpainter-pixmapfragmenthints.html -%%DOCSDIR%%/html/qpainter-renderhints.html -%%DOCSDIR%%/html/qpainter.html -%%DOCSDIR%%/html/qpainterpath-element.html -%%DOCSDIR%%/html/qpainterpath.html -%%DOCSDIR%%/html/qpainterpathstroker.html -%%DOCSDIR%%/html/qpaintevent.html -%%DOCSDIR%%/html/qpalette.html -%%DOCSDIR%%/html/qpangesture.html -%%DOCSDIR%%/html/qparallelanimationgroup.html -%%DOCSDIR%%/html/qpauseanimation.html -%%DOCSDIR%%/html/qpen.html -%%DOCSDIR%%/html/qpersistentmodelindex.html -%%DOCSDIR%%/html/qpicture.html -%%DOCSDIR%%/html/qpictureio.html -%%DOCSDIR%%/html/qpinchgesture-changeflags.html -%%DOCSDIR%%/html/qpinchgesture.html -%%DOCSDIR%%/html/qpixmap.html -%%DOCSDIR%%/html/qpixmapcache-key.html -%%DOCSDIR%%/html/qpixmapcache.html -%%DOCSDIR%%/html/qplaintextdocumentlayout.html -%%DOCSDIR%%/html/qplaintextedit.html -%%DOCSDIR%%/html/qpluginloader.html -%%DOCSDIR%%/html/qpoint.html -%%DOCSDIR%%/html/qpointf.html -%%DOCSDIR%%/html/qpolygon.html -%%DOCSDIR%%/html/qpolygonf.html -%%DOCSDIR%%/html/qprintdialog.html -%%DOCSDIR%%/html/qprintengine.html -%%DOCSDIR%%/html/qprinter.html -%%DOCSDIR%%/html/qprinterinfo.html -%%DOCSDIR%%/html/qprintpreviewdialog.html -%%DOCSDIR%%/html/qprintpreviewwidget.html -%%DOCSDIR%%/html/qprocess.html -%%DOCSDIR%%/html/qprocessenvironment.html -%%DOCSDIR%%/html/qprogressbar.html -%%DOCSDIR%%/html/qprogressdialog.html -%%DOCSDIR%%/html/qpropertyanimation.html -%%DOCSDIR%%/html/qproxymodel.html -%%DOCSDIR%%/html/qpushbutton.html -%%DOCSDIR%%/html/qpydeclarativepropertyvaluesource.html -%%DOCSDIR%%/html/qpydesignercontainerextension.html -%%DOCSDIR%%/html/qpydesignercustomwidgetcollectionplugin.html -%%DOCSDIR%%/html/qpydesignercustomwidgetplugin.html -%%DOCSDIR%%/html/qpydesignermembersheetextension.html -%%DOCSDIR%%/html/qpydesignerpropertysheetextension.html -%%DOCSDIR%%/html/qpydesignertaskmenuextension.html -%%DOCSDIR%%/html/qpynullvariant.html -%%DOCSDIR%%/html/qpytextobject.html -%%DOCSDIR%%/html/qquaternion.html -%%DOCSDIR%%/html/qradialgradient.html -%%DOCSDIR%%/html/qradiobutton.html -%%DOCSDIR%%/html/qrawfont.html -%%DOCSDIR%%/html/qreadlocker.html -%%DOCSDIR%%/html/qreadwritelock.html -%%DOCSDIR%%/html/qrect.html -%%DOCSDIR%%/html/qrectf.html -%%DOCSDIR%%/html/qregexp.html -%%DOCSDIR%%/html/qregexpvalidator.html -%%DOCSDIR%%/html/qregion.html -%%DOCSDIR%%/html/qresizeevent.html -%%DOCSDIR%%/html/qresource.html -%%DOCSDIR%%/html/qrubberband.html -%%DOCSDIR%%/html/qrunnable.html -%%DOCSDIR%%/html/qscriptclass-queryflags.html -%%DOCSDIR%%/html/qscriptclass.html -%%DOCSDIR%%/html/qscriptclasspropertyiterator.html -%%DOCSDIR%%/html/qscriptcontext.html -%%DOCSDIR%%/html/qscriptcontextinfo.html -%%DOCSDIR%%/html/qscriptengine-qobjectwrapoptions.html -%%DOCSDIR%%/html/qscriptengine.html -%%DOCSDIR%%/html/qscriptengineagent.html -%%DOCSDIR%%/html/qscriptenginedebugger.html -%%DOCSDIR%%/html/qscriptstring.html -%%DOCSDIR%%/html/qscriptsyntaxcheckresult.html -%%DOCSDIR%%/html/qscriptvalue-propertyflags.html -%%DOCSDIR%%/html/qscriptvalue-resolveflags.html -%%DOCSDIR%%/html/qscriptvalue.html -%%DOCSDIR%%/html/qscriptvalueiterator.html -%%DOCSDIR%%/html/qscrollarea.html -%%DOCSDIR%%/html/qscrollbar.html -%%DOCSDIR%%/html/qsemaphore.html -%%DOCSDIR%%/html/qsequentialanimationgroup.html -%%DOCSDIR%%/html/qsessionmanager.html -%%DOCSDIR%%/html/qsettings.html -%%DOCSDIR%%/html/qsharedmemory.html -%%DOCSDIR%%/html/qshortcut.html -%%DOCSDIR%%/html/qshortcutevent.html -%%DOCSDIR%%/html/qshowevent.html -%%DOCSDIR%%/html/qsignalmapper.html -%%DOCSDIR%%/html/qsignaltransition.html -%%DOCSDIR%%/html/qsimplexmlnodemodel.html -%%DOCSDIR%%/html/qsize.html -%%DOCSDIR%%/html/qsizef.html -%%DOCSDIR%%/html/qsizegrip.html -%%DOCSDIR%%/html/qsizepolicy-controltypes.html -%%DOCSDIR%%/html/qsizepolicy.html -%%DOCSDIR%%/html/qslider.html -%%DOCSDIR%%/html/qsocketnotifier.html -%%DOCSDIR%%/html/qsortfilterproxymodel.html -%%DOCSDIR%%/html/qsound.html -%%DOCSDIR%%/html/qsourcelocation.html -%%DOCSDIR%%/html/qspaceritem.html -%%DOCSDIR%%/html/qspinbox.html -%%DOCSDIR%%/html/qsplashscreen.html -%%DOCSDIR%%/html/qsplitter.html -%%DOCSDIR%%/html/qsplitterhandle.html -%%DOCSDIR%%/html/qsql-paramtype.html -%%DOCSDIR%%/html/qsql.html -%%DOCSDIR%%/html/qsqldatabase.html -%%DOCSDIR%%/html/qsqldriver.html -%%DOCSDIR%%/html/qsqldrivercreatorbase.html -%%DOCSDIR%%/html/qsqlerror.html -%%DOCSDIR%%/html/qsqlfield.html -%%DOCSDIR%%/html/qsqlindex.html -%%DOCSDIR%%/html/qsqlquery.html -%%DOCSDIR%%/html/qsqlquerymodel.html -%%DOCSDIR%%/html/qsqlrecord.html -%%DOCSDIR%%/html/qsqlrelation.html -%%DOCSDIR%%/html/qsqlrelationaldelegate.html -%%DOCSDIR%%/html/qsqlrelationaltablemodel.html -%%DOCSDIR%%/html/qsqlresult.html -%%DOCSDIR%%/html/qsqltablemodel.html -%%DOCSDIR%%/html/qssl-ssloptions.html -%%DOCSDIR%%/html/qssl.html -%%DOCSDIR%%/html/qsslcertificate.html -%%DOCSDIR%%/html/qsslcipher.html -%%DOCSDIR%%/html/qsslconfiguration.html -%%DOCSDIR%%/html/qsslerror.html -%%DOCSDIR%%/html/qsslkey.html -%%DOCSDIR%%/html/qsslsocket.html -%%DOCSDIR%%/html/qstackedlayout.html -%%DOCSDIR%%/html/qstackedwidget.html -%%DOCSDIR%%/html/qstandarditem.html -%%DOCSDIR%%/html/qstandarditemmodel.html -%%DOCSDIR%%/html/qstate.html -%%DOCSDIR%%/html/qstatemachine-signalevent.html -%%DOCSDIR%%/html/qstatemachine-wrappedevent.html -%%DOCSDIR%%/html/qstatemachine.html -%%DOCSDIR%%/html/qstatictext.html -%%DOCSDIR%%/html/qstatusbar.html -%%DOCSDIR%%/html/qstatustipevent.html -%%DOCSDIR%%/html/qstring-sectionflags.html -%%DOCSDIR%%/html/qstring.html -%%DOCSDIR%%/html/qstringlist.html -%%DOCSDIR%%/html/qstringlistmodel.html -%%DOCSDIR%%/html/qstringmatcher.html -%%DOCSDIR%%/html/qstringref.html -%%DOCSDIR%%/html/qstyle-state.html -%%DOCSDIR%%/html/qstyle-subcontrols.html -%%DOCSDIR%%/html/qstyle.html -%%DOCSDIR%%/html/qstyleditemdelegate.html -%%DOCSDIR%%/html/qstylefactory.html -%%DOCSDIR%%/html/qstylehintreturn.html -%%DOCSDIR%%/html/qstylehintreturnmask.html -%%DOCSDIR%%/html/qstylehintreturnvariant.html -%%DOCSDIR%%/html/qstyleoption.html -%%DOCSDIR%%/html/qstyleoptionbutton-buttonfeatures.html -%%DOCSDIR%%/html/qstyleoptionbutton.html -%%DOCSDIR%%/html/qstyleoptioncombobox.html -%%DOCSDIR%%/html/qstyleoptioncomplex.html -%%DOCSDIR%%/html/qstyleoptiondockwidget.html -%%DOCSDIR%%/html/qstyleoptiondockwidgetv2.html -%%DOCSDIR%%/html/qstyleoptionfocusrect.html -%%DOCSDIR%%/html/qstyleoptionframe.html -%%DOCSDIR%%/html/qstyleoptionframev2-framefeatures.html -%%DOCSDIR%%/html/qstyleoptionframev2.html -%%DOCSDIR%%/html/qstyleoptionframev3.html -%%DOCSDIR%%/html/qstyleoptiongraphicsitem.html -%%DOCSDIR%%/html/qstyleoptiongroupbox.html -%%DOCSDIR%%/html/qstyleoptionheader.html -%%DOCSDIR%%/html/qstyleoptionmenuitem.html -%%DOCSDIR%%/html/qstyleoptionprogressbar.html -%%DOCSDIR%%/html/qstyleoptionprogressbarv2.html -%%DOCSDIR%%/html/qstyleoptionrubberband.html -%%DOCSDIR%%/html/qstyleoptionsizegrip.html -%%DOCSDIR%%/html/qstyleoptionslider.html -%%DOCSDIR%%/html/qstyleoptionspinbox.html -%%DOCSDIR%%/html/qstyleoptiontab-cornerwidgets.html -%%DOCSDIR%%/html/qstyleoptiontab.html -%%DOCSDIR%%/html/qstyleoptiontabbarbase.html -%%DOCSDIR%%/html/qstyleoptiontabbarbasev2.html -%%DOCSDIR%%/html/qstyleoptiontabv2.html -%%DOCSDIR%%/html/qstyleoptiontabv3.html -%%DOCSDIR%%/html/qstyleoptiontabwidgetframe.html -%%DOCSDIR%%/html/qstyleoptiontabwidgetframev2.html -%%DOCSDIR%%/html/qstyleoptiontitlebar.html -%%DOCSDIR%%/html/qstyleoptiontoolbar-toolbarfeatures.html -%%DOCSDIR%%/html/qstyleoptiontoolbar.html -%%DOCSDIR%%/html/qstyleoptiontoolbox.html -%%DOCSDIR%%/html/qstyleoptiontoolboxv2.html -%%DOCSDIR%%/html/qstyleoptiontoolbutton-toolbuttonfeatures.html -%%DOCSDIR%%/html/qstyleoptiontoolbutton.html -%%DOCSDIR%%/html/qstyleoptionviewitem.html -%%DOCSDIR%%/html/qstyleoptionviewitemv2-viewitemfeatures.html -%%DOCSDIR%%/html/qstyleoptionviewitemv2.html -%%DOCSDIR%%/html/qstyleoptionviewitemv3.html -%%DOCSDIR%%/html/qstyleoptionviewitemv4.html -%%DOCSDIR%%/html/qstylepainter.html -%%DOCSDIR%%/html/qsvggenerator.html -%%DOCSDIR%%/html/qsvgrenderer.html -%%DOCSDIR%%/html/qsvgwidget.html -%%DOCSDIR%%/html/qswipegesture.html -%%DOCSDIR%%/html/qsyntaxhighlighter.html -%%DOCSDIR%%/html/qsysinfo.html -%%DOCSDIR%%/html/qsystemlocale.html -%%DOCSDIR%%/html/qsystemsemaphore.html -%%DOCSDIR%%/html/qsystemtrayicon.html -%%DOCSDIR%%/html/qt-alignment.html -%%DOCSDIR%%/html/qt-dockwidgetareas.html -%%DOCSDIR%%/html/qt-dropactions.html -%%DOCSDIR%%/html/qt-gestureflags.html -%%DOCSDIR%%/html/qt-imageconversionflags.html -%%DOCSDIR%%/html/qt-inputmethodhints.html -%%DOCSDIR%%/html/qt-itemflags.html -%%DOCSDIR%%/html/qt-keyboardmodifiers.html -%%DOCSDIR%%/html/qt-matchflags.html -%%DOCSDIR%%/html/qt-mousebuttons.html -%%DOCSDIR%%/html/qt-orientations.html -%%DOCSDIR%%/html/qt-textinteractionflags.html -%%DOCSDIR%%/html/qt-toolbarareas.html -%%DOCSDIR%%/html/qt-touchpointstates.html -%%DOCSDIR%%/html/qt-windowflags.html -%%DOCSDIR%%/html/qt-windowstates.html -%%DOCSDIR%%/html/qt.html -%%DOCSDIR%%/html/qt_properties.html -%%DOCSDIR%%/html/qt_v5.html -%%DOCSDIR%%/html/qtabbar.html -%%DOCSDIR%%/html/qtabletevent.html -%%DOCSDIR%%/html/qtableview.html -%%DOCSDIR%%/html/qtablewidget.html -%%DOCSDIR%%/html/qtablewidgetitem.html -%%DOCSDIR%%/html/qtablewidgetselectionrange.html -%%DOCSDIR%%/html/qtabwidget.html -%%DOCSDIR%%/html/qtapandholdgesture.html -%%DOCSDIR%%/html/qtapgesture.html -%%DOCSDIR%%/html/qtassistant.html -%%DOCSDIR%%/html/qtcore.html -%%DOCSDIR%%/html/qtcpserver.html -%%DOCSDIR%%/html/qtcpsocket.html -%%DOCSDIR%%/html/qtdbus.html -%%DOCSDIR%%/html/qtdeclarative.html -%%DOCSDIR%%/html/qtdesigner.html -%%DOCSDIR%%/html/qtemporaryfile.html -%%DOCSDIR%%/html/qtest.html -%%DOCSDIR%%/html/qtextblock-iterator.html -%%DOCSDIR%%/html/qtextblock.html -%%DOCSDIR%%/html/qtextblockformat.html -%%DOCSDIR%%/html/qtextblockgroup.html -%%DOCSDIR%%/html/qtextblockuserdata.html -%%DOCSDIR%%/html/qtextboundaryfinder-boundaryreasons.html -%%DOCSDIR%%/html/qtextboundaryfinder.html -%%DOCSDIR%%/html/qtextbrowser.html -%%DOCSDIR%%/html/qtextcharformat.html -%%DOCSDIR%%/html/qtextcodec-conversionflags.html -%%DOCSDIR%%/html/qtextcodec-converterstate.html -%%DOCSDIR%%/html/qtextcodec.html -%%DOCSDIR%%/html/qtextcursor.html -%%DOCSDIR%%/html/qtextdecoder.html -%%DOCSDIR%%/html/qtextdocument-findflags.html -%%DOCSDIR%%/html/qtextdocument.html -%%DOCSDIR%%/html/qtextdocumentfragment.html -%%DOCSDIR%%/html/qtextdocumentwriter.html -%%DOCSDIR%%/html/qtextedit-autoformatting.html -%%DOCSDIR%%/html/qtextedit-extraselection.html -%%DOCSDIR%%/html/qtextedit.html -%%DOCSDIR%%/html/qtextencoder.html -%%DOCSDIR%%/html/qtextformat-pagebreakflags.html -%%DOCSDIR%%/html/qtextformat.html -%%DOCSDIR%%/html/qtextfragment.html -%%DOCSDIR%%/html/qtextframe-iterator.html -%%DOCSDIR%%/html/qtextframe.html -%%DOCSDIR%%/html/qtextframeformat.html -%%DOCSDIR%%/html/qtextimageformat.html -%%DOCSDIR%%/html/qtextinlineobject.html -%%DOCSDIR%%/html/qtextitem-renderflags.html -%%DOCSDIR%%/html/qtextitem.html -%%DOCSDIR%%/html/qtextlayout-formatrange.html -%%DOCSDIR%%/html/qtextlayout.html -%%DOCSDIR%%/html/qtextlength.html -%%DOCSDIR%%/html/qtextline.html -%%DOCSDIR%%/html/qtextlist.html -%%DOCSDIR%%/html/qtextlistformat.html -%%DOCSDIR%%/html/qtextobject.html -%%DOCSDIR%%/html/qtextobjectinterface.html -%%DOCSDIR%%/html/qtextoption-flags.html -%%DOCSDIR%%/html/qtextoption-tab.html -%%DOCSDIR%%/html/qtextoption.html -%%DOCSDIR%%/html/qtextstream-numberflags.html -%%DOCSDIR%%/html/qtextstream.html -%%DOCSDIR%%/html/qtexttable.html -%%DOCSDIR%%/html/qtexttablecell.html -%%DOCSDIR%%/html/qtexttablecellformat.html -%%DOCSDIR%%/html/qtexttableformat.html -%%DOCSDIR%%/html/qtgui.html -%%DOCSDIR%%/html/qthelp.html -%%DOCSDIR%%/html/qthread.html -%%DOCSDIR%%/html/qthreadpool.html -%%DOCSDIR%%/html/qtime.html -%%DOCSDIR%%/html/qtimeedit.html -%%DOCSDIR%%/html/qtimeline.html -%%DOCSDIR%%/html/qtimer.html -%%DOCSDIR%%/html/qtimerevent.html -%%DOCSDIR%%/html/qtmultimedia.html -%%DOCSDIR%%/html/qtnetwork.html -%%DOCSDIR%%/html/qtoolbar.html -%%DOCSDIR%%/html/qtoolbox.html -%%DOCSDIR%%/html/qtoolbutton.html -%%DOCSDIR%%/html/qtooltip.html -%%DOCSDIR%%/html/qtopengl.html -%%DOCSDIR%%/html/qtouchevent-touchpoint.html -%%DOCSDIR%%/html/qtouchevent.html -%%DOCSDIR%%/html/qtransform.html -%%DOCSDIR%%/html/qtranslator.html -%%DOCSDIR%%/html/qtreeview.html -%%DOCSDIR%%/html/qtreewidget.html -%%DOCSDIR%%/html/qtreewidgetitem.html -%%DOCSDIR%%/html/qtreewidgetitemiterator-iteratorflags.html -%%DOCSDIR%%/html/qtreewidgetitemiterator.html -%%DOCSDIR%%/html/qtscript.html -%%DOCSDIR%%/html/qtscripttools.html -%%DOCSDIR%%/html/qtsql.html -%%DOCSDIR%%/html/qtsvg.html -%%DOCSDIR%%/html/qttest.html -%%DOCSDIR%%/html/qtwebkit.html -%%DOCSDIR%%/html/qtxml.html -%%DOCSDIR%%/html/qtxmlpatterns.html -%%DOCSDIR%%/html/qudpsocket-bindmode.html -%%DOCSDIR%%/html/qudpsocket.html -%%DOCSDIR%%/html/qundocommand.html -%%DOCSDIR%%/html/qundogroup.html -%%DOCSDIR%%/html/qundostack.html -%%DOCSDIR%%/html/qundoview.html -%%DOCSDIR%%/html/qurl-formattingoptions.html -%%DOCSDIR%%/html/qurl.html -%%DOCSDIR%%/html/qurlinfo.html -%%DOCSDIR%%/html/quuid.html -%%DOCSDIR%%/html/qvalidator.html -%%DOCSDIR%%/html/qvariant.html -%%DOCSDIR%%/html/qvariantanimation.html -%%DOCSDIR%%/html/qvboxlayout.html -%%DOCSDIR%%/html/qvector2d.html -%%DOCSDIR%%/html/qvector3d.html -%%DOCSDIR%%/html/qvector4d.html -%%DOCSDIR%%/html/qvideoframe.html -%%DOCSDIR%%/html/qvideosurfaceformat.html -%%DOCSDIR%%/html/qwaitcondition.html -%%DOCSDIR%%/html/qwebdatabase.html -%%DOCSDIR%%/html/qwebelement.html -%%DOCSDIR%%/html/qwebelementcollection.html -%%DOCSDIR%%/html/qwebframe.html -%%DOCSDIR%%/html/qwebhistory.html -%%DOCSDIR%%/html/qwebhistoryinterface.html -%%DOCSDIR%%/html/qwebhistoryitem.html -%%DOCSDIR%%/html/qwebhittestresult.html -%%DOCSDIR%%/html/qwebinspector.html -%%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionoption.html -%%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionreturn.html -%%DOCSDIR%%/html/qwebpage-errorpageextensionoption.html -%%DOCSDIR%%/html/qwebpage-errorpageextensionreturn.html -%%DOCSDIR%%/html/qwebpage-extensionoption.html -%%DOCSDIR%%/html/qwebpage-extensionreturn.html -%%DOCSDIR%%/html/qwebpage-findflags.html -%%DOCSDIR%%/html/qwebpage-viewportattributes.html -%%DOCSDIR%%/html/qwebpage.html -%%DOCSDIR%%/html/qwebpluginfactory-extensionoption.html -%%DOCSDIR%%/html/qwebpluginfactory-extensionreturn.html -%%DOCSDIR%%/html/qwebpluginfactory-mimetype.html -%%DOCSDIR%%/html/qwebpluginfactory-plugin.html -%%DOCSDIR%%/html/qwebpluginfactory.html -%%DOCSDIR%%/html/qwebsecurityorigin.html -%%DOCSDIR%%/html/qwebsettings.html -%%DOCSDIR%%/html/qwebview.html -%%DOCSDIR%%/html/qwhatsthis.html -%%DOCSDIR%%/html/qwhatsthisclickedevent.html -%%DOCSDIR%%/html/qwheelevent.html -%%DOCSDIR%%/html/qwidget-renderflags.html -%%DOCSDIR%%/html/qwidget.html -%%DOCSDIR%%/html/qwidgetaction.html -%%DOCSDIR%%/html/qwidgetitem.html -%%DOCSDIR%%/html/qwindowstatechangeevent.html -%%DOCSDIR%%/html/qwizard-wizardoptions.html -%%DOCSDIR%%/html/qwizard.html -%%DOCSDIR%%/html/qwizardpage.html -%%DOCSDIR%%/html/qworkspace.html -%%DOCSDIR%%/html/qwritelocker.html -%%DOCSDIR%%/html/qx11embedcontainer.html -%%DOCSDIR%%/html/qx11embedwidget.html -%%DOCSDIR%%/html/qx11info.html -%%DOCSDIR%%/html/qxmlattributes.html -%%DOCSDIR%%/html/qxmlcontenthandler.html -%%DOCSDIR%%/html/qxmldeclhandler.html -%%DOCSDIR%%/html/qxmldefaulthandler.html -%%DOCSDIR%%/html/qxmldtdhandler.html -%%DOCSDIR%%/html/qxmlentityresolver.html -%%DOCSDIR%%/html/qxmlerrorhandler.html -%%DOCSDIR%%/html/qxmlformatter.html -%%DOCSDIR%%/html/qxmlinputsource.html -%%DOCSDIR%%/html/qxmlitem.html -%%DOCSDIR%%/html/qxmllexicalhandler.html -%%DOCSDIR%%/html/qxmllocator.html -%%DOCSDIR%%/html/qxmlname.html -%%DOCSDIR%%/html/qxmlnamepool.html -%%DOCSDIR%%/html/qxmlnamespacesupport.html -%%DOCSDIR%%/html/qxmlnodemodelindex.html -%%DOCSDIR%%/html/qxmlparseexception.html -%%DOCSDIR%%/html/qxmlquery.html -%%DOCSDIR%%/html/qxmlreader.html -%%DOCSDIR%%/html/qxmlresultitems.html -%%DOCSDIR%%/html/qxmlschema.html -%%DOCSDIR%%/html/qxmlschemavalidator.html -%%DOCSDIR%%/html/qxmlserializer.html -%%DOCSDIR%%/html/qxmlsimplereader.html -%%DOCSDIR%%/html/qxmlstreamattribute.html -%%DOCSDIR%%/html/qxmlstreamattributes.html -%%DOCSDIR%%/html/qxmlstreamentitydeclaration.html -%%DOCSDIR%%/html/qxmlstreamentityresolver.html -%%DOCSDIR%%/html/qxmlstreamnamespacedeclaration.html -%%DOCSDIR%%/html/qxmlstreamnotationdeclaration.html -%%DOCSDIR%%/html/qxmlstreamreader.html -%%DOCSDIR%%/html/qxmlstreamwriter.html -%%DOCSDIR%%/html/resources.html -%%DOCSDIR%%/html/search.html -%%DOCSDIR%%/html/searchindex.js -%%DOCSDIR%%/html/threads.html -%%DOCSDIR%%/html/webkit.html +%%PYQT_DOCDIR%%/LICENSE +%%PYQT_DOCDIR%%/NEWS +%%PYQT_DOCDIR%%/README +%%PYQT_DOCDIR%%/THANKS +%%PYQT_DOCDIR%%/html/_sources/buffer_interface.rst.txt +%%PYQT_DOCDIR%%/html/_sources/build_system.rst.txt +%%PYQT_DOCDIR%%/html/_sources/dbus.rst.txt +%%PYQT_DOCDIR%%/html/_sources/deploy_commercial.rst.txt +%%PYQT_DOCDIR%%/html/_sources/designer.rst.txt +%%PYQT_DOCDIR%%/html/_sources/extension_api.rst.txt +%%PYQT_DOCDIR%%/html/_sources/gotchas.rst.txt +%%PYQT_DOCDIR%%/html/_sources/i18n.rst.txt +%%PYQT_DOCDIR%%/html/_sources/incompatibilities.rst.txt +%%PYQT_DOCDIR%%/html/_sources/incompatible_apis.rst.txt +%%PYQT_DOCDIR%%/html/_sources/index.rst.txt +%%PYQT_DOCDIR%%/html/_sources/installation.rst.txt +%%PYQT_DOCDIR%%/html/_sources/introduction.rst.txt +%%PYQT_DOCDIR%%/html/_sources/keyword_arguments.rst.txt +%%PYQT_DOCDIR%%/html/_sources/new_style_signals_slots.rst.txt +%%PYQT_DOCDIR%%/html/_sources/old_style_signals_slots.rst.txt +%%PYQT_DOCDIR%%/html/_sources/pickle.rst.txt +%%PYQT_DOCDIR%%/html/_sources/pyqt_qsettings.rst.txt +%%PYQT_DOCDIR%%/html/_sources/pyqt_qvariant.rst.txt +%%PYQT_DOCDIR%%/html/_sources/python_shell.rst.txt +%%PYQT_DOCDIR%%/html/_sources/python_v3.rst.txt +%%PYQT_DOCDIR%%/html/_sources/qml.rst.txt +%%PYQT_DOCDIR%%/html/_sources/qt_properties.rst.txt +%%PYQT_DOCDIR%%/html/_sources/qt_v5.rst.txt +%%PYQT_DOCDIR%%/html/_sources/resources.rst.txt +%%PYQT_DOCDIR%%/html/_sources/webkit.rst.txt +%%PYQT_DOCDIR%%/html/_static/ajax-loader.gif +%%PYQT_DOCDIR%%/html/_static/basic.css +%%PYQT_DOCDIR%%/html/_static/classic.css +%%PYQT_DOCDIR%%/html/_static/comment-bright.png +%%PYQT_DOCDIR%%/html/_static/comment-close.png +%%PYQT_DOCDIR%%/html/_static/comment.png +%%PYQT_DOCDIR%%/html/_static/doctools.js +%%PYQT_DOCDIR%%/html/_static/down-pressed.png +%%PYQT_DOCDIR%%/html/_static/down.png +%%PYQT_DOCDIR%%/html/_static/file.png +%%PYQT_DOCDIR%%/html/_static/jquery-3.1.0.js +%%PYQT_DOCDIR%%/html/_static/jquery.js +%%PYQT_DOCDIR%%/html/_static/logo.png +%%PYQT_DOCDIR%%/html/_static/logo_tn.ico +%%PYQT_DOCDIR%%/html/_static/minus.png +%%PYQT_DOCDIR%%/html/_static/plus.png +%%PYQT_DOCDIR%%/html/_static/pygments.css +%%PYQT_DOCDIR%%/html/_static/searchtools.js +%%PYQT_DOCDIR%%/html/_static/sidebar.js +%%PYQT_DOCDIR%%/html/_static/underscore-1.3.1.js +%%PYQT_DOCDIR%%/html/_static/underscore.js +%%PYQT_DOCDIR%%/html/_static/up-pressed.png +%%PYQT_DOCDIR%%/html/_static/up.png +%%PYQT_DOCDIR%%/html/_static/websupport.js +%%PYQT_DOCDIR%%/html/assistant-manual.html +%%PYQT_DOCDIR%%/html/buffer_interface.html +%%PYQT_DOCDIR%%/html/build_system.html +%%PYQT_DOCDIR%%/html/classes.html +%%PYQT_DOCDIR%%/html/dbus.html +%%PYQT_DOCDIR%%/html/deploy_commercial.html +%%PYQT_DOCDIR%%/html/designer.html +%%PYQT_DOCDIR%%/html/extension_api.html +%%PYQT_DOCDIR%%/html/genindex.html +%%PYQT_DOCDIR%%/html/gotchas.html +%%PYQT_DOCDIR%%/html/i18n.html +%%PYQT_DOCDIR%%/html/images/alphafill.png +%%PYQT_DOCDIR%%/html/images/assistant-toolbar.png +%%PYQT_DOCDIR%%/html/images/bearings.png +%%PYQT_DOCDIR%%/html/images/brush-outline.png +%%PYQT_DOCDIR%%/html/images/brush-styles.png +%%PYQT_DOCDIR%%/html/images/buttonbox-gnomelayout-horizontal.png +%%PYQT_DOCDIR%%/html/images/buttonbox-gnomelayout-vertical.png +%%PYQT_DOCDIR%%/html/images/buttonbox-kdelayout-horizontal.png +%%PYQT_DOCDIR%%/html/images/buttonbox-kdelayout-vertical.png +%%PYQT_DOCDIR%%/html/images/buttonbox-mac-modeless-horizontal.png +%%PYQT_DOCDIR%%/html/images/buttonbox-maclayout-horizontal.png +%%PYQT_DOCDIR%%/html/images/buttonbox-maclayout-vertical.png +%%PYQT_DOCDIR%%/html/images/buttonbox-winlayout-horizontal.png +%%PYQT_DOCDIR%%/html/images/buttonbox-winlayout-vertical.png +%%PYQT_DOCDIR%%/html/images/cde-lcdnumber.png +%%PYQT_DOCDIR%%/html/images/checkboxes-exclusive.png +%%PYQT_DOCDIR%%/html/images/checkboxes-non-exclusive.png +%%PYQT_DOCDIR%%/html/images/cleanlooks-calendarwidget.png +%%PYQT_DOCDIR%%/html/images/cleanlooks-pushbutton-menu.png +%%PYQT_DOCDIR%%/html/images/conceptaudio.png +%%PYQT_DOCDIR%%/html/images/conceptvideo.png +%%PYQT_DOCDIR%%/html/images/containerextension-example.png +%%PYQT_DOCDIR%%/html/images/cursor-arrow.png +%%PYQT_DOCDIR%%/html/images/cursor-busy.png +%%PYQT_DOCDIR%%/html/images/cursor-closedhand.png +%%PYQT_DOCDIR%%/html/images/cursor-cross.png +%%PYQT_DOCDIR%%/html/images/cursor-forbidden.png +%%PYQT_DOCDIR%%/html/images/cursor-hand.png +%%PYQT_DOCDIR%%/html/images/cursor-hsplit.png +%%PYQT_DOCDIR%%/html/images/cursor-ibeam.png +%%PYQT_DOCDIR%%/html/images/cursor-openhand.png +%%PYQT_DOCDIR%%/html/images/cursor-sizeall.png +%%PYQT_DOCDIR%%/html/images/cursor-sizeb.png +%%PYQT_DOCDIR%%/html/images/cursor-sizef.png +%%PYQT_DOCDIR%%/html/images/cursor-sizeh.png +%%PYQT_DOCDIR%%/html/images/cursor-sizev.png +%%PYQT_DOCDIR%%/html/images/cursor-uparrow.png +%%PYQT_DOCDIR%%/html/images/cursor-vsplit.png +%%PYQT_DOCDIR%%/html/images/cursor-wait.png +%%PYQT_DOCDIR%%/html/images/cursor-whatsthis.png +%%PYQT_DOCDIR%%/html/images/effectwidget.png +%%PYQT_DOCDIR%%/html/images/filedialogurls.png +%%PYQT_DOCDIR%%/html/images/foreignkeys.png +%%PYQT_DOCDIR%%/html/images/frames.png +%%PYQT_DOCDIR%%/html/images/graphicseffect-blur.png +%%PYQT_DOCDIR%%/html/images/graphicseffect-colorize.png +%%PYQT_DOCDIR%%/html/images/graphicseffect-drop-shadow.png +%%PYQT_DOCDIR%%/html/images/graphicseffect-opacity.png +%%PYQT_DOCDIR%%/html/images/graphicseffect-plain.png +%%PYQT_DOCDIR%%/html/images/graphicseffect-widget.png +%%PYQT_DOCDIR%%/html/images/graphicsview-ellipseitem-pie.png +%%PYQT_DOCDIR%%/html/images/graphicsview-ellipseitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-items.png +%%PYQT_DOCDIR%%/html/images/graphicsview-lineitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-parentchild.png +%%PYQT_DOCDIR%%/html/images/graphicsview-pathitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-pixmapitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-polygonitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-rectitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-simpletextitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-textitem.png +%%PYQT_DOCDIR%%/html/images/graphicsview-view.png +%%PYQT_DOCDIR%%/html/images/graphicsview-zorder.png +%%PYQT_DOCDIR%%/html/images/gridlayout.png +%%PYQT_DOCDIR%%/html/images/hoverevents.png +%%PYQT_DOCDIR%%/html/images/httpstack.png +%%PYQT_DOCDIR%%/html/images/icon.png +%%PYQT_DOCDIR%%/html/images/imageprovider.png +%%PYQT_DOCDIR%%/html/images/inputdialogs.png +%%PYQT_DOCDIR%%/html/images/insertrowinmodelview.png +%%PYQT_DOCDIR%%/html/images/licensewizard-flow.png +%%PYQT_DOCDIR%%/html/images/macintosh-checkbox.png +%%PYQT_DOCDIR%%/html/images/macintosh-dateedit.png +%%PYQT_DOCDIR%%/html/images/macintosh-datetimeedit.png +%%PYQT_DOCDIR%%/html/images/macintosh-dial.png +%%PYQT_DOCDIR%%/html/images/macintosh-groupbox.png +%%PYQT_DOCDIR%%/html/images/macintosh-horizontalscrollbar.png +%%PYQT_DOCDIR%%/html/images/macintosh-label.png +%%PYQT_DOCDIR%%/html/images/macintosh-lcdnumber.png +%%PYQT_DOCDIR%%/html/images/macintosh-lineedit.png +%%PYQT_DOCDIR%%/html/images/macintosh-listview.png +%%PYQT_DOCDIR%%/html/images/macintosh-menu.png +%%PYQT_DOCDIR%%/html/images/macintosh-progressbar.png +%%PYQT_DOCDIR%%/html/images/macintosh-pushbutton.png +%%PYQT_DOCDIR%%/html/images/macintosh-radiobutton.png +%%PYQT_DOCDIR%%/html/images/macintosh-slider.png +%%PYQT_DOCDIR%%/html/images/macintosh-spinbox.png +%%PYQT_DOCDIR%%/html/images/macintosh-tableview.png +%%PYQT_DOCDIR%%/html/images/macintosh-tabwidget.png +%%PYQT_DOCDIR%%/html/images/macintosh-timeedit.png +%%PYQT_DOCDIR%%/html/images/macintosh-treeview.png +%%PYQT_DOCDIR%%/html/images/mainwindow-docks.png +%%PYQT_DOCDIR%%/html/images/mainwindowlayout.png +%%PYQT_DOCDIR%%/html/images/mdi-cascade.png +%%PYQT_DOCDIR%%/html/images/mdi-tile.png +%%PYQT_DOCDIR%%/html/images/modelindex-no-parent.png +%%PYQT_DOCDIR%%/html/images/modelview-begin-append-columns.png +%%PYQT_DOCDIR%%/html/images/modelview-begin-append-rows.png +%%PYQT_DOCDIR%%/html/images/modelview-begin-insert-columns.png +%%PYQT_DOCDIR%%/html/images/modelview-begin-insert-rows.png +%%PYQT_DOCDIR%%/html/images/modelview-begin-remove-columns.png +%%PYQT_DOCDIR%%/html/images/modelview-begin-remove-rows.png +%%PYQT_DOCDIR%%/html/images/modelview-move-rows-1.png +%%PYQT_DOCDIR%%/html/images/modelview-move-rows-2.png +%%PYQT_DOCDIR%%/html/images/modelview-move-rows-3.png +%%PYQT_DOCDIR%%/html/images/modelview-move-rows-4.png +%%PYQT_DOCDIR%%/html/images/motif-lcdnumber.png +%%PYQT_DOCDIR%%/html/images/motif-menubar.png +%%PYQT_DOCDIR%%/html/images/msgbox1.png +%%PYQT_DOCDIR%%/html/images/msgbox2.png +%%PYQT_DOCDIR%%/html/images/msgbox3.png +%%PYQT_DOCDIR%%/html/images/msgbox4.png +%%PYQT_DOCDIR%%/html/images/noforeignkeys.png +%%PYQT_DOCDIR%%/html/images/palette.png +%%PYQT_DOCDIR%%/html/images/pangesture.png +%%PYQT_DOCDIR%%/html/images/parent-child-widgets.png +%%PYQT_DOCDIR%%/html/images/patternist-wordProcessor.png +%%PYQT_DOCDIR%%/html/images/pinchgesture.png +%%PYQT_DOCDIR%%/html/images/plastique-checkbox.png +%%PYQT_DOCDIR%%/html/images/plastique-colordialog.png +%%PYQT_DOCDIR%%/html/images/plastique-dateedit.png +%%PYQT_DOCDIR%%/html/images/plastique-datetimeedit.png +%%PYQT_DOCDIR%%/html/images/plastique-dial.png +%%PYQT_DOCDIR%%/html/images/plastique-fontdialog.png +%%PYQT_DOCDIR%%/html/images/plastique-groupbox.png +%%PYQT_DOCDIR%%/html/images/plastique-horizontalscrollbar.png +%%PYQT_DOCDIR%%/html/images/plastique-label.png +%%PYQT_DOCDIR%%/html/images/plastique-lcdnumber.png +%%PYQT_DOCDIR%%/html/images/plastique-lineedit.png +%%PYQT_DOCDIR%%/html/images/plastique-listview.png +%%PYQT_DOCDIR%%/html/images/plastique-menu.png +%%PYQT_DOCDIR%%/html/images/plastique-menubar.png +%%PYQT_DOCDIR%%/html/images/plastique-printdialog-properties.png +%%PYQT_DOCDIR%%/html/images/plastique-printdialog.png +%%PYQT_DOCDIR%%/html/images/plastique-progressbar.png +%%PYQT_DOCDIR%%/html/images/plastique-progressdialog.png +%%PYQT_DOCDIR%%/html/images/plastique-pushbutton-menu.png +%%PYQT_DOCDIR%%/html/images/plastique-pushbutton.png +%%PYQT_DOCDIR%%/html/images/plastique-radiobutton.png +%%PYQT_DOCDIR%%/html/images/plastique-sizegrip.png +%%PYQT_DOCDIR%%/html/images/plastique-slider.png +%%PYQT_DOCDIR%%/html/images/plastique-spinbox.png +%%PYQT_DOCDIR%%/html/images/plastique-statusbar.png +%%PYQT_DOCDIR%%/html/images/plastique-tabbar-truncated.png +%%PYQT_DOCDIR%%/html/images/plastique-tabbar.png +%%PYQT_DOCDIR%%/html/images/plastique-tableview.png +%%PYQT_DOCDIR%%/html/images/plastique-tabwidget.png +%%PYQT_DOCDIR%%/html/images/plastique-timeedit.png +%%PYQT_DOCDIR%%/html/images/plastique-treeview.png +%%PYQT_DOCDIR%%/html/images/propagation-custom.png +%%PYQT_DOCDIR%%/html/images/propagation-standard.png +%%PYQT_DOCDIR%%/html/images/qactiongroup-align.png +%%PYQT_DOCDIR%%/html/images/qcalendarwidget-grid.png +%%PYQT_DOCDIR%%/html/images/qcolor-cmyk.png +%%PYQT_DOCDIR%%/html/images/qcolor-hsv.png +%%PYQT_DOCDIR%%/html/images/qcolor-hue.png +%%PYQT_DOCDIR%%/html/images/qcolor-rgb.png +%%PYQT_DOCDIR%%/html/images/qcolor-saturation.png +%%PYQT_DOCDIR%%/html/images/qcolor-value.png +%%PYQT_DOCDIR%%/html/images/qcolumnview.png +%%PYQT_DOCDIR%%/html/images/qconicalgradient.png +%%PYQT_DOCDIR%%/html/images/qdesktopwidget.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inback.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inbounce.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-incirc.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-incubic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inelastic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inexpo.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutback.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutbounce.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutcirc.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutcubic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutelastic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutexpo.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutquad.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutquart.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutquint.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inoutsine.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inquad.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inquart.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-inquint.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-insine.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-linear.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outback.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outbounce.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outcirc.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outcubic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outelastic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outexpo.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinback.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinbounce.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outincirc.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outincubic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinelastic.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinexpo.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinquad.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinquart.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinquint.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outinsine.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outquad.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outquart.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outquint.png +%%PYQT_DOCDIR%%/html/images/qeasingcurve-outsine.png +%%PYQT_DOCDIR%%/html/images/qerrormessage.png +%%PYQT_DOCDIR%%/html/images/qformlayout-kde.png +%%PYQT_DOCDIR%%/html/images/qformlayout-mac.png +%%PYQT_DOCDIR%%/html/images/qformlayout-qpe.png +%%PYQT_DOCDIR%%/html/images/qformlayout-win.png +%%PYQT_DOCDIR%%/html/images/qgradient-conical.png +%%PYQT_DOCDIR%%/html/images/qgradient-linear.png +%%PYQT_DOCDIR%%/html/images/qgradient-radial.png +%%PYQT_DOCDIR%%/html/images/qgraphicsproxywidget-embed.png +%%PYQT_DOCDIR%%/html/images/qhboxlayout-with-5-children.png +%%PYQT_DOCDIR%%/html/images/qimage-32bit_scaled.png +%%PYQT_DOCDIR%%/html/images/qimage-8bit_scaled.png +%%PYQT_DOCDIR%%/html/images/qimage-scaling.png +%%PYQT_DOCDIR%%/html/images/qline-coordinates.png +%%PYQT_DOCDIR%%/html/images/qline-point.png +%%PYQT_DOCDIR%%/html/images/qlineargradient-pad.png +%%PYQT_DOCDIR%%/html/images/qlineargradient-reflect.png +%%PYQT_DOCDIR%%/html/images/qlineargradient-repeat.png +%%PYQT_DOCDIR%%/html/images/qlinef-bounded.png +%%PYQT_DOCDIR%%/html/images/qlinef-normalvector.png +%%PYQT_DOCDIR%%/html/images/qlinef-unbounded.png +%%PYQT_DOCDIR%%/html/images/qmatrix-combinedtransformation.png +%%PYQT_DOCDIR%%/html/images/qmatrix-representation.png +%%PYQT_DOCDIR%%/html/images/qmatrix-simpletransformation.png +%%PYQT_DOCDIR%%/html/images/qmdisubwindowlayout.png +%%PYQT_DOCDIR%%/html/images/qmessagebox-crit.png +%%PYQT_DOCDIR%%/html/images/qmessagebox-info.png +%%PYQT_DOCDIR%%/html/images/qmessagebox-quest.png +%%PYQT_DOCDIR%%/html/images/qmessagebox-warn.png +%%PYQT_DOCDIR%%/html/images/qpainter-affinetransformations.png +%%PYQT_DOCDIR%%/html/images/qpainter-arc.png +%%PYQT_DOCDIR%%/html/images/qpainter-basicdrawing.png +%%PYQT_DOCDIR%%/html/images/qpainter-chord.png +%%PYQT_DOCDIR%%/html/images/qpainter-clock.png +%%PYQT_DOCDIR%%/html/images/qpainter-compositiondemo.png +%%PYQT_DOCDIR%%/html/images/qpainter-compositionmode1.png +%%PYQT_DOCDIR%%/html/images/qpainter-compositionmode2.png +%%PYQT_DOCDIR%%/html/images/qpainter-concentriccircles.png +%%PYQT_DOCDIR%%/html/images/qpainter-ellipse.png +%%PYQT_DOCDIR%%/html/images/qpainter-gradients.png +%%PYQT_DOCDIR%%/html/images/qpainter-line.png +%%PYQT_DOCDIR%%/html/images/qpainter-painterpaths.png +%%PYQT_DOCDIR%%/html/images/qpainter-path.png +%%PYQT_DOCDIR%%/html/images/qpainter-pathstroking.png +%%PYQT_DOCDIR%%/html/images/qpainter-pie.png +%%PYQT_DOCDIR%%/html/images/qpainter-polygon.png +%%PYQT_DOCDIR%%/html/images/qpainter-rectangle.png +%%PYQT_DOCDIR%%/html/images/qpainter-rotation.png +%%PYQT_DOCDIR%%/html/images/qpainter-roundrect.png +%%PYQT_DOCDIR%%/html/images/qpainter-scale.png +%%PYQT_DOCDIR%%/html/images/qpainter-translation.png +%%PYQT_DOCDIR%%/html/images/qpainter-vectordeformation.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-addellipse.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-addpolygon.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-addrectangle.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-addtext.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-arcto.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-construction.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-cubicto.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-demo.png +%%PYQT_DOCDIR%%/html/images/qpainterpath-example.png +%%PYQT_DOCDIR%%/html/images/qpen-bevel.png +%%PYQT_DOCDIR%%/html/images/qpen-custom.png +%%PYQT_DOCDIR%%/html/images/qpen-dash.png +%%PYQT_DOCDIR%%/html/images/qpen-dashdot.png +%%PYQT_DOCDIR%%/html/images/qpen-dashdotdot.png +%%PYQT_DOCDIR%%/html/images/qpen-dashpattern.png +%%PYQT_DOCDIR%%/html/images/qpen-demo.png +%%PYQT_DOCDIR%%/html/images/qpen-dot.png +%%PYQT_DOCDIR%%/html/images/qpen-flat.png +%%PYQT_DOCDIR%%/html/images/qpen-miter.png +%%PYQT_DOCDIR%%/html/images/qpen-miterlimit.png +%%PYQT_DOCDIR%%/html/images/qpen-roundcap.png +%%PYQT_DOCDIR%%/html/images/qpen-roundjoin.png +%%PYQT_DOCDIR%%/html/images/qpen-solid.png +%%PYQT_DOCDIR%%/html/images/qpen-square.png +%%PYQT_DOCDIR%%/html/images/qradialgradient-pad.png +%%PYQT_DOCDIR%%/html/images/qradialgradient-reflect.png +%%PYQT_DOCDIR%%/html/images/qradialgradient-repeat.png +%%PYQT_DOCDIR%%/html/images/qrect-coordinates.png +%%PYQT_DOCDIR%%/html/images/qrect-diagram-one.png +%%PYQT_DOCDIR%%/html/images/qrect-diagram-three.png +%%PYQT_DOCDIR%%/html/images/qrect-diagram-two.png +%%PYQT_DOCDIR%%/html/images/qrect-diagram-zero.png +%%PYQT_DOCDIR%%/html/images/qrect-intersect.png +%%PYQT_DOCDIR%%/html/images/qrect-unite.png +%%PYQT_DOCDIR%%/html/images/qrectf-coordinates.png +%%PYQT_DOCDIR%%/html/images/qrectf-diagram-one.png +%%PYQT_DOCDIR%%/html/images/qrectf-diagram-three.png +%%PYQT_DOCDIR%%/html/images/qrectf-diagram-two.png +%%PYQT_DOCDIR%%/html/images/qscrollarea-noscrollbars.png +%%PYQT_DOCDIR%%/html/images/qscrollarea-onescrollbar.png +%%PYQT_DOCDIR%%/html/images/qscrollarea-twoscrollbars.png +%%PYQT_DOCDIR%%/html/images/qscrollbar-picture.png +%%PYQT_DOCDIR%%/html/images/qscrollbar-values.png +%%PYQT_DOCDIR%%/html/images/qsortfilterproxymodel-sorting.png +%%PYQT_DOCDIR%%/html/images/qspinbox-plusminus.png +%%PYQT_DOCDIR%%/html/images/qspinbox-updown.png +%%PYQT_DOCDIR%%/html/images/qstatustipevent-action.png +%%PYQT_DOCDIR%%/html/images/qstatustipevent-widget.png +%%PYQT_DOCDIR%%/html/images/qstyle-comboboxes.png +%%PYQT_DOCDIR%%/html/images/qstyleoptiontoolbar-position.png +%%PYQT_DOCDIR%%/html/images/qt-colors.png +%%PYQT_DOCDIR%%/html/images/qt-fillrule-oddeven.png +%%PYQT_DOCDIR%%/html/images/qt-fillrule-winding.png +%%PYQT_DOCDIR%%/html/images/qtabletevent-tilt.png +%%PYQT_DOCDIR%%/html/images/qtableview-resized.png +%%PYQT_DOCDIR%%/html/images/qtextblock-sequence.png +%%PYQT_DOCDIR%%/html/images/qtextfragment-split.png +%%PYQT_DOCDIR%%/html/images/qtextframe-style.png +%%PYQT_DOCDIR%%/html/images/qtexttableformat-cell.png +%%PYQT_DOCDIR%%/html/images/qtransform-combinedtransformation.png +%%PYQT_DOCDIR%%/html/images/qtransform-combinedtransformation2.png +%%PYQT_DOCDIR%%/html/images/qtransform-representation.png +%%PYQT_DOCDIR%%/html/images/qtransform-simpletransformation.png +%%PYQT_DOCDIR%%/html/images/qtwizard-aero1.png +%%PYQT_DOCDIR%%/html/images/qtwizard-aero2.png +%%PYQT_DOCDIR%%/html/images/qtwizard-classic1.png +%%PYQT_DOCDIR%%/html/images/qtwizard-classic2.png +%%PYQT_DOCDIR%%/html/images/qtwizard-mac1.png +%%PYQT_DOCDIR%%/html/images/qtwizard-mac2.png +%%PYQT_DOCDIR%%/html/images/qtwizard-macpage.png +%%PYQT_DOCDIR%%/html/images/qtwizard-modern1.png +%%PYQT_DOCDIR%%/html/images/qtwizard-modern2.png +%%PYQT_DOCDIR%%/html/images/qtwizard-nonmacpage.png +%%PYQT_DOCDIR%%/html/images/qundoview.png +%%PYQT_DOCDIR%%/html/images/qurl-authority.png +%%PYQT_DOCDIR%%/html/images/qurl-authority2.png +%%PYQT_DOCDIR%%/html/images/qurl-authority3.png +%%PYQT_DOCDIR%%/html/images/qurl-fragment.png +%%PYQT_DOCDIR%%/html/images/qurl-ftppath.png +%%PYQT_DOCDIR%%/html/images/qurl-mailtopath.png +%%PYQT_DOCDIR%%/html/images/qurl-querystring.png +%%PYQT_DOCDIR%%/html/images/qvboxlayout-with-5-children.png +%%PYQT_DOCDIR%%/html/images/qwebview-diagram.png +%%PYQT_DOCDIR%%/html/images/rb-logo.png +%%PYQT_DOCDIR%%/html/images/relationaltable.png +%%PYQT_DOCDIR%%/html/images/rintersect.png +%%PYQT_DOCDIR%%/html/images/roaming-states.png +%%PYQT_DOCDIR%%/html/images/rsubtract.png +%%PYQT_DOCDIR%%/html/images/runion.png +%%PYQT_DOCDIR%%/html/images/rxor.png +%%PYQT_DOCDIR%%/html/images/simpleanchorlayout-example.png +%%PYQT_DOCDIR%%/html/images/swipegesture.png +%%PYQT_DOCDIR%%/html/images/system-tray.png +%%PYQT_DOCDIR%%/html/images/taskmenuextension-example-faded.png +%%PYQT_DOCDIR%%/html/images/tcpstream.png +%%PYQT_DOCDIR%%/html/images/texttable-merge.png +%%PYQT_DOCDIR%%/html/images/texttable-split.png +%%PYQT_DOCDIR%%/html/images/udppackets.png +%%PYQT_DOCDIR%%/html/images/whatsthis.png +%%PYQT_DOCDIR%%/html/images/widgetdelegate.png +%%PYQT_DOCDIR%%/html/images/windows-checkbox.png +%%PYQT_DOCDIR%%/html/images/windows-lcdnumber.png +%%PYQT_DOCDIR%%/html/images/windows-lineedit.png +%%PYQT_DOCDIR%%/html/images/windows-radiobutton.png +%%PYQT_DOCDIR%%/html/images/windows-slider.png +%%PYQT_DOCDIR%%/html/images/windowsxp-dateedit.png +%%PYQT_DOCDIR%%/html/images/windowsxp-datetimeedit.png +%%PYQT_DOCDIR%%/html/images/windowsxp-dial.png +%%PYQT_DOCDIR%%/html/images/windowsxp-fontcombobox.png +%%PYQT_DOCDIR%%/html/images/windowsxp-groupbox.png +%%PYQT_DOCDIR%%/html/images/windowsxp-horizontalscrollbar.png +%%PYQT_DOCDIR%%/html/images/windowsxp-label.png +%%PYQT_DOCDIR%%/html/images/windowsxp-lcdnumber.png +%%PYQT_DOCDIR%%/html/images/windowsxp-listview.png +%%PYQT_DOCDIR%%/html/images/windowsxp-menu.png +%%PYQT_DOCDIR%%/html/images/windowsxp-progressbar.png +%%PYQT_DOCDIR%%/html/images/windowsxp-pushbutton.png +%%PYQT_DOCDIR%%/html/images/windowsxp-spinbox.png +%%PYQT_DOCDIR%%/html/images/windowsxp-tableview.png +%%PYQT_DOCDIR%%/html/images/windowsxp-tabwidget.png +%%PYQT_DOCDIR%%/html/images/windowsxp-timeedit.png +%%PYQT_DOCDIR%%/html/images/windowsxp-treeview.png +%%PYQT_DOCDIR%%/html/incompatibilities.html +%%PYQT_DOCDIR%%/html/incompatible_apis.html +%%PYQT_DOCDIR%%/html/index.html +%%PYQT_DOCDIR%%/html/installation.html +%%PYQT_DOCDIR%%/html/introduction.html +%%PYQT_DOCDIR%%/html/keyword_arguments.html +%%PYQT_DOCDIR%%/html/modules.html +%%PYQT_DOCDIR%%/html/new_style_signals_slots.html +%%PYQT_DOCDIR%%/html/objects.inv +%%PYQT_DOCDIR%%/html/old_style_signals_slots.html +%%PYQT_DOCDIR%%/html/phonon-abstractaudiooutput.html +%%PYQT_DOCDIR%%/html/phonon-abstractvideooutput.html +%%PYQT_DOCDIR%%/html/phonon-audiocapturedevice.html +%%PYQT_DOCDIR%%/html/phonon-audiochanneldescription.html +%%PYQT_DOCDIR%%/html/phonon-audiooutput.html +%%PYQT_DOCDIR%%/html/phonon-audiooutputdevice.html +%%PYQT_DOCDIR%%/html/phonon-audiooutputdevicemodel.html +%%PYQT_DOCDIR%%/html/phonon-backendcapabilities-notifier.html +%%PYQT_DOCDIR%%/html/phonon-backendcapabilities.html +%%PYQT_DOCDIR%%/html/phonon-effect.html +%%PYQT_DOCDIR%%/html/phonon-effectdescription.html +%%PYQT_DOCDIR%%/html/phonon-effectdescriptionmodel.html +%%PYQT_DOCDIR%%/html/phonon-effectparameter-hints.html +%%PYQT_DOCDIR%%/html/phonon-effectparameter.html +%%PYQT_DOCDIR%%/html/phonon-effectwidget.html +%%PYQT_DOCDIR%%/html/phonon-mediacontroller-features.html +%%PYQT_DOCDIR%%/html/phonon-mediacontroller.html +%%PYQT_DOCDIR%%/html/phonon-medianode.html +%%PYQT_DOCDIR%%/html/phonon-mediaobject.html +%%PYQT_DOCDIR%%/html/phonon-mediasource.html +%%PYQT_DOCDIR%%/html/phonon-module.html +%%PYQT_DOCDIR%%/html/phonon-path.html +%%PYQT_DOCDIR%%/html/phonon-seekslider.html +%%PYQT_DOCDIR%%/html/phonon-subtitledescription.html +%%PYQT_DOCDIR%%/html/phonon-videoplayer.html +%%PYQT_DOCDIR%%/html/phonon-videowidget.html +%%PYQT_DOCDIR%%/html/phonon-volumeslider.html +%%PYQT_DOCDIR%%/html/phonon.html +%%PYQT_DOCDIR%%/html/pickle.html +%%PYQT_DOCDIR%%/html/py-modindex.html +%%PYQT_DOCDIR%%/html/pyqt_qsettings.html +%%PYQT_DOCDIR%%/html/pyqt_qvariant.html +%%PYQT_DOCDIR%%/html/python_shell.html +%%PYQT_DOCDIR%%/html/python_v3.html +%%PYQT_DOCDIR%%/html/qabstractanimation.html +%%PYQT_DOCDIR%%/html/qabstractbutton.html +%%PYQT_DOCDIR%%/html/qabstracteventdispatcher.html +%%PYQT_DOCDIR%%/html/qabstractextensionfactory.html +%%PYQT_DOCDIR%%/html/qabstractextensionmanager.html +%%PYQT_DOCDIR%%/html/qabstractfileengine-fileflags.html +%%PYQT_DOCDIR%%/html/qabstractfileengine.html +%%PYQT_DOCDIR%%/html/qabstractfileenginehandler.html +%%PYQT_DOCDIR%%/html/qabstractfileengineiterator.html +%%PYQT_DOCDIR%%/html/qabstractformbuilder.html +%%PYQT_DOCDIR%%/html/qabstractgraphicsshapeitem.html +%%PYQT_DOCDIR%%/html/qabstractitemdelegate.html +%%PYQT_DOCDIR%%/html/qabstractitemmodel.html +%%PYQT_DOCDIR%%/html/qabstractitemview-edittriggers.html +%%PYQT_DOCDIR%%/html/qabstractitemview.html +%%PYQT_DOCDIR%%/html/qabstractlistmodel.html +%%PYQT_DOCDIR%%/html/qabstractmessagehandler.html +%%PYQT_DOCDIR%%/html/qabstractnetworkcache.html +%%PYQT_DOCDIR%%/html/qabstractprintdialog-printdialogoptions.html +%%PYQT_DOCDIR%%/html/qabstractprintdialog.html +%%PYQT_DOCDIR%%/html/qabstractproxymodel.html +%%PYQT_DOCDIR%%/html/qabstractscrollarea.html +%%PYQT_DOCDIR%%/html/qabstractslider.html +%%PYQT_DOCDIR%%/html/qabstractsocket.html +%%PYQT_DOCDIR%%/html/qabstractspinbox-stepenabled.html +%%PYQT_DOCDIR%%/html/qabstractspinbox.html +%%PYQT_DOCDIR%%/html/qabstractstate.html +%%PYQT_DOCDIR%%/html/qabstracttablemodel.html +%%PYQT_DOCDIR%%/html/qabstracttextdocumentlayout-paintcontext.html +%%PYQT_DOCDIR%%/html/qabstracttextdocumentlayout-selection.html +%%PYQT_DOCDIR%%/html/qabstracttextdocumentlayout.html +%%PYQT_DOCDIR%%/html/qabstracttransition.html +%%PYQT_DOCDIR%%/html/qabstracturiresolver.html +%%PYQT_DOCDIR%%/html/qabstractvideobuffer.html +%%PYQT_DOCDIR%%/html/qabstractvideosurface.html +%%PYQT_DOCDIR%%/html/qabstractxmlnodemodel.html +%%PYQT_DOCDIR%%/html/qabstractxmlreceiver.html +%%PYQT_DOCDIR%%/html/qaction.html +%%PYQT_DOCDIR%%/html/qactionevent.html +%%PYQT_DOCDIR%%/html/qactiongroup.html +%%PYQT_DOCDIR%%/html/qanimationgroup.html +%%PYQT_DOCDIR%%/html/qapplication.html +%%PYQT_DOCDIR%%/html/qassistantclient.html +%%PYQT_DOCDIR%%/html/qaudio.html +%%PYQT_DOCDIR%%/html/qaudiodeviceinfo.html +%%PYQT_DOCDIR%%/html/qaudioformat.html +%%PYQT_DOCDIR%%/html/qaudioinput.html +%%PYQT_DOCDIR%%/html/qaudiooutput.html +%%PYQT_DOCDIR%%/html/qauthenticator.html +%%PYQT_DOCDIR%%/html/qaxcontainer.html +%%PYQT_DOCDIR%%/html/qbasictimer.html +%%PYQT_DOCDIR%%/html/qbitarray.html +%%PYQT_DOCDIR%%/html/qbitmap.html +%%PYQT_DOCDIR%%/html/qboxlayout.html +%%PYQT_DOCDIR%%/html/qbrush.html +%%PYQT_DOCDIR%%/html/qbuffer.html +%%PYQT_DOCDIR%%/html/qbuttongroup.html +%%PYQT_DOCDIR%%/html/qbytearray.html +%%PYQT_DOCDIR%%/html/qbytearraymatcher.html +%%PYQT_DOCDIR%%/html/qcalendarwidget.html +%%PYQT_DOCDIR%%/html/qchar.html +%%PYQT_DOCDIR%%/html/qcheckbox.html +%%PYQT_DOCDIR%%/html/qchildevent.html +%%PYQT_DOCDIR%%/html/qclipboard.html +%%PYQT_DOCDIR%%/html/qcloseevent.html +%%PYQT_DOCDIR%%/html/qcolor.html +%%PYQT_DOCDIR%%/html/qcolordialog-colordialogoptions.html +%%PYQT_DOCDIR%%/html/qcolordialog.html +%%PYQT_DOCDIR%%/html/qcolumnview.html +%%PYQT_DOCDIR%%/html/qcombobox.html +%%PYQT_DOCDIR%%/html/qcommandlinkbutton.html +%%PYQT_DOCDIR%%/html/qcommonstyle.html +%%PYQT_DOCDIR%%/html/qcompleter.html +%%PYQT_DOCDIR%%/html/qconicalgradient.html +%%PYQT_DOCDIR%%/html/qcontextmenuevent.html +%%PYQT_DOCDIR%%/html/qcoreapplication.html +%%PYQT_DOCDIR%%/html/qcryptographichash.html +%%PYQT_DOCDIR%%/html/qcursor.html +%%PYQT_DOCDIR%%/html/qdatastream.html +%%PYQT_DOCDIR%%/html/qdatawidgetmapper.html +%%PYQT_DOCDIR%%/html/qdate.html +%%PYQT_DOCDIR%%/html/qdateedit.html +%%PYQT_DOCDIR%%/html/qdatetime.html +%%PYQT_DOCDIR%%/html/qdatetimeedit-sections.html +%%PYQT_DOCDIR%%/html/qdatetimeedit.html +%%PYQT_DOCDIR%%/html/qdbus.html +%%PYQT_DOCDIR%%/html/qdbusabstractadaptor.html +%%PYQT_DOCDIR%%/html/qdbusabstractinterface.html +%%PYQT_DOCDIR%%/html/qdbusargument.html +%%PYQT_DOCDIR%%/html/qdbusconnection-connectioncapabilities.html +%%PYQT_DOCDIR%%/html/qdbusconnection-registeroptions.html +%%PYQT_DOCDIR%%/html/qdbusconnection.html +%%PYQT_DOCDIR%%/html/qdbusconnectioninterface.html +%%PYQT_DOCDIR%%/html/qdbuserror.html +%%PYQT_DOCDIR%%/html/qdbusinterface.html +%%PYQT_DOCDIR%%/html/qdbusmessage.html +%%PYQT_DOCDIR%%/html/qdbusobjectpath.html +%%PYQT_DOCDIR%%/html/qdbuspendingcall.html +%%PYQT_DOCDIR%%/html/qdbuspendingcallwatcher.html +%%PYQT_DOCDIR%%/html/qdbuspendingreply.html +%%PYQT_DOCDIR%%/html/qdbusreply.html +%%PYQT_DOCDIR%%/html/qdbusservicewatcher-watchmode.html +%%PYQT_DOCDIR%%/html/qdbusservicewatcher.html +%%PYQT_DOCDIR%%/html/qdbussignature.html +%%PYQT_DOCDIR%%/html/qdbusunixfiledescriptor.html +%%PYQT_DOCDIR%%/html/qdbusvariant.html +%%PYQT_DOCDIR%%/html/qdeclarativecomponent.html +%%PYQT_DOCDIR%%/html/qdeclarativecontext.html +%%PYQT_DOCDIR%%/html/qdeclarativeengine.html +%%PYQT_DOCDIR%%/html/qdeclarativeerror.html +%%PYQT_DOCDIR%%/html/qdeclarativeexpression.html +%%PYQT_DOCDIR%%/html/qdeclarativeextensionplugin.html +%%PYQT_DOCDIR%%/html/qdeclarativeimageprovider.html +%%PYQT_DOCDIR%%/html/qdeclarativeitem.html +%%PYQT_DOCDIR%%/html/qdeclarativelistreference.html +%%PYQT_DOCDIR%%/html/qdeclarativenetworkaccessmanagerfactory.html +%%PYQT_DOCDIR%%/html/qdeclarativeparserstatus.html +%%PYQT_DOCDIR%%/html/qdeclarativeproperty.html +%%PYQT_DOCDIR%%/html/qdeclarativepropertymap.html +%%PYQT_DOCDIR%%/html/qdeclarativepropertyvaluesource.html +%%PYQT_DOCDIR%%/html/qdeclarativescriptstring.html +%%PYQT_DOCDIR%%/html/qdeclarativeview.html +%%PYQT_DOCDIR%%/html/qdesigneractioneditorinterface.html +%%PYQT_DOCDIR%%/html/qdesignercontainerextension.html +%%PYQT_DOCDIR%%/html/qdesignercustomwidgetcollectioninterface.html +%%PYQT_DOCDIR%%/html/qdesignercustomwidgetinterface.html +%%PYQT_DOCDIR%%/html/qdesignerformeditorinterface.html +%%PYQT_DOCDIR%%/html/qdesignerformwindowcursorinterface.html +%%PYQT_DOCDIR%%/html/qdesignerformwindowinterface-feature.html +%%PYQT_DOCDIR%%/html/qdesignerformwindowinterface.html +%%PYQT_DOCDIR%%/html/qdesignerformwindowmanagerinterface.html +%%PYQT_DOCDIR%%/html/qdesignermembersheetextension.html +%%PYQT_DOCDIR%%/html/qdesignerobjectinspectorinterface.html +%%PYQT_DOCDIR%%/html/qdesignerpropertyeditorinterface.html +%%PYQT_DOCDIR%%/html/qdesignerpropertysheetextension.html +%%PYQT_DOCDIR%%/html/qdesignertaskmenuextension.html +%%PYQT_DOCDIR%%/html/qdesignerwidgetboxinterface.html +%%PYQT_DOCDIR%%/html/qdesktopservices.html +%%PYQT_DOCDIR%%/html/qdesktopwidget.html +%%PYQT_DOCDIR%%/html/qdial.html +%%PYQT_DOCDIR%%/html/qdialog.html +%%PYQT_DOCDIR%%/html/qdialogbuttonbox-standardbuttons.html +%%PYQT_DOCDIR%%/html/qdialogbuttonbox.html +%%PYQT_DOCDIR%%/html/qdir-filters.html +%%PYQT_DOCDIR%%/html/qdir-sortflags.html +%%PYQT_DOCDIR%%/html/qdir.html +%%PYQT_DOCDIR%%/html/qdiriterator-iteratorflags.html +%%PYQT_DOCDIR%%/html/qdiriterator.html +%%PYQT_DOCDIR%%/html/qdirmodel.html +%%PYQT_DOCDIR%%/html/qdockwidget-dockwidgetfeatures.html +%%PYQT_DOCDIR%%/html/qdockwidget.html +%%PYQT_DOCDIR%%/html/qdomattr.html +%%PYQT_DOCDIR%%/html/qdomcdatasection.html +%%PYQT_DOCDIR%%/html/qdomcharacterdata.html +%%PYQT_DOCDIR%%/html/qdomcomment.html +%%PYQT_DOCDIR%%/html/qdomdocument.html +%%PYQT_DOCDIR%%/html/qdomdocumentfragment.html +%%PYQT_DOCDIR%%/html/qdomdocumenttype.html +%%PYQT_DOCDIR%%/html/qdomelement.html +%%PYQT_DOCDIR%%/html/qdomentity.html +%%PYQT_DOCDIR%%/html/qdomentityreference.html +%%PYQT_DOCDIR%%/html/qdomimplementation.html +%%PYQT_DOCDIR%%/html/qdomnamednodemap.html +%%PYQT_DOCDIR%%/html/qdomnode.html +%%PYQT_DOCDIR%%/html/qdomnodelist.html +%%PYQT_DOCDIR%%/html/qdomnotation.html +%%PYQT_DOCDIR%%/html/qdomprocessinginstruction.html +%%PYQT_DOCDIR%%/html/qdomtext.html +%%PYQT_DOCDIR%%/html/qdoublespinbox.html +%%PYQT_DOCDIR%%/html/qdoublevalidator.html +%%PYQT_DOCDIR%%/html/qdrag.html +%%PYQT_DOCDIR%%/html/qdragenterevent.html +%%PYQT_DOCDIR%%/html/qdragleaveevent.html +%%PYQT_DOCDIR%%/html/qdragmoveevent.html +%%PYQT_DOCDIR%%/html/qdropevent.html +%%PYQT_DOCDIR%%/html/qdynamicpropertychangeevent.html +%%PYQT_DOCDIR%%/html/qeasingcurve.html +%%PYQT_DOCDIR%%/html/qelapsedtimer.html +%%PYQT_DOCDIR%%/html/qerrormessage.html +%%PYQT_DOCDIR%%/html/qevent.html +%%PYQT_DOCDIR%%/html/qeventloop-processeventsflags.html +%%PYQT_DOCDIR%%/html/qeventloop.html +%%PYQT_DOCDIR%%/html/qeventtransition.html +%%PYQT_DOCDIR%%/html/qextensionfactory.html +%%PYQT_DOCDIR%%/html/qextensionmanager.html +%%PYQT_DOCDIR%%/html/qfile-filehandleflags.html +%%PYQT_DOCDIR%%/html/qfile-permissions.html +%%PYQT_DOCDIR%%/html/qfile.html +%%PYQT_DOCDIR%%/html/qfiledialog-options.html +%%PYQT_DOCDIR%%/html/qfiledialog.html +%%PYQT_DOCDIR%%/html/qfileiconprovider.html +%%PYQT_DOCDIR%%/html/qfileinfo.html +%%PYQT_DOCDIR%%/html/qfileopenevent.html +%%PYQT_DOCDIR%%/html/qfilesystemmodel.html +%%PYQT_DOCDIR%%/html/qfilesystemwatcher.html +%%PYQT_DOCDIR%%/html/qfinalstate.html +%%PYQT_DOCDIR%%/html/qfocusevent.html +%%PYQT_DOCDIR%%/html/qfocusframe.html +%%PYQT_DOCDIR%%/html/qfont.html +%%PYQT_DOCDIR%%/html/qfontcombobox-fontfilters.html +%%PYQT_DOCDIR%%/html/qfontcombobox.html +%%PYQT_DOCDIR%%/html/qfontdatabase.html +%%PYQT_DOCDIR%%/html/qfontdialog-fontdialogoptions.html +%%PYQT_DOCDIR%%/html/qfontdialog.html +%%PYQT_DOCDIR%%/html/qfontinfo.html +%%PYQT_DOCDIR%%/html/qfontmetrics.html +%%PYQT_DOCDIR%%/html/qfontmetricsf.html +%%PYQT_DOCDIR%%/html/qformbuilder.html +%%PYQT_DOCDIR%%/html/qformlayout.html +%%PYQT_DOCDIR%%/html/qframe.html +%%PYQT_DOCDIR%%/html/qfsfileengine.html +%%PYQT_DOCDIR%%/html/qftp.html +%%PYQT_DOCDIR%%/html/qgenericargument.html +%%PYQT_DOCDIR%%/html/qgenericreturnargument.html +%%PYQT_DOCDIR%%/html/qgesture.html +%%PYQT_DOCDIR%%/html/qgestureevent.html +%%PYQT_DOCDIR%%/html/qgesturerecognizer-result.html +%%PYQT_DOCDIR%%/html/qgesturerecognizer.html +%%PYQT_DOCDIR%%/html/qgl-formatoptions.html +%%PYQT_DOCDIR%%/html/qgl.html +%%PYQT_DOCDIR%%/html/qglbuffer.html +%%PYQT_DOCDIR%%/html/qglcolormap.html +%%PYQT_DOCDIR%%/html/qglcontext-bindoptions.html +%%PYQT_DOCDIR%%/html/qglcontext.html +%%PYQT_DOCDIR%%/html/qglformat-openglversionflags.html +%%PYQT_DOCDIR%%/html/qglformat.html +%%PYQT_DOCDIR%%/html/qglframebufferobject.html +%%PYQT_DOCDIR%%/html/qglframebufferobjectformat.html +%%PYQT_DOCDIR%%/html/qglpixelbuffer.html +%%PYQT_DOCDIR%%/html/qglshader-shadertype.html +%%PYQT_DOCDIR%%/html/qglshader.html +%%PYQT_DOCDIR%%/html/qglshaderprogram.html +%%PYQT_DOCDIR%%/html/qglwidget.html +%%PYQT_DOCDIR%%/html/qglyphrun.html +%%PYQT_DOCDIR%%/html/qgradient.html +%%PYQT_DOCDIR%%/html/qgraphicsanchor.html +%%PYQT_DOCDIR%%/html/qgraphicsanchorlayout.html +%%PYQT_DOCDIR%%/html/qgraphicsblureffect-blurhints.html +%%PYQT_DOCDIR%%/html/qgraphicsblureffect.html +%%PYQT_DOCDIR%%/html/qgraphicscolorizeeffect.html +%%PYQT_DOCDIR%%/html/qgraphicsdropshadoweffect.html +%%PYQT_DOCDIR%%/html/qgraphicseffect-changeflags.html +%%PYQT_DOCDIR%%/html/qgraphicseffect.html +%%PYQT_DOCDIR%%/html/qgraphicsellipseitem.html +%%PYQT_DOCDIR%%/html/qgraphicsgridlayout.html +%%PYQT_DOCDIR%%/html/qgraphicsitem-graphicsitemflags.html +%%PYQT_DOCDIR%%/html/qgraphicsitem.html +%%PYQT_DOCDIR%%/html/qgraphicsitemanimation.html +%%PYQT_DOCDIR%%/html/qgraphicsitemgroup.html +%%PYQT_DOCDIR%%/html/qgraphicslayout.html +%%PYQT_DOCDIR%%/html/qgraphicslayoutitem.html +%%PYQT_DOCDIR%%/html/qgraphicslinearlayout.html +%%PYQT_DOCDIR%%/html/qgraphicslineitem.html +%%PYQT_DOCDIR%%/html/qgraphicsobject.html +%%PYQT_DOCDIR%%/html/qgraphicsopacityeffect.html +%%PYQT_DOCDIR%%/html/qgraphicspathitem.html +%%PYQT_DOCDIR%%/html/qgraphicspixmapitem.html +%%PYQT_DOCDIR%%/html/qgraphicspolygonitem.html +%%PYQT_DOCDIR%%/html/qgraphicsproxywidget.html +%%PYQT_DOCDIR%%/html/qgraphicsrectitem.html +%%PYQT_DOCDIR%%/html/qgraphicsrotation.html +%%PYQT_DOCDIR%%/html/qgraphicsscale.html +%%PYQT_DOCDIR%%/html/qgraphicsscene-scenelayers.html +%%PYQT_DOCDIR%%/html/qgraphicsscene.html +%%PYQT_DOCDIR%%/html/qgraphicsscenecontextmenuevent.html +%%PYQT_DOCDIR%%/html/qgraphicsscenedragdropevent.html +%%PYQT_DOCDIR%%/html/qgraphicssceneevent.html +%%PYQT_DOCDIR%%/html/qgraphicsscenehelpevent.html +%%PYQT_DOCDIR%%/html/qgraphicsscenehoverevent.html +%%PYQT_DOCDIR%%/html/qgraphicsscenemouseevent.html +%%PYQT_DOCDIR%%/html/qgraphicsscenemoveevent.html +%%PYQT_DOCDIR%%/html/qgraphicssceneresizeevent.html +%%PYQT_DOCDIR%%/html/qgraphicsscenewheelevent.html +%%PYQT_DOCDIR%%/html/qgraphicssimpletextitem.html +%%PYQT_DOCDIR%%/html/qgraphicssvgitem.html +%%PYQT_DOCDIR%%/html/qgraphicstextitem.html +%%PYQT_DOCDIR%%/html/qgraphicstransform.html +%%PYQT_DOCDIR%%/html/qgraphicsview-cachemode.html +%%PYQT_DOCDIR%%/html/qgraphicsview-optimizationflags.html +%%PYQT_DOCDIR%%/html/qgraphicsview.html +%%PYQT_DOCDIR%%/html/qgraphicswebview.html +%%PYQT_DOCDIR%%/html/qgraphicswidget.html +%%PYQT_DOCDIR%%/html/qgridlayout.html +%%PYQT_DOCDIR%%/html/qgroupbox.html +%%PYQT_DOCDIR%%/html/qhboxlayout.html +%%PYQT_DOCDIR%%/html/qheaderview.html +%%PYQT_DOCDIR%%/html/qhelpcontentitem.html +%%PYQT_DOCDIR%%/html/qhelpcontentmodel.html +%%PYQT_DOCDIR%%/html/qhelpcontentwidget.html +%%PYQT_DOCDIR%%/html/qhelpengine.html +%%PYQT_DOCDIR%%/html/qhelpenginecore.html +%%PYQT_DOCDIR%%/html/qhelpevent.html +%%PYQT_DOCDIR%%/html/qhelpindexmodel.html +%%PYQT_DOCDIR%%/html/qhelpindexwidget.html +%%PYQT_DOCDIR%%/html/qhelpsearchengine.html +%%PYQT_DOCDIR%%/html/qhelpsearchquery.html +%%PYQT_DOCDIR%%/html/qhelpsearchquerywidget.html +%%PYQT_DOCDIR%%/html/qhelpsearchresultwidget.html +%%PYQT_DOCDIR%%/html/qhideevent.html +%%PYQT_DOCDIR%%/html/qhistorystate.html +%%PYQT_DOCDIR%%/html/qhostaddress.html +%%PYQT_DOCDIR%%/html/qhostinfo.html +%%PYQT_DOCDIR%%/html/qhoverevent.html +%%PYQT_DOCDIR%%/html/qhttp.html +%%PYQT_DOCDIR%%/html/qhttpheader.html +%%PYQT_DOCDIR%%/html/qhttpmultipart.html +%%PYQT_DOCDIR%%/html/qhttppart.html +%%PYQT_DOCDIR%%/html/qhttprequestheader.html +%%PYQT_DOCDIR%%/html/qhttpresponseheader.html +%%PYQT_DOCDIR%%/html/qicon.html +%%PYQT_DOCDIR%%/html/qicondragevent.html +%%PYQT_DOCDIR%%/html/qiconengine.html +%%PYQT_DOCDIR%%/html/qiconenginev2-availablesizesargument.html +%%PYQT_DOCDIR%%/html/qiconenginev2.html +%%PYQT_DOCDIR%%/html/qidentityproxymodel.html +%%PYQT_DOCDIR%%/html/qimage.html +%%PYQT_DOCDIR%%/html/qimageiohandler.html +%%PYQT_DOCDIR%%/html/qimagereader.html +%%PYQT_DOCDIR%%/html/qimagewriter.html +%%PYQT_DOCDIR%%/html/qinputcontext.html +%%PYQT_DOCDIR%%/html/qinputcontextfactory.html +%%PYQT_DOCDIR%%/html/qinputdialog-inputdialogoptions.html +%%PYQT_DOCDIR%%/html/qinputdialog.html +%%PYQT_DOCDIR%%/html/qinputevent.html +%%PYQT_DOCDIR%%/html/qinputmethodevent-attribute.html +%%PYQT_DOCDIR%%/html/qinputmethodevent.html +%%PYQT_DOCDIR%%/html/qintvalidator.html +%%PYQT_DOCDIR%%/html/qiodevice-openmode.html +%%PYQT_DOCDIR%%/html/qiodevice.html +%%PYQT_DOCDIR%%/html/qitemdelegate.html +%%PYQT_DOCDIR%%/html/qitemeditorcreatorbase.html +%%PYQT_DOCDIR%%/html/qitemeditorfactory.html +%%PYQT_DOCDIR%%/html/qitemselection.html +%%PYQT_DOCDIR%%/html/qitemselectionmodel-selectionflags.html +%%PYQT_DOCDIR%%/html/qitemselectionmodel.html +%%PYQT_DOCDIR%%/html/qitemselectionrange.html +%%PYQT_DOCDIR%%/html/qkeyevent.html +%%PYQT_DOCDIR%%/html/qkeyeventtransition.html +%%PYQT_DOCDIR%%/html/qkeysequence.html +%%PYQT_DOCDIR%%/html/qlabel.html +%%PYQT_DOCDIR%%/html/qlatin1char.html +%%PYQT_DOCDIR%%/html/qlatin1string.html +%%PYQT_DOCDIR%%/html/qlayout.html +%%PYQT_DOCDIR%%/html/qlayoutitem.html +%%PYQT_DOCDIR%%/html/qlcdnumber.html +%%PYQT_DOCDIR%%/html/qlibrary-loadhints.html +%%PYQT_DOCDIR%%/html/qlibrary.html +%%PYQT_DOCDIR%%/html/qlibraryinfo.html +%%PYQT_DOCDIR%%/html/qline.html +%%PYQT_DOCDIR%%/html/qlineargradient.html +%%PYQT_DOCDIR%%/html/qlineedit.html +%%PYQT_DOCDIR%%/html/qlinef.html +%%PYQT_DOCDIR%%/html/qlistview.html +%%PYQT_DOCDIR%%/html/qlistwidget.html +%%PYQT_DOCDIR%%/html/qlistwidgetitem.html +%%PYQT_DOCDIR%%/html/qlocale-numberoptions.html +%%PYQT_DOCDIR%%/html/qlocale.html +%%PYQT_DOCDIR%%/html/qlocalserver.html +%%PYQT_DOCDIR%%/html/qlocalsocket.html +%%PYQT_DOCDIR%%/html/qmainwindow-dockoptions.html +%%PYQT_DOCDIR%%/html/qmainwindow.html +%%PYQT_DOCDIR%%/html/qmargins.html +%%PYQT_DOCDIR%%/html/qmatrix.html +%%PYQT_DOCDIR%%/html/qmatrix2x2.html +%%PYQT_DOCDIR%%/html/qmatrix2x3.html +%%PYQT_DOCDIR%%/html/qmatrix2x4.html +%%PYQT_DOCDIR%%/html/qmatrix3x2.html +%%PYQT_DOCDIR%%/html/qmatrix3x3.html +%%PYQT_DOCDIR%%/html/qmatrix3x4.html +%%PYQT_DOCDIR%%/html/qmatrix4x2.html +%%PYQT_DOCDIR%%/html/qmatrix4x3.html +%%PYQT_DOCDIR%%/html/qmatrix4x4.html +%%PYQT_DOCDIR%%/html/qmdiarea-areaoptions.html +%%PYQT_DOCDIR%%/html/qmdiarea.html +%%PYQT_DOCDIR%%/html/qmdisubwindow-subwindowoptions.html +%%PYQT_DOCDIR%%/html/qmdisubwindow.html +%%PYQT_DOCDIR%%/html/qmenu.html +%%PYQT_DOCDIR%%/html/qmenubar.html +%%PYQT_DOCDIR%%/html/qmessagebox-standardbuttons.html +%%PYQT_DOCDIR%%/html/qmessagebox.html +%%PYQT_DOCDIR%%/html/qmetaclassinfo.html +%%PYQT_DOCDIR%%/html/qmetaenum.html +%%PYQT_DOCDIR%%/html/qmetamethod.html +%%PYQT_DOCDIR%%/html/qmetaobject.html +%%PYQT_DOCDIR%%/html/qmetaproperty.html +%%PYQT_DOCDIR%%/html/qmetatype.html +%%PYQT_DOCDIR%%/html/qmimedata.html +%%PYQT_DOCDIR%%/html/qmimesource.html +%%PYQT_DOCDIR%%/html/qml.html +%%PYQT_DOCDIR%%/html/qmodelindex.html +%%PYQT_DOCDIR%%/html/qmouseevent.html +%%PYQT_DOCDIR%%/html/qmouseeventtransition.html +%%PYQT_DOCDIR%%/html/qmoveevent.html +%%PYQT_DOCDIR%%/html/qmovie.html +%%PYQT_DOCDIR%%/html/qmutex.html +%%PYQT_DOCDIR%%/html/qmutexlocker.html +%%PYQT_DOCDIR%%/html/qnetworkaccessmanager.html +%%PYQT_DOCDIR%%/html/qnetworkaddressentry.html +%%PYQT_DOCDIR%%/html/qnetworkcachemetadata.html +%%PYQT_DOCDIR%%/html/qnetworkconfiguration-stateflags.html +%%PYQT_DOCDIR%%/html/qnetworkconfiguration.html +%%PYQT_DOCDIR%%/html/qnetworkconfigurationmanager-capabilities.html +%%PYQT_DOCDIR%%/html/qnetworkconfigurationmanager.html +%%PYQT_DOCDIR%%/html/qnetworkcookie.html +%%PYQT_DOCDIR%%/html/qnetworkcookiejar.html +%%PYQT_DOCDIR%%/html/qnetworkdiskcache.html +%%PYQT_DOCDIR%%/html/qnetworkinterface-interfaceflags.html +%%PYQT_DOCDIR%%/html/qnetworkinterface.html +%%PYQT_DOCDIR%%/html/qnetworkproxy-capabilities.html +%%PYQT_DOCDIR%%/html/qnetworkproxy.html +%%PYQT_DOCDIR%%/html/qnetworkproxyfactory.html +%%PYQT_DOCDIR%%/html/qnetworkproxyquery.html +%%PYQT_DOCDIR%%/html/qnetworkreply.html +%%PYQT_DOCDIR%%/html/qnetworkrequest.html +%%PYQT_DOCDIR%%/html/qnetworksession.html +%%PYQT_DOCDIR%%/html/qobject.html +%%PYQT_DOCDIR%%/html/qobjectcleanuphandler.html +%%PYQT_DOCDIR%%/html/qpagesetupdialog-pagesetupdialogoptions.html +%%PYQT_DOCDIR%%/html/qpagesetupdialog.html +%%PYQT_DOCDIR%%/html/qpaintdevice.html +%%PYQT_DOCDIR%%/html/qpaintengine-dirtyflags.html +%%PYQT_DOCDIR%%/html/qpaintengine-paintenginefeatures.html +%%PYQT_DOCDIR%%/html/qpaintengine.html +%%PYQT_DOCDIR%%/html/qpaintenginestate.html +%%PYQT_DOCDIR%%/html/qpainter-pixmapfragment.html +%%PYQT_DOCDIR%%/html/qpainter-pixmapfragmenthints.html +%%PYQT_DOCDIR%%/html/qpainter-renderhints.html +%%PYQT_DOCDIR%%/html/qpainter.html +%%PYQT_DOCDIR%%/html/qpainterpath-element.html +%%PYQT_DOCDIR%%/html/qpainterpath.html +%%PYQT_DOCDIR%%/html/qpainterpathstroker.html +%%PYQT_DOCDIR%%/html/qpaintevent.html +%%PYQT_DOCDIR%%/html/qpalette.html +%%PYQT_DOCDIR%%/html/qpangesture.html +%%PYQT_DOCDIR%%/html/qparallelanimationgroup.html +%%PYQT_DOCDIR%%/html/qpauseanimation.html +%%PYQT_DOCDIR%%/html/qpen.html +%%PYQT_DOCDIR%%/html/qpersistentmodelindex.html +%%PYQT_DOCDIR%%/html/qpicture.html +%%PYQT_DOCDIR%%/html/qpictureio.html +%%PYQT_DOCDIR%%/html/qpinchgesture-changeflags.html +%%PYQT_DOCDIR%%/html/qpinchgesture.html +%%PYQT_DOCDIR%%/html/qpixmap.html +%%PYQT_DOCDIR%%/html/qpixmapcache-key.html +%%PYQT_DOCDIR%%/html/qpixmapcache.html +%%PYQT_DOCDIR%%/html/qplaintextdocumentlayout.html +%%PYQT_DOCDIR%%/html/qplaintextedit.html +%%PYQT_DOCDIR%%/html/qpluginloader.html +%%PYQT_DOCDIR%%/html/qpoint.html +%%PYQT_DOCDIR%%/html/qpointf.html +%%PYQT_DOCDIR%%/html/qpolygon.html +%%PYQT_DOCDIR%%/html/qpolygonf.html +%%PYQT_DOCDIR%%/html/qprintdialog.html +%%PYQT_DOCDIR%%/html/qprintengine.html +%%PYQT_DOCDIR%%/html/qprinter.html +%%PYQT_DOCDIR%%/html/qprinterinfo.html +%%PYQT_DOCDIR%%/html/qprintpreviewdialog.html +%%PYQT_DOCDIR%%/html/qprintpreviewwidget.html +%%PYQT_DOCDIR%%/html/qprocess.html +%%PYQT_DOCDIR%%/html/qprocessenvironment.html +%%PYQT_DOCDIR%%/html/qprogressbar.html +%%PYQT_DOCDIR%%/html/qprogressdialog.html +%%PYQT_DOCDIR%%/html/qpropertyanimation.html +%%PYQT_DOCDIR%%/html/qproxymodel.html +%%PYQT_DOCDIR%%/html/qpushbutton.html +%%PYQT_DOCDIR%%/html/qpydeclarativepropertyvaluesource.html +%%PYQT_DOCDIR%%/html/qpydesignercontainerextension.html +%%PYQT_DOCDIR%%/html/qpydesignercustomwidgetcollectionplugin.html +%%PYQT_DOCDIR%%/html/qpydesignercustomwidgetplugin.html +%%PYQT_DOCDIR%%/html/qpydesignermembersheetextension.html +%%PYQT_DOCDIR%%/html/qpydesignerpropertysheetextension.html +%%PYQT_DOCDIR%%/html/qpydesignertaskmenuextension.html +%%PYQT_DOCDIR%%/html/qpynullvariant.html +%%PYQT_DOCDIR%%/html/qpytextobject.html +%%PYQT_DOCDIR%%/html/qquaternion.html +%%PYQT_DOCDIR%%/html/qradialgradient.html +%%PYQT_DOCDIR%%/html/qradiobutton.html +%%PYQT_DOCDIR%%/html/qrawfont.html +%%PYQT_DOCDIR%%/html/qreadlocker.html +%%PYQT_DOCDIR%%/html/qreadwritelock.html +%%PYQT_DOCDIR%%/html/qrect.html +%%PYQT_DOCDIR%%/html/qrectf.html +%%PYQT_DOCDIR%%/html/qregexp.html +%%PYQT_DOCDIR%%/html/qregexpvalidator.html +%%PYQT_DOCDIR%%/html/qregion.html +%%PYQT_DOCDIR%%/html/qresizeevent.html +%%PYQT_DOCDIR%%/html/qresource.html +%%PYQT_DOCDIR%%/html/qrubberband.html +%%PYQT_DOCDIR%%/html/qrunnable.html +%%PYQT_DOCDIR%%/html/qscriptclass-queryflags.html +%%PYQT_DOCDIR%%/html/qscriptclass.html +%%PYQT_DOCDIR%%/html/qscriptclasspropertyiterator.html +%%PYQT_DOCDIR%%/html/qscriptcontext.html +%%PYQT_DOCDIR%%/html/qscriptcontextinfo.html +%%PYQT_DOCDIR%%/html/qscriptengine-qobjectwrapoptions.html +%%PYQT_DOCDIR%%/html/qscriptengine.html +%%PYQT_DOCDIR%%/html/qscriptengineagent.html +%%PYQT_DOCDIR%%/html/qscriptenginedebugger.html +%%PYQT_DOCDIR%%/html/qscriptstring.html +%%PYQT_DOCDIR%%/html/qscriptsyntaxcheckresult.html +%%PYQT_DOCDIR%%/html/qscriptvalue-propertyflags.html +%%PYQT_DOCDIR%%/html/qscriptvalue-resolveflags.html +%%PYQT_DOCDIR%%/html/qscriptvalue.html +%%PYQT_DOCDIR%%/html/qscriptvalueiterator.html +%%PYQT_DOCDIR%%/html/qscrollarea.html +%%PYQT_DOCDIR%%/html/qscrollbar.html +%%PYQT_DOCDIR%%/html/qsemaphore.html +%%PYQT_DOCDIR%%/html/qsequentialanimationgroup.html +%%PYQT_DOCDIR%%/html/qsessionmanager.html +%%PYQT_DOCDIR%%/html/qsettings.html +%%PYQT_DOCDIR%%/html/qsharedmemory.html +%%PYQT_DOCDIR%%/html/qshortcut.html +%%PYQT_DOCDIR%%/html/qshortcutevent.html +%%PYQT_DOCDIR%%/html/qshowevent.html +%%PYQT_DOCDIR%%/html/qsignalmapper.html +%%PYQT_DOCDIR%%/html/qsignaltransition.html +%%PYQT_DOCDIR%%/html/qsimplexmlnodemodel.html +%%PYQT_DOCDIR%%/html/qsize.html +%%PYQT_DOCDIR%%/html/qsizef.html +%%PYQT_DOCDIR%%/html/qsizegrip.html +%%PYQT_DOCDIR%%/html/qsizepolicy-controltypes.html +%%PYQT_DOCDIR%%/html/qsizepolicy.html +%%PYQT_DOCDIR%%/html/qslider.html +%%PYQT_DOCDIR%%/html/qsocketnotifier.html +%%PYQT_DOCDIR%%/html/qsortfilterproxymodel.html +%%PYQT_DOCDIR%%/html/qsound.html +%%PYQT_DOCDIR%%/html/qsourcelocation.html +%%PYQT_DOCDIR%%/html/qspaceritem.html +%%PYQT_DOCDIR%%/html/qspinbox.html +%%PYQT_DOCDIR%%/html/qsplashscreen.html +%%PYQT_DOCDIR%%/html/qsplitter.html +%%PYQT_DOCDIR%%/html/qsplitterhandle.html +%%PYQT_DOCDIR%%/html/qsql-paramtype.html +%%PYQT_DOCDIR%%/html/qsql.html +%%PYQT_DOCDIR%%/html/qsqldatabase.html +%%PYQT_DOCDIR%%/html/qsqldriver.html +%%PYQT_DOCDIR%%/html/qsqldrivercreatorbase.html +%%PYQT_DOCDIR%%/html/qsqlerror.html +%%PYQT_DOCDIR%%/html/qsqlfield.html +%%PYQT_DOCDIR%%/html/qsqlindex.html +%%PYQT_DOCDIR%%/html/qsqlquery.html +%%PYQT_DOCDIR%%/html/qsqlquerymodel.html +%%PYQT_DOCDIR%%/html/qsqlrecord.html +%%PYQT_DOCDIR%%/html/qsqlrelation.html +%%PYQT_DOCDIR%%/html/qsqlrelationaldelegate.html +%%PYQT_DOCDIR%%/html/qsqlrelationaltablemodel.html +%%PYQT_DOCDIR%%/html/qsqlresult.html +%%PYQT_DOCDIR%%/html/qsqltablemodel.html +%%PYQT_DOCDIR%%/html/qssl-ssloptions.html +%%PYQT_DOCDIR%%/html/qssl.html +%%PYQT_DOCDIR%%/html/qsslcertificate.html +%%PYQT_DOCDIR%%/html/qsslcipher.html +%%PYQT_DOCDIR%%/html/qsslconfiguration.html +%%PYQT_DOCDIR%%/html/qsslerror.html +%%PYQT_DOCDIR%%/html/qsslkey.html +%%PYQT_DOCDIR%%/html/qsslsocket.html +%%PYQT_DOCDIR%%/html/qstackedlayout.html +%%PYQT_DOCDIR%%/html/qstackedwidget.html +%%PYQT_DOCDIR%%/html/qstandarditem.html +%%PYQT_DOCDIR%%/html/qstandarditemmodel.html +%%PYQT_DOCDIR%%/html/qstate.html +%%PYQT_DOCDIR%%/html/qstatemachine-signalevent.html +%%PYQT_DOCDIR%%/html/qstatemachine-wrappedevent.html +%%PYQT_DOCDIR%%/html/qstatemachine.html +%%PYQT_DOCDIR%%/html/qstatictext.html +%%PYQT_DOCDIR%%/html/qstatusbar.html +%%PYQT_DOCDIR%%/html/qstatustipevent.html +%%PYQT_DOCDIR%%/html/qstring-sectionflags.html +%%PYQT_DOCDIR%%/html/qstring.html +%%PYQT_DOCDIR%%/html/qstringlist.html +%%PYQT_DOCDIR%%/html/qstringlistmodel.html +%%PYQT_DOCDIR%%/html/qstringmatcher.html +%%PYQT_DOCDIR%%/html/qstringref.html +%%PYQT_DOCDIR%%/html/qstyle-state.html +%%PYQT_DOCDIR%%/html/qstyle-subcontrols.html +%%PYQT_DOCDIR%%/html/qstyle.html +%%PYQT_DOCDIR%%/html/qstyleditemdelegate.html +%%PYQT_DOCDIR%%/html/qstylefactory.html +%%PYQT_DOCDIR%%/html/qstylehintreturn.html +%%PYQT_DOCDIR%%/html/qstylehintreturnmask.html +%%PYQT_DOCDIR%%/html/qstylehintreturnvariant.html +%%PYQT_DOCDIR%%/html/qstyleoption.html +%%PYQT_DOCDIR%%/html/qstyleoptionbutton-buttonfeatures.html +%%PYQT_DOCDIR%%/html/qstyleoptionbutton.html +%%PYQT_DOCDIR%%/html/qstyleoptioncombobox.html +%%PYQT_DOCDIR%%/html/qstyleoptioncomplex.html +%%PYQT_DOCDIR%%/html/qstyleoptiondockwidget.html +%%PYQT_DOCDIR%%/html/qstyleoptiondockwidgetv2.html +%%PYQT_DOCDIR%%/html/qstyleoptionfocusrect.html +%%PYQT_DOCDIR%%/html/qstyleoptionframe.html +%%PYQT_DOCDIR%%/html/qstyleoptionframev2-framefeatures.html +%%PYQT_DOCDIR%%/html/qstyleoptionframev2.html +%%PYQT_DOCDIR%%/html/qstyleoptionframev3.html +%%PYQT_DOCDIR%%/html/qstyleoptiongraphicsitem.html +%%PYQT_DOCDIR%%/html/qstyleoptiongroupbox.html +%%PYQT_DOCDIR%%/html/qstyleoptionheader.html +%%PYQT_DOCDIR%%/html/qstyleoptionmenuitem.html +%%PYQT_DOCDIR%%/html/qstyleoptionprogressbar.html +%%PYQT_DOCDIR%%/html/qstyleoptionprogressbarv2.html +%%PYQT_DOCDIR%%/html/qstyleoptionrubberband.html +%%PYQT_DOCDIR%%/html/qstyleoptionsizegrip.html +%%PYQT_DOCDIR%%/html/qstyleoptionslider.html +%%PYQT_DOCDIR%%/html/qstyleoptionspinbox.html +%%PYQT_DOCDIR%%/html/qstyleoptiontab-cornerwidgets.html +%%PYQT_DOCDIR%%/html/qstyleoptiontab.html +%%PYQT_DOCDIR%%/html/qstyleoptiontabbarbase.html +%%PYQT_DOCDIR%%/html/qstyleoptiontabbarbasev2.html +%%PYQT_DOCDIR%%/html/qstyleoptiontabv2.html +%%PYQT_DOCDIR%%/html/qstyleoptiontabv3.html +%%PYQT_DOCDIR%%/html/qstyleoptiontabwidgetframe.html +%%PYQT_DOCDIR%%/html/qstyleoptiontabwidgetframev2.html +%%PYQT_DOCDIR%%/html/qstyleoptiontitlebar.html +%%PYQT_DOCDIR%%/html/qstyleoptiontoolbar-toolbarfeatures.html +%%PYQT_DOCDIR%%/html/qstyleoptiontoolbar.html +%%PYQT_DOCDIR%%/html/qstyleoptiontoolbox.html +%%PYQT_DOCDIR%%/html/qstyleoptiontoolboxv2.html +%%PYQT_DOCDIR%%/html/qstyleoptiontoolbutton-toolbuttonfeatures.html +%%PYQT_DOCDIR%%/html/qstyleoptiontoolbutton.html +%%PYQT_DOCDIR%%/html/qstyleoptionviewitem.html +%%PYQT_DOCDIR%%/html/qstyleoptionviewitemv2-viewitemfeatures.html +%%PYQT_DOCDIR%%/html/qstyleoptionviewitemv2.html +%%PYQT_DOCDIR%%/html/qstyleoptionviewitemv3.html +%%PYQT_DOCDIR%%/html/qstyleoptionviewitemv4.html +%%PYQT_DOCDIR%%/html/qstylepainter.html +%%PYQT_DOCDIR%%/html/qsvggenerator.html +%%PYQT_DOCDIR%%/html/qsvgrenderer.html +%%PYQT_DOCDIR%%/html/qsvgwidget.html +%%PYQT_DOCDIR%%/html/qswipegesture.html +%%PYQT_DOCDIR%%/html/qsyntaxhighlighter.html +%%PYQT_DOCDIR%%/html/qsysinfo.html +%%PYQT_DOCDIR%%/html/qsystemlocale.html +%%PYQT_DOCDIR%%/html/qsystemsemaphore.html +%%PYQT_DOCDIR%%/html/qsystemtrayicon.html +%%PYQT_DOCDIR%%/html/qt-alignment.html +%%PYQT_DOCDIR%%/html/qt-dockwidgetareas.html +%%PYQT_DOCDIR%%/html/qt-dropactions.html +%%PYQT_DOCDIR%%/html/qt-gestureflags.html +%%PYQT_DOCDIR%%/html/qt-imageconversionflags.html +%%PYQT_DOCDIR%%/html/qt-inputmethodhints.html +%%PYQT_DOCDIR%%/html/qt-itemflags.html +%%PYQT_DOCDIR%%/html/qt-keyboardmodifiers.html +%%PYQT_DOCDIR%%/html/qt-matchflags.html +%%PYQT_DOCDIR%%/html/qt-mousebuttons.html +%%PYQT_DOCDIR%%/html/qt-orientations.html +%%PYQT_DOCDIR%%/html/qt-textinteractionflags.html +%%PYQT_DOCDIR%%/html/qt-toolbarareas.html +%%PYQT_DOCDIR%%/html/qt-touchpointstates.html +%%PYQT_DOCDIR%%/html/qt-windowflags.html +%%PYQT_DOCDIR%%/html/qt-windowstates.html +%%PYQT_DOCDIR%%/html/qt.html +%%PYQT_DOCDIR%%/html/qt_properties.html +%%PYQT_DOCDIR%%/html/qt_v5.html +%%PYQT_DOCDIR%%/html/qtabbar.html +%%PYQT_DOCDIR%%/html/qtabletevent.html +%%PYQT_DOCDIR%%/html/qtableview.html +%%PYQT_DOCDIR%%/html/qtablewidget.html +%%PYQT_DOCDIR%%/html/qtablewidgetitem.html +%%PYQT_DOCDIR%%/html/qtablewidgetselectionrange.html +%%PYQT_DOCDIR%%/html/qtabwidget.html +%%PYQT_DOCDIR%%/html/qtapandholdgesture.html +%%PYQT_DOCDIR%%/html/qtapgesture.html +%%PYQT_DOCDIR%%/html/qtassistant.html +%%PYQT_DOCDIR%%/html/qtcore.html +%%PYQT_DOCDIR%%/html/qtcpserver.html +%%PYQT_DOCDIR%%/html/qtcpsocket.html +%%PYQT_DOCDIR%%/html/qtdbus.html +%%PYQT_DOCDIR%%/html/qtdeclarative.html +%%PYQT_DOCDIR%%/html/qtdesigner.html +%%PYQT_DOCDIR%%/html/qtemporaryfile.html +%%PYQT_DOCDIR%%/html/qtest.html +%%PYQT_DOCDIR%%/html/qtextblock-iterator.html +%%PYQT_DOCDIR%%/html/qtextblock.html +%%PYQT_DOCDIR%%/html/qtextblockformat.html +%%PYQT_DOCDIR%%/html/qtextblockgroup.html +%%PYQT_DOCDIR%%/html/qtextblockuserdata.html +%%PYQT_DOCDIR%%/html/qtextboundaryfinder-boundaryreasons.html +%%PYQT_DOCDIR%%/html/qtextboundaryfinder.html +%%PYQT_DOCDIR%%/html/qtextbrowser.html +%%PYQT_DOCDIR%%/html/qtextcharformat.html +%%PYQT_DOCDIR%%/html/qtextcodec-conversionflags.html +%%PYQT_DOCDIR%%/html/qtextcodec-converterstate.html +%%PYQT_DOCDIR%%/html/qtextcodec.html +%%PYQT_DOCDIR%%/html/qtextcursor.html +%%PYQT_DOCDIR%%/html/qtextdecoder.html +%%PYQT_DOCDIR%%/html/qtextdocument-findflags.html +%%PYQT_DOCDIR%%/html/qtextdocument.html +%%PYQT_DOCDIR%%/html/qtextdocumentfragment.html +%%PYQT_DOCDIR%%/html/qtextdocumentwriter.html +%%PYQT_DOCDIR%%/html/qtextedit-autoformatting.html +%%PYQT_DOCDIR%%/html/qtextedit-extraselection.html +%%PYQT_DOCDIR%%/html/qtextedit.html +%%PYQT_DOCDIR%%/html/qtextencoder.html +%%PYQT_DOCDIR%%/html/qtextformat-pagebreakflags.html +%%PYQT_DOCDIR%%/html/qtextformat.html +%%PYQT_DOCDIR%%/html/qtextfragment.html +%%PYQT_DOCDIR%%/html/qtextframe-iterator.html +%%PYQT_DOCDIR%%/html/qtextframe.html +%%PYQT_DOCDIR%%/html/qtextframeformat.html +%%PYQT_DOCDIR%%/html/qtextimageformat.html +%%PYQT_DOCDIR%%/html/qtextinlineobject.html +%%PYQT_DOCDIR%%/html/qtextitem-renderflags.html +%%PYQT_DOCDIR%%/html/qtextitem.html +%%PYQT_DOCDIR%%/html/qtextlayout-formatrange.html +%%PYQT_DOCDIR%%/html/qtextlayout.html +%%PYQT_DOCDIR%%/html/qtextlength.html +%%PYQT_DOCDIR%%/html/qtextline.html +%%PYQT_DOCDIR%%/html/qtextlist.html +%%PYQT_DOCDIR%%/html/qtextlistformat.html +%%PYQT_DOCDIR%%/html/qtextobject.html +%%PYQT_DOCDIR%%/html/qtextobjectinterface.html +%%PYQT_DOCDIR%%/html/qtextoption-flags.html +%%PYQT_DOCDIR%%/html/qtextoption-tab.html +%%PYQT_DOCDIR%%/html/qtextoption.html +%%PYQT_DOCDIR%%/html/qtextstream-numberflags.html +%%PYQT_DOCDIR%%/html/qtextstream.html +%%PYQT_DOCDIR%%/html/qtexttable.html +%%PYQT_DOCDIR%%/html/qtexttablecell.html +%%PYQT_DOCDIR%%/html/qtexttablecellformat.html +%%PYQT_DOCDIR%%/html/qtexttableformat.html +%%PYQT_DOCDIR%%/html/qtgui.html +%%PYQT_DOCDIR%%/html/qthelp.html +%%PYQT_DOCDIR%%/html/qthread.html +%%PYQT_DOCDIR%%/html/qthreadpool.html +%%PYQT_DOCDIR%%/html/qtime.html +%%PYQT_DOCDIR%%/html/qtimeedit.html +%%PYQT_DOCDIR%%/html/qtimeline.html +%%PYQT_DOCDIR%%/html/qtimer.html +%%PYQT_DOCDIR%%/html/qtimerevent.html +%%PYQT_DOCDIR%%/html/qtmultimedia.html +%%PYQT_DOCDIR%%/html/qtnetwork.html +%%PYQT_DOCDIR%%/html/qtoolbar.html +%%PYQT_DOCDIR%%/html/qtoolbox.html +%%PYQT_DOCDIR%%/html/qtoolbutton.html +%%PYQT_DOCDIR%%/html/qtooltip.html +%%PYQT_DOCDIR%%/html/qtopengl.html +%%PYQT_DOCDIR%%/html/qtouchevent-touchpoint.html +%%PYQT_DOCDIR%%/html/qtouchevent.html +%%PYQT_DOCDIR%%/html/qtransform.html +%%PYQT_DOCDIR%%/html/qtranslator.html +%%PYQT_DOCDIR%%/html/qtreeview.html +%%PYQT_DOCDIR%%/html/qtreewidget.html +%%PYQT_DOCDIR%%/html/qtreewidgetitem.html +%%PYQT_DOCDIR%%/html/qtreewidgetitemiterator-iteratorflags.html +%%PYQT_DOCDIR%%/html/qtreewidgetitemiterator.html +%%PYQT_DOCDIR%%/html/qtscript.html +%%PYQT_DOCDIR%%/html/qtscripttools.html +%%PYQT_DOCDIR%%/html/qtsql.html +%%PYQT_DOCDIR%%/html/qtsvg.html +%%PYQT_DOCDIR%%/html/qttest.html +%%PYQT_DOCDIR%%/html/qtwebkit.html +%%PYQT_DOCDIR%%/html/qtxml.html +%%PYQT_DOCDIR%%/html/qtxmlpatterns.html +%%PYQT_DOCDIR%%/html/qudpsocket-bindmode.html +%%PYQT_DOCDIR%%/html/qudpsocket.html +%%PYQT_DOCDIR%%/html/qundocommand.html +%%PYQT_DOCDIR%%/html/qundogroup.html +%%PYQT_DOCDIR%%/html/qundostack.html +%%PYQT_DOCDIR%%/html/qundoview.html +%%PYQT_DOCDIR%%/html/qurl-formattingoptions.html +%%PYQT_DOCDIR%%/html/qurl.html +%%PYQT_DOCDIR%%/html/qurlinfo.html +%%PYQT_DOCDIR%%/html/quuid.html +%%PYQT_DOCDIR%%/html/qvalidator.html +%%PYQT_DOCDIR%%/html/qvariant.html +%%PYQT_DOCDIR%%/html/qvariantanimation.html +%%PYQT_DOCDIR%%/html/qvboxlayout.html +%%PYQT_DOCDIR%%/html/qvector2d.html +%%PYQT_DOCDIR%%/html/qvector3d.html +%%PYQT_DOCDIR%%/html/qvector4d.html +%%PYQT_DOCDIR%%/html/qvideoframe.html +%%PYQT_DOCDIR%%/html/qvideosurfaceformat.html +%%PYQT_DOCDIR%%/html/qwaitcondition.html +%%PYQT_DOCDIR%%/html/qwebdatabase.html +%%PYQT_DOCDIR%%/html/qwebelement.html +%%PYQT_DOCDIR%%/html/qwebelementcollection.html +%%PYQT_DOCDIR%%/html/qwebframe.html +%%PYQT_DOCDIR%%/html/qwebhistory.html +%%PYQT_DOCDIR%%/html/qwebhistoryinterface.html +%%PYQT_DOCDIR%%/html/qwebhistoryitem.html +%%PYQT_DOCDIR%%/html/qwebhittestresult.html +%%PYQT_DOCDIR%%/html/qwebinspector.html +%%PYQT_DOCDIR%%/html/qwebpage-choosemultiplefilesextensionoption.html +%%PYQT_DOCDIR%%/html/qwebpage-choosemultiplefilesextensionreturn.html +%%PYQT_DOCDIR%%/html/qwebpage-errorpageextensionoption.html +%%PYQT_DOCDIR%%/html/qwebpage-errorpageextensionreturn.html +%%PYQT_DOCDIR%%/html/qwebpage-extensionoption.html +%%PYQT_DOCDIR%%/html/qwebpage-extensionreturn.html +%%PYQT_DOCDIR%%/html/qwebpage-findflags.html +%%PYQT_DOCDIR%%/html/qwebpage-viewportattributes.html +%%PYQT_DOCDIR%%/html/qwebpage.html +%%PYQT_DOCDIR%%/html/qwebpluginfactory-extensionoption.html +%%PYQT_DOCDIR%%/html/qwebpluginfactory-extensionreturn.html +%%PYQT_DOCDIR%%/html/qwebpluginfactory-mimetype.html +%%PYQT_DOCDIR%%/html/qwebpluginfactory-plugin.html +%%PYQT_DOCDIR%%/html/qwebpluginfactory.html +%%PYQT_DOCDIR%%/html/qwebsecurityorigin.html +%%PYQT_DOCDIR%%/html/qwebsettings.html +%%PYQT_DOCDIR%%/html/qwebview.html +%%PYQT_DOCDIR%%/html/qwhatsthis.html +%%PYQT_DOCDIR%%/html/qwhatsthisclickedevent.html +%%PYQT_DOCDIR%%/html/qwheelevent.html +%%PYQT_DOCDIR%%/html/qwidget-renderflags.html +%%PYQT_DOCDIR%%/html/qwidget.html +%%PYQT_DOCDIR%%/html/qwidgetaction.html +%%PYQT_DOCDIR%%/html/qwidgetitem.html +%%PYQT_DOCDIR%%/html/qwindowstatechangeevent.html +%%PYQT_DOCDIR%%/html/qwizard-wizardoptions.html +%%PYQT_DOCDIR%%/html/qwizard.html +%%PYQT_DOCDIR%%/html/qwizardpage.html +%%PYQT_DOCDIR%%/html/qworkspace.html +%%PYQT_DOCDIR%%/html/qwritelocker.html +%%PYQT_DOCDIR%%/html/qx11embedcontainer.html +%%PYQT_DOCDIR%%/html/qx11embedwidget.html +%%PYQT_DOCDIR%%/html/qx11info.html +%%PYQT_DOCDIR%%/html/qxmlattributes.html +%%PYQT_DOCDIR%%/html/qxmlcontenthandler.html +%%PYQT_DOCDIR%%/html/qxmldeclhandler.html +%%PYQT_DOCDIR%%/html/qxmldefaulthandler.html +%%PYQT_DOCDIR%%/html/qxmldtdhandler.html +%%PYQT_DOCDIR%%/html/qxmlentityresolver.html +%%PYQT_DOCDIR%%/html/qxmlerrorhandler.html +%%PYQT_DOCDIR%%/html/qxmlformatter.html +%%PYQT_DOCDIR%%/html/qxmlinputsource.html +%%PYQT_DOCDIR%%/html/qxmlitem.html +%%PYQT_DOCDIR%%/html/qxmllexicalhandler.html +%%PYQT_DOCDIR%%/html/qxmllocator.html +%%PYQT_DOCDIR%%/html/qxmlname.html +%%PYQT_DOCDIR%%/html/qxmlnamepool.html +%%PYQT_DOCDIR%%/html/qxmlnamespacesupport.html +%%PYQT_DOCDIR%%/html/qxmlnodemodelindex.html +%%PYQT_DOCDIR%%/html/qxmlparseexception.html +%%PYQT_DOCDIR%%/html/qxmlquery.html +%%PYQT_DOCDIR%%/html/qxmlreader.html +%%PYQT_DOCDIR%%/html/qxmlresultitems.html +%%PYQT_DOCDIR%%/html/qxmlschema.html +%%PYQT_DOCDIR%%/html/qxmlschemavalidator.html +%%PYQT_DOCDIR%%/html/qxmlserializer.html +%%PYQT_DOCDIR%%/html/qxmlsimplereader.html +%%PYQT_DOCDIR%%/html/qxmlstreamattribute.html +%%PYQT_DOCDIR%%/html/qxmlstreamattributes.html +%%PYQT_DOCDIR%%/html/qxmlstreamentitydeclaration.html +%%PYQT_DOCDIR%%/html/qxmlstreamentityresolver.html +%%PYQT_DOCDIR%%/html/qxmlstreamnamespacedeclaration.html +%%PYQT_DOCDIR%%/html/qxmlstreamnotationdeclaration.html +%%PYQT_DOCDIR%%/html/qxmlstreamreader.html +%%PYQT_DOCDIR%%/html/qxmlstreamwriter.html +%%PYQT_DOCDIR%%/html/resources.html +%%PYQT_DOCDIR%%/html/search.html +%%PYQT_DOCDIR%%/html/searchindex.js +%%PYQT_DOCDIR%%/html/threads.html +%%PYQT_DOCDIR%%/html/webkit.html Index: head/multimedia/py-qt5-multimedia/Makefile =================================================================== --- head/multimedia/py-qt5-multimedia/Makefile (revision 487596) +++ head/multimedia/py-qt5-multimedia/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= multimedia CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtMultimedia module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtMultimedia PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run network_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/multimedia/py-qt5-multimediawidgets/Makefile =================================================================== --- head/multimedia/py-qt5-multimediawidgets/Makefile (revision 487596) +++ head/multimedia/py-qt5-multimediawidgets/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= multimediawidgets CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtMultimediaWidgets module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtMultimediaWidgets PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run multimedia_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/net/py-qt5-network/Makefile =================================================================== --- head/net/py-qt5-network/Makefile (revision 487596) +++ head/net/py-qt5-network/Makefile (revision 487597) @@ -1,27 +1,30 @@ # $FreeBSD$ PORTNAME= network CATEGORIES= net devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtNetwork module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtNetwork PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_PYQT= sip_build core_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/print/py-qt5-printsupport/Makefile =================================================================== --- head/print/py-qt5-printsupport/Makefile (revision 487596) +++ head/print/py-qt5-printsupport/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= printsupport CATEGORIES= print python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtPrintSupport module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtPrintSupport PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/textproc/py-qt5-xml/Makefile =================================================================== --- head/textproc/py-qt5-xml/Makefile (revision 487596) +++ head/textproc/py-qt5-xml/Makefile (revision 487597) @@ -1,35 +1,38 @@ # $FreeBSD$ PORTNAME= xml CATEGORIES= textproc devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtXml module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtXml PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_PYQT= sip_build core_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace post-install: ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR}/PyQt5 \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -f -d ${PYTHONPREFIX_SITELIBDIR}/PyQt5 \ ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/PyQt5 .include Index: head/textproc/py-qt5-xmlpatterns/Makefile =================================================================== --- head/textproc/py-qt5-xmlpatterns/Makefile (revision 487596) +++ head/textproc/py-qt5-xmlpatterns/Makefile (revision 487597) @@ -1,27 +1,30 @@ # $FreeBSD$ PORTNAME= xmlpatterns CATEGORIES= textproc devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtXmlPatterns module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtXmlPatterns PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_PYQT= sip_build core_run network_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/www/py-qt5-webchannel/Makefile =================================================================== --- head/www/py-qt5-webchannel/Makefile (revision 487596) +++ head/www/py-qt5-webchannel/Makefile (revision 487597) @@ -1,33 +1,36 @@ # $FreeBSD$ PORTNAME= webchannel CATEGORIES= www devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWebChannel module # LICENSE set in Mk/Uses/pyqt.mk +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + USES= python pyqt:5 qt:5 USE_PYQT= sip_build core_run gui_run network_run qml_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= core declarative qmake_build gui network webchannel widgets CONFIGURE_ARGS= --enable QtWebChannel \ --no-stubs PYQT_DIST= yes OPTIONS_DEFINE= API DEBUG OPTIONS_DEFAULT= API OPTIONS_SUB= yes API_DESC= Install QtWebChannel API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace post-install-DEBUG-off: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/PyQt5/QtWebChannel.so .include Index: head/www/py-qt5-webkit/Makefile =================================================================== --- head/www/py-qt5-webkit/Makefile (revision 487596) +++ head/www/py-qt5-webkit/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= webkit CATEGORIES= www devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWebKit module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtWebKit PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run network_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/www/py-qt5-webkitwidgets/Makefile =================================================================== --- head/www/py-qt5-webkitwidgets/Makefile (revision 487596) +++ head/www/py-qt5-webkitwidgets/Makefile (revision 487597) @@ -1,29 +1,32 @@ # $FreeBSD$ PORTNAME= webkitwidgets CATEGORIES= www devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWebKitWidgets module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtWebKitWidgets PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run printsupport_run webkit_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/x11/py-qt5-opengl/Makefile =================================================================== --- head/x11/py-qt5-opengl/Makefile (revision 487596) +++ head/x11/py-qt5-opengl/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= opengl CATEGORIES= x11 devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtOpenGL module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtOpenGL PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run widgets_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/x11-toolkits/py-qt5-gui/Makefile =================================================================== --- head/x11-toolkits/py-qt5-gui/Makefile (revision 487596) +++ head/x11-toolkits/py-qt5-gui/Makefile (revision 487597) @@ -1,26 +1,29 @@ # $FreeBSD$ PORTNAME= gui CATEGORIES= x11-toolkits devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtGui module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtGui PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api .include Index: head/x11-toolkits/py-qt5-quick/Makefile =================================================================== --- head/x11-toolkits/py-qt5-quick/Makefile (revision 487596) +++ head/x11-toolkits/py-qt5-quick/Makefile (revision 487597) @@ -1,27 +1,30 @@ # $FreeBSD$ PORTNAME= quick CATEGORIES= x11-toolkits devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtQuick module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtQuick PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_PYQT= sip_build core_run gui_run USE_PYTHON= concurrent flavors py3kplist USE_QT= core declarative qmake_build OPTIONS_DEFINE= API DEBUG OPTIONS_DEFAULT=API OPTIONS_SUB= yes API_DESC= Install QtQuick API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/x11-toolkits/py-qt5-quickwidgets/Makefile =================================================================== --- head/x11-toolkits/py-qt5-quickwidgets/Makefile (revision 487596) +++ head/x11-toolkits/py-qt5-quickwidgets/Makefile (revision 487597) @@ -1,29 +1,32 @@ # $FreeBSD$ PORTNAME= quickwidgets CATEGORIES= x11-toolkits devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtQuickWidgets module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run PYQT_DIST= yes USE_PYTHON= concurrent flavors py3kplist USE_QT= core declarative gui network widgets \ qmake_build CONFIGURE_ARGS= --enable QtQuickWidgets OPTIONS_DEFINE= API DEBUG OPTIONS_DEFAULT= API OPTIONS_SUB= yes API_DESC= Install QtQuick API for QScintilla2 API_CONFIGURE_ON= --qsci-api --qsci-api-destdir=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include Index: head/x11-toolkits/py-qt5-widgets/Makefile =================================================================== --- head/x11-toolkits/py-qt5-widgets/Makefile (revision 487596) +++ head/x11-toolkits/py-qt5-widgets/Makefile (revision 487597) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= widgets CATEGORIES= x11-toolkits devel python MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWidgets module +BUILD_DEPENDS= ${PY_ENUM34} +RUN_DEPENDS= ${PY_ENUM34} + CONFIGURE_ARGS= --enable QtWidgets PYQT_DIST= yes USES= python pyqt:5 qt:5 USE_GL= gl USE_PYQT= sip_build core_run gui_run USE_PYTHON= concurrent flavors py3kplist USE_QT= 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=${PYQT_APIDIR} API_CONFIGURE_OFF= --no-qsci-api API_LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 DEBUG_CONFIGURE_ON= --debug --trace .include