From d33aba2ad4a434b728bc21954fbf63f8e418908f Mon Sep 17 00:00:00 2001 From: ajacoutot Date: Tue, 15 Jan 2008 13:25:23 +0000 Subject: [PATCH] Import py-qt4-4.3.3 Python bindings for Qt4. based on an original submission by Lars Hansson with some modifications by simon@ ok simon@ --- x11/py-qt4/Makefile | 81 +++ x11/py-qt4/distinfo | 5 + x11/py-qt4/patches/patch-configure_py | 12 + x11/py-qt4/pkg/DESCR-docs | 1 + x11/py-qt4/pkg/DESCR-main | 1 + x11/py-qt4/pkg/PLIST-docs | 900 ++++++++++++++++++++++++++ x11/py-qt4/pkg/PLIST-main | 372 +++++++++++ 7 files changed, 1372 insertions(+) create mode 100644 x11/py-qt4/Makefile create mode 100644 x11/py-qt4/distinfo create mode 100644 x11/py-qt4/patches/patch-configure_py create mode 100644 x11/py-qt4/pkg/DESCR-docs create mode 100644 x11/py-qt4/pkg/DESCR-main create mode 100644 x11/py-qt4/pkg/PLIST-docs create mode 100644 x11/py-qt4/pkg/PLIST-main diff --git a/x11/py-qt4/Makefile b/x11/py-qt4/Makefile new file mode 100644 index 00000000000..5567fd5c9d7 --- /dev/null +++ b/x11/py-qt4/Makefile @@ -0,0 +1,81 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2008/01/15 13:25:23 ajacoutot Exp $ + +SHARED_ONLY= Yes + +COMMENT-main= python Qt4 bindings +COMMENT-docs= py-qt4 documentation + +V= 4.3.3 +DISTNAME= PyQt-x11-gpl-${V} +PKGNAME= py-qt4-${V} +PKGNAME-main= py-qt4-${V} +PKGNAME-docs= py-qt4-docs-${V} + +CATEGORIES= x11 devel + +HOMEPAGE= http://www.riverbankcomputing.co.uk/pyqt/index.php + +MAINTAINER= Lars Hansson + +# GPL +PERMIT_PACKAGE_CDROM= Yes +PERMIT_PACKAGE_FTP= Yes +PERMIT_DISTFILES_CDROM= Yes +PERMIT_DISTFILES_FTP= Yes + +WANTLIB= GL GLU ICE SM X11 Xcursor Xext Xfixes Xi Xinerama \ + Xrandr Xrender c crypto dbus-1 fontconfig freetype \ + glib-2.0 gthread-2.0 iconv intl m png pthread ssl \ + stdc++ z + +MULTI_PACKAGES= -main -docs + +WANTLIB-docs= +LIB_DEPENDS-docs= +RUN_DEPENDS-docs= +PKG_ARCH-docs= * + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ::devel/py-sip \ + ::x11/dbus-python +LIB_DEPENDS= QtAssistantClient,QtDesigner,QtGui,QtNetwork,QtOpenGL,QtScript,QtSql,QtSvg,QtTest,QtXml::x11/qt4 + +NO_REGRESS= Yes + +MASTER_SITES= http://www.riverbankcomputing.com/Downloads/PyQt4/GPL/ + +MODULES= x11/qt4 \ + lang/python + +USE_X11= Yes + +CONFIGURE_STYLE=simple +CONFIGURE_SCRIPT=${MODPY_BIN} configure.py +CONFIGURE_ARGS= --qmake=${LOCALBASE}/bin/qmake4 \ + --bindir=${PREFIX}/bin \ + --destdir=${MODPY_SITEPKG} \ + --sipdir=${PREFIX}/share/sip \ + --vendorid-incdir=${MODPY_INCDIR} \ + --vendorid-libdir=${MODPY_LIBDIR} \ + --no-qsci-api \ + INCDIR_QT=${MODQT_INCDIR} \ + LIBDIR=${LOCALBASE}/lib \ + LIBDIR_QT=${MODQT_LIBDIR} \ + CC=${CC} \ + CXX=${CXX} \ + CFLAGS="${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" + +PYQTMODS= QtCore QtGui QtNetwork QtOpenGL QtScript QtSql QtSvg \ + QtTest QtXml QtAssistant QtDesigner + +.for i in ${PYQTMODS} +CONFIGURE_ARGS+=--enable=${i} +.endfor + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-qt4 + cp -R ${WRKSRC}/doc/* ${PREFIX}/share/doc/py-qt4 + chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/py-qt4/* + +.include diff --git a/x11/py-qt4/distinfo b/x11/py-qt4/distinfo new file mode 100644 index 00000000000..3379fb32647 --- /dev/null +++ b/x11/py-qt4/distinfo @@ -0,0 +1,5 @@ +MD5 (PyQt-x11-gpl-4.3.3.tar.gz) = ourTWfV9hMJL3RDeOH6AtA== +RMD160 (PyQt-x11-gpl-4.3.3.tar.gz) = jSXhXYUptqDwixEvAKhaS4e1/4g= +SHA1 (PyQt-x11-gpl-4.3.3.tar.gz) = eNuKhBhc/e5QXhwMZdeT62CNZIU= +SHA256 (PyQt-x11-gpl-4.3.3.tar.gz) = 02OD5AqYP01dU7OLuFQJ5VqC46rA1ylqvmjZE776HlU= +SIZE (PyQt-x11-gpl-4.3.3.tar.gz) = 6191266 diff --git a/x11/py-qt4/patches/patch-configure_py b/x11/py-qt4/patches/patch-configure_py new file mode 100644 index 00000000000..c983d0d2828 --- /dev/null +++ b/x11/py-qt4/patches/patch-configure_py @@ -0,0 +1,12 @@ +$OpenBSD: patch-configure_py,v 1.1.1.1 2008/01/15 13:25:23 ajacoutot Exp $ +--- configure.py.orig Mon Jan 14 13:53:23 2008 ++++ configure.py Mon Jan 14 13:54:59 2008 +@@ -1328,7 +1328,7 @@ def check_license(): + + while 1: + try: +- resp = raw_input("Do you accept the terms of the license? ") ++ resp = "yes" + except KeyboardInterrupt: + raise SystemExit + except: diff --git a/x11/py-qt4/pkg/DESCR-docs b/x11/py-qt4/pkg/DESCR-docs new file mode 100644 index 00000000000..73c7a3f818a --- /dev/null +++ b/x11/py-qt4/pkg/DESCR-docs @@ -0,0 +1 @@ +Documentation for PyQt4. diff --git a/x11/py-qt4/pkg/DESCR-main b/x11/py-qt4/pkg/DESCR-main new file mode 100644 index 00000000000..4add74272c3 --- /dev/null +++ b/x11/py-qt4/pkg/DESCR-main @@ -0,0 +1 @@ +Python bindings for Qt4. diff --git a/x11/py-qt4/pkg/PLIST-docs b/x11/py-qt4/pkg/PLIST-docs new file mode 100644 index 00000000000..01b02549fbc --- /dev/null +++ b/x11/py-qt4/pkg/PLIST-docs @@ -0,0 +1,900 @@ +@comment $OpenBSD: PLIST-docs,v 1.1.1.1 2008/01/15 13:25:23 ajacoutot Exp $ +share/doc/py-qt4/ +share/doc/py-qt4/default.css +share/doc/py-qt4/html/ +share/doc/py-qt4/html/assistant-manual.html +share/doc/py-qt4/html/classes.html +share/doc/py-qt4/html/images/ +share/doc/py-qt4/html/images/alphachannelimage.png +share/doc/py-qt4/html/images/alphafill.png +share/doc/py-qt4/html/images/assistant-assistant.png +share/doc/py-qt4/html/images/assistant-docwindow.png +share/doc/py-qt4/html/images/assistant-search.png +share/doc/py-qt4/html/images/assistant-sidebar.png +share/doc/py-qt4/html/images/assistant-toolbar1.png +share/doc/py-qt4/html/images/bearings.png +share/doc/py-qt4/html/images/brush-outline.png +share/doc/py-qt4/html/images/brush-styles.png +share/doc/py-qt4/html/images/buttonbox-gnomelayout-horizontal.png +share/doc/py-qt4/html/images/buttonbox-gnomelayout-vertical.png +share/doc/py-qt4/html/images/buttonbox-kdelayout-horizontal.png +share/doc/py-qt4/html/images/buttonbox-kdelayout-vertical.png +share/doc/py-qt4/html/images/buttonbox-mac-modeless-horizontal.png +share/doc/py-qt4/html/images/buttonbox-mac-modeless-vertical.png +share/doc/py-qt4/html/images/buttonbox-maclayout-horizontal.png +share/doc/py-qt4/html/images/buttonbox-maclayout-vertical.png +share/doc/py-qt4/html/images/buttonbox-winlayout-horizontal.png +share/doc/py-qt4/html/images/buttonbox-winlayout-vertical.png +share/doc/py-qt4/html/images/cde-lcdnumber.png +share/doc/py-qt4/html/images/cleanlooks-calendarwidget.png +share/doc/py-qt4/html/images/cleanlooks-pushbutton-menu.png +share/doc/py-qt4/html/images/containerextension-example.png +share/doc/py-qt4/html/images/cursor-arrow.png +share/doc/py-qt4/html/images/cursor-busy.png +share/doc/py-qt4/html/images/cursor-closedhand.png +share/doc/py-qt4/html/images/cursor-cross.png +share/doc/py-qt4/html/images/cursor-forbidden.png +share/doc/py-qt4/html/images/cursor-hand.png +share/doc/py-qt4/html/images/cursor-hsplit.png +share/doc/py-qt4/html/images/cursor-ibeam.png +share/doc/py-qt4/html/images/cursor-openhand.png +share/doc/py-qt4/html/images/cursor-sizeall.png +share/doc/py-qt4/html/images/cursor-sizeb.png +share/doc/py-qt4/html/images/cursor-sizef.png +share/doc/py-qt4/html/images/cursor-sizeh.png +share/doc/py-qt4/html/images/cursor-sizev.png +share/doc/py-qt4/html/images/cursor-uparrow.png +share/doc/py-qt4/html/images/cursor-vsplit.png +share/doc/py-qt4/html/images/cursor-wait.png +share/doc/py-qt4/html/images/cursor-whatsthis.png +share/doc/py-qt4/html/images/foreignkeys.png +share/doc/py-qt4/html/images/frames.png +share/doc/py-qt4/html/images/graphicsview-ellipseitem-pie.png +share/doc/py-qt4/html/images/graphicsview-ellipseitem.png +share/doc/py-qt4/html/images/graphicsview-items.png +share/doc/py-qt4/html/images/graphicsview-lineitem.png +share/doc/py-qt4/html/images/graphicsview-parentchild.png +share/doc/py-qt4/html/images/graphicsview-pathitem.png +share/doc/py-qt4/html/images/graphicsview-pixmapitem.png +share/doc/py-qt4/html/images/graphicsview-polygonitem.png +share/doc/py-qt4/html/images/graphicsview-rectitem.png +share/doc/py-qt4/html/images/graphicsview-simpletextitem.png +share/doc/py-qt4/html/images/graphicsview-textitem.png +share/doc/py-qt4/html/images/graphicsview-view.png +share/doc/py-qt4/html/images/graphicsview-zorder.png +share/doc/py-qt4/html/images/gridlayout.png +share/doc/py-qt4/html/images/httpstack.png +share/doc/py-qt4/html/images/icon.png +share/doc/py-qt4/html/images/inputdialogs.png +share/doc/py-qt4/html/images/insertrowinmodelview.png +share/doc/py-qt4/html/images/licensewizard-flow.png +share/doc/py-qt4/html/images/macintosh-checkbox.png +share/doc/py-qt4/html/images/macintosh-dateedit.png +share/doc/py-qt4/html/images/macintosh-datetimeedit.png +share/doc/py-qt4/html/images/macintosh-dial.png +share/doc/py-qt4/html/images/macintosh-groupbox.png +share/doc/py-qt4/html/images/macintosh-horizontalscrollbar.png +share/doc/py-qt4/html/images/macintosh-label.png +share/doc/py-qt4/html/images/macintosh-lcdnumber.png +share/doc/py-qt4/html/images/macintosh-lineedit.png +share/doc/py-qt4/html/images/macintosh-listview.png +share/doc/py-qt4/html/images/macintosh-menu.png +share/doc/py-qt4/html/images/macintosh-progressbar.png +share/doc/py-qt4/html/images/macintosh-pushbutton.png +share/doc/py-qt4/html/images/macintosh-radiobutton.png +share/doc/py-qt4/html/images/macintosh-slider.png +share/doc/py-qt4/html/images/macintosh-spinbox.png +share/doc/py-qt4/html/images/macintosh-tableview.png +share/doc/py-qt4/html/images/macintosh-tabwidget.png +share/doc/py-qt4/html/images/macintosh-timeedit.png +share/doc/py-qt4/html/images/macintosh-treeview.png +share/doc/py-qt4/html/images/mainwindow-docks.png +share/doc/py-qt4/html/images/mainwindowlayout.png +share/doc/py-qt4/html/images/modelindex-no-parent.png +share/doc/py-qt4/html/images/modelview-begin-append-columns.png +share/doc/py-qt4/html/images/modelview-begin-append-rows.png +share/doc/py-qt4/html/images/modelview-begin-insert-columns.png +share/doc/py-qt4/html/images/modelview-begin-insert-rows.png +share/doc/py-qt4/html/images/modelview-begin-remove-columns.png +share/doc/py-qt4/html/images/modelview-begin-remove-rows.png +share/doc/py-qt4/html/images/motif-lcdnumber.png +share/doc/py-qt4/html/images/motif-menubar.png +share/doc/py-qt4/html/images/noforeignkeys.png +share/doc/py-qt4/html/images/palette.png +share/doc/py-qt4/html/images/parent-child-widgets.png +share/doc/py-qt4/html/images/plastique-checkbox.png +share/doc/py-qt4/html/images/plastique-colordialog.png +share/doc/py-qt4/html/images/plastique-dateedit.png +share/doc/py-qt4/html/images/plastique-datetimeedit.png +share/doc/py-qt4/html/images/plastique-dial.png +share/doc/py-qt4/html/images/plastique-fontdialog.png +share/doc/py-qt4/html/images/plastique-groupbox.png +share/doc/py-qt4/html/images/plastique-horizontalscrollbar.png +share/doc/py-qt4/html/images/plastique-label.png +share/doc/py-qt4/html/images/plastique-lcdnumber.png +share/doc/py-qt4/html/images/plastique-lineedit.png +share/doc/py-qt4/html/images/plastique-listview.png +share/doc/py-qt4/html/images/plastique-menu.png +share/doc/py-qt4/html/images/plastique-menubar.png +share/doc/py-qt4/html/images/plastique-printdialog-properties.png +share/doc/py-qt4/html/images/plastique-printdialog.png +share/doc/py-qt4/html/images/plastique-progressbar.png +share/doc/py-qt4/html/images/plastique-progressdialog.png +share/doc/py-qt4/html/images/plastique-pushbutton-menu.png +share/doc/py-qt4/html/images/plastique-pushbutton.png +share/doc/py-qt4/html/images/plastique-radiobutton.png +share/doc/py-qt4/html/images/plastique-sizegrip.png +share/doc/py-qt4/html/images/plastique-slider.png +share/doc/py-qt4/html/images/plastique-spinbox.png +share/doc/py-qt4/html/images/plastique-statusbar.png +share/doc/py-qt4/html/images/plastique-tabbar-truncated.png +share/doc/py-qt4/html/images/plastique-tabbar.png +share/doc/py-qt4/html/images/plastique-tableview.png +share/doc/py-qt4/html/images/plastique-tabwidget.png +share/doc/py-qt4/html/images/plastique-timeedit.png +share/doc/py-qt4/html/images/plastique-treeview.png +share/doc/py-qt4/html/images/propagation-custom.png +share/doc/py-qt4/html/images/propagation-standard.png +share/doc/py-qt4/html/images/qactiongroup-align.png +share/doc/py-qt4/html/images/qcalendarwidget-grid.png +share/doc/py-qt4/html/images/qcolor-cmyk.png +share/doc/py-qt4/html/images/qcolor-hsv.png +share/doc/py-qt4/html/images/qcolor-hue.png +share/doc/py-qt4/html/images/qcolor-rgb.png +share/doc/py-qt4/html/images/qcolor-saturation.png +share/doc/py-qt4/html/images/qcolor-value.png +share/doc/py-qt4/html/images/qcolumnview.png +share/doc/py-qt4/html/images/qconicalgradient.png +share/doc/py-qt4/html/images/qdesktopwidget.png +share/doc/py-qt4/html/images/qerrormessage.png +share/doc/py-qt4/html/images/qgradient-conical.png +share/doc/py-qt4/html/images/qgradient-linear.png +share/doc/py-qt4/html/images/qgradient-radial.png +share/doc/py-qt4/html/images/qhboxlayout-with-5-children.png +share/doc/py-qt4/html/images/qimage-32bit_scaled.png +share/doc/py-qt4/html/images/qimage-8bit_scaled.png +share/doc/py-qt4/html/images/qimage-scaling.png +share/doc/py-qt4/html/images/qline-coordinates.png +share/doc/py-qt4/html/images/qline-point.png +share/doc/py-qt4/html/images/qlineargradient-pad.png +share/doc/py-qt4/html/images/qlineargradient-reflect.png +share/doc/py-qt4/html/images/qlineargradient-repeat.png +share/doc/py-qt4/html/images/qlinef-angle-identicaldirection.png +share/doc/py-qt4/html/images/qlinef-angle-oppositedirection.png +share/doc/py-qt4/html/images/qlinef-bounded.png +share/doc/py-qt4/html/images/qlinef-normalvector.png +share/doc/py-qt4/html/images/qlinef-unbounded.png +share/doc/py-qt4/html/images/qmatrix-combinedtransformation.png +share/doc/py-qt4/html/images/qmatrix-representation.png +share/doc/py-qt4/html/images/qmatrix-simpletransformation.png +share/doc/py-qt4/html/images/qmdiarea-arrange.png +share/doc/py-qt4/html/images/qmdisubwindowlayout.png +share/doc/py-qt4/html/images/qmessagebox-crit.png +share/doc/py-qt4/html/images/qmessagebox-info.png +share/doc/py-qt4/html/images/qmessagebox-quest.png +share/doc/py-qt4/html/images/qmessagebox-warn.png +share/doc/py-qt4/html/images/qpainter-affinetransformations.png +share/doc/py-qt4/html/images/qpainter-arc.png +share/doc/py-qt4/html/images/qpainter-basicdrawing.png +share/doc/py-qt4/html/images/qpainter-chord.png +share/doc/py-qt4/html/images/qpainter-clock.png +share/doc/py-qt4/html/images/qpainter-compositiondemo.png +share/doc/py-qt4/html/images/qpainter-compositionmode1.png +share/doc/py-qt4/html/images/qpainter-compositionmode2.png +share/doc/py-qt4/html/images/qpainter-concentriccircles.png +share/doc/py-qt4/html/images/qpainter-ellipse.png +share/doc/py-qt4/html/images/qpainter-gradients.png +share/doc/py-qt4/html/images/qpainter-line.png +share/doc/py-qt4/html/images/qpainter-painterpaths.png +share/doc/py-qt4/html/images/qpainter-path.png +share/doc/py-qt4/html/images/qpainter-pathstroking.png +share/doc/py-qt4/html/images/qpainter-pie.png +share/doc/py-qt4/html/images/qpainter-polygon.png +share/doc/py-qt4/html/images/qpainter-rectangle.png +share/doc/py-qt4/html/images/qpainter-rotation.png +share/doc/py-qt4/html/images/qpainter-roundrect.png +share/doc/py-qt4/html/images/qpainter-scale.png +share/doc/py-qt4/html/images/qpainter-translation.png +share/doc/py-qt4/html/images/qpainter-vectordeformation.png +share/doc/py-qt4/html/images/qpainterpath-addellipse.png +share/doc/py-qt4/html/images/qpainterpath-addpolygon.png +share/doc/py-qt4/html/images/qpainterpath-addrectangle.png +share/doc/py-qt4/html/images/qpainterpath-addtext.png +share/doc/py-qt4/html/images/qpainterpath-arcto.png +share/doc/py-qt4/html/images/qpainterpath-construction.png +share/doc/py-qt4/html/images/qpainterpath-cubicto.png +share/doc/py-qt4/html/images/qpainterpath-demo.png +share/doc/py-qt4/html/images/qpainterpath-example.png +share/doc/py-qt4/html/images/qpen-bevel.png +share/doc/py-qt4/html/images/qpen-custom.png +share/doc/py-qt4/html/images/qpen-dash.png +share/doc/py-qt4/html/images/qpen-dashdot.png +share/doc/py-qt4/html/images/qpen-dashdotdot.png +share/doc/py-qt4/html/images/qpen-demo.png +share/doc/py-qt4/html/images/qpen-dot.png +share/doc/py-qt4/html/images/qpen-flat.png +share/doc/py-qt4/html/images/qpen-miter.png +share/doc/py-qt4/html/images/qpen-miterlimit.png +share/doc/py-qt4/html/images/qpen-roundcap.png +share/doc/py-qt4/html/images/qpen-roundjoin.png +share/doc/py-qt4/html/images/qpen-solid.png +share/doc/py-qt4/html/images/qpen-square.png +share/doc/py-qt4/html/images/qradialgradient-pad.png +share/doc/py-qt4/html/images/qradialgradient-reflect.png +share/doc/py-qt4/html/images/qradialgradient-repeat.png +share/doc/py-qt4/html/images/qrect-coordinates.png +share/doc/py-qt4/html/images/qrect-diagram-one.png +share/doc/py-qt4/html/images/qrect-diagram-three.png +share/doc/py-qt4/html/images/qrect-diagram-two.png +share/doc/py-qt4/html/images/qrect-diagram-zero.png +share/doc/py-qt4/html/images/qrect-intersect.png +share/doc/py-qt4/html/images/qrect-unite.png +share/doc/py-qt4/html/images/qrectf-coordinates.png +share/doc/py-qt4/html/images/qrectf-diagram-one.png +share/doc/py-qt4/html/images/qrectf-diagram-three.png +share/doc/py-qt4/html/images/qrectf-diagram-two.png +share/doc/py-qt4/html/images/qscrollarea-noscrollbars.png +share/doc/py-qt4/html/images/qscrollarea-onescrollbar.png +share/doc/py-qt4/html/images/qscrollarea-twoscrollbars.png +share/doc/py-qt4/html/images/qscrollbar-picture.png +share/doc/py-qt4/html/images/qscrollbar-values.png +share/doc/py-qt4/html/images/qsortfilterproxymodel-sorting.png +share/doc/py-qt4/html/images/qspinbox-plusminus.png +share/doc/py-qt4/html/images/qspinbox-updown.png +share/doc/py-qt4/html/images/qstatustipevent-action.png +share/doc/py-qt4/html/images/qstatustipevent-widget.png +share/doc/py-qt4/html/images/qstyle-comboboxes.png +share/doc/py-qt4/html/images/qstyleoptiontoolbar-position.png +share/doc/py-qt4/html/images/qt-colors.png +share/doc/py-qt4/html/images/qt-fillrule-oddeven.png +share/doc/py-qt4/html/images/qt-fillrule-winding.png +share/doc/py-qt4/html/images/qtabletevent-tilt.png +share/doc/py-qt4/html/images/qtextblock-sequence.png +share/doc/py-qt4/html/images/qtextfragment-split.png +share/doc/py-qt4/html/images/qtextframe-style.png +share/doc/py-qt4/html/images/qtexttableformat-cell.png +share/doc/py-qt4/html/images/qtransform-combinedtransformation.png +share/doc/py-qt4/html/images/qtransform-combinedtransformation2.png +share/doc/py-qt4/html/images/qtransform-simpletransformation.png +share/doc/py-qt4/html/images/qtwizard-aero1.png +share/doc/py-qt4/html/images/qtwizard-aero2.png +share/doc/py-qt4/html/images/qtwizard-classic1.png +share/doc/py-qt4/html/images/qtwizard-classic2.png +share/doc/py-qt4/html/images/qtwizard-mac1.png +share/doc/py-qt4/html/images/qtwizard-mac2.png +share/doc/py-qt4/html/images/qtwizard-macpage.png +share/doc/py-qt4/html/images/qtwizard-modern1.png +share/doc/py-qt4/html/images/qtwizard-modern2.png +share/doc/py-qt4/html/images/qtwizard-nonmacpage.png +share/doc/py-qt4/html/images/qundoview.png +share/doc/py-qt4/html/images/qurl-authority.png +share/doc/py-qt4/html/images/qurl-authority2.png +share/doc/py-qt4/html/images/qurl-authority3.png +share/doc/py-qt4/html/images/qurl-fragment.png +share/doc/py-qt4/html/images/qurl-ftppath.png +share/doc/py-qt4/html/images/qurl-mailtopath.png +share/doc/py-qt4/html/images/qurl-querystring.png +share/doc/py-qt4/html/images/qvboxlayout-with-5-children.png +share/doc/py-qt4/html/images/qworkspace-arrange.png +share/doc/py-qt4/html/images/rb-logo.png +share/doc/py-qt4/html/images/relationaltable.png +share/doc/py-qt4/html/images/rintersect.png +share/doc/py-qt4/html/images/rsubtract.png +share/doc/py-qt4/html/images/runion.png +share/doc/py-qt4/html/images/rxor.png +share/doc/py-qt4/html/images/system-tray.png +share/doc/py-qt4/html/images/taskmenuextension-example-faded.png +share/doc/py-qt4/html/images/tcpstream.png +share/doc/py-qt4/html/images/texttable-merge.png +share/doc/py-qt4/html/images/texttable-split.png +share/doc/py-qt4/html/images/threadsandobjects.png +share/doc/py-qt4/html/images/udppackets.png +share/doc/py-qt4/html/images/whatsthis.png +share/doc/py-qt4/html/images/windows-checkbox.png +share/doc/py-qt4/html/images/windows-lcdnumber.png +share/doc/py-qt4/html/images/windows-lineedit.png +share/doc/py-qt4/html/images/windows-radiobutton.png +share/doc/py-qt4/html/images/windows-slider.png +share/doc/py-qt4/html/images/windowsxp-dateedit.png +share/doc/py-qt4/html/images/windowsxp-datetimeedit.png +share/doc/py-qt4/html/images/windowsxp-dial.png +share/doc/py-qt4/html/images/windowsxp-fontcombobox.png +share/doc/py-qt4/html/images/windowsxp-groupbox.png +share/doc/py-qt4/html/images/windowsxp-horizontalscrollbar.png +share/doc/py-qt4/html/images/windowsxp-label.png +share/doc/py-qt4/html/images/windowsxp-lcdnumber.png +share/doc/py-qt4/html/images/windowsxp-listview.png +share/doc/py-qt4/html/images/windowsxp-menu.png +share/doc/py-qt4/html/images/windowsxp-progressbar.png +share/doc/py-qt4/html/images/windowsxp-pushbutton.png +share/doc/py-qt4/html/images/windowsxp-spinbox.png +share/doc/py-qt4/html/images/windowsxp-tableview.png +share/doc/py-qt4/html/images/windowsxp-tabwidget.png +share/doc/py-qt4/html/images/windowsxp-timeedit.png +share/doc/py-qt4/html/images/windowsxp-treeview.png +share/doc/py-qt4/html/modules.html +share/doc/py-qt4/html/qabstractbutton.html +share/doc/py-qt4/html/qabstracteventdispatcher.html +share/doc/py-qt4/html/qabstractextensionfactory.html +share/doc/py-qt4/html/qabstractextensionmanager.html +share/doc/py-qt4/html/qabstractfileengine-fileflags.html +share/doc/py-qt4/html/qabstractfileengine.html +share/doc/py-qt4/html/qabstractfileenginehandler.html +share/doc/py-qt4/html/qabstractfileengineiterator.html +share/doc/py-qt4/html/qabstractformbuilder.html +share/doc/py-qt4/html/qabstractgraphicsshapeitem.html +share/doc/py-qt4/html/qabstractitemdelegate.html +share/doc/py-qt4/html/qabstractitemmodel.html +share/doc/py-qt4/html/qabstractitemview-edittriggers.html +share/doc/py-qt4/html/qabstractitemview.html +share/doc/py-qt4/html/qabstractlistmodel.html +share/doc/py-qt4/html/qabstractprintdialog-printdialogoptions.html +share/doc/py-qt4/html/qabstractprintdialog.html +share/doc/py-qt4/html/qabstractproxymodel.html +share/doc/py-qt4/html/qabstractscrollarea.html +share/doc/py-qt4/html/qabstractslider.html +share/doc/py-qt4/html/qabstractsocket.html +share/doc/py-qt4/html/qabstractspinbox-stepenabled.html +share/doc/py-qt4/html/qabstractspinbox.html +share/doc/py-qt4/html/qabstracttablemodel.html +share/doc/py-qt4/html/qabstracttextdocumentlayout-paintcontext.html +share/doc/py-qt4/html/qabstracttextdocumentlayout-selection.html +share/doc/py-qt4/html/qabstracttextdocumentlayout.html +share/doc/py-qt4/html/qaction.html +share/doc/py-qt4/html/qactionevent.html +share/doc/py-qt4/html/qactiongroup.html +share/doc/py-qt4/html/qapplication.html +share/doc/py-qt4/html/qassistantclient.html +share/doc/py-qt4/html/qauthenticator.html +share/doc/py-qt4/html/qaxcontainer.html +share/doc/py-qt4/html/qbasictimer.html +share/doc/py-qt4/html/qbitarray.html +share/doc/py-qt4/html/qbitmap.html +share/doc/py-qt4/html/qboxlayout.html +share/doc/py-qt4/html/qbrush.html +share/doc/py-qt4/html/qbuffer.html +share/doc/py-qt4/html/qbuttongroup.html +share/doc/py-qt4/html/qbytearray.html +share/doc/py-qt4/html/qbytearraymatcher.html +share/doc/py-qt4/html/qcalendarwidget.html +share/doc/py-qt4/html/qchar.html +share/doc/py-qt4/html/qcheckbox.html +share/doc/py-qt4/html/qchildevent.html +share/doc/py-qt4/html/qclipboard.html +share/doc/py-qt4/html/qcloseevent.html +share/doc/py-qt4/html/qcolor.html +share/doc/py-qt4/html/qcolordialog.html +share/doc/py-qt4/html/qcolumnview.html +share/doc/py-qt4/html/qcombobox.html +share/doc/py-qt4/html/qcompleter.html +share/doc/py-qt4/html/qconicalgradient.html +share/doc/py-qt4/html/qcontextmenuevent.html +share/doc/py-qt4/html/qcoreapplication.html +share/doc/py-qt4/html/qcryptographichash.html +share/doc/py-qt4/html/qcursor.html +share/doc/py-qt4/html/qdatastream.html +share/doc/py-qt4/html/qdatawidgetmapper.html +share/doc/py-qt4/html/qdate.html +share/doc/py-qt4/html/qdateedit.html +share/doc/py-qt4/html/qdatetime.html +share/doc/py-qt4/html/qdatetimeedit-sections.html +share/doc/py-qt4/html/qdatetimeedit.html +share/doc/py-qt4/html/qdesigneractioneditorinterface.html +share/doc/py-qt4/html/qdesignercontainerextension.html +share/doc/py-qt4/html/qdesignercustomwidgetcollectioninterface.html +share/doc/py-qt4/html/qdesignercustomwidgetinterface.html +share/doc/py-qt4/html/qdesignerformeditorinterface.html +share/doc/py-qt4/html/qdesignerformwindowcursorinterface.html +share/doc/py-qt4/html/qdesignerformwindowinterface-feature.html +share/doc/py-qt4/html/qdesignerformwindowinterface.html +share/doc/py-qt4/html/qdesignerformwindowmanagerinterface.html +share/doc/py-qt4/html/qdesignermembersheetextension.html +share/doc/py-qt4/html/qdesignerobjectinspectorinterface.html +share/doc/py-qt4/html/qdesignerpropertyeditorinterface.html +share/doc/py-qt4/html/qdesignerpropertysheetextension.html +share/doc/py-qt4/html/qdesignertaskmenuextension.html +share/doc/py-qt4/html/qdesignerwidgetboxinterface.html +share/doc/py-qt4/html/qdesktopservices.html +share/doc/py-qt4/html/qdesktopwidget.html +share/doc/py-qt4/html/qdial.html +share/doc/py-qt4/html/qdialog.html +share/doc/py-qt4/html/qdialogbuttonbox-standardbuttons.html +share/doc/py-qt4/html/qdialogbuttonbox.html +share/doc/py-qt4/html/qdir-filters.html +share/doc/py-qt4/html/qdir-sortflags.html +share/doc/py-qt4/html/qdir.html +share/doc/py-qt4/html/qdiriterator-iteratorflags.html +share/doc/py-qt4/html/qdiriterator.html +share/doc/py-qt4/html/qdirmodel.html +share/doc/py-qt4/html/qdockwidget-dockwidgetfeatures.html +share/doc/py-qt4/html/qdockwidget.html +share/doc/py-qt4/html/qdomattr.html +share/doc/py-qt4/html/qdomcdatasection.html +share/doc/py-qt4/html/qdomcharacterdata.html +share/doc/py-qt4/html/qdomcomment.html +share/doc/py-qt4/html/qdomdocument.html +share/doc/py-qt4/html/qdomdocumentfragment.html +share/doc/py-qt4/html/qdomdocumenttype.html +share/doc/py-qt4/html/qdomelement.html +share/doc/py-qt4/html/qdomentity.html +share/doc/py-qt4/html/qdomentityreference.html +share/doc/py-qt4/html/qdomimplementation.html +share/doc/py-qt4/html/qdomnamednodemap.html +share/doc/py-qt4/html/qdomnode.html +share/doc/py-qt4/html/qdomnodelist.html +share/doc/py-qt4/html/qdomnotation.html +share/doc/py-qt4/html/qdomprocessinginstruction.html +share/doc/py-qt4/html/qdomtext.html +share/doc/py-qt4/html/qdoublespinbox.html +share/doc/py-qt4/html/qdoublevalidator.html +share/doc/py-qt4/html/qdrag.html +share/doc/py-qt4/html/qdragenterevent.html +share/doc/py-qt4/html/qdragleaveevent.html +share/doc/py-qt4/html/qdragmoveevent.html +share/doc/py-qt4/html/qdropevent.html +share/doc/py-qt4/html/qdynamicpropertychangeevent.html +share/doc/py-qt4/html/qerrormessage.html +share/doc/py-qt4/html/qevent.html +share/doc/py-qt4/html/qeventloop-processeventsflags.html +share/doc/py-qt4/html/qeventloop.html +share/doc/py-qt4/html/qextensionfactory.html +share/doc/py-qt4/html/qextensionmanager.html +share/doc/py-qt4/html/qfile-permissions.html +share/doc/py-qt4/html/qfile.html +share/doc/py-qt4/html/qfiledialog-options.html +share/doc/py-qt4/html/qfiledialog.html +share/doc/py-qt4/html/qfileiconprovider.html +share/doc/py-qt4/html/qfileinfo.html +share/doc/py-qt4/html/qfileopenevent.html +share/doc/py-qt4/html/qfilesystemwatcher.html +share/doc/py-qt4/html/qfocusevent.html +share/doc/py-qt4/html/qfocusframe.html +share/doc/py-qt4/html/qfont.html +share/doc/py-qt4/html/qfontcombobox-fontfilters.html +share/doc/py-qt4/html/qfontcombobox.html +share/doc/py-qt4/html/qfontdatabase.html +share/doc/py-qt4/html/qfontdialog.html +share/doc/py-qt4/html/qfontinfo.html +share/doc/py-qt4/html/qfontmetrics.html +share/doc/py-qt4/html/qfontmetricsf.html +share/doc/py-qt4/html/qformbuilder.html +share/doc/py-qt4/html/qframe.html +share/doc/py-qt4/html/qfsfileengine.html +share/doc/py-qt4/html/qftp.html +share/doc/py-qt4/html/qgl-formatoptions.html +share/doc/py-qt4/html/qgl.html +share/doc/py-qt4/html/qglcolormap.html +share/doc/py-qt4/html/qglcontext.html +share/doc/py-qt4/html/qglformat-openglversionflags.html +share/doc/py-qt4/html/qglformat.html +share/doc/py-qt4/html/qglframebufferobject.html +share/doc/py-qt4/html/qglpixelbuffer.html +share/doc/py-qt4/html/qglwidget.html +share/doc/py-qt4/html/qgradient.html +share/doc/py-qt4/html/qgraphicsellipseitem.html +share/doc/py-qt4/html/qgraphicsitem-graphicsitemflags.html +share/doc/py-qt4/html/qgraphicsitem.html +share/doc/py-qt4/html/qgraphicsitemanimation.html +share/doc/py-qt4/html/qgraphicsitemgroup.html +share/doc/py-qt4/html/qgraphicslineitem.html +share/doc/py-qt4/html/qgraphicspathitem.html +share/doc/py-qt4/html/qgraphicspixmapitem.html +share/doc/py-qt4/html/qgraphicspolygonitem.html +share/doc/py-qt4/html/qgraphicsrectitem.html +share/doc/py-qt4/html/qgraphicsscene-scenelayers.html +share/doc/py-qt4/html/qgraphicsscene.html +share/doc/py-qt4/html/qgraphicsscenecontextmenuevent.html +share/doc/py-qt4/html/qgraphicsscenedragdropevent.html +share/doc/py-qt4/html/qgraphicssceneevent.html +share/doc/py-qt4/html/qgraphicsscenehelpevent.html +share/doc/py-qt4/html/qgraphicsscenehoverevent.html +share/doc/py-qt4/html/qgraphicsscenemouseevent.html +share/doc/py-qt4/html/qgraphicsscenewheelevent.html +share/doc/py-qt4/html/qgraphicssimpletextitem.html +share/doc/py-qt4/html/qgraphicssvgitem.html +share/doc/py-qt4/html/qgraphicstextitem.html +share/doc/py-qt4/html/qgraphicsview-cachemode.html +share/doc/py-qt4/html/qgraphicsview-optimizationflags.html +share/doc/py-qt4/html/qgraphicsview.html +share/doc/py-qt4/html/qgridlayout.html +share/doc/py-qt4/html/qgroupbox.html +share/doc/py-qt4/html/qhboxlayout.html +share/doc/py-qt4/html/qheaderview.html +share/doc/py-qt4/html/qhelpevent.html +share/doc/py-qt4/html/qhideevent.html +share/doc/py-qt4/html/qhostaddress.html +share/doc/py-qt4/html/qhostinfo.html +share/doc/py-qt4/html/qhoverevent.html +share/doc/py-qt4/html/qhttp.html +share/doc/py-qt4/html/qhttpheader.html +share/doc/py-qt4/html/qhttprequestheader.html +share/doc/py-qt4/html/qhttpresponseheader.html +share/doc/py-qt4/html/qicon.html +share/doc/py-qt4/html/qicondragevent.html +share/doc/py-qt4/html/qiconengine.html +share/doc/py-qt4/html/qiconenginev2.html +share/doc/py-qt4/html/qimage.html +share/doc/py-qt4/html/qimageiohandler.html +share/doc/py-qt4/html/qimagereader.html +share/doc/py-qt4/html/qimagewriter.html +share/doc/py-qt4/html/qinputcontext.html +share/doc/py-qt4/html/qinputdialog.html +share/doc/py-qt4/html/qinputevent.html +share/doc/py-qt4/html/qinputmethodevent-attribute.html +share/doc/py-qt4/html/qinputmethodevent.html +share/doc/py-qt4/html/qintvalidator.html +share/doc/py-qt4/html/qiodevice-openmode.html +share/doc/py-qt4/html/qiodevice.html +share/doc/py-qt4/html/qitemdelegate.html +share/doc/py-qt4/html/qitemeditorcreatorbase.html +share/doc/py-qt4/html/qitemeditorfactory.html +share/doc/py-qt4/html/qitemselection.html +share/doc/py-qt4/html/qitemselectionmodel-selectionflags.html +share/doc/py-qt4/html/qitemselectionmodel.html +share/doc/py-qt4/html/qitemselectionrange.html +share/doc/py-qt4/html/qkeyevent.html +share/doc/py-qt4/html/qkeysequence.html +share/doc/py-qt4/html/qlabel.html +share/doc/py-qt4/html/qlatin1char.html +share/doc/py-qt4/html/qlatin1string.html +share/doc/py-qt4/html/qlayout.html +share/doc/py-qt4/html/qlayoutitem.html +share/doc/py-qt4/html/qlcdnumber.html +share/doc/py-qt4/html/qlibrary-loadhints.html +share/doc/py-qt4/html/qlibrary.html +share/doc/py-qt4/html/qlibraryinfo.html +share/doc/py-qt4/html/qline.html +share/doc/py-qt4/html/qlineargradient.html +share/doc/py-qt4/html/qlineedit.html +share/doc/py-qt4/html/qlinef.html +share/doc/py-qt4/html/qlistview.html +share/doc/py-qt4/html/qlistwidget.html +share/doc/py-qt4/html/qlistwidgetitem.html +share/doc/py-qt4/html/qlocale-numberoptions.html +share/doc/py-qt4/html/qlocale.html +share/doc/py-qt4/html/qmainwindow-dockoptions.html +share/doc/py-qt4/html/qmainwindow.html +share/doc/py-qt4/html/qmatrix.html +share/doc/py-qt4/html/qmdiarea-areaoptions.html +share/doc/py-qt4/html/qmdiarea.html +share/doc/py-qt4/html/qmdisubwindow-subwindowoptions.html +share/doc/py-qt4/html/qmdisubwindow.html +share/doc/py-qt4/html/qmenu.html +share/doc/py-qt4/html/qmenubar.html +share/doc/py-qt4/html/qmessagebox-standardbuttons.html +share/doc/py-qt4/html/qmessagebox.html +share/doc/py-qt4/html/qmetaclassinfo.html +share/doc/py-qt4/html/qmetaenum.html +share/doc/py-qt4/html/qmetamethod.html +share/doc/py-qt4/html/qmetaobject.html +share/doc/py-qt4/html/qmetaproperty.html +share/doc/py-qt4/html/qmimedata.html +share/doc/py-qt4/html/qmimesource.html +share/doc/py-qt4/html/qmodelindex.html +share/doc/py-qt4/html/qmouseevent.html +share/doc/py-qt4/html/qmoveevent.html +share/doc/py-qt4/html/qmovie.html +share/doc/py-qt4/html/qmutex.html +share/doc/py-qt4/html/qmutexlocker.html +share/doc/py-qt4/html/qnetworkaddressentry.html +share/doc/py-qt4/html/qnetworkinterface-interfaceflags.html +share/doc/py-qt4/html/qnetworkinterface.html +share/doc/py-qt4/html/qnetworkproxy.html +share/doc/py-qt4/html/qobject.html +share/doc/py-qt4/html/qobjectcleanuphandler.html +share/doc/py-qt4/html/qpagesetupdialog.html +share/doc/py-qt4/html/qpaintdevice.html +share/doc/py-qt4/html/qpaintengine-dirtyflags.html +share/doc/py-qt4/html/qpaintengine-paintenginefeatures.html +share/doc/py-qt4/html/qpaintengine.html +share/doc/py-qt4/html/qpaintenginestate.html +share/doc/py-qt4/html/qpainter-renderhints.html +share/doc/py-qt4/html/qpainter.html +share/doc/py-qt4/html/qpainterpath-element.html +share/doc/py-qt4/html/qpainterpath.html +share/doc/py-qt4/html/qpainterpathstroker.html +share/doc/py-qt4/html/qpaintevent.html +share/doc/py-qt4/html/qpalette.html +share/doc/py-qt4/html/qpen.html +share/doc/py-qt4/html/qpersistentmodelindex.html +share/doc/py-qt4/html/qpicture.html +share/doc/py-qt4/html/qpictureio.html +share/doc/py-qt4/html/qpixmap.html +share/doc/py-qt4/html/qpixmapcache.html +share/doc/py-qt4/html/qpluginloader.html +share/doc/py-qt4/html/qpoint.html +share/doc/py-qt4/html/qpointf.html +share/doc/py-qt4/html/qpolygon.html +share/doc/py-qt4/html/qpolygonf.html +share/doc/py-qt4/html/qprintdialog.html +share/doc/py-qt4/html/qprintengine.html +share/doc/py-qt4/html/qprinter.html +share/doc/py-qt4/html/qprocess.html +share/doc/py-qt4/html/qprogressbar.html +share/doc/py-qt4/html/qprogressdialog.html +share/doc/py-qt4/html/qproxymodel.html +share/doc/py-qt4/html/qpushbutton.html +share/doc/py-qt4/html/qpydesignercontainerextension.html +share/doc/py-qt4/html/qpydesignercustomwidgetcollectionplugin.html +share/doc/py-qt4/html/qpydesignercustomwidgetplugin.html +share/doc/py-qt4/html/qpydesignermembersheetextension.html +share/doc/py-qt4/html/qpydesignerpropertysheetextension.html +share/doc/py-qt4/html/qpydesignertaskmenuextension.html +share/doc/py-qt4/html/qradialgradient.html +share/doc/py-qt4/html/qradiobutton.html +share/doc/py-qt4/html/qreadlocker.html +share/doc/py-qt4/html/qreadwritelock.html +share/doc/py-qt4/html/qrect.html +share/doc/py-qt4/html/qrectf.html +share/doc/py-qt4/html/qregexp.html +share/doc/py-qt4/html/qregexpvalidator.html +share/doc/py-qt4/html/qregion.html +share/doc/py-qt4/html/qresizeevent.html +share/doc/py-qt4/html/qresource.html +share/doc/py-qt4/html/qrubberband.html +share/doc/py-qt4/html/qscriptcontext.html +share/doc/py-qt4/html/qscriptengine-qobjectwrapoptions.html +share/doc/py-qt4/html/qscriptengine.html +share/doc/py-qt4/html/qscriptvalue-propertyflags.html +share/doc/py-qt4/html/qscriptvalue-resolveflags.html +share/doc/py-qt4/html/qscriptvalue.html +share/doc/py-qt4/html/qscriptvalueiterator.html +share/doc/py-qt4/html/qscrollarea.html +share/doc/py-qt4/html/qscrollbar.html +share/doc/py-qt4/html/qsemaphore.html +share/doc/py-qt4/html/qsessionmanager.html +share/doc/py-qt4/html/qsettings.html +share/doc/py-qt4/html/qshortcut.html +share/doc/py-qt4/html/qshortcutevent.html +share/doc/py-qt4/html/qshowevent.html +share/doc/py-qt4/html/qsignalmapper.html +share/doc/py-qt4/html/qsize.html +share/doc/py-qt4/html/qsizef.html +share/doc/py-qt4/html/qsizegrip.html +share/doc/py-qt4/html/qsizepolicy-controltypes.html +share/doc/py-qt4/html/qsizepolicy.html +share/doc/py-qt4/html/qslider.html +share/doc/py-qt4/html/qsocketnotifier.html +share/doc/py-qt4/html/qsortfilterproxymodel.html +share/doc/py-qt4/html/qsound.html +share/doc/py-qt4/html/qspaceritem.html +share/doc/py-qt4/html/qspinbox.html +share/doc/py-qt4/html/qsplashscreen.html +share/doc/py-qt4/html/qsplitter.html +share/doc/py-qt4/html/qsplitterhandle.html +share/doc/py-qt4/html/qsql-paramtype.html +share/doc/py-qt4/html/qsql.html +share/doc/py-qt4/html/qsqldatabase.html +share/doc/py-qt4/html/qsqldriver.html +share/doc/py-qt4/html/qsqldrivercreatorbase.html +share/doc/py-qt4/html/qsqlerror.html +share/doc/py-qt4/html/qsqlfield.html +share/doc/py-qt4/html/qsqlindex.html +share/doc/py-qt4/html/qsqlquery.html +share/doc/py-qt4/html/qsqlquerymodel.html +share/doc/py-qt4/html/qsqlrecord.html +share/doc/py-qt4/html/qsqlrelation.html +share/doc/py-qt4/html/qsqlrelationaldelegate.html +share/doc/py-qt4/html/qsqlrelationaltablemodel.html +share/doc/py-qt4/html/qsqlresult.html +share/doc/py-qt4/html/qsqltablemodel.html +share/doc/py-qt4/html/qssl.html +share/doc/py-qt4/html/qsslcertificate.html +share/doc/py-qt4/html/qsslcipher.html +share/doc/py-qt4/html/qsslerror.html +share/doc/py-qt4/html/qsslkey.html +share/doc/py-qt4/html/qsslsocket.html +share/doc/py-qt4/html/qstackedlayout.html +share/doc/py-qt4/html/qstackedwidget.html +share/doc/py-qt4/html/qstandarditem.html +share/doc/py-qt4/html/qstandarditemmodel.html +share/doc/py-qt4/html/qstatusbar.html +share/doc/py-qt4/html/qstatustipevent.html +share/doc/py-qt4/html/qstring-sectionflags.html +share/doc/py-qt4/html/qstring.html +share/doc/py-qt4/html/qstringlist.html +share/doc/py-qt4/html/qstringlistmodel.html +share/doc/py-qt4/html/qstringmatcher.html +share/doc/py-qt4/html/qstringref.html +share/doc/py-qt4/html/qstyle-state.html +share/doc/py-qt4/html/qstyle-subcontrols.html +share/doc/py-qt4/html/qstyle.html +share/doc/py-qt4/html/qstylefactory.html +share/doc/py-qt4/html/qstylehintreturn.html +share/doc/py-qt4/html/qstylehintreturnmask.html +share/doc/py-qt4/html/qstylehintreturnvariant.html +share/doc/py-qt4/html/qstyleoption.html +share/doc/py-qt4/html/qstyleoptionbutton-buttonfeatures.html +share/doc/py-qt4/html/qstyleoptionbutton.html +share/doc/py-qt4/html/qstyleoptioncombobox.html +share/doc/py-qt4/html/qstyleoptioncomplex.html +share/doc/py-qt4/html/qstyleoptiondockwidget.html +share/doc/py-qt4/html/qstyleoptiondockwidgetv2.html +share/doc/py-qt4/html/qstyleoptionfocusrect.html +share/doc/py-qt4/html/qstyleoptionframe.html +share/doc/py-qt4/html/qstyleoptionframev2-framefeatures.html +share/doc/py-qt4/html/qstyleoptionframev2.html +share/doc/py-qt4/html/qstyleoptiongraphicsitem.html +share/doc/py-qt4/html/qstyleoptiongroupbox.html +share/doc/py-qt4/html/qstyleoptionheader.html +share/doc/py-qt4/html/qstyleoptionmenuitem.html +share/doc/py-qt4/html/qstyleoptionprogressbar.html +share/doc/py-qt4/html/qstyleoptionprogressbarv2.html +share/doc/py-qt4/html/qstyleoptionrubberband.html +share/doc/py-qt4/html/qstyleoptionsizegrip.html +share/doc/py-qt4/html/qstyleoptionslider.html +share/doc/py-qt4/html/qstyleoptionspinbox.html +share/doc/py-qt4/html/qstyleoptiontab-cornerwidgets.html +share/doc/py-qt4/html/qstyleoptiontab.html +share/doc/py-qt4/html/qstyleoptiontabbarbase.html +share/doc/py-qt4/html/qstyleoptiontabv2.html +share/doc/py-qt4/html/qstyleoptiontabwidgetframe.html +share/doc/py-qt4/html/qstyleoptiontitlebar.html +share/doc/py-qt4/html/qstyleoptiontoolbar-toolbarfeatures.html +share/doc/py-qt4/html/qstyleoptiontoolbar.html +share/doc/py-qt4/html/qstyleoptiontoolbox.html +share/doc/py-qt4/html/qstyleoptiontoolboxv2.html +share/doc/py-qt4/html/qstyleoptiontoolbutton-toolbuttonfeatures.html +share/doc/py-qt4/html/qstyleoptiontoolbutton.html +share/doc/py-qt4/html/qstyleoptionviewitem.html +share/doc/py-qt4/html/qstyleoptionviewitemv2-viewitemfeatures.html +share/doc/py-qt4/html/qstyleoptionviewitemv2.html +share/doc/py-qt4/html/qstyleoptionviewitemv3.html +share/doc/py-qt4/html/qstylepainter.html +share/doc/py-qt4/html/qsvggenerator.html +share/doc/py-qt4/html/qsvgrenderer.html +share/doc/py-qt4/html/qsvgwidget.html +share/doc/py-qt4/html/qsyntaxhighlighter.html +share/doc/py-qt4/html/qsysinfo.html +share/doc/py-qt4/html/qsystemlocale.html +share/doc/py-qt4/html/qsystemtrayicon.html +share/doc/py-qt4/html/qt-alignment.html +share/doc/py-qt4/html/qt-dockwidgetareas.html +share/doc/py-qt4/html/qt-dropactions.html +share/doc/py-qt4/html/qt-imageconversionflags.html +share/doc/py-qt4/html/qt-itemflags.html +share/doc/py-qt4/html/qt-keyboardmodifiers.html +share/doc/py-qt4/html/qt-matchflags.html +share/doc/py-qt4/html/qt-mousebuttons.html +share/doc/py-qt4/html/qt-orientations.html +share/doc/py-qt4/html/qt-textinteractionflags.html +share/doc/py-qt4/html/qt-toolbarareas.html +share/doc/py-qt4/html/qt-windowflags.html +share/doc/py-qt4/html/qt-windowstates.html +share/doc/py-qt4/html/qt.html +share/doc/py-qt4/html/qtabbar.html +share/doc/py-qt4/html/qtabletevent.html +share/doc/py-qt4/html/qtableview.html +share/doc/py-qt4/html/qtablewidget.html +share/doc/py-qt4/html/qtablewidgetitem.html +share/doc/py-qt4/html/qtablewidgetselectionrange.html +share/doc/py-qt4/html/qtabwidget.html +share/doc/py-qt4/html/qtassistant.html +share/doc/py-qt4/html/qtcore.html +share/doc/py-qt4/html/qtcpserver.html +share/doc/py-qt4/html/qtcpsocket.html +share/doc/py-qt4/html/qtdesigner.html +share/doc/py-qt4/html/qtemporaryfile.html +share/doc/py-qt4/html/qtest.html +share/doc/py-qt4/html/qtextblock-iterator.html +share/doc/py-qt4/html/qtextblock.html +share/doc/py-qt4/html/qtextblockformat.html +share/doc/py-qt4/html/qtextblockgroup.html +share/doc/py-qt4/html/qtextblockuserdata.html +share/doc/py-qt4/html/qtextbrowser.html +share/doc/py-qt4/html/qtextcharformat.html +share/doc/py-qt4/html/qtextcodec-conversionflags.html +share/doc/py-qt4/html/qtextcodec-converterstate.html +share/doc/py-qt4/html/qtextcodec.html +share/doc/py-qt4/html/qtextcursor.html +share/doc/py-qt4/html/qtextdecoder.html +share/doc/py-qt4/html/qtextdocument-findflags.html +share/doc/py-qt4/html/qtextdocument.html +share/doc/py-qt4/html/qtextdocumentfragment.html +share/doc/py-qt4/html/qtextedit-autoformatting.html +share/doc/py-qt4/html/qtextedit-extraselection.html +share/doc/py-qt4/html/qtextedit.html +share/doc/py-qt4/html/qtextencoder.html +share/doc/py-qt4/html/qtextformat-pagebreakflags.html +share/doc/py-qt4/html/qtextformat.html +share/doc/py-qt4/html/qtextfragment.html +share/doc/py-qt4/html/qtextframe-iterator.html +share/doc/py-qt4/html/qtextframe.html +share/doc/py-qt4/html/qtextframeformat.html +share/doc/py-qt4/html/qtextimageformat.html +share/doc/py-qt4/html/qtextinlineobject.html +share/doc/py-qt4/html/qtextitem-renderflags.html +share/doc/py-qt4/html/qtextitem.html +share/doc/py-qt4/html/qtextlayout-formatrange.html +share/doc/py-qt4/html/qtextlayout.html +share/doc/py-qt4/html/qtextlength.html +share/doc/py-qt4/html/qtextline.html +share/doc/py-qt4/html/qtextlist.html +share/doc/py-qt4/html/qtextlistformat.html +share/doc/py-qt4/html/qtextobject.html +share/doc/py-qt4/html/qtextoption-flags.html +share/doc/py-qt4/html/qtextoption.html +share/doc/py-qt4/html/qtextstream-numberflags.html +share/doc/py-qt4/html/qtextstream.html +share/doc/py-qt4/html/qtexttable.html +share/doc/py-qt4/html/qtexttablecell.html +share/doc/py-qt4/html/qtexttableformat.html +share/doc/py-qt4/html/qtgui.html +share/doc/py-qt4/html/qthread.html +share/doc/py-qt4/html/qtime.html +share/doc/py-qt4/html/qtimeedit.html +share/doc/py-qt4/html/qtimeline.html +share/doc/py-qt4/html/qtimer.html +share/doc/py-qt4/html/qtimerevent.html +share/doc/py-qt4/html/qtnetwork.html +share/doc/py-qt4/html/qtoolbar.html +share/doc/py-qt4/html/qtoolbox.html +share/doc/py-qt4/html/qtoolbutton.html +share/doc/py-qt4/html/qtooltip.html +share/doc/py-qt4/html/qtopengl.html +share/doc/py-qt4/html/qtransform.html +share/doc/py-qt4/html/qtranslator.html +share/doc/py-qt4/html/qtreeview.html +share/doc/py-qt4/html/qtreewidget.html +share/doc/py-qt4/html/qtreewidgetitem.html +share/doc/py-qt4/html/qtreewidgetitemiterator-iteratorflags.html +share/doc/py-qt4/html/qtreewidgetitemiterator.html +share/doc/py-qt4/html/qtscript.html +share/doc/py-qt4/html/qtsql.html +share/doc/py-qt4/html/qtsvg.html +share/doc/py-qt4/html/qttest.html +share/doc/py-qt4/html/qtxml.html +share/doc/py-qt4/html/qudpsocket-bindmode.html +share/doc/py-qt4/html/qudpsocket.html +share/doc/py-qt4/html/qundocommand.html +share/doc/py-qt4/html/qundogroup.html +share/doc/py-qt4/html/qundostack.html +share/doc/py-qt4/html/qundoview.html +share/doc/py-qt4/html/qurl-formattingoptions.html +share/doc/py-qt4/html/qurl.html +share/doc/py-qt4/html/qurlinfo.html +share/doc/py-qt4/html/quuid.html +share/doc/py-qt4/html/qvalidator.html +share/doc/py-qt4/html/qvariant.html +share/doc/py-qt4/html/qvboxlayout.html +share/doc/py-qt4/html/qwaitcondition.html +share/doc/py-qt4/html/qwhatsthis.html +share/doc/py-qt4/html/qwhatsthisclickedevent.html +share/doc/py-qt4/html/qwheelevent.html +share/doc/py-qt4/html/qwidget-renderflags.html +share/doc/py-qt4/html/qwidget.html +share/doc/py-qt4/html/qwidgetaction.html +share/doc/py-qt4/html/qwidgetitem.html +share/doc/py-qt4/html/qwindowstatechangeevent.html +share/doc/py-qt4/html/qwizard-wizardoptions.html +share/doc/py-qt4/html/qwizard.html +share/doc/py-qt4/html/qwizardpage.html +share/doc/py-qt4/html/qworkspace.html +share/doc/py-qt4/html/qwritelocker.html +share/doc/py-qt4/html/qx11embedcontainer.html +share/doc/py-qt4/html/qx11embedwidget.html +share/doc/py-qt4/html/qx11info.html +share/doc/py-qt4/html/qxmlattributes.html +share/doc/py-qt4/html/qxmlcontenthandler.html +share/doc/py-qt4/html/qxmldeclhandler.html +share/doc/py-qt4/html/qxmldefaulthandler.html +share/doc/py-qt4/html/qxmldtdhandler.html +share/doc/py-qt4/html/qxmlentityresolver.html +share/doc/py-qt4/html/qxmlerrorhandler.html +share/doc/py-qt4/html/qxmlinputsource.html +share/doc/py-qt4/html/qxmllexicalhandler.html +share/doc/py-qt4/html/qxmllocator.html +share/doc/py-qt4/html/qxmlnamespacesupport.html +share/doc/py-qt4/html/qxmlparseexception.html +share/doc/py-qt4/html/qxmlreader.html +share/doc/py-qt4/html/qxmlsimplereader.html +share/doc/py-qt4/html/qxmlstreamattribute.html +share/doc/py-qt4/html/qxmlstreamattributes.html +share/doc/py-qt4/html/qxmlstreamentitydeclaration.html +share/doc/py-qt4/html/qxmlstreamnamespacedeclaration.html +share/doc/py-qt4/html/qxmlstreamnotationdeclaration.html +share/doc/py-qt4/html/qxmlstreamreader.html +share/doc/py-qt4/html/qxmlstreamwriter.html +share/doc/py-qt4/html/threads.html +share/doc/py-qt4/pyqt4ref.html +share/doc/py-qt4/pyqt4ref.txt diff --git a/x11/py-qt4/pkg/PLIST-main b/x11/py-qt4/pkg/PLIST-main new file mode 100644 index 00000000000..3f72dd86219 --- /dev/null +++ b/x11/py-qt4/pkg/PLIST-main @@ -0,0 +1,372 @@ +@comment $OpenBSD: PLIST-main,v 1.1.1.1 2008/01/15 13:25:23 ajacoutot Exp $ +bin/pylupdate4 +bin/pyrcc4 +bin/pyuic4 +lib/python${MODPY_VERSION}/site-packages/PyQt4/ +lib/python${MODPY_VERSION}/site-packages/PyQt4/Qt.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtAssistant.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtCore.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtDesigner.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtGui.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtNetwork.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtOpenGL.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtScript.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtSql.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtSvg.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtTest.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/QtXml.so +lib/python${MODPY_VERSION}/site-packages/PyQt4/__init__.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/pyqtconfig.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/ +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/ +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/__init__.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/compiler.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/indenter.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/qobjectcreator.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Compiler/qtproxies.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Loader/ +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Loader/__init__.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Loader/loader.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/Loader/qobjectcreator.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/__init__.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/exceptions.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/objcreator.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/properties.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/pyuic.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/uiparser.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/ +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qaxcontainer.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qscintilla.py +lib/python${MODPY_VERSION}/site-packages/PyQt4/uic/widget-plugins/qwt.py +lib/python${MODPY_VERSION}/site-packages/dbus/ +lib/python${MODPY_VERSION}/site-packages/dbus/mainloop/ +lib/python${MODPY_VERSION}/site-packages/dbus/mainloop/qt.so +share/sip/ +share/sip/Qt/ +share/sip/Qt/Qtmod.sip +share/sip/QtAssistant/ +share/sip/QtAssistant/QtAssistantmod.sip +share/sip/QtAssistant/qassistantclient.sip +share/sip/QtCore/ +share/sip/QtCore/QtCoremod.sip +share/sip/QtCore/qabstracteventdispatcher.sip +share/sip/QtCore/qabstractfileengine.sip +share/sip/QtCore/qabstractitemmodel.sip +share/sip/QtCore/qbasictimer.sip +share/sip/QtCore/qbitarray.sip +share/sip/QtCore/qbuffer.sip +share/sip/QtCore/qbytearray.sip +share/sip/QtCore/qbytearraymatcher.sip +share/sip/QtCore/qchar.sip +share/sip/QtCore/qcoreapplication.sip +share/sip/QtCore/qcoreevent.sip +share/sip/QtCore/qcryptographichash.sip +share/sip/QtCore/qdatastream.sip +share/sip/QtCore/qdatetime.sip +share/sip/QtCore/qdir.sip +share/sip/QtCore/qdiriterator.sip +share/sip/QtCore/qeventloop.sip +share/sip/QtCore/qfile.sip +share/sip/QtCore/qfileinfo.sip +share/sip/QtCore/qfilesystemwatcher.sip +share/sip/QtCore/qfsfileengine.sip +share/sip/QtCore/qglobal.sip +share/sip/QtCore/qiodevice.sip +share/sip/QtCore/qlibrary.sip +share/sip/QtCore/qlibraryinfo.sip +share/sip/QtCore/qline.sip +share/sip/QtCore/qlist.sip +share/sip/QtCore/qlocale.sip +share/sip/QtCore/qmap.sip +share/sip/QtCore/qmetaobject.sip +share/sip/QtCore/qmimedata.sip +share/sip/QtCore/qmutex.sip +share/sip/QtCore/qnamespace.sip +share/sip/QtCore/qnumeric.sip +share/sip/QtCore/qobject.sip +share/sip/QtCore/qobjectcleanuphandler.sip +share/sip/QtCore/qobjectdefs.sip +share/sip/QtCore/qpair.sip +share/sip/QtCore/qpluginloader.sip +share/sip/QtCore/qpoint.sip +share/sip/QtCore/qprocess.sip +share/sip/QtCore/qreadwritelock.sip +share/sip/QtCore/qrect.sip +share/sip/QtCore/qregexp.sip +share/sip/QtCore/qresource.sip +share/sip/QtCore/qsemaphore.sip +share/sip/QtCore/qsettings.sip +share/sip/QtCore/qsignalmapper.sip +share/sip/QtCore/qsize.sip +share/sip/QtCore/qsocketnotifier.sip +share/sip/QtCore/qstring.sip +share/sip/QtCore/qstringlist.sip +share/sip/QtCore/qstringmatcher.sip +share/sip/QtCore/qtemporaryfile.sip +share/sip/QtCore/qtextcodec.sip +share/sip/QtCore/qtextstream.sip +share/sip/QtCore/qthread.sip +share/sip/QtCore/qtimeline.sip +share/sip/QtCore/qtimer.sip +share/sip/QtCore/qtranslator.sip +share/sip/QtCore/qurl.sip +share/sip/QtCore/quuid.sip +share/sip/QtCore/qvariant.sip +share/sip/QtCore/qvector.sip +share/sip/QtCore/qwaitcondition.sip +share/sip/QtDesigner/ +share/sip/QtDesigner/QtDesignermod.sip +share/sip/QtDesigner/abstractactioneditor.sip +share/sip/QtDesigner/abstractformbuilder.sip +share/sip/QtDesigner/abstractformeditor.sip +share/sip/QtDesigner/abstractformwindow.sip +share/sip/QtDesigner/abstractformwindowcursor.sip +share/sip/QtDesigner/abstractformwindowmanager.sip +share/sip/QtDesigner/abstractobjectinspector.sip +share/sip/QtDesigner/abstractpropertyeditor.sip +share/sip/QtDesigner/abstractwidgetbox.sip +share/sip/QtDesigner/container.sip +share/sip/QtDesigner/customwidget.sip +share/sip/QtDesigner/default_extensionfactory.sip +share/sip/QtDesigner/extension.sip +share/sip/QtDesigner/formbuilder.sip +share/sip/QtDesigner/membersheet.sip +share/sip/QtDesigner/propertysheet.sip +share/sip/QtDesigner/qextensionmanager.sip +share/sip/QtDesigner/qpydesignercontainerextension.sip +share/sip/QtDesigner/qpydesignercustomwidgetcollectionplugin.sip +share/sip/QtDesigner/qpydesignercustomwidgetplugin.sip +share/sip/QtDesigner/qpydesignermembersheetextension.sip +share/sip/QtDesigner/qpydesignerpropertysheetextension.sip +share/sip/QtDesigner/qpydesignertaskmenuextension.sip +share/sip/QtDesigner/taskmenu.sip +share/sip/QtGui/ +share/sip/QtGui/QtGuimod.sip +share/sip/QtGui/qabstractbutton.sip +share/sip/QtGui/qabstractitemdelegate.sip +share/sip/QtGui/qabstractitemview.sip +share/sip/QtGui/qabstractprintdialog.sip +share/sip/QtGui/qabstractproxymodel.sip +share/sip/QtGui/qabstractscrollarea.sip +share/sip/QtGui/qabstractslider.sip +share/sip/QtGui/qabstractspinbox.sip +share/sip/QtGui/qabstracttextdocumentlayout.sip +share/sip/QtGui/qaction.sip +share/sip/QtGui/qactiongroup.sip +share/sip/QtGui/qapplication.sip +share/sip/QtGui/qbitmap.sip +share/sip/QtGui/qboxlayout.sip +share/sip/QtGui/qbrush.sip +share/sip/QtGui/qbuttongroup.sip +share/sip/QtGui/qcalendarwidget.sip +share/sip/QtGui/qcheckbox.sip +share/sip/QtGui/qclipboard.sip +share/sip/QtGui/qcolor.sip +share/sip/QtGui/qcolordialog.sip +share/sip/QtGui/qcolumnview.sip +share/sip/QtGui/qcombobox.sip +share/sip/QtGui/qcompleter.sip +share/sip/QtGui/qcursor.sip +share/sip/QtGui/qdatawidgetmapper.sip +share/sip/QtGui/qdatetimeedit.sip +share/sip/QtGui/qdesktopservices.sip +share/sip/QtGui/qdesktopwidget.sip +share/sip/QtGui/qdial.sip +share/sip/QtGui/qdialog.sip +share/sip/QtGui/qdialogbuttonbox.sip +share/sip/QtGui/qdirmodel.sip +share/sip/QtGui/qdockwidget.sip +share/sip/QtGui/qdrag.sip +share/sip/QtGui/qdrawutil.sip +share/sip/QtGui/qerrormessage.sip +share/sip/QtGui/qevent.sip +share/sip/QtGui/qfiledialog.sip +share/sip/QtGui/qfileiconprovider.sip +share/sip/QtGui/qfocusframe.sip +share/sip/QtGui/qfont.sip +share/sip/QtGui/qfontcombobox.sip +share/sip/QtGui/qfontdatabase.sip +share/sip/QtGui/qfontdialog.sip +share/sip/QtGui/qfontinfo.sip +share/sip/QtGui/qfontmetrics.sip +share/sip/QtGui/qframe.sip +share/sip/QtGui/qgraphicsitem.sip +share/sip/QtGui/qgraphicsitemanimation.sip +share/sip/QtGui/qgraphicsscene.sip +share/sip/QtGui/qgraphicssceneevent.sip +share/sip/QtGui/qgraphicsview.sip +share/sip/QtGui/qgridlayout.sip +share/sip/QtGui/qgroupbox.sip +share/sip/QtGui/qheaderview.sip +share/sip/QtGui/qicon.sip +share/sip/QtGui/qiconengine.sip +share/sip/QtGui/qimage.sip +share/sip/QtGui/qimageiohandler.sip +share/sip/QtGui/qimagereader.sip +share/sip/QtGui/qimagewriter.sip +share/sip/QtGui/qinputcontext.sip +share/sip/QtGui/qinputdialog.sip +share/sip/QtGui/qitemdelegate.sip +share/sip/QtGui/qitemeditorfactory.sip +share/sip/QtGui/qitemselectionmodel.sip +share/sip/QtGui/qkeysequence.sip +share/sip/QtGui/qlabel.sip +share/sip/QtGui/qlayout.sip +share/sip/QtGui/qlayoutitem.sip +share/sip/QtGui/qlcdnumber.sip +share/sip/QtGui/qlineedit.sip +share/sip/QtGui/qlistview.sip +share/sip/QtGui/qlistwidget.sip +share/sip/QtGui/qmainwindow.sip +share/sip/QtGui/qmatrix.sip +share/sip/QtGui/qmdiarea.sip +share/sip/QtGui/qmdisubwindow.sip +share/sip/QtGui/qmenu.sip +share/sip/QtGui/qmenubar.sip +share/sip/QtGui/qmessagebox.sip +share/sip/QtGui/qmime.sip +share/sip/QtGui/qmovie.sip +share/sip/QtGui/qpagesetupdialog.sip +share/sip/QtGui/qpaintdevice.sip +share/sip/QtGui/qpaintengine.sip +share/sip/QtGui/qpainter.sip +share/sip/QtGui/qpainterpath.sip +share/sip/QtGui/qpalette.sip +share/sip/QtGui/qpen.sip +share/sip/QtGui/qpicture.sip +share/sip/QtGui/qpixmap.sip +share/sip/QtGui/qpixmapcache.sip +share/sip/QtGui/qpolygon.sip +share/sip/QtGui/qprintdialog.sip +share/sip/QtGui/qprintengine.sip +share/sip/QtGui/qprinter.sip +share/sip/QtGui/qprogressbar.sip +share/sip/QtGui/qprogressdialog.sip +share/sip/QtGui/qproxymodel.sip +share/sip/QtGui/qpushbutton.sip +share/sip/QtGui/qradiobutton.sip +share/sip/QtGui/qregion.sip +share/sip/QtGui/qrgb.sip +share/sip/QtGui/qrubberband.sip +share/sip/QtGui/qscrollarea.sip +share/sip/QtGui/qscrollbar.sip +share/sip/QtGui/qsessionmanager.sip +share/sip/QtGui/qshortcut.sip +share/sip/QtGui/qsizegrip.sip +share/sip/QtGui/qsizepolicy.sip +share/sip/QtGui/qslider.sip +share/sip/QtGui/qsortfilterproxymodel.sip +share/sip/QtGui/qsound.sip +share/sip/QtGui/qspinbox.sip +share/sip/QtGui/qsplashscreen.sip +share/sip/QtGui/qsplitter.sip +share/sip/QtGui/qstackedlayout.sip +share/sip/QtGui/qstackedwidget.sip +share/sip/QtGui/qstandarditemmodel.sip +share/sip/QtGui/qstatusbar.sip +share/sip/QtGui/qstringlistmodel.sip +share/sip/QtGui/qstyle.sip +share/sip/QtGui/qstylefactory.sip +share/sip/QtGui/qstyleoption.sip +share/sip/QtGui/qstylepainter.sip +share/sip/QtGui/qsyntaxhighlighter.sip +share/sip/QtGui/qsystemtrayicon.sip +share/sip/QtGui/qtabbar.sip +share/sip/QtGui/qtableview.sip +share/sip/QtGui/qtablewidget.sip +share/sip/QtGui/qtabwidget.sip +share/sip/QtGui/qtextbrowser.sip +share/sip/QtGui/qtextcursor.sip +share/sip/QtGui/qtextdocument.sip +share/sip/QtGui/qtextdocumentfragment.sip +share/sip/QtGui/qtextedit.sip +share/sip/QtGui/qtextformat.sip +share/sip/QtGui/qtextlayout.sip +share/sip/QtGui/qtextlist.sip +share/sip/QtGui/qtextobject.sip +share/sip/QtGui/qtextoption.sip +share/sip/QtGui/qtexttable.sip +share/sip/QtGui/qtoolbar.sip +share/sip/QtGui/qtoolbox.sip +share/sip/QtGui/qtoolbutton.sip +share/sip/QtGui/qtooltip.sip +share/sip/QtGui/qtransform.sip +share/sip/QtGui/qtreeview.sip +share/sip/QtGui/qtreewidget.sip +share/sip/QtGui/qtreewidgetitemiterator.sip +share/sip/QtGui/qundogroup.sip +share/sip/QtGui/qundostack.sip +share/sip/QtGui/qundoview.sip +share/sip/QtGui/qvalidator.sip +share/sip/QtGui/qwhatsthis.sip +share/sip/QtGui/qwidget.sip +share/sip/QtGui/qwidgetaction.sip +share/sip/QtGui/qwindowdefs.sip +share/sip/QtGui/qwizard.sip +share/sip/QtGui/qworkspace.sip +share/sip/QtGui/qx11embed_x11.sip +share/sip/QtGui/qx11info_x11.sip +share/sip/QtNetwork/ +share/sip/QtNetwork/QtNetworkmod.sip +share/sip/QtNetwork/qabstractsocket.sip +share/sip/QtNetwork/qauthenticator.sip +share/sip/QtNetwork/qftp.sip +share/sip/QtNetwork/qhostaddress.sip +share/sip/QtNetwork/qhostinfo.sip +share/sip/QtNetwork/qhttp.sip +share/sip/QtNetwork/qnetworkinterface.sip +share/sip/QtNetwork/qnetworkproxy.sip +share/sip/QtNetwork/qssl.sip +share/sip/QtNetwork/qsslcertificate.sip +share/sip/QtNetwork/qsslcipher.sip +share/sip/QtNetwork/qsslerror.sip +share/sip/QtNetwork/qsslkey.sip +share/sip/QtNetwork/qsslsocket.sip +share/sip/QtNetwork/qtcpserver.sip +share/sip/QtNetwork/qtcpsocket.sip +share/sip/QtNetwork/qudpsocket.sip +share/sip/QtNetwork/qurlinfo.sip +share/sip/QtOpenGL/ +share/sip/QtOpenGL/QtOpenGLmod.sip +share/sip/QtOpenGL/qgl.sip +share/sip/QtOpenGL/qglcolormap.sip +share/sip/QtOpenGL/qglframebufferobject.sip +share/sip/QtOpenGL/qglpixelbuffer.sip +share/sip/QtScript/ +share/sip/QtScript/QtScriptmod.sip +share/sip/QtScript/qscriptcontext.sip +share/sip/QtScript/qscriptengine.sip +share/sip/QtScript/qscriptvalue.sip +share/sip/QtScript/qscriptvalueiterator.sip +share/sip/QtSql/ +share/sip/QtSql/QtSqlmod.sip +share/sip/QtSql/qsql.sip +share/sip/QtSql/qsqldatabase.sip +share/sip/QtSql/qsqldriver.sip +share/sip/QtSql/qsqlerror.sip +share/sip/QtSql/qsqlfield.sip +share/sip/QtSql/qsqlindex.sip +share/sip/QtSql/qsqlquery.sip +share/sip/QtSql/qsqlquerymodel.sip +share/sip/QtSql/qsqlrecord.sip +share/sip/QtSql/qsqlrelationaldelegate.sip +share/sip/QtSql/qsqlrelationaltablemodel.sip +share/sip/QtSql/qsqlresult.sip +share/sip/QtSql/qsqltablemodel.sip +share/sip/QtSvg/ +share/sip/QtSvg/QtSvgmod.sip +share/sip/QtSvg/qgraphicssvgitem.sip +share/sip/QtSvg/qsvggenerator.sip +share/sip/QtSvg/qsvgrenderer.sip +share/sip/QtSvg/qsvgwidget.sip +share/sip/QtTest/ +share/sip/QtTest/QtTestmod.sip +share/sip/QtTest/qtestcase.sip +share/sip/QtTest/qtestkeyboard.sip +share/sip/QtTest/qtestmouse.sip +share/sip/QtTest/qtestsystem.sip +share/sip/QtXml/ +share/sip/QtXml/QtXmlmod.sip +share/sip/QtXml/qdom.sip +share/sip/QtXml/qxml.sip +share/sip/QtXml/qxmlstream.sip