diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-08-04 23:30:38 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-08-04 23:30:38 +0000 |
commit | d56984b0567867dd57ecb27fe0c508025c2426c5 (patch) | |
tree | eb02dac4e0d7e5129ffac4c76b935a76a7e66676 | |
parent | 98813eadd27b8cd8500044af2a49b6d861809815 (diff) | |
download | ports-d56984b0567867dd57ecb27fe0c508025c2426c5.tar.gz ports-d56984b0567867dd57ecb27fe0c508025c2426c5.zip |
Notes
151 files changed, 10862 insertions, 8711 deletions
diff --git a/Mk/bsd.qt.mk b/Mk/bsd.qt.mk index ad5343b4bd31..f4a4b843e825 100644 --- a/Mk/bsd.qt.mk +++ b/Mk/bsd.qt.mk @@ -1,10 +1,16 @@ +#-*- mode: Makefile; tab-width: 4; -*- +# ex:ts=4 + +# QT_NONSTANDARD - Suppress modification of configure and make environment. +# QT_DIST - Package being built is part of the Qt distribution. + .if !defined(_POSTMKINCLUDED) && !defined(Qt_Pre_Include) Qt_Include_MAINTAINER= kde@freebsd.org Qt_Pre_Include= bsd.qt.mk .if !defined(QT_NONSTANDARD) -CONFIGURE_ARGS+=--with-qt-includes=${QT_PREFIX}/include \ - --with-qt-libraries=${QT_PREFIX}/lib \ +CONFIGURE_ARGS+=--with-qt-includes=${QT_INCDIR} \ + --with-qt-libraries=${QT_LIBDIR} \ --with-extra-libs=${LOCALBASE}/lib \ --with-extra-includes=${LOCALBASE}/include CONFIGURE_ENV+= MOC="${MOC}" UIC="${UIC}" CPPFLAGS="${CPPFLAGS} ${QTCPPFLAGS}" LIBS="${QTCFGLIBS}" \ @@ -14,39 +20,51 @@ MAKE_ENV+= QMAKESPEC="${QMAKESPEC}" .if defined(QT_DIST) #CONFLICTS+= Currently there are no conflicts \o/ -CONFIGURE_ARGS+=-fast -no-exceptions ${CUPS} \ - -platform ${LOCALBASE}/share/qt4/mkspecs/freebsd-g++ \ - -qt-gif -release -system-libjpeg -system-libpng \ + +CONFIGURE_ARGS+=-fast ${CUPS} -platform ${QMAKESPEC} \ + -L${PREFIX}/${QT_LIBDIR_REL} \ + -qt-gif -system-libjpeg -system-libpng \ -system-libmng -system-libtiff -system-zlib \ -confirm-license \ - -prefix ${PREFIX} \ - -docdir ${PREFIX}/share/doc/qt4 \ - -headerdir ${PREFIX}/include \ - -plugindir ${PREFIX}/lib/qt4/plugins \ - -datadir ${PREFIX}/share/qt4 \ - -libdir ${PREFIX}/lib \ - -translationdir ${PREFIX}/share/qt4/translations \ - -sysconfdir ${PREFIX}/local/etc/xdg \ - -examplesdir ${PREFIX}/share/qt4/examples \ - -demosdir ${PREFIX}/share/qt4/demos \ - -bindir ${PREFIX}/bin + -prefix ${PREFIX} \ + -bindir ${PREFIX}/bin \ + -libdir ${PREFIX}/${QT_LIBDIR_REL} \ + -docdir ${PREFIX}/share/doc/qt4 \ + -headerdir ${PREFIX}/${QT_INCDIR_REL} \ + -plugindir ${PREFIX}/lib/qt4/plugins \ + -datadir ${PREFIX}/share/qt4 \ + -translationdir ${PREFIX}/share/qt4/translations \ + -sysconfdir ${PREFIX}/etc/xdg \ + -examplesdir ${PREFIX}/share/examples/qt4/examples \ + -demosdir ${PREFIX}/share/examples/qt4/demos + .if defined(PACKAGE_BUILDING) -CONFIGURE_ARGS+=-no-3dnow -no-sse -no-sse2 +CONFIGURE_ARGS+=-no-mmx -no-3dnow -no-sse -no-sse2 .endif #defined(PACKAGE_BUILDING) -.if !defined(WANT_QT_DEBUG) -CONFIGURE_ARGS+=-no-separate-debug-info -PLIST_SUB+= DEBUG="@comment " -.else +.if defined(PORTNAME) && ${PORTNAME} != "xmlpatterns" +CONFIGURE_ARGS+=-no-exceptions +.endif + +.if defined(WANT_QT_DEBUG) +CONFIGURE_ARGS+=-debug PLIST_SUB+= DEBUG="" +.else +CONFIGURE_ARGS+=-release -no-separate-debug-info +PLIST_SUB+= DEBUG="@comment " .endif .if defined(WANT_QT_VERBOSE_CONFIGURE) -CONFIGURE_ARGS+=-v +CONFIGURE_ARGS+=-verbose .endif .endif #defined(QT_DIST) +QT_INCDIR_REL= include/qt4 +QT_LIBDIR_REL= lib/qt4 + QT_PREFIX?= ${LOCALBASE} +QT_INCDIR?= ${QT_PREFIX}/${QT_INCDIR_REL} +QT_LIBDIR?= ${QT_PREFIX}/${QT_LIBDIR_REL} MOC?= ${QT_PREFIX}/bin/moc-qt4 UIC?= ${QT_PREFIX}/bin/uic-qt4 QMAKE?= ${QT_PREFIX}/bin/qmake-qt4 @@ -66,19 +84,26 @@ QTCGFLIBS?= .endif # !defined(_POSTMKINCLUDED) && !defined(Qt_Pre_Include) -QT4_VERSION?= 4.3.4 +# +# QT4 version +# Don't forget to update ${PORTSDIR}/devel/qt4/files/configure ! +# +QT4_VERSION?= 4.4.1 -_QT_COMPONENTS_ALL= accessible assistant assistantclient codecs-cn \ - codecs-jp codecs-kr codecs-tw corelib dbus designer \ - doc gui iconengines imageformats inputmethods linguist \ - makeqpf moc network opengl pixeltool porting qdbusviewer \ - qmake qt3support qtconfig qtestlib qvfb rcc script sql \ - svg uic uic3 xml +_QT_COMPONENTS_ALL= accessible assistant assistant-adp assistantclient \ + clucene codecs-cn codecs-jp codecs-kr codecs-tw corelib \ + dbus designer doc help help-tools gui iconengines imageformats \ + inputmethods linguist makeqpf moc network opengl \ + pixeltool porting phonon phonon-gst qdbusviewer \ + qmake qt3support qtconfig qtestlib qvfb rcc script \ + sql svg uic uic3 webkit xml xmlpatterns xmlpatterns-tool -accessible_DEPENDS= accessibility/qt4-acessible +accessible_DEPENDS= accessibility/qt4-accessible assistant_DEPENDS= devel/qt4-assistant +assistant-adp_DEPENDS= devel/qt4-assistant-adp assistantclient_DEPENDS=devel/qt4-libqtassistantclient assistantclient_NAME= libQtAssistantClient +clucene_DEPENDS= textproc/qt4-clucene codecs-cn_DEPENDS= chinese/qt4-codecs-cn codecs-jp_DEPENDS= japanese/qt4-codecs-jp codecs-kr_DEPENDS= korean/qt4-codecs-kr @@ -88,6 +113,8 @@ dbus_DEPENDS= devel/dbus-qt4 designer_DEPENDS= devel/qt4-designer doc_DEPENDS= misc/qt4-doc gui_DEPENDS= x11-toolkits/qt4-gui +help_DEPENDS= devel/qt4-help +help-tools_DEPENDS= devel/qt4-help-tools iconengines_DEPENDS= graphics/qt4-iconengines imageformats_DEPENDS= graphics/qt4-imageformats inputmethods_DEPENDS= x11/qt4-inputmethods @@ -97,11 +124,13 @@ moc_DEPENDS= devel/qt4-moc network_DEPENDS= net/qt4-network opengl_DEPENDS= x11/qt4-opengl pixeltool_DEPENDS= graphics/qt4-pixeltool +phonon_DEPENDS= multimedia/qt4-phonon +phonon-gst_DEPENDS= multimedia/qt4-phonon-gst porting_DEPENDS= devel/qt4-porting qdbusviewer_DEPENDS= devel/qt4-qdbusviewer qmake_DEPENDS= devel/qmake4 qt3support_DEPENDS= devel/qt4-qt3support -qtconfig_DEPENDS= devel/qtconfig +qtconfig_DEPENDS= misc/qt4-qtconfig qtestlib_DEPENDS= devel/qt4-qtestlib qvfb_DEPENDS= devel/qt4-qvfb rcc_DEPENDS= devel/qt4-rcc @@ -110,12 +139,17 @@ sql_DEPENDS= databases/qt4-sql svg_DEPENDS= graphics/qt4-svg uic_DEPENDS= devel/qt4-uic uic3_DEPENDS= devel/qt4-uic3 +webkit_DEPENDS= www/qt4-webkit xml_DEPENDS= textproc/qt4-xml +xmlpatterns_DEPENDS= textproc/qt4-xmlpatterns +xmlpatterns-tool_DEPENDS= textproc/qt4-xmlpatterns-tool accessible_build_DEPENDS= ${accessible_DEPENDS} assistant_build_DEPENDS= ${assistant_DEPENDS} +assistant-adp_build_DEPENDS= ${assistant-adp_DEPENDS} assistantclient_build_DEPENDS= ${assistantclient_DEPENDS} assistantclient_build_NAME= ${assistantclient_NAME} +clucene_build_DEPENDS= ${clucene_DEPENDS} codecs-cn_build_DEPENDS= ${codecs-cn_DEPENDS} codecs-jp_build_DEPENDS= ${codecs-jp_DEPENDS} codecs-kr_build_DEPENDS= ${codecs-kr_DEPENDS} @@ -125,6 +159,8 @@ dbus_build_DEPENDS= ${dbus_DEPENDS} designer_build_DEPENDS= ${designer_DEPENDS} doc_build_DEPENDS= ${doc_DEPENDS} gui_build_DEPENDS= ${gui_DEPENDS} +help_build_DEPENDS= ${help_DEPENDS} +help-tools_build_DEPENDS= ${help-tools_DEPENDS} iconengines_build_DEPENDS= ${iconengines_DEPENDS} imageformats_build_DEPENDS= ${imageformats_DEPENDS} inputmethods_build_DEPENDS= ${inputmethods_DEPENDS} @@ -134,6 +170,8 @@ moc_build_DEPENDS= ${moc_DEPENDS} network_build_DEPENDS= ${network_DEPENDS} opengl_build_DEPENDS= ${opengl_DEPENDS} pixeltool_build_DEPENDS= ${pixeltool_DEPENDS} +phonon_build_DEPENDS= ${phonon_DEPENDS} +phonon-gst_build_DEPENDS= ${phonon-gst_DEPENDS} porting_build_DEPENDS= ${porting_DEPENDS} qdbusviewer_build_DEPENDS= ${qdbusviewer_DEPENDS} qmake_build_DEPENDS= ${qmake_DEPENDS} @@ -147,12 +185,17 @@ sql_build_DEPENDS= ${sql_DEPENDS} svg_build_DEPENDS= ${svg_DEPENDS} uic_build_DEPENDS= ${uic_DEPENDS} uic3_build_DEPENDS= ${uic3_DEPENDS} +webkit_build_DEPENDS= ${webkit_DEPENDS} xml_build_DEPENDS= ${xml_DEPENDS} +xmlpatterns_build_DEPENDS= ${xmlpatterns_DEPENDS} +xmlpatterns-tool_build_DEPENDS= ${xmlpatterns-tool_DEPENDS} accessible_run_DEPENDS= ${accessible_DEPENDS} assistant_run_DEPENDS= ${assistant_DEPENDS} +assistant-adp_run_DEPENDS= ${assistant-adp_DEPENDS} assistantclient_run_DEPENDS= ${assistantclient_DEPENDS} assistantclient_run_NAME= ${assistantclient_NAME} +clucene_run_DEPENDS= ${clucene_DEPENDS} codecs-cn_run_DEPENDS= ${codecs-cn_DEPENDS} codecs-jp_run_DEPENDS= ${codecs-jp_DEPENDS} codecs-kr_run_DEPENDS= ${codecs-kr_DEPENDS} @@ -162,6 +205,8 @@ dbus_run_DEPENDS= ${dbus_DEPENDS} designer_run_DEPENDS= ${designer_DEPENDS} doc_run_DEPENDS= ${doc_DEPENDS} gui_run_DEPENDS= ${gui_DEPENDS} +help_run_DEPENDS= ${help_DEPENDS} +help-tools_run_DEPENDS= ${help-tools_DEPENDS} iconengines_run_DEPENDS= ${iconengines_DEPENDS} imageformats_run_DEPENDS= ${imageformats_DEPENDS} inputmethods_run_DEPENDS= ${inputmethods_DEPENDS} @@ -171,6 +216,8 @@ moc_run_DEPENDS= ${moc_DEPENDS} network_run_DEPENDS= ${network_DEPENDS} opengl_run_DEPENDS= ${opengl_DEPENDS} pixeltool_run_DEPENDS= ${pixeltool_DEPENDS} +phonon_run_DEPENDS= ${phonon_DEPENDS} +phonon-gst_run_DEPENDS= ${phonon-gst_DEPENDS} porting_run_DEPENDS= ${porting_DEPENDS} qdbusviewer_run_DEPENDS= ${qdbusviewer_DEPENDS} qmake_run_DEPENDS= ${qmake_DEPENDS} @@ -184,7 +231,10 @@ sql_run_DEPENDS= ${sql_DEPENDS} svg_run_DEPENDS= ${svg_DEPENDS} uic_run_DEPENDS= ${uic_DEPENDS} uic3_run_DEPENDS= ${uic3_DEPENDS} +webkit_run_DEPENDS= ${webkit_DEPENDS} xml_run_DEPENDS= ${xml_DEPENDS} +xmlpatterns_run_DEPENDS= ${xmlpatterns_DEPENDS} +xmlpatterns-tool_run_DEPENDS= ${xmlpatterns-tool_DEPENDS} .if defined(_POSTMKINCLUDED) && !defined(Qt_Post_Include) Qt_Post_Include= bsd.qt.mk diff --git a/accessibility/qt4-accessible/Makefile b/accessibility/qt4-accessible/Makefile index 5cac243f485d..4614aa70a0f7 100644 --- a/accessibility/qt4-accessible/Makefile +++ b/accessibility/qt4-accessible/Makefile @@ -8,7 +8,7 @@ PORTNAME= accessible PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= accessibility MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -22,23 +22,24 @@ USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build qt3support corelib gui network sql xml QT_NONSTANDARD= yes QT_DIST= yes - + HAS_CONFIGURE= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/opengl src/phonon \ + src/script src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../.. diff --git a/accessibility/qt4-accessible/distinfo b/accessibility/qt4-accessible/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/accessibility/qt4-accessible/distinfo +++ b/accessibility/qt4-accessible/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/chinese/qt4-codecs-cn/Makefile b/chinese/qt4-codecs-cn/Makefile index 93e97947aee3..e447323ef1a2 100644 --- a/chinese/qt4-codecs-cn/Makefile +++ b/chinese/qt4-codecs-cn/Makefile @@ -29,17 +29,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME}/cn CONFIGURE_WRKSRC=${WRKSRC}/../../../.. @@ -47,7 +47,6 @@ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} ${MKDIR} ${WRKSRC}/../../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake - ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc post-configure: ${REINPLACE_CMD} -e 's|(test -z.*||g' ${WRKSRC}/Makefile diff --git a/chinese/qt4-codecs-cn/distinfo b/chinese/qt4-codecs-cn/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/chinese/qt4-codecs-cn/distinfo +++ b/chinese/qt4-codecs-cn/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/chinese/qt4-codecs-cn/pkg-plist b/chinese/qt4-codecs-cn/pkg-plist index b91938d0c953..45e637f5e3d8 100644 --- a/chinese/qt4-codecs-cn/pkg-plist +++ b/chinese/qt4-codecs-cn/pkg-plist @@ -1,3 +1,3 @@ lib/qt4/plugins/codecs/libqcncodecs.so %%DEBUG%%lib/qt4/plugins/codecs/libqcncodecs.so.debug -@dirrm lib/qt4/plugins/codecs +@dirrmtry lib/qt4/plugins/codecs diff --git a/chinese/qt4-codecs-tw/Makefile b/chinese/qt4-codecs-tw/Makefile index 3c3dc0dfb7ec..accefb9a47e3 100644 --- a/chinese/qt4-codecs-tw/Makefile +++ b/chinese/qt4-codecs-tw/Makefile @@ -29,17 +29,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME}/tw CONFIGURE_WRKSRC=${WRKSRC}/../../../.. @@ -47,6 +47,5 @@ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} ${MKDIR} ${WRKSRC}/../../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake - ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc .include <bsd.port.mk> diff --git a/chinese/qt4-codecs-tw/distinfo b/chinese/qt4-codecs-tw/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/chinese/qt4-codecs-tw/distinfo +++ b/chinese/qt4-codecs-tw/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/chinese/qt4-codecs-tw/pkg-plist b/chinese/qt4-codecs-tw/pkg-plist index b76841aac540..629f720d547f 100644 --- a/chinese/qt4-codecs-tw/pkg-plist +++ b/chinese/qt4-codecs-tw/pkg-plist @@ -1,3 +1,3 @@ lib/qt4/plugins/codecs/libqtwcodecs.so %%DEBUG%%lib/qt4/plugins/codecs/libqtwcodecs.so.debug -@dirrm lib/qt4/plugins/codecs +@dirrmtry lib/qt4/plugins/codecs diff --git a/databases/qt4-ibase-plugin/Makefile b/databases/qt4-ibase-plugin/Makefile index 553c36b3b077..d19f3495a5d2 100644 --- a/databases/qt4-ibase-plugin/Makefile +++ b/databases/qt4-ibase-plugin/Makefile @@ -8,7 +8,6 @@ PORTNAME= qt4-${DB}-plugin PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_QT} DISTNAME= qt-x11-opensource-src-${PORTVERSION} @@ -24,7 +23,6 @@ USE_QT_VER= 4 QT_COMPONENTS= moc_build sql QT_NONSTANDARD= yes -#USE_BZIP2= yes DRIVER= src/sql/drivers/${DB} PLUGIN= src/plugins/sqldrivers/${DB} EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \ diff --git a/databases/qt4-ibase-plugin/distinfo b/databases/qt4-ibase-plugin/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/databases/qt4-ibase-plugin/distinfo +++ b/databases/qt4-ibase-plugin/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/databases/qt4-ibase-plugin/files/Makefile.bsd b/databases/qt4-ibase-plugin/files/Makefile.bsd index bf13e47c6331..386176f80cd8 100644 --- a/databases/qt4-ibase-plugin/files/Makefile.bsd +++ b/databases/qt4-ibase-plugin/files/Makefile.bsd @@ -2,13 +2,14 @@ SHLIB_NAME= libqsql${DB}.so VPATH= ${PLUGIN}:${DRIVER} CXXFLAGS+= -I${DRIVER} -Iinclude \ - -I${LOCALBASE}/include/Qt \ + -I${PREFIX}/include/qt4 \ + -I${PREFIX}/include/qt4/Qt \ -I${LOCALBASE}/include \ ${PTHREAD_CFLAGS} -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII \ -DQT_PLUGIN -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE \ -D_LARGEFILE_SOURCE -DQT_SHARED MOC?= ${LOCALBASE}/bin/moc-qt4 -LDADD= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lgds +LDADD= -L${PREFIX}/lib/qt4 -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lgds SRCS= main.cpp qsql_${DB}.cpp moc_qsql_${DB}.cpp LIBDIR= ${PREFIX}/lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-ibase-plugin/pkg-plist b/databases/qt4-ibase-plugin/pkg-plist index 50edd8ee885a..0a1084fe0ef5 100644 --- a/databases/qt4-ibase-plugin/pkg-plist +++ b/databases/qt4-ibase-plugin/pkg-plist @@ -1,2 +1,2 @@ lib/qt4/plugins/sqldrivers/libqsql%%DB%%.so -@dirrm lib/qt4/plugins/sqldrivers +@dirrmtry lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-mysql-plugin/Makefile b/databases/qt4-mysql-plugin/Makefile index ed502476caf8..786e5919713b 100644 --- a/databases/qt4-mysql-plugin/Makefile +++ b/databases/qt4-mysql-plugin/Makefile @@ -8,7 +8,6 @@ PORTNAME= qt4-${DB}-plugin PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_QT} DISTNAME= qt-x11-opensource-src-${PORTVERSION} @@ -24,7 +23,6 @@ QT_COMPONENTS= moc_build sql QT_NONSTANDARD= yes USE_MYSQL= yes -#USE_BZIP2= yes DRIVER= src/sql/drivers/${DB} PLUGIN= src/plugins/sqldrivers/${DB} EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \ diff --git a/databases/qt4-mysql-plugin/distinfo b/databases/qt4-mysql-plugin/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/databases/qt4-mysql-plugin/distinfo +++ b/databases/qt4-mysql-plugin/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/databases/qt4-mysql-plugin/files/Makefile.bsd b/databases/qt4-mysql-plugin/files/Makefile.bsd index 8ffbde77575e..eb565d0992f9 100644 --- a/databases/qt4-mysql-plugin/files/Makefile.bsd +++ b/databases/qt4-mysql-plugin/files/Makefile.bsd @@ -2,12 +2,13 @@ SHLIB_NAME= libqsql${DB}.so VPATH= ${PLUGIN}:${DRIVER} CXXFLAGS+= -I${DRIVER} \ - -I${LOCALBASE}/include/Qt \ + -I${PREFIX}/include/qt4 \ + -I${PREFIX}/include/qt4/Qt \ -I${LOCALBASE}/include/mysql \ -I${LOCALBASE}/include \ ${PTHREAD_CFLAGS} -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII -DQT_PLUGIN \ -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -DQT_SHARED -LDADD= -L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql ${PTHREAD_LIBS} -lQtSql -lmysqlclient_r +LDADD= -L${PREFIX}/lib/qt4 -L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql ${PTHREAD_LIBS} -lQtSql -lmysqlclient_r MOC?= ${LOCALBASE}/bin/moc-qt4 SRCS= main.cpp qsql_${DB}.cpp moc_qsql_${DB}.cpp diff --git a/databases/qt4-mysql-plugin/pkg-plist b/databases/qt4-mysql-plugin/pkg-plist index 50edd8ee885a..0a1084fe0ef5 100644 --- a/databases/qt4-mysql-plugin/pkg-plist +++ b/databases/qt4-mysql-plugin/pkg-plist @@ -1,2 +1,2 @@ lib/qt4/plugins/sqldrivers/libqsql%%DB%%.so -@dirrm lib/qt4/plugins/sqldrivers +@dirrmtry lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-odbc-plugin/Makefile b/databases/qt4-odbc-plugin/Makefile index a3c32396c21e..51e019802ef4 100644 --- a/databases/qt4-odbc-plugin/Makefile +++ b/databases/qt4-odbc-plugin/Makefile @@ -8,7 +8,6 @@ PORTNAME= qt4-${DB}-plugin PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_QT} DISTNAME= qt-x11-opensource-src-${PORTVERSION} @@ -25,7 +24,6 @@ USE_QT_VER= 4 QT_COMPONENTS= moc_build sql QT_NONSTANDARD= yes -#USE_BZIP2= yes DRIVER= src/sql/drivers/${DB} PLUGIN= src/plugins/sqldrivers/${DB} EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \ diff --git a/databases/qt4-odbc-plugin/distinfo b/databases/qt4-odbc-plugin/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/databases/qt4-odbc-plugin/distinfo +++ b/databases/qt4-odbc-plugin/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/databases/qt4-odbc-plugin/files/Makefile.bsd b/databases/qt4-odbc-plugin/files/Makefile.bsd index 8ce23e09de2b..40f018c8a8c4 100644 --- a/databases/qt4-odbc-plugin/files/Makefile.bsd +++ b/databases/qt4-odbc-plugin/files/Makefile.bsd @@ -2,12 +2,13 @@ SHLIB_NAME= libqsql${DB}.so VPATH= ${PLUGIN}:${DRIVER} CXXFLAGS+= -I${DRIVER} \ - -I${LOCALBASE}/include/Qt \ + -I${PREFIX}/include/qt4 \ + -I${PREFIX}/include/qt4/Qt \ -I${LOCALBASE}/include \ ${PTHREAD_CFLAGS} -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII \ -DQT_PLUGIN -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE \ -D_LARGEFILE_SOURCE -DQT_SHARED -LDADD= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lodbc +LDADD= -L${PREFIX}/lib/qt4 -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lodbc MOC?= ${LOCALBASE}/bin/moc-qt4 SRCS= main.cpp qsql_${DB}.cpp moc_qsql_${DB}.cpp diff --git a/databases/qt4-odbc-plugin/pkg-plist b/databases/qt4-odbc-plugin/pkg-plist index 50edd8ee885a..0a1084fe0ef5 100644 --- a/databases/qt4-odbc-plugin/pkg-plist +++ b/databases/qt4-odbc-plugin/pkg-plist @@ -1,2 +1,2 @@ lib/qt4/plugins/sqldrivers/libqsql%%DB%%.so -@dirrm lib/qt4/plugins/sqldrivers +@dirrmtry lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-pgsql-plugin/Makefile b/databases/qt4-pgsql-plugin/Makefile index cdc96f619b52..b2acc142aa20 100644 --- a/databases/qt4-pgsql-plugin/Makefile +++ b/databases/qt4-pgsql-plugin/Makefile @@ -8,7 +8,6 @@ PORTNAME= qt4-${DB}-plugin PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_QT} DISTNAME= qt-x11-opensource-src-${PORTVERSION} @@ -24,7 +23,6 @@ QT_COMPONENTS= moc_build sql QT_NONSTANDARD= yes USE_PGSQL= yes -#USE_BZIP2= yes DRIVER= src/sql/drivers/${DB} PLUGIN= src/plugins/sqldrivers/${DB} EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \ diff --git a/databases/qt4-pgsql-plugin/distinfo b/databases/qt4-pgsql-plugin/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/databases/qt4-pgsql-plugin/distinfo +++ b/databases/qt4-pgsql-plugin/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/databases/qt4-pgsql-plugin/files/Makefile.bsd b/databases/qt4-pgsql-plugin/files/Makefile.bsd index daf1e9220551..545a2eee5ad1 100644 --- a/databases/qt4-pgsql-plugin/files/Makefile.bsd +++ b/databases/qt4-pgsql-plugin/files/Makefile.bsd @@ -2,14 +2,15 @@ SHLIB_NAME= libqsql${DB}.so VPATH= ${PLUGIN}:${DRIVER} CXXFLAGS+= -I${DRIVER} \ - -I${LOCALBASE}/include/Qt \ + -I${PREFIX}/include/qt4 \ + -I${PREFIX}/include/qt4/Qt \ -I${LOCALBASE}/include/postgresql/server \ - -I${LOCALBASE}/include \ + -I${LOCALBASE}/include -I${X11BASE}/include \ ${PTHREAD_CFLAGS} -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII \ -DQT_PLUGIN -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE \ -D_LARGEFILE_SOURCE -DQT_SHARED MOC?= ${LOCALBASE}/bin/moc-qt4 -LDADD= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lpq +LDADD= -L${PREFIX}/lib/qt4 -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lpq SRCS= main.cpp qsql_${DB}.cpp moc_qsql_${DB}.cpp LIBDIR= ${PREFIX}/lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-pgsql-plugin/pkg-plist b/databases/qt4-pgsql-plugin/pkg-plist index 50edd8ee885a..0a1084fe0ef5 100644 --- a/databases/qt4-pgsql-plugin/pkg-plist +++ b/databases/qt4-pgsql-plugin/pkg-plist @@ -1,2 +1,2 @@ lib/qt4/plugins/sqldrivers/libqsql%%DB%%.so -@dirrm lib/qt4/plugins/sqldrivers +@dirrmtry lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-sql/Makefile b/databases/qt4-sql/Makefile index af800eee17bf..fe9c32bb47aa 100644 --- a/databases/qt4-sql/Makefile +++ b/databases/qt4-sql/Makefile @@ -8,7 +8,7 @@ PORTNAME= sql PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= databases MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -24,43 +24,37 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/xml' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtSql.pc .include <bsd.port.mk> diff --git a/databases/qt4-sql/distinfo b/databases/qt4-sql/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/databases/qt4-sql/distinfo +++ b/databases/qt4-sql/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/databases/qt4-sql/pkg-plist b/databases/qt4-sql/pkg-plist index 54c496b96932..39fce8fa8c93 100644 --- a/databases/qt4-sql/pkg-plist +++ b/databases/qt4-sql/pkg-plist @@ -1,80 +1,82 @@ -include/Qt/QtSql -include/Qt/qsql.h -include/Qt/qsql_ibase.h -include/Qt/qsql_mysql.h -include/Qt/qsql_odbc.h -include/Qt/qsql_psql.h -include/Qt/qsql_sqlite.h -include/Qt/qsql_sqlite2.h -include/Qt/qsqldatabase.h -include/Qt/qsqldriver.h -include/Qt/qsqldriverplugin.h -include/Qt/qsqlerror.h -include/Qt/qsqlfield.h -include/Qt/qsqlindex.h -include/Qt/qsqlquery.h -include/Qt/qsqlquerymodel.h -include/Qt/qsqlrecord.h -include/Qt/qsqlrelationaldelegate.h -include/Qt/qsqlrelationaltablemodel.h -include/Qt/qsqlresult.h -include/Qt/qsqltablemodel.h -include/QtSql/QIBaseDriver -include/QtSql/QIBaseResult -include/QtSql/QMYSQLDriver -include/QtSql/QMYSQLResult -include/QtSql/QODBCDriver -include/QtSql/QODBCResult -include/QtSql/QPSQLDriver -include/QtSql/QPSQLResult -include/QtSql/QSQLite2Driver -include/QtSql/QSQLite2Result -include/QtSql/QSQLiteDriver -include/QtSql/QSQLiteResult -include/QtSql/QSqlDatabase -include/QtSql/QSqlDriver -include/QtSql/QSqlDriverCreator -include/QtSql/QSqlDriverCreatorBase -include/QtSql/QSqlDriverFactoryInterface -include/QtSql/QSqlDriverPlugin -include/QtSql/QSqlError -include/QtSql/QSqlField -include/QtSql/QSqlIndex -include/QtSql/QSqlQuery -include/QtSql/QSqlQueryModel -include/QtSql/QSqlRecord -include/QtSql/QSqlRelation -include/QtSql/QSqlRelationalDelegate -include/QtSql/QSqlRelationalTableModel -include/QtSql/QSqlResult -include/QtSql/QSqlTableModel -include/QtSql/QtSql -include/QtSql/qsql.h -include/QtSql/qsql_ibase.h -include/QtSql/qsql_mysql.h -include/QtSql/qsql_odbc.h -include/QtSql/qsql_psql.h -include/QtSql/qsql_sqlite.h -include/QtSql/qsql_sqlite2.h -include/QtSql/qsqldatabase.h -include/QtSql/qsqldriver.h -include/QtSql/qsqldriverplugin.h -include/QtSql/qsqlerror.h -include/QtSql/qsqlfield.h -include/QtSql/qsqlindex.h -include/QtSql/qsqlquery.h -include/QtSql/qsqlquerymodel.h -include/QtSql/qsqlrecord.h -include/QtSql/qsqlrelationaldelegate.h -include/QtSql/qsqlrelationaltablemodel.h -include/QtSql/qsqlresult.h -include/QtSql/qsqltablemodel.h -lib/libQtSql.la -lib/libQtSql.prl -lib/libQtSql.so -lib/libQtSql.so.4 -lib/libQtSql.so.4.3 -lib/libQtSql.so.4.3.4 -%%DEBUG%%lib/libQtSql.so.4.3.4.debug +include/qt4/Qt/QtSql +include/qt4/Qt/qsql.h +include/qt4/Qt/qsql_ibase.h +include/qt4/Qt/qsql_mysql.h +include/qt4/Qt/qsql_odbc.h +include/qt4/Qt/qsql_psql.h +include/qt4/Qt/qsql_sqlite.h +include/qt4/Qt/qsql_sqlite2.h +include/qt4/Qt/qsqldatabase.h +include/qt4/Qt/qsqldriver.h +include/qt4/Qt/qsqldriverplugin.h +include/qt4/Qt/qsqlerror.h +include/qt4/Qt/qsqlfield.h +include/qt4/Qt/qsqlindex.h +include/qt4/Qt/qsqlquery.h +include/qt4/Qt/qsqlquerymodel.h +include/qt4/Qt/qsqlrecord.h +include/qt4/Qt/qsqlrelationaldelegate.h +include/qt4/Qt/qsqlrelationaltablemodel.h +include/qt4/Qt/qsqlresult.h +include/qt4/Qt/qsqltablemodel.h +include/qt4/QtSql/QIBaseDriver +include/qt4/QtSql/QIBaseResult +include/qt4/QtSql/QMYSQLDriver +include/qt4/QtSql/QMYSQLResult +include/qt4/QtSql/QODBCDriver +include/qt4/QtSql/QODBCResult +include/qt4/QtSql/QPSQLDriver +include/qt4/QtSql/QPSQLResult +include/qt4/QtSql/QSQLite2Driver +include/qt4/QtSql/QSQLite2Result +include/qt4/QtSql/QSQLiteDriver +include/qt4/QtSql/QSQLiteResult +include/qt4/QtSql/QSqlDatabase +include/qt4/QtSql/QSqlDriver +include/qt4/QtSql/QSqlDriverCreator +include/qt4/QtSql/QSqlDriverCreatorBase +include/qt4/QtSql/QSqlDriverFactoryInterface +include/qt4/QtSql/QSqlDriverPlugin +include/qt4/QtSql/QSqlError +include/qt4/QtSql/QSqlField +include/qt4/QtSql/QSqlIndex +include/qt4/QtSql/QSqlQuery +include/qt4/QtSql/QSqlQueryModel +include/qt4/QtSql/QSqlRecord +include/qt4/QtSql/QSqlRelation +include/qt4/QtSql/QSqlRelationalDelegate +include/qt4/QtSql/QSqlRelationalTableModel +include/qt4/QtSql/QSqlResult +include/qt4/QtSql/QSqlTableModel +include/qt4/QtSql/QtSql +include/qt4/QtSql/qsql.h +include/qt4/QtSql/qsql_ibase.h +include/qt4/QtSql/qsql_mysql.h +include/qt4/QtSql/qsql_odbc.h +include/qt4/QtSql/qsql_psql.h +include/qt4/QtSql/qsql_sqlite.h +include/qt4/QtSql/qsql_sqlite2.h +include/qt4/QtSql/qsqldatabase.h +include/qt4/QtSql/qsqldriver.h +include/qt4/QtSql/qsqldriverplugin.h +include/qt4/QtSql/qsqlerror.h +include/qt4/QtSql/qsqlfield.h +include/qt4/QtSql/qsqlindex.h +include/qt4/QtSql/qsqlquery.h +include/qt4/QtSql/qsqlquerymodel.h +include/qt4/QtSql/qsqlrecord.h +include/qt4/QtSql/qsqlrelationaldelegate.h +include/qt4/QtSql/qsqlrelationaltablemodel.h +include/qt4/QtSql/qsqlresult.h +include/qt4/QtSql/qsqltablemodel.h +lib/qt4/libQtSql.la +lib/qt4/libQtSql.prl +lib/qt4/libQtSql.so +lib/qt4/libQtSql.so.4 +lib/qt4/libQtSql.so.4.4 +lib/qt4/libQtSql.so.4.4.1 +%%DEBUG%%lib/qt4/libQtSql.so.4.4.1.debug libdata/pkgconfig/QtSql.pc -@dirrm include/QtSql +@dirrm include/qt4/QtSql +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/databases/qt4-sqlite-plugin/Makefile b/databases/qt4-sqlite-plugin/Makefile index ee11194aba4d..81e5df5adbe3 100644 --- a/databases/qt4-sqlite-plugin/Makefile +++ b/databases/qt4-sqlite-plugin/Makefile @@ -8,7 +8,6 @@ PORTNAME= qt4-${DB}-plugin PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_QT} DISTNAME= qt-x11-opensource-src-${PORTVERSION} @@ -25,7 +24,6 @@ USE_QT_VER= 4 QT_COMPONENTS= moc_build sql QT_NONSTANDARD= yes -#USE_BZIP2= yes DRIVER= src/sql/drivers/${DB} PLUGIN= src/plugins/sqldrivers/${DB} EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \ diff --git a/databases/qt4-sqlite-plugin/distinfo b/databases/qt4-sqlite-plugin/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/databases/qt4-sqlite-plugin/distinfo +++ b/databases/qt4-sqlite-plugin/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/databases/qt4-sqlite-plugin/files/Makefile.bsd b/databases/qt4-sqlite-plugin/files/Makefile.bsd index 263b1ef34f01..8b6871981c70 100644 --- a/databases/qt4-sqlite-plugin/files/Makefile.bsd +++ b/databases/qt4-sqlite-plugin/files/Makefile.bsd @@ -1,14 +1,15 @@ -SHLIB_NAME= libqsql${DB}.so +SHLIB_NAME= libq${DB}.so VPATH= ${PLUGIN}:${DRIVER} CXXFLAGS+= -I${DRIVER} -Iinclude \ - -I${LOCALBASE}/include/Qt \ + -I${PREFIX}/include/qt4 \ + -I${PREFIX}/include/qt4/Qt \ -I${LOCALBASE}/include \ ${PTHREAD_CFLAGS} -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII \ -DQT_PLUGIN -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE \ -D_LARGEFILE_SOURCE -DQT_SHARED -MOC?= ${LOCALBASE}/bin/moc-qt4 -LDADD= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lsqlite +MOC?= ${PREFIX}/bin/moc-qt4 +LDADD= -L${PREFIX}/lib/qt4 -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lsqlite SRCS= smain.cpp qsql_${DB}.cpp moc_qsql_${DB}.cpp LIBDIR= ${PREFIX}/lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-sqlite-plugin/pkg-plist b/databases/qt4-sqlite-plugin/pkg-plist index 50edd8ee885a..e6aacc20fb20 100644 --- a/databases/qt4-sqlite-plugin/pkg-plist +++ b/databases/qt4-sqlite-plugin/pkg-plist @@ -1,2 +1,2 @@ -lib/qt4/plugins/sqldrivers/libqsql%%DB%%.so -@dirrm lib/qt4/plugins/sqldrivers +lib/qt4/plugins/sqldrivers/libq%%DB%%.so +@dirrmtry lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-sqlite3-plugin/Makefile b/databases/qt4-sqlite3-plugin/Makefile index 7436b83e8aa1..ddbe338211ff 100644 --- a/databases/qt4-sqlite3-plugin/Makefile +++ b/databases/qt4-sqlite3-plugin/Makefile @@ -8,7 +8,6 @@ PORTNAME= qt4-${DB}-plugin PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_QT} DISTNAME= qt-x11-opensource-src-${PORTVERSION} @@ -25,7 +24,6 @@ USE_QT_VER= 4 QT_COMPONENTS= moc_build sql QT_NONSTANDARD= yes -#USE_BZIP2= yes DRIVER= src/sql/drivers/${DB} PLUGIN= src/plugins/sqldrivers/${DB} EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \ diff --git a/databases/qt4-sqlite3-plugin/distinfo b/databases/qt4-sqlite3-plugin/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/databases/qt4-sqlite3-plugin/distinfo +++ b/databases/qt4-sqlite3-plugin/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/databases/qt4-sqlite3-plugin/files/Makefile.bsd b/databases/qt4-sqlite3-plugin/files/Makefile.bsd index e3d4e2cf7879..f3b0e7bd4749 100644 --- a/databases/qt4-sqlite3-plugin/files/Makefile.bsd +++ b/databases/qt4-sqlite3-plugin/files/Makefile.bsd @@ -1,14 +1,15 @@ -SHLIB_NAME= libqsql${DB}.so +SHLIB_NAME= libq${DB}.so VPATH= ${PLUGIN}:${DRIVER} CXXFLAGS+= -I${DRIVER} -Iinclude \ - -I${LOCALBASE}/include/Qt \ + -I${PREFIX}/include/qt4 \ + -I${PREFIX}/include/qt4/Qt \ -I${LOCALBASE}/include \ ${PTHREAD_CFLAGS} -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII \ -DQT_PLUGIN -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE \ -D_LARGEFILE_SOURCE -DQT_SHARED MOC?= ${LOCALBASE}/bin/moc-qt4 -LDADD= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lsqlite3 +LDADD= -L${PREFIX}/lib/qt4 -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lsqlite3 SRCS= smain.cpp qsql_${DB}.cpp moc_qsql_${DB}.cpp LIBDIR= ${PREFIX}/lib/qt4/plugins/sqldrivers diff --git a/databases/qt4-sqlite3-plugin/pkg-plist b/databases/qt4-sqlite3-plugin/pkg-plist index 50edd8ee885a..e6aacc20fb20 100644 --- a/databases/qt4-sqlite3-plugin/pkg-plist +++ b/databases/qt4-sqlite3-plugin/pkg-plist @@ -1,2 +1,2 @@ -lib/qt4/plugins/sqldrivers/libqsql%%DB%%.so -@dirrm lib/qt4/plugins/sqldrivers +lib/qt4/plugins/sqldrivers/libq%%DB%%.so +@dirrmtry lib/qt4/plugins/sqldrivers diff --git a/devel/Makefile b/devel/Makefile index 2e26ffa9423f..6f8eee8f588e 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2235,8 +2235,11 @@ SUBDIR += qsvn SUBDIR += qt4 SUBDIR += qt4-assistant + SUBDIR += qt4-assistant-adp SUBDIR += qt4-corelib SUBDIR += qt4-designer + SUBDIR += qt4-help + SUBDIR += qt4-help-tools SUBDIR += qt4-libqtassistantclient SUBDIR += qt4-linguist SUBDIR += qt4-makeqpf diff --git a/devel/dbus-qt4/Makefile b/devel/dbus-qt4/Makefile index 7dab51935d5a..bf286bd2cae0 100644 --- a/devel/dbus-qt4/Makefile +++ b/devel/dbus-qt4/Makefile @@ -8,7 +8,7 @@ PORTNAME= dbus PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -26,47 +26,41 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic3' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/tools/qdbus CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|qdbusviewer||g' ${WRKSRC}/tools/tools.pro - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/bin|g' \ - ${WRKSRC}/tools/qdbus/qdbus.pro \ - ${WRKSRC}/tools/qdbuscpp2xml/qdbuscpp2xml.pro \ - ${WRKSRC}/tools/qdbusxml2cpp/qdbusxml2cpp.pro + ${REINPLACE_CMD} -e 's|qdbusviewer||g' ${WRKSRC}/qdbus.pro + ${REINPLACE_CMD} -e 's|SUBDIRS = qdbus|SUBDIRS = ../../src/dbus qdbus|g' ${WRKSRC}/qdbus.pro ${REINPLACE_CMD} -e 's|"/moc"|"/moc-qt4"|' \ - ${WRKSRC}/tools/qdbuscpp2xml/qdbuscpp2xml.cpp - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/src/src.pro + ${WRKSRC}/../qdbus/qdbuscpp2xml/qdbuscpp2xml.cpp ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../bin/rcc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ - -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/src/Makefile + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' ${WRKSRC}/../../src/dbus/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ - -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtDBus.pc .include <bsd.port.mk> diff --git a/devel/dbus-qt4/distinfo b/devel/dbus-qt4/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/dbus-qt4/distinfo +++ b/devel/dbus-qt4/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/dbus-qt4/pkg-plist b/devel/dbus-qt4/pkg-plist index a2676beaa2c4..42bc8d3cd8ad 100644 --- a/devel/dbus-qt4/pkg-plist +++ b/devel/dbus-qt4/pkg-plist @@ -4,42 +4,59 @@ bin/qdbuscpp2xml %%DEBUG%%bin/qdbuscpp2xml.debug bin/qdbusxml2cpp %%DEBUG%%bin/qdbusxml2cpp.debug -include/QtDBus/QDBusAbstractAdaptor -include/QtDBus/QDBusAbstractInterface -include/QtDBus/QDBusArgument -include/QtDBus/QDBusConnection -include/QtDBus/QDBusConnectionInterface -include/QtDBus/QDBusContext -include/QtDBus/QDBusError -include/QtDBus/QDBusInterface -include/QtDBus/QDBusMessage -include/QtDBus/QDBusMetaType -include/QtDBus/QDBusObjectPath -include/QtDBus/QDBusReply -include/QtDBus/QDBusServer -include/QtDBus/QDBusSignature -include/QtDBus/QDBusVariant -include/QtDBus/QtDBus -include/QtDBus/qdbusabstractadaptor.h -include/QtDBus/qdbusabstractinterface.h -include/QtDBus/qdbusargument.h -include/QtDBus/qdbusconnection.h -include/QtDBus/qdbusconnectioninterface.h -include/QtDBus/qdbuscontext.h -include/QtDBus/qdbuserror.h -include/QtDBus/qdbusextratypes.h -include/QtDBus/qdbusinterface.h -include/QtDBus/qdbusmacros.h -include/QtDBus/qdbusmessage.h -include/QtDBus/qdbusmetatype.h -include/QtDBus/qdbusreply.h -include/QtDBus/qdbusserver.h -lib/libQtDBus.la -lib/libQtDBus.prl -lib/libQtDBus.so -lib/libQtDBus.so.4 -lib/libQtDBus.so.4.3 -lib/libQtDBus.so.4.3.4 -%%DEBUG%%lib/libQtDBus.so.4.3.4.debug +include/qt4/Qt/QtDBus +include/qt4/Qt/qdbusabstractadaptor.h +include/qt4/Qt/qdbusabstractinterface.h +include/qt4/Qt/qdbusargument.h +include/qt4/Qt/qdbusconnection.h +include/qt4/Qt/qdbusconnectioninterface.h +include/qt4/Qt/qdbuscontext.h +include/qt4/Qt/qdbuserror.h +include/qt4/Qt/qdbusextratypes.h +include/qt4/Qt/qdbusinterface.h +include/qt4/Qt/qdbusmacros.h +include/qt4/Qt/qdbusmessage.h +include/qt4/Qt/qdbusmetatype.h +include/qt4/Qt/qdbusreply.h +include/qt4/Qt/qdbusserver.h +include/qt4/QtDBus/QDBusAbstractAdaptor +include/qt4/QtDBus/QDBusAbstractInterface +include/qt4/QtDBus/QDBusArgument +include/qt4/QtDBus/QDBusConnection +include/qt4/QtDBus/QDBusConnectionInterface +include/qt4/QtDBus/QDBusContext +include/qt4/QtDBus/QDBusError +include/qt4/QtDBus/QDBusInterface +include/qt4/QtDBus/QDBusMessage +include/qt4/QtDBus/QDBusMetaType +include/qt4/QtDBus/QDBusObjectPath +include/qt4/QtDBus/QDBusReply +include/qt4/QtDBus/QDBusServer +include/qt4/QtDBus/QDBusSignature +include/qt4/QtDBus/QDBusVariant +include/qt4/QtDBus/QtDBus +include/qt4/QtDBus/qdbusabstractadaptor.h +include/qt4/QtDBus/qdbusabstractinterface.h +include/qt4/QtDBus/qdbusargument.h +include/qt4/QtDBus/qdbusconnection.h +include/qt4/QtDBus/qdbusconnectioninterface.h +include/qt4/QtDBus/qdbuscontext.h +include/qt4/QtDBus/qdbuserror.h +include/qt4/QtDBus/qdbusextratypes.h +include/qt4/QtDBus/qdbusinterface.h +include/qt4/QtDBus/qdbusmacros.h +include/qt4/QtDBus/qdbusmessage.h +include/qt4/QtDBus/qdbusmetatype.h +include/qt4/QtDBus/qdbusreply.h +include/qt4/QtDBus/qdbusserver.h +lib/qt4/libQtDBus.la +lib/qt4/libQtDBus.prl +lib/qt4/libQtDBus.so +lib/qt4/libQtDBus.so.4 +lib/qt4/libQtDBus.so.4.4 +lib/qt4/libQtDBus.so.4.4.1 +%%DEBUG%%lib/qt4/libQtDBus.so.4.4.1.debug libdata/pkgconfig/QtDBus.pc -@dirrm include/QtDBus +@dirrm include/qt4/QtDBus +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/devel/qt4-assistant-adp/Makefile b/devel/qt4-assistant-adp/Makefile new file mode 100644 index 000000000000..4ce95474d375 --- /dev/null +++ b/devel/qt4-assistant-adp/Makefile @@ -0,0 +1,55 @@ +# New ports collection makefile for: qt40 +# Date created: Wed Jun 29 11:49:42 CEST 2005 +# Whom: lofi@freebsd.org +# +# $FreeBSD$ +# + +PORTNAME= assistant +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= devel +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +PKGNAMESUFFIX= -adp +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt documentation browser, adp compat version + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build rcc_build uic_build corelib \ + gui network xml doc dbus +QT_NONSTANDARD= yes +QT_DIST= yes + +HAS_CONFIGURE= yes + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC=${WRKDIR}/${DISTNAME}/tools/${PORTNAME}/compat +CONFIGURE_WRKSRC=${WRKSRC}/../../../ +PATCH_WRKSRC=${CONFIGURE_WRKSRC} + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${MKDIR} ${WRKSRC}/../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../bin/moc + ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../../bin/uic + ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../bin/rcc + +.include <bsd.port.mk> diff --git a/devel/qt4-assistant-adp/distinfo b/devel/qt4-assistant-adp/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/devel/qt4-assistant-adp/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-assistant-adp/pkg-descr b/devel/qt4-assistant-adp/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/devel/qt4-assistant-adp/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/devel/qt4-assistant-adp/pkg-plist b/devel/qt4-assistant-adp/pkg-plist new file mode 100644 index 000000000000..8d78e0a63206 --- /dev/null +++ b/devel/qt4-assistant-adp/pkg-plist @@ -0,0 +1,2 @@ +bin/assistant_adp +%%DEBUG%%bin/assistant_adp.debug diff --git a/devel/qt4-assistant/Makefile b/devel/qt4-assistant/Makefile index 0c8f6273943f..898bd6293299 100644 --- a/devel/qt4-assistant/Makefile +++ b/devel/qt4-assistant/Makefile @@ -8,7 +8,7 @@ PORTNAME= assistant PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -20,7 +20,7 @@ COMMENT= Qt documentation browser USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build rcc_build uic_build qt3support corelib \ - gui network sql xml doc dbus + gui network sql xml doc help QT_NONSTANDARD= yes QT_DIST= yes @@ -30,30 +30,30 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' -WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} -CONFIGURE_WRKSRC=${WRKSRC}/../../ + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/opengl src/phonon \ + src/qt3support src/script src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC=${WRKDIR}/${DISTNAME}/tools/${PORTNAME}/tools/${PORTNAME} +CONFIGURE_WRKSRC=${WRKSRC}/../../../../ PATCH_WRKSRC=${CONFIGURE_WRKSRC} pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/bin|g' \ - -e 's|^TARGET.*|TARGET=assistant-qt4|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/lib/lib.pro - ${MKDIR} ${WRKSRC}/../../mkspecs - ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake - ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc - ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../bin/uic - ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../bin/rcc + ${REINPLACE_CMD} \ + -e 's|^TARGET.*|TARGET=assistant-qt4|g' \ + ${WRKSRC}/${PORTNAME}.pro + ${MKDIR} ${WRKSRC}/../../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc + ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../../../bin/uic + ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../../bin/rcc .include <bsd.port.mk> diff --git a/devel/qt4-assistant/distinfo b/devel/qt4-assistant/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-assistant/distinfo +++ b/devel/qt4-assistant/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-help-tools/Makefile b/devel/qt4-help-tools/Makefile new file mode 100644 index 000000000000..b7da49f05cc4 --- /dev/null +++ b/devel/qt4-help-tools/Makefile @@ -0,0 +1,57 @@ +# New ports collection makefile for: qt4-help-tools +# Date created: Sun May 11 23:30:38 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= help +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= devel +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +PKGNAMESUFFIX= -tools +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= QtHelp tools to generate and convert documentation + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build rcc_build uic_build corelib \ + gui sql xml doc help +QT_NONSTANDARD= yes +QT_DIST= yes + +HAS_CONFIGURE= yes + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC=${WRKDIR}/${DISTNAME}/tools/assistant/tools +CONFIGURE_WRKSRC=${WRKSRC}/../../../ +PATCH_WRKSRC=${CONFIGURE_WRKSRC} + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${REINPLACE_CMD} -e 's|assistant||' \ + ${WRKSRC}/tools.pro + ${MKDIR} ${WRKSRC}/../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../bin/moc + ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../../bin/uic + ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../bin/rcc + +.include <bsd.port.mk> diff --git a/devel/qt4-help-tools/distinfo b/devel/qt4-help-tools/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/devel/qt4-help-tools/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-help-tools/pkg-descr b/devel/qt4-help-tools/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/devel/qt4-help-tools/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/devel/qt4-help-tools/pkg-plist b/devel/qt4-help-tools/pkg-plist new file mode 100644 index 000000000000..47f23711c297 --- /dev/null +++ b/devel/qt4-help-tools/pkg-plist @@ -0,0 +1,6 @@ +bin/qhelpgenerator +%%DEBUG%%bin/qhelpgenerator.debug +bin/qcollectiongenerator +%%DEBUG%%bin/qcollectiongenerator.debug +bin/qhelpconverter +%%DEBUG%%bin/qhelpconverter.debug diff --git a/devel/qt4-help/Makefile b/devel/qt4-help/Makefile new file mode 100644 index 000000000000..82fa4e3eee76 --- /dev/null +++ b/devel/qt4-help/Makefile @@ -0,0 +1,64 @@ +# New ports collection makefile for: qt4-help +# Date created: Sun May 11 14:43:54 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= help +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= devel +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= QtHelp module provides QHelpEngine API and is used by Assistant + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build rcc_build corelib clucene gui sql xml +QT_NONSTANDARD= yes +QT_DIST= yes + +RUN_DEPENDS= ${LOCALBASE}/lib/qt4/plugins/sqldrivers/libqsqlite.so:${PORTSDIR}/databases/qt4-sqlite3-plugin + +HAS_CONFIGURE= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/tools/assistant/lib +CONFIGURE_WRKSRC=${WRKSRC}/../../../ + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${MKDIR} ${WRKSRC}/../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../bin/moc + ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../bin/rcc + +post-configure: + ${REINPLACE_CMD} \ + -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + -e 's|.*$$(QMAKE).*||g' \ + ${WRKSRC}/Makefile + ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ + -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ + -E -e 's|(.*location=).*rcc|\1${PREFIX}/bin/rcc|g' \ + ${WRKSRC}/../../../lib/pkgconfig/QtHelp.pc + +.include <bsd.port.mk> diff --git a/devel/qt4-help/distinfo b/devel/qt4-help/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/devel/qt4-help/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-help/pkg-descr b/devel/qt4-help/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/devel/qt4-help/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/devel/qt4-help/pkg-plist b/devel/qt4-help/pkg-plist new file mode 100644 index 000000000000..a4ac2d3881e6 --- /dev/null +++ b/devel/qt4-help/pkg-plist @@ -0,0 +1,40 @@ +include/qt4/Qt/QtHelp +include/qt4/Qt/qhelp_global.h +include/qt4/Qt/qhelpcontentwidget.h +include/qt4/Qt/qhelpengine.h +include/qt4/Qt/qhelpenginecore.h +include/qt4/Qt/qhelpindexwidget.h +include/qt4/Qt/qhelpsearchengine.h +include/qt4/Qt/qhelpsearchquerywidget.h +include/qt4/Qt/qhelpsearchresultwidget.h +include/qt4/QtHelp/QHelpContentItem +include/qt4/QtHelp/QHelpContentModel +include/qt4/QtHelp/QHelpContentWidget +include/qt4/QtHelp/QHelpEngine +include/qt4/QtHelp/QHelpEngineCore +include/qt4/QtHelp/QHelpIndexModel +include/qt4/QtHelp/QHelpIndexWidget +include/qt4/QtHelp/QHelpSearchEngine +include/qt4/QtHelp/QHelpSearchQuery +include/qt4/QtHelp/QHelpSearchQueryWidget +include/qt4/QtHelp/QHelpSearchResultWidget +include/qt4/QtHelp/QtHelp +include/qt4/QtHelp/qhelp_global.h +include/qt4/QtHelp/qhelpcontentwidget.h +include/qt4/QtHelp/qhelpengine.h +include/qt4/QtHelp/qhelpenginecore.h +include/qt4/QtHelp/qhelpindexwidget.h +include/qt4/QtHelp/qhelpsearchengine.h +include/qt4/QtHelp/qhelpsearchquerywidget.h +include/qt4/QtHelp/qhelpsearchresultwidget.h +lib/qt4/libQtHelp.la +lib/qt4/libQtHelp.prl +lib/qt4/libQtHelp.so +lib/qt4/libQtHelp.so.4 +lib/qt4/libQtHelp.so.4.4 +lib/qt4/libQtHelp.so.4.4.1 +%%DEBUG%%lib/qt4/libQtHelp.so.4.4.1.debug +libdata/pkgconfig/QtHelp.pc +@dirrm include/qt4/QtHelp +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/devel/qt4-libqtassistantclient/Makefile b/devel/qt4-libqtassistantclient/Makefile index 20ad04bb88ad..53956275d204 100644 --- a/devel/qt4-libqtassistantclient/Makefile +++ b/devel/qt4-libqtassistantclient/Makefile @@ -8,7 +8,7 @@ PORTNAME= libQtAssistantClient PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -19,7 +19,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt documentation browser integration library USE_QT_VER= 4 -QT_COMPONENTS= qmake_build moc_build corelib gui network +QT_COMPONENTS= qmake_build moc_build rcc_build corelib gui network QT_NONSTANDARD= yes QT_DIST= yes @@ -30,36 +30,33 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' -WRKSRC= ${WRKDIR}/${DISTNAME}/tools/assistant/lib -CONFIGURE_WRKSRC=${WRKSRC}/../../../ +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/tools/assistant/compat/lib +CONFIGURE_WRKSRC=${WRKSRC}/../../../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - ${WRKSRC}/lib.pro ${REINPLACE_CMD} -E -e 's|"(.*)assistant"|"\1assistant-qt4"|g' \ ${WRKSRC}/qassistantclient.cpp - ${MKDIR} ${WRKSRC}/../../../mkspecs - ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../bin/qmake - ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../bin/moc + ${MKDIR} ${WRKSRC}/../../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc + ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../../bin/rcc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ - -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - ${WRKSRC}/../../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../../../lib/pkgconfig/QtAssistantClient.pc .include <bsd.port.mk> diff --git a/devel/qt4-libqtassistantclient/distinfo b/devel/qt4-libqtassistantclient/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-libqtassistantclient/distinfo +++ b/devel/qt4-libqtassistantclient/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-libqtassistantclient/pkg-plist b/devel/qt4-libqtassistantclient/pkg-plist index 03f77e2e4e9d..be0fb7f73230 100644 --- a/devel/qt4-libqtassistantclient/pkg-plist +++ b/devel/qt4-libqtassistantclient/pkg-plist @@ -1,12 +1,12 @@ -include/QtAssistant/QAssistantClient -include/QtAssistant/QtAssistant -include/QtAssistant/qassistantclient.h -include/QtAssistant/qassistantclient_global.h -lib/libQtAssistantClient.prl -lib/libQtAssistantClient.so -lib/libQtAssistantClient.so.4 -lib/libQtAssistantClient.so.4.3 -lib/libQtAssistantClient.so.4.3.4 -%%DEBUG%%lib/libQtAssistantClient.so.4.3.4.debug +include/qt4/QtAssistant/QAssistantClient +include/qt4/QtAssistant/QtAssistant +include/qt4/QtAssistant/qassistantclient.h +include/qt4/QtAssistant/qassistantclient_global.h +lib/qt4/libQtAssistantClient.prl +lib/qt4/libQtAssistantClient.so +lib/qt4/libQtAssistantClient.so.4 +lib/qt4/libQtAssistantClient.so.4.4 +lib/qt4/libQtAssistantClient.so.4.4.1 +%%DEBUG%%lib/qt4/libQtAssistantClient.so.4.4.1.debug libdata/pkgconfig/QtAssistantClient.pc -@dirrm include/QtAssistant +@dirrm include/qt4/QtAssistant diff --git a/devel/qt4-linguist/files/patch-0185-fix-format-strings.diff b/devel/qt4-linguist/files/patch-0185-fix-format-strings.diff index 3dfc822ed00d..ac6f68210fe1 100644 --- a/devel/qt4-linguist/files/patch-0185-fix-format-strings.diff +++ b/devel/qt4-linguist/files/patch-0185-fix-format-strings.diff @@ -1,14 +1,16 @@ ---- tools/linguist/shared/profileevaluator.h -+++ tools/linguist/shared/profileevaluator.h -@@ -88,7 +88,11 @@ protected: - +--- tools/linguist/shared/profileevaluator.h.orig 2008-04-28 09:11:21.000000000 -0400 ++++ tools/linguist/shared/profileevaluator.h 2008-05-09 10:50:40.000000000 -0400 +@@ -112,7 +112,12 @@ private: + QStringList expandPattern(const QString &pattern); void logMessage(const QString &msg, MessageType mt = MT_DebugLevel2); - void logMessage(MessageType mt, const char *msg, ...); + void logMessage(MessageType mt, const char *msg, ...) +#if defined(Q_CC_GNU) && !defined(__INSURE__) -+ __attribute__ ((format (printf, 3, 4))) ++ __attribute__ ((format (printf, 3, 4))) +#endif -+ ; - QString expandVariableReferences(const QString &value); - QString evaluateExpandFunction(const QByteArray &func, const QString &arguments); ++ ; ++ + QStringList expandVariableReferences(const QString &value); + QStringList evaluateExpandFunction(const QByteArray &func, const QString &arguments); + diff --git a/devel/qt4-linguist/files/patch-tools__linguist__linguist__trwindow.cpp b/devel/qt4-linguist/files/patch-tools__linguist__linguist__trwindow.cpp new file mode 100644 index 000000000000..7535c1c2633b --- /dev/null +++ b/devel/qt4-linguist/files/patch-tools__linguist__linguist__trwindow.cpp @@ -0,0 +1,11 @@ +--- ./tools/linguist/linguist/trwindow.cpp.orig 2008-04-28 17:11:21.000000000 +0400 ++++ ./tools/linguist/linguist/trwindow.cpp 2008-06-17 01:02:02.000000000 +0400 +@@ -939,7 +939,7 @@ + if (m_assistantProcess->state() != QProcess::Running) { + QString app = QLibraryInfo::location(QLibraryInfo::BinariesPath) + QDir::separator(); + #if !defined(Q_OS_MAC) +- app += QLatin1String("assistant"); ++ app += QLatin1String("assistant-qt4"); + #else + app += QLatin1String("Assistant.app/Contents/MacOS/Assistant"); + #endif diff --git a/devel/qt4-makeqpf/Makefile b/devel/qt4-makeqpf/Makefile index cc51a08c09f3..01b0e79317f8 100644 --- a/devel/qt4-makeqpf/Makefile +++ b/devel/qt4-makeqpf/Makefile @@ -8,7 +8,7 @@ PORTNAME= makeqpf PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -29,22 +29,23 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/uic3' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/bin|g' \ - -E -e 's|^TARGET[[:blank:]]*=[[:blank:]]*|TARGET=${PORTNAME}-qt4|g' \ + ${REINPLACE_CMD} -e 's|^TARGET[[:blank:]]*=[[:blank:]]*|TARGET=${PORTNAME}-qt4|g' \ ${WRKSRC}/${PORTNAME}.pro ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake diff --git a/devel/qt4-makeqpf/distinfo b/devel/qt4-makeqpf/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-makeqpf/distinfo +++ b/devel/qt4-makeqpf/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-moc/Makefile b/devel/qt4-moc/Makefile index 8801e17136ae..b1f2cb433509 100644 --- a/devel/qt4-moc/Makefile +++ b/devel/qt4-moc/Makefile @@ -29,18 +29,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl \ + src/phonon src/qt3support src/script src/sql src/svg \ + src/testlib src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../../ diff --git a/devel/qt4-moc/distinfo b/devel/qt4-moc/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-moc/distinfo +++ b/devel/qt4-moc/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-moc/pkg-plist b/devel/qt4-moc/pkg-plist index 690446be106a..90cb1d7dc8b1 100644 --- a/devel/qt4-moc/pkg-plist +++ b/devel/qt4-moc/pkg-plist @@ -1,2 +1,2 @@ bin/moc-qt4 -%%DEBUG%%bin/moc-qt4.debug +%%DEBUG%%bin/moc-qt4.debug
\ No newline at end of file diff --git a/devel/qt4-porting/Makefile b/devel/qt4-porting/Makefile index 4d20c3b91c2a..2f530db60987 100644 --- a/devel/qt4-porting/Makefile +++ b/devel/qt4-porting/Makefile @@ -18,7 +18,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt utility to assist with porting Qt3 applications to Qt4 USE_QT_VER= 4 -QT_COMPONENTS= qmake_build moc_build rcc_build uic_build corelib xml +QT_COMPONENTS= qmake_build moc_build rcc_build corelib xml QT_NONSTANDARD= yes QT_DIST= yes @@ -28,30 +28,25 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/bin|g' \ - -e 's|RULESXML.path.*|RULESXML.path=${PREFIX}/share/qt4|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/src/src.pro ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc - ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../bin/uic ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../bin/rcc .include <bsd.port.mk> diff --git a/devel/qt4-porting/distinfo b/devel/qt4-porting/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-porting/distinfo +++ b/devel/qt4-porting/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-qt3support/Makefile b/devel/qt4-qt3support/Makefile index 4076c044d692..d70d210872f3 100644 --- a/devel/qt4-qt3support/Makefile +++ b/devel/qt4-qt3support/Makefile @@ -8,7 +8,7 @@ PORTNAME= qt3support PORTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 0 CATEGORIES?= devel x11-toolkits MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -24,43 +24,38 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes -USE_XORG= x11 +USE_LDCONFIG= ${PREFIX}/lib/qt4 +USE_XLIB= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/opengl src/phonon \ + src/script src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ PATCH_WRKSRC=${CONFIGURE_WRKSRC} pre-configure: - ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ - -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/Qt3Support.pc .include <bsd.port.mk> diff --git a/devel/qt4-qt3support/distinfo b/devel/qt4-qt3support/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-qt3support/distinfo +++ b/devel/qt4-qt3support/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-qt3support/pkg-plist b/devel/qt4-qt3support/pkg-plist index 5c2ae6c25daf..1b7e0bc482b5 100644 --- a/devel/qt4-qt3support/pkg-plist +++ b/devel/qt4-qt3support/pkg-plist @@ -1,412 +1,414 @@ -include/Qt/Qt3Support -include/Qt/q3accel.h -include/Qt/q3action.h -include/Qt/q3asciicache.h -include/Qt/q3asciidict.h -include/Qt/q3boxlayout.h -include/Qt/q3button.h -include/Qt/q3buttongroup.h -include/Qt/q3cache.h -include/Qt/q3canvas.h -include/Qt/q3cleanuphandler.h -include/Qt/q3combobox.h -include/Qt/q3cstring.h -include/Qt/q3databrowser.h -include/Qt/q3datatable.h -include/Qt/q3dataview.h -include/Qt/q3datetimeedit.h -include/Qt/q3deepcopy.h -include/Qt/q3dict.h -include/Qt/q3dns.h -include/Qt/q3dockarea.h -include/Qt/q3dockwindow.h -include/Qt/q3dragobject.h -include/Qt/q3dropsite.h -include/Qt/q3editorfactory.h -include/Qt/q3filedialog.h -include/Qt/q3frame.h -include/Qt/q3ftp.h -include/Qt/q3garray.h -include/Qt/q3gcache.h -include/Qt/q3gdict.h -include/Qt/q3glist.h -include/Qt/q3grid.h -include/Qt/q3gridlayout.h -include/Qt/q3gridview.h -include/Qt/q3groupbox.h -include/Qt/q3gvector.h -include/Qt/q3hbox.h -include/Qt/q3header.h -include/Qt/q3hgroupbox.h -include/Qt/q3http.h -include/Qt/q3iconview.h -include/Qt/q3intcache.h -include/Qt/q3intdict.h -include/Qt/q3listbox.h -include/Qt/q3listview.h -include/Qt/q3localfs.h -include/Qt/q3mainwindow.h -include/Qt/q3memarray.h -include/Qt/q3mimefactory.h -include/Qt/q3multilineedit.h -include/Qt/q3network.h -include/Qt/q3networkprotocol.h -include/Qt/q3objectdict.h -include/Qt/q3paintdevicemetrics.h -include/Qt/q3painter.h -include/Qt/q3picture.h -include/Qt/q3pointarray.h -include/Qt/q3polygonscanner.h -include/Qt/q3popupmenu.h -include/Qt/q3process.h -include/Qt/q3progressbar.h -include/Qt/q3progressdialog.h -include/Qt/q3ptrcollection.h -include/Qt/q3ptrdict.h -include/Qt/q3ptrlist.h -include/Qt/q3ptrqueue.h -include/Qt/q3ptrstack.h -include/Qt/q3ptrvector.h -include/Qt/q3rangecontrol.h -include/Qt/q3scrollview.h -include/Qt/q3semaphore.h -include/Qt/q3serversocket.h -include/Qt/q3shared.h -include/Qt/q3signal.h -include/Qt/q3simplerichtext.h -include/Qt/q3socket.h -include/Qt/q3socketdevice.h -include/Qt/q3sortedlist.h -include/Qt/q3sqlcursor.h -include/Qt/q3sqleditorfactory.h -include/Qt/q3sqlfieldinfo.h -include/Qt/q3sqlform.h -include/Qt/q3sqlpropertymap.h -include/Qt/q3sqlrecordinfo.h -include/Qt/q3sqlselectcursor.h -include/Qt/q3strlist.h -include/Qt/q3strvec.h -include/Qt/q3stylesheet.h -include/Qt/q3syntaxhighlighter.h -include/Qt/q3tabdialog.h -include/Qt/q3table.h -include/Qt/q3textbrowser.h -include/Qt/q3textedit.h -include/Qt/q3textstream.h -include/Qt/q3textview.h -include/Qt/q3tl.h -include/Qt/q3toolbar.h -include/Qt/q3url.h -include/Qt/q3urloperator.h -include/Qt/q3valuelist.h -include/Qt/q3valuestack.h -include/Qt/q3valuevector.h -include/Qt/q3vbox.h -include/Qt/q3vgroupbox.h -include/Qt/q3whatsthis.h -include/Qt/q3widgetstack.h -include/Qt/q3wizard.h -include/Qt/qiconset.h -include/Qt3Support/Q3Accel -include/Qt3Support/Q3Action -include/Qt3Support/Q3ActionGroup -include/Qt3Support/Q3AsciiBucket -include/Qt3Support/Q3AsciiCache -include/Qt3Support/Q3AsciiCacheIterator -include/Qt3Support/Q3AsciiDict -include/Qt3Support/Q3AsciiDictIterator -include/Qt3Support/Q3BaseBucket -include/Qt3Support/Q3BoxLayout -include/Qt3Support/Q3Button -include/Qt3Support/Q3ButtonGroup -include/Qt3Support/Q3CString -include/Qt3Support/Q3Cache -include/Qt3Support/Q3CacheIterator -include/Qt3Support/Q3Canvas -include/Qt3Support/Q3CanvasEllipse -include/Qt3Support/Q3CanvasItem -include/Qt3Support/Q3CanvasItemList -include/Qt3Support/Q3CanvasLine -include/Qt3Support/Q3CanvasPixmap -include/Qt3Support/Q3CanvasPixmapArray -include/Qt3Support/Q3CanvasPolygon -include/Qt3Support/Q3CanvasPolygonalItem -include/Qt3Support/Q3CanvasRectangle -include/Qt3Support/Q3CanvasSpline -include/Qt3Support/Q3CanvasSprite -include/Qt3Support/Q3CanvasText -include/Qt3Support/Q3CanvasView -include/Qt3Support/Q3CheckListItem -include/Qt3Support/Q3CheckTableItem -include/Qt3Support/Q3CleanupHandler -include/Qt3Support/Q3ColorDrag -include/Qt3Support/Q3ComboBox -include/Qt3Support/Q3ComboTableItem -include/Qt3Support/Q3DataBrowser -include/Qt3Support/Q3DataTable -include/Qt3Support/Q3DataView -include/Qt3Support/Q3DateEdit -include/Qt3Support/Q3DateTimeEdit -include/Qt3Support/Q3DateTimeEditBase -include/Qt3Support/Q3DeepCopy -include/Qt3Support/Q3Dict -include/Qt3Support/Q3DictIterator -include/Qt3Support/Q3Dns -include/Qt3Support/Q3DnsSocket -include/Qt3Support/Q3DockArea -include/Qt3Support/Q3DockAreaLayout -include/Qt3Support/Q3DockWindow -include/Qt3Support/Q3DragObject -include/Qt3Support/Q3DropSite -include/Qt3Support/Q3EditorFactory -include/Qt3Support/Q3FileDialog -include/Qt3Support/Q3FileIconProvider -include/Qt3Support/Q3FilePreview -include/Qt3Support/Q3Frame -include/Qt3Support/Q3Ftp -include/Qt3Support/Q3GArray -include/Qt3Support/Q3GCache -include/Qt3Support/Q3GCacheIterator -include/Qt3Support/Q3GDict -include/Qt3Support/Q3GDictIterator -include/Qt3Support/Q3GList -include/Qt3Support/Q3GListIterator -include/Qt3Support/Q3GListStdIterator -include/Qt3Support/Q3GVector -include/Qt3Support/Q3Grid -include/Qt3Support/Q3GridLayout -include/Qt3Support/Q3GridView -include/Qt3Support/Q3GroupBox -include/Qt3Support/Q3HBox -include/Qt3Support/Q3HBoxLayout -include/Qt3Support/Q3HButtonGroup -include/Qt3Support/Q3HGroupBox -include/Qt3Support/Q3Header -include/Qt3Support/Q3Http -include/Qt3Support/Q3HttpHeader -include/Qt3Support/Q3HttpRequestHeader -include/Qt3Support/Q3HttpResponseHeader -include/Qt3Support/Q3IconDrag -include/Qt3Support/Q3IconDragItem -include/Qt3Support/Q3IconView -include/Qt3Support/Q3IconViewItem -include/Qt3Support/Q3ImageDrag -include/Qt3Support/Q3IntBucket -include/Qt3Support/Q3IntCache -include/Qt3Support/Q3IntCacheIterator -include/Qt3Support/Q3IntDict -include/Qt3Support/Q3IntDictIterator -include/Qt3Support/Q3LNode -include/Qt3Support/Q3ListBox -include/Qt3Support/Q3ListBoxItem -include/Qt3Support/Q3ListBoxPixmap -include/Qt3Support/Q3ListBoxText -include/Qt3Support/Q3ListView -include/Qt3Support/Q3ListViewItem -include/Qt3Support/Q3ListViewItemIterator -include/Qt3Support/Q3LocalFs -include/Qt3Support/Q3MainWindow -include/Qt3Support/Q3MemArray -include/Qt3Support/Q3MimeSourceFactory -include/Qt3Support/Q3MultiLineEdit -include/Qt3Support/Q3NetworkOperation -include/Qt3Support/Q3NetworkProtocol -include/Qt3Support/Q3NetworkProtocolDict -include/Qt3Support/Q3NetworkProtocolFactory -include/Qt3Support/Q3NetworkProtocolFactoryBase -include/Qt3Support/Q3ObjectDictionary -include/Qt3Support/Q3PaintDeviceMetrics -include/Qt3Support/Q3Painter -include/Qt3Support/Q3Picture -include/Qt3Support/Q3PointArray -include/Qt3Support/Q3PolygonScanner -include/Qt3Support/Q3PopupMenu -include/Qt3Support/Q3Process -include/Qt3Support/Q3ProgressBar -include/Qt3Support/Q3ProgressDialog -include/Qt3Support/Q3PtrBucket -include/Qt3Support/Q3PtrCollection -include/Qt3Support/Q3PtrDict -include/Qt3Support/Q3PtrDictIterator -include/Qt3Support/Q3PtrList -include/Qt3Support/Q3PtrListIterator -include/Qt3Support/Q3PtrListStdIterator -include/Qt3Support/Q3PtrQueue -include/Qt3Support/Q3PtrStack -include/Qt3Support/Q3PtrVector -include/Qt3Support/Q3RangeControl -include/Qt3Support/Q3ScrollView -include/Qt3Support/Q3Semaphore -include/Qt3Support/Q3ServerSocket -include/Qt3Support/Q3Shared -include/Qt3Support/Q3Signal -include/Qt3Support/Q3SimpleRichText -include/Qt3Support/Q3SingleCleanupHandler -include/Qt3Support/Q3Socket -include/Qt3Support/Q3SocketDevice -include/Qt3Support/Q3SortedList -include/Qt3Support/Q3SpinWidget -include/Qt3Support/Q3SqlCursor -include/Qt3Support/Q3SqlEditorFactory -include/Qt3Support/Q3SqlFieldInfo -include/Qt3Support/Q3SqlFieldInfoList -include/Qt3Support/Q3SqlForm -include/Qt3Support/Q3SqlPropertyMap -include/Qt3Support/Q3SqlRecordInfo -include/Qt3Support/Q3SqlSelectCursor -include/Qt3Support/Q3StoredDrag -include/Qt3Support/Q3StrIList -include/Qt3Support/Q3StrIVec -include/Qt3Support/Q3StrList -include/Qt3Support/Q3StrListIterator -include/Qt3Support/Q3StrVec -include/Qt3Support/Q3StringBucket -include/Qt3Support/Q3StyleSheet -include/Qt3Support/Q3StyleSheetItem -include/Qt3Support/Q3SyntaxHighlighter -include/Qt3Support/Q3TSFUNC -include/Qt3Support/Q3TabDialog -include/Qt3Support/Q3Table -include/Qt3Support/Q3TableItem -include/Qt3Support/Q3TableSelection -include/Qt3Support/Q3TextBrowser -include/Qt3Support/Q3TextDrag -include/Qt3Support/Q3TextEdit -include/Qt3Support/Q3TextEditOptimPrivate -include/Qt3Support/Q3TextStream -include/Qt3Support/Q3TextView -include/Qt3Support/Q3TimeEdit -include/Qt3Support/Q3ToolBar -include/Qt3Support/Q3UriDrag -include/Qt3Support/Q3Url -include/Qt3Support/Q3UrlOperator -include/Qt3Support/Q3VBox -include/Qt3Support/Q3VBoxLayout -include/Qt3Support/Q3VButtonGroup -include/Qt3Support/Q3VGroupBox -include/Qt3Support/Q3ValueList -include/Qt3Support/Q3ValueListConstIterator -include/Qt3Support/Q3ValueListIterator -include/Qt3Support/Q3ValueStack -include/Qt3Support/Q3ValueVector -include/Qt3Support/Q3WhatsThis -include/Qt3Support/Q3WidgetStack -include/Qt3Support/Q3Wizard -include/Qt3Support/Qt3Support -include/Qt3Support/q3accel.h -include/Qt3Support/q3action.h -include/Qt3Support/q3asciicache.h -include/Qt3Support/q3asciidict.h -include/Qt3Support/q3boxlayout.h -include/Qt3Support/q3button.h -include/Qt3Support/q3buttongroup.h -include/Qt3Support/q3cache.h -include/Qt3Support/q3canvas.h -include/Qt3Support/q3cleanuphandler.h -include/Qt3Support/q3combobox.h -include/Qt3Support/q3cstring.h -include/Qt3Support/q3databrowser.h -include/Qt3Support/q3datatable.h -include/Qt3Support/q3dataview.h -include/Qt3Support/q3datetimeedit.h -include/Qt3Support/q3deepcopy.h -include/Qt3Support/q3dict.h -include/Qt3Support/q3dns.h -include/Qt3Support/q3dockarea.h -include/Qt3Support/q3dockwindow.h -include/Qt3Support/q3dragobject.h -include/Qt3Support/q3dropsite.h -include/Qt3Support/q3editorfactory.h -include/Qt3Support/q3filedialog.h -include/Qt3Support/q3frame.h -include/Qt3Support/q3ftp.h -include/Qt3Support/q3garray.h -include/Qt3Support/q3gcache.h -include/Qt3Support/q3gdict.h -include/Qt3Support/q3glist.h -include/Qt3Support/q3grid.h -include/Qt3Support/q3gridlayout.h -include/Qt3Support/q3gridview.h -include/Qt3Support/q3groupbox.h -include/Qt3Support/q3gvector.h -include/Qt3Support/q3hbox.h -include/Qt3Support/q3header.h -include/Qt3Support/q3hgroupbox.h -include/Qt3Support/q3http.h -include/Qt3Support/q3iconview.h -include/Qt3Support/q3intcache.h -include/Qt3Support/q3intdict.h -include/Qt3Support/q3listbox.h -include/Qt3Support/q3listview.h -include/Qt3Support/q3localfs.h -include/Qt3Support/q3mainwindow.h -include/Qt3Support/q3memarray.h -include/Qt3Support/q3mimefactory.h -include/Qt3Support/q3multilineedit.h -include/Qt3Support/q3network.h -include/Qt3Support/q3networkprotocol.h -include/Qt3Support/q3objectdict.h -include/Qt3Support/q3paintdevicemetrics.h -include/Qt3Support/q3painter.h -include/Qt3Support/q3picture.h -include/Qt3Support/q3pointarray.h -include/Qt3Support/q3polygonscanner.h -include/Qt3Support/q3popupmenu.h -include/Qt3Support/q3process.h -include/Qt3Support/q3progressbar.h -include/Qt3Support/q3progressdialog.h -include/Qt3Support/q3ptrcollection.h -include/Qt3Support/q3ptrdict.h -include/Qt3Support/q3ptrlist.h -include/Qt3Support/q3ptrqueue.h -include/Qt3Support/q3ptrstack.h -include/Qt3Support/q3ptrvector.h -include/Qt3Support/q3rangecontrol.h -include/Qt3Support/q3scrollview.h -include/Qt3Support/q3semaphore.h -include/Qt3Support/q3serversocket.h -include/Qt3Support/q3shared.h -include/Qt3Support/q3signal.h -include/Qt3Support/q3simplerichtext.h -include/Qt3Support/q3socket.h -include/Qt3Support/q3socketdevice.h -include/Qt3Support/q3sortedlist.h -include/Qt3Support/q3sqlcursor.h -include/Qt3Support/q3sqleditorfactory.h -include/Qt3Support/q3sqlfieldinfo.h -include/Qt3Support/q3sqlform.h -include/Qt3Support/q3sqlpropertymap.h -include/Qt3Support/q3sqlrecordinfo.h -include/Qt3Support/q3sqlselectcursor.h -include/Qt3Support/q3strlist.h -include/Qt3Support/q3strvec.h -include/Qt3Support/q3stylesheet.h -include/Qt3Support/q3syntaxhighlighter.h -include/Qt3Support/q3tabdialog.h -include/Qt3Support/q3table.h -include/Qt3Support/q3textbrowser.h -include/Qt3Support/q3textedit.h -include/Qt3Support/q3textstream.h -include/Qt3Support/q3textview.h -include/Qt3Support/q3tl.h -include/Qt3Support/q3toolbar.h -include/Qt3Support/q3url.h -include/Qt3Support/q3urloperator.h -include/Qt3Support/q3valuelist.h -include/Qt3Support/q3valuestack.h -include/Qt3Support/q3valuevector.h -include/Qt3Support/q3vbox.h -include/Qt3Support/q3vgroupbox.h -include/Qt3Support/q3whatsthis.h -include/Qt3Support/q3widgetstack.h -include/Qt3Support/q3wizard.h -include/Qt3Support/qiconset.h -lib/libQt3Support.la -lib/libQt3Support.prl -lib/libQt3Support.so -lib/libQt3Support.so.4 -lib/libQt3Support.so.4.3 -lib/libQt3Support.so.4.3.4 -%%DEBUG%%lib/libQt3Support.so.4.3.4.debug +include/qt4/Qt/Qt3Support +include/qt4/Qt/q3accel.h +include/qt4/Qt/q3action.h +include/qt4/Qt/q3asciicache.h +include/qt4/Qt/q3asciidict.h +include/qt4/Qt/q3boxlayout.h +include/qt4/Qt/q3button.h +include/qt4/Qt/q3buttongroup.h +include/qt4/Qt/q3cache.h +include/qt4/Qt/q3canvas.h +include/qt4/Qt/q3cleanuphandler.h +include/qt4/Qt/q3combobox.h +include/qt4/Qt/q3cstring.h +include/qt4/Qt/q3databrowser.h +include/qt4/Qt/q3datatable.h +include/qt4/Qt/q3dataview.h +include/qt4/Qt/q3datetimeedit.h +include/qt4/Qt/q3deepcopy.h +include/qt4/Qt/q3dict.h +include/qt4/Qt/q3dns.h +include/qt4/Qt/q3dockarea.h +include/qt4/Qt/q3dockwindow.h +include/qt4/Qt/q3dragobject.h +include/qt4/Qt/q3dropsite.h +include/qt4/Qt/q3editorfactory.h +include/qt4/Qt/q3filedialog.h +include/qt4/Qt/q3frame.h +include/qt4/Qt/q3ftp.h +include/qt4/Qt/q3garray.h +include/qt4/Qt/q3gcache.h +include/qt4/Qt/q3gdict.h +include/qt4/Qt/q3glist.h +include/qt4/Qt/q3grid.h +include/qt4/Qt/q3gridlayout.h +include/qt4/Qt/q3gridview.h +include/qt4/Qt/q3groupbox.h +include/qt4/Qt/q3gvector.h +include/qt4/Qt/q3hbox.h +include/qt4/Qt/q3header.h +include/qt4/Qt/q3hgroupbox.h +include/qt4/Qt/q3http.h +include/qt4/Qt/q3iconview.h +include/qt4/Qt/q3intcache.h +include/qt4/Qt/q3intdict.h +include/qt4/Qt/q3listbox.h +include/qt4/Qt/q3listview.h +include/qt4/Qt/q3localfs.h +include/qt4/Qt/q3mainwindow.h +include/qt4/Qt/q3memarray.h +include/qt4/Qt/q3mimefactory.h +include/qt4/Qt/q3multilineedit.h +include/qt4/Qt/q3network.h +include/qt4/Qt/q3networkprotocol.h +include/qt4/Qt/q3objectdict.h +include/qt4/Qt/q3paintdevicemetrics.h +include/qt4/Qt/q3painter.h +include/qt4/Qt/q3picture.h +include/qt4/Qt/q3pointarray.h +include/qt4/Qt/q3polygonscanner.h +include/qt4/Qt/q3popupmenu.h +include/qt4/Qt/q3process.h +include/qt4/Qt/q3progressbar.h +include/qt4/Qt/q3progressdialog.h +include/qt4/Qt/q3ptrcollection.h +include/qt4/Qt/q3ptrdict.h +include/qt4/Qt/q3ptrlist.h +include/qt4/Qt/q3ptrqueue.h +include/qt4/Qt/q3ptrstack.h +include/qt4/Qt/q3ptrvector.h +include/qt4/Qt/q3rangecontrol.h +include/qt4/Qt/q3scrollview.h +include/qt4/Qt/q3semaphore.h +include/qt4/Qt/q3serversocket.h +include/qt4/Qt/q3shared.h +include/qt4/Qt/q3signal.h +include/qt4/Qt/q3simplerichtext.h +include/qt4/Qt/q3socket.h +include/qt4/Qt/q3socketdevice.h +include/qt4/Qt/q3sortedlist.h +include/qt4/Qt/q3sqlcursor.h +include/qt4/Qt/q3sqleditorfactory.h +include/qt4/Qt/q3sqlfieldinfo.h +include/qt4/Qt/q3sqlform.h +include/qt4/Qt/q3sqlpropertymap.h +include/qt4/Qt/q3sqlrecordinfo.h +include/qt4/Qt/q3sqlselectcursor.h +include/qt4/Qt/q3strlist.h +include/qt4/Qt/q3strvec.h +include/qt4/Qt/q3stylesheet.h +include/qt4/Qt/q3syntaxhighlighter.h +include/qt4/Qt/q3tabdialog.h +include/qt4/Qt/q3table.h +include/qt4/Qt/q3textbrowser.h +include/qt4/Qt/q3textedit.h +include/qt4/Qt/q3textstream.h +include/qt4/Qt/q3textview.h +include/qt4/Qt/q3tl.h +include/qt4/Qt/q3toolbar.h +include/qt4/Qt/q3url.h +include/qt4/Qt/q3urloperator.h +include/qt4/Qt/q3valuelist.h +include/qt4/Qt/q3valuestack.h +include/qt4/Qt/q3valuevector.h +include/qt4/Qt/q3vbox.h +include/qt4/Qt/q3vgroupbox.h +include/qt4/Qt/q3whatsthis.h +include/qt4/Qt/q3widgetstack.h +include/qt4/Qt/q3wizard.h +include/qt4/Qt/qiconset.h +include/qt4/Qt3Support/Q3Accel +include/qt4/Qt3Support/Q3Action +include/qt4/Qt3Support/Q3ActionGroup +include/qt4/Qt3Support/Q3AsciiBucket +include/qt4/Qt3Support/Q3AsciiCache +include/qt4/Qt3Support/Q3AsciiCacheIterator +include/qt4/Qt3Support/Q3AsciiDict +include/qt4/Qt3Support/Q3AsciiDictIterator +include/qt4/Qt3Support/Q3BaseBucket +include/qt4/Qt3Support/Q3BoxLayout +include/qt4/Qt3Support/Q3Button +include/qt4/Qt3Support/Q3ButtonGroup +include/qt4/Qt3Support/Q3CString +include/qt4/Qt3Support/Q3Cache +include/qt4/Qt3Support/Q3CacheIterator +include/qt4/Qt3Support/Q3Canvas +include/qt4/Qt3Support/Q3CanvasEllipse +include/qt4/Qt3Support/Q3CanvasItem +include/qt4/Qt3Support/Q3CanvasItemList +include/qt4/Qt3Support/Q3CanvasLine +include/qt4/Qt3Support/Q3CanvasPixmap +include/qt4/Qt3Support/Q3CanvasPixmapArray +include/qt4/Qt3Support/Q3CanvasPolygon +include/qt4/Qt3Support/Q3CanvasPolygonalItem +include/qt4/Qt3Support/Q3CanvasRectangle +include/qt4/Qt3Support/Q3CanvasSpline +include/qt4/Qt3Support/Q3CanvasSprite +include/qt4/Qt3Support/Q3CanvasText +include/qt4/Qt3Support/Q3CanvasView +include/qt4/Qt3Support/Q3CheckListItem +include/qt4/Qt3Support/Q3CheckTableItem +include/qt4/Qt3Support/Q3CleanupHandler +include/qt4/Qt3Support/Q3ColorDrag +include/qt4/Qt3Support/Q3ComboBox +include/qt4/Qt3Support/Q3ComboTableItem +include/qt4/Qt3Support/Q3DataBrowser +include/qt4/Qt3Support/Q3DataTable +include/qt4/Qt3Support/Q3DataView +include/qt4/Qt3Support/Q3DateEdit +include/qt4/Qt3Support/Q3DateTimeEdit +include/qt4/Qt3Support/Q3DateTimeEditBase +include/qt4/Qt3Support/Q3DeepCopy +include/qt4/Qt3Support/Q3Dict +include/qt4/Qt3Support/Q3DictIterator +include/qt4/Qt3Support/Q3Dns +include/qt4/Qt3Support/Q3DnsSocket +include/qt4/Qt3Support/Q3DockArea +include/qt4/Qt3Support/Q3DockAreaLayout +include/qt4/Qt3Support/Q3DockWindow +include/qt4/Qt3Support/Q3DragObject +include/qt4/Qt3Support/Q3DropSite +include/qt4/Qt3Support/Q3EditorFactory +include/qt4/Qt3Support/Q3FileDialog +include/qt4/Qt3Support/Q3FileIconProvider +include/qt4/Qt3Support/Q3FilePreview +include/qt4/Qt3Support/Q3Frame +include/qt4/Qt3Support/Q3Ftp +include/qt4/Qt3Support/Q3GArray +include/qt4/Qt3Support/Q3GCache +include/qt4/Qt3Support/Q3GCacheIterator +include/qt4/Qt3Support/Q3GDict +include/qt4/Qt3Support/Q3GDictIterator +include/qt4/Qt3Support/Q3GList +include/qt4/Qt3Support/Q3GListIterator +include/qt4/Qt3Support/Q3GListStdIterator +include/qt4/Qt3Support/Q3GVector +include/qt4/Qt3Support/Q3Grid +include/qt4/Qt3Support/Q3GridLayout +include/qt4/Qt3Support/Q3GridView +include/qt4/Qt3Support/Q3GroupBox +include/qt4/Qt3Support/Q3HBox +include/qt4/Qt3Support/Q3HBoxLayout +include/qt4/Qt3Support/Q3HButtonGroup +include/qt4/Qt3Support/Q3HGroupBox +include/qt4/Qt3Support/Q3Header +include/qt4/Qt3Support/Q3Http +include/qt4/Qt3Support/Q3HttpHeader +include/qt4/Qt3Support/Q3HttpRequestHeader +include/qt4/Qt3Support/Q3HttpResponseHeader +include/qt4/Qt3Support/Q3IconDrag +include/qt4/Qt3Support/Q3IconDragItem +include/qt4/Qt3Support/Q3IconView +include/qt4/Qt3Support/Q3IconViewItem +include/qt4/Qt3Support/Q3ImageDrag +include/qt4/Qt3Support/Q3IntBucket +include/qt4/Qt3Support/Q3IntCache +include/qt4/Qt3Support/Q3IntCacheIterator +include/qt4/Qt3Support/Q3IntDict +include/qt4/Qt3Support/Q3IntDictIterator +include/qt4/Qt3Support/Q3LNode +include/qt4/Qt3Support/Q3ListBox +include/qt4/Qt3Support/Q3ListBoxItem +include/qt4/Qt3Support/Q3ListBoxPixmap +include/qt4/Qt3Support/Q3ListBoxText +include/qt4/Qt3Support/Q3ListView +include/qt4/Qt3Support/Q3ListViewItem +include/qt4/Qt3Support/Q3ListViewItemIterator +include/qt4/Qt3Support/Q3LocalFs +include/qt4/Qt3Support/Q3MainWindow +include/qt4/Qt3Support/Q3MemArray +include/qt4/Qt3Support/Q3MimeSourceFactory +include/qt4/Qt3Support/Q3MultiLineEdit +include/qt4/Qt3Support/Q3NetworkOperation +include/qt4/Qt3Support/Q3NetworkProtocol +include/qt4/Qt3Support/Q3NetworkProtocolDict +include/qt4/Qt3Support/Q3NetworkProtocolFactory +include/qt4/Qt3Support/Q3NetworkProtocolFactoryBase +include/qt4/Qt3Support/Q3ObjectDictionary +include/qt4/Qt3Support/Q3PaintDeviceMetrics +include/qt4/Qt3Support/Q3Painter +include/qt4/Qt3Support/Q3Picture +include/qt4/Qt3Support/Q3PointArray +include/qt4/Qt3Support/Q3PolygonScanner +include/qt4/Qt3Support/Q3PopupMenu +include/qt4/Qt3Support/Q3Process +include/qt4/Qt3Support/Q3ProgressBar +include/qt4/Qt3Support/Q3ProgressDialog +include/qt4/Qt3Support/Q3PtrBucket +include/qt4/Qt3Support/Q3PtrCollection +include/qt4/Qt3Support/Q3PtrDict +include/qt4/Qt3Support/Q3PtrDictIterator +include/qt4/Qt3Support/Q3PtrList +include/qt4/Qt3Support/Q3PtrListIterator +include/qt4/Qt3Support/Q3PtrListStdIterator +include/qt4/Qt3Support/Q3PtrQueue +include/qt4/Qt3Support/Q3PtrStack +include/qt4/Qt3Support/Q3PtrVector +include/qt4/Qt3Support/Q3RangeControl +include/qt4/Qt3Support/Q3ScrollView +include/qt4/Qt3Support/Q3Semaphore +include/qt4/Qt3Support/Q3ServerSocket +include/qt4/Qt3Support/Q3Shared +include/qt4/Qt3Support/Q3Signal +include/qt4/Qt3Support/Q3SimpleRichText +include/qt4/Qt3Support/Q3SingleCleanupHandler +include/qt4/Qt3Support/Q3Socket +include/qt4/Qt3Support/Q3SocketDevice +include/qt4/Qt3Support/Q3SortedList +include/qt4/Qt3Support/Q3SpinWidget +include/qt4/Qt3Support/Q3SqlCursor +include/qt4/Qt3Support/Q3SqlEditorFactory +include/qt4/Qt3Support/Q3SqlFieldInfo +include/qt4/Qt3Support/Q3SqlFieldInfoList +include/qt4/Qt3Support/Q3SqlForm +include/qt4/Qt3Support/Q3SqlPropertyMap +include/qt4/Qt3Support/Q3SqlRecordInfo +include/qt4/Qt3Support/Q3SqlSelectCursor +include/qt4/Qt3Support/Q3StoredDrag +include/qt4/Qt3Support/Q3StrIList +include/qt4/Qt3Support/Q3StrIVec +include/qt4/Qt3Support/Q3StrList +include/qt4/Qt3Support/Q3StrListIterator +include/qt4/Qt3Support/Q3StrVec +include/qt4/Qt3Support/Q3StringBucket +include/qt4/Qt3Support/Q3StyleSheet +include/qt4/Qt3Support/Q3StyleSheetItem +include/qt4/Qt3Support/Q3SyntaxHighlighter +include/qt4/Qt3Support/Q3TSFUNC +include/qt4/Qt3Support/Q3TabDialog +include/qt4/Qt3Support/Q3Table +include/qt4/Qt3Support/Q3TableItem +include/qt4/Qt3Support/Q3TableSelection +include/qt4/Qt3Support/Q3TextBrowser +include/qt4/Qt3Support/Q3TextDrag +include/qt4/Qt3Support/Q3TextEdit +include/qt4/Qt3Support/Q3TextEditOptimPrivate +include/qt4/Qt3Support/Q3TextStream +include/qt4/Qt3Support/Q3TextView +include/qt4/Qt3Support/Q3TimeEdit +include/qt4/Qt3Support/Q3ToolBar +include/qt4/Qt3Support/Q3UriDrag +include/qt4/Qt3Support/Q3Url +include/qt4/Qt3Support/Q3UrlOperator +include/qt4/Qt3Support/Q3VBox +include/qt4/Qt3Support/Q3VBoxLayout +include/qt4/Qt3Support/Q3VButtonGroup +include/qt4/Qt3Support/Q3VGroupBox +include/qt4/Qt3Support/Q3ValueList +include/qt4/Qt3Support/Q3ValueListConstIterator +include/qt4/Qt3Support/Q3ValueListIterator +include/qt4/Qt3Support/Q3ValueStack +include/qt4/Qt3Support/Q3ValueVector +include/qt4/Qt3Support/Q3WhatsThis +include/qt4/Qt3Support/Q3WidgetStack +include/qt4/Qt3Support/Q3Wizard +include/qt4/Qt3Support/Qt3Support +include/qt4/Qt3Support/q3accel.h +include/qt4/Qt3Support/q3action.h +include/qt4/Qt3Support/q3asciicache.h +include/qt4/Qt3Support/q3asciidict.h +include/qt4/Qt3Support/q3boxlayout.h +include/qt4/Qt3Support/q3button.h +include/qt4/Qt3Support/q3buttongroup.h +include/qt4/Qt3Support/q3cache.h +include/qt4/Qt3Support/q3canvas.h +include/qt4/Qt3Support/q3cleanuphandler.h +include/qt4/Qt3Support/q3combobox.h +include/qt4/Qt3Support/q3cstring.h +include/qt4/Qt3Support/q3databrowser.h +include/qt4/Qt3Support/q3datatable.h +include/qt4/Qt3Support/q3dataview.h +include/qt4/Qt3Support/q3datetimeedit.h +include/qt4/Qt3Support/q3deepcopy.h +include/qt4/Qt3Support/q3dict.h +include/qt4/Qt3Support/q3dns.h +include/qt4/Qt3Support/q3dockarea.h +include/qt4/Qt3Support/q3dockwindow.h +include/qt4/Qt3Support/q3dragobject.h +include/qt4/Qt3Support/q3dropsite.h +include/qt4/Qt3Support/q3editorfactory.h +include/qt4/Qt3Support/q3filedialog.h +include/qt4/Qt3Support/q3frame.h +include/qt4/Qt3Support/q3ftp.h +include/qt4/Qt3Support/q3garray.h +include/qt4/Qt3Support/q3gcache.h +include/qt4/Qt3Support/q3gdict.h +include/qt4/Qt3Support/q3glist.h +include/qt4/Qt3Support/q3grid.h +include/qt4/Qt3Support/q3gridlayout.h +include/qt4/Qt3Support/q3gridview.h +include/qt4/Qt3Support/q3groupbox.h +include/qt4/Qt3Support/q3gvector.h +include/qt4/Qt3Support/q3hbox.h +include/qt4/Qt3Support/q3header.h +include/qt4/Qt3Support/q3hgroupbox.h +include/qt4/Qt3Support/q3http.h +include/qt4/Qt3Support/q3iconview.h +include/qt4/Qt3Support/q3intcache.h +include/qt4/Qt3Support/q3intdict.h +include/qt4/Qt3Support/q3listbox.h +include/qt4/Qt3Support/q3listview.h +include/qt4/Qt3Support/q3localfs.h +include/qt4/Qt3Support/q3mainwindow.h +include/qt4/Qt3Support/q3memarray.h +include/qt4/Qt3Support/q3mimefactory.h +include/qt4/Qt3Support/q3multilineedit.h +include/qt4/Qt3Support/q3network.h +include/qt4/Qt3Support/q3networkprotocol.h +include/qt4/Qt3Support/q3objectdict.h +include/qt4/Qt3Support/q3paintdevicemetrics.h +include/qt4/Qt3Support/q3painter.h +include/qt4/Qt3Support/q3picture.h +include/qt4/Qt3Support/q3pointarray.h +include/qt4/Qt3Support/q3polygonscanner.h +include/qt4/Qt3Support/q3popupmenu.h +include/qt4/Qt3Support/q3process.h +include/qt4/Qt3Support/q3progressbar.h +include/qt4/Qt3Support/q3progressdialog.h +include/qt4/Qt3Support/q3ptrcollection.h +include/qt4/Qt3Support/q3ptrdict.h +include/qt4/Qt3Support/q3ptrlist.h +include/qt4/Qt3Support/q3ptrqueue.h +include/qt4/Qt3Support/q3ptrstack.h +include/qt4/Qt3Support/q3ptrvector.h +include/qt4/Qt3Support/q3rangecontrol.h +include/qt4/Qt3Support/q3scrollview.h +include/qt4/Qt3Support/q3semaphore.h +include/qt4/Qt3Support/q3serversocket.h +include/qt4/Qt3Support/q3shared.h +include/qt4/Qt3Support/q3signal.h +include/qt4/Qt3Support/q3simplerichtext.h +include/qt4/Qt3Support/q3socket.h +include/qt4/Qt3Support/q3socketdevice.h +include/qt4/Qt3Support/q3sortedlist.h +include/qt4/Qt3Support/q3sqlcursor.h +include/qt4/Qt3Support/q3sqleditorfactory.h +include/qt4/Qt3Support/q3sqlfieldinfo.h +include/qt4/Qt3Support/q3sqlform.h +include/qt4/Qt3Support/q3sqlpropertymap.h +include/qt4/Qt3Support/q3sqlrecordinfo.h +include/qt4/Qt3Support/q3sqlselectcursor.h +include/qt4/Qt3Support/q3strlist.h +include/qt4/Qt3Support/q3strvec.h +include/qt4/Qt3Support/q3stylesheet.h +include/qt4/Qt3Support/q3syntaxhighlighter.h +include/qt4/Qt3Support/q3tabdialog.h +include/qt4/Qt3Support/q3table.h +include/qt4/Qt3Support/q3textbrowser.h +include/qt4/Qt3Support/q3textedit.h +include/qt4/Qt3Support/q3textstream.h +include/qt4/Qt3Support/q3textview.h +include/qt4/Qt3Support/q3tl.h +include/qt4/Qt3Support/q3toolbar.h +include/qt4/Qt3Support/q3url.h +include/qt4/Qt3Support/q3urloperator.h +include/qt4/Qt3Support/q3valuelist.h +include/qt4/Qt3Support/q3valuestack.h +include/qt4/Qt3Support/q3valuevector.h +include/qt4/Qt3Support/q3vbox.h +include/qt4/Qt3Support/q3vgroupbox.h +include/qt4/Qt3Support/q3whatsthis.h +include/qt4/Qt3Support/q3widgetstack.h +include/qt4/Qt3Support/q3wizard.h +include/qt4/Qt3Support/qiconset.h +lib/qt4/libQt3Support.la +lib/qt4/libQt3Support.prl +lib/qt4/libQt3Support.so +lib/qt4/libQt3Support.so.4 +lib/qt4/libQt3Support.so.4.4 +lib/qt4/libQt3Support.so.4.4.1 +%%DEBUG%%lib/qt4/libQt3Support.so.4.4.1.debug libdata/pkgconfig/Qt3Support.pc -@dirrm include/Qt3Support +@dirrm include/qt4/Qt3Support +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/devel/qt4-qtestlib/Makefile b/devel/qt4-qtestlib/Makefile index b56fe17e8e5e..b7f834bfc854 100644 --- a/devel/qt4-qtestlib/Makefile +++ b/devel/qt4-qtestlib/Makefile @@ -8,7 +8,7 @@ PORTNAME= qtestlib PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -24,42 +24,37 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' -WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/src/testlib CONFIGURE_WRKSRC=${WRKSRC}/../../ PATCH_WRKSRC=${CONFIGURE_WRKSRC} pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|qtestlib_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ - -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/src/Makefile + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ - -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtTest.pc .include <bsd.port.mk> diff --git a/devel/qt4-qtestlib/distinfo b/devel/qt4-qtestlib/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-qtestlib/distinfo +++ b/devel/qt4-qtestlib/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-qtestlib/files/patch-0185-fix-format-strings.diff b/devel/qt4-qtestlib/files/patch-0185-fix-format-strings.diff index efe6e3caad19..ae9b2e977785 100644 --- a/devel/qt4-qtestlib/files/patch-0185-fix-format-strings.diff +++ b/devel/qt4-qtestlib/files/patch-0185-fix-format-strings.diff @@ -1,5 +1,5 @@ ---- tools/qtestlib/src/qtest_global.h -+++ tools/qtestlib/src/qtest_global.h +--- src/testlib/qtest_global.h ++++ src/testlib/qtest_global.h @@ -59,7 +59,11 @@ namespace QTest enum SkipMode { SkipSingle = 1, SkipAll = 2 }; enum TestFailMode { Abort = 1, Continue = 2 }; diff --git a/devel/qt4-qtestlib/pkg-plist b/devel/qt4-qtestlib/pkg-plist index f1e190aa38a4..1ab63429a642 100644 --- a/devel/qt4-qtestlib/pkg-plist +++ b/devel/qt4-qtestlib/pkg-plist @@ -1,38 +1,55 @@ -include/QtTest/QEventSizeOfChecker -include/QtTest/QSignalSpy -include/QtTest/QSpontaneKeyEvent -include/QtTest/QTest -include/QtTest/QTestAccessibility -include/QtTest/QTestAccessibilityEvent -include/QtTest/QTestData -include/QtTest/QTestDelayEvent -include/QtTest/QTestEvent -include/QtTest/QTestEventList -include/QtTest/QTestEventLoop -include/QtTest/QTestKeyClicksEvent -include/QtTest/QTestKeyEvent -include/QtTest/QTestMouseEvent -include/QtTest/QtTest -include/QtTest/qsignalspy.h -include/QtTest/qtest.h -include/QtTest/qtest_global.h -include/QtTest/qtest_gui.h -include/QtTest/qtestaccessible.h -include/QtTest/qtestassert.h -include/QtTest/qtestcase.h -include/QtTest/qtestdata.h -include/QtTest/qtestevent.h -include/QtTest/qtesteventloop.h -include/QtTest/qtestkeyboard.h -include/QtTest/qtestmouse.h -include/QtTest/qtestspontaneevent.h -include/QtTest/qtestsystem.h -lib/libQtTest.la -lib/libQtTest.prl -lib/libQtTest.so -lib/libQtTest.so.4 -lib/libQtTest.so.4.3 -lib/libQtTest.so.4.3.4 -%%DEBUG%%lib/libQtTest.so.4.3.4.debug +include/qt4/Qt/QtTest +include/qt4/Qt/qsignalspy.h +include/qt4/Qt/qtest.h +include/qt4/Qt/qtest_global.h +include/qt4/Qt/qtest_gui.h +include/qt4/Qt/qtestaccessible.h +include/qt4/Qt/qtestassert.h +include/qt4/Qt/qtestcase.h +include/qt4/Qt/qtestdata.h +include/qt4/Qt/qtestevent.h +include/qt4/Qt/qtesteventloop.h +include/qt4/Qt/qtestkeyboard.h +include/qt4/Qt/qtestmouse.h +include/qt4/Qt/qtestspontaneevent.h +include/qt4/Qt/qtestsystem.h +include/qt4/QtTest/QEventSizeOfChecker +include/qt4/QtTest/QSignalSpy +include/qt4/QtTest/QSpontaneKeyEvent +include/qt4/QtTest/QTest +include/qt4/QtTest/QTestAccessibility +include/qt4/QtTest/QTestAccessibilityEvent +include/qt4/QtTest/QTestData +include/qt4/QtTest/QTestDelayEvent +include/qt4/QtTest/QTestEvent +include/qt4/QtTest/QTestEventList +include/qt4/QtTest/QTestEventLoop +include/qt4/QtTest/QTestKeyClicksEvent +include/qt4/QtTest/QTestKeyEvent +include/qt4/QtTest/QTestMouseEvent +include/qt4/QtTest/QtTest +include/qt4/QtTest/qsignalspy.h +include/qt4/QtTest/qtest.h +include/qt4/QtTest/qtest_global.h +include/qt4/QtTest/qtest_gui.h +include/qt4/QtTest/qtestaccessible.h +include/qt4/QtTest/qtestassert.h +include/qt4/QtTest/qtestcase.h +include/qt4/QtTest/qtestdata.h +include/qt4/QtTest/qtestevent.h +include/qt4/QtTest/qtesteventloop.h +include/qt4/QtTest/qtestkeyboard.h +include/qt4/QtTest/qtestmouse.h +include/qt4/QtTest/qtestspontaneevent.h +include/qt4/QtTest/qtestsystem.h +lib/qt4/libQtTest.la +lib/qt4/libQtTest.prl +lib/qt4/libQtTest.so +lib/qt4/libQtTest.so.4 +lib/qt4/libQtTest.so.4.4 +lib/qt4/libQtTest.so.4.4.1 +%%DEBUG%%lib/qt4/libQtTest.so.4.4.1.debug libdata/pkgconfig/QtTest.pc -@dirrm include/QtTest +@dirrm include/qt4/QtTest +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/devel/qt4-qvfb/Makefile b/devel/qt4-qvfb/Makefile index 2bb8d432a1b4..0e7befad627b 100644 --- a/devel/qt4-qvfb/Makefile +++ b/devel/qt4-qvfb/Makefile @@ -8,7 +8,7 @@ PORTNAME= qvfb PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -29,18 +29,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/network src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ @@ -54,8 +53,4 @@ pre-configure: ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../bin/uic ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../bin/rcc -post-install: - ${MKDIR} ${DATADIR} - ${CP} -Rf ${WRKSRC}/*.skin ${WRKSRC}/pda* ${DATADIR} - .include <bsd.port.mk> diff --git a/devel/qt4-qvfb/distinfo b/devel/qt4-qvfb/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-qvfb/distinfo +++ b/devel/qt4-qvfb/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-qvfb/pkg-plist b/devel/qt4-qvfb/pkg-plist index 49b49c2c6ecb..a57af5d2626f 100644 --- a/devel/qt4-qvfb/pkg-plist +++ b/devel/qt4-qvfb/pkg-plist @@ -1,61 +1,2 @@ bin/qvfb-qt4 %%DEBUG%%bin/qvfb-qt4.debug -share/qvfb/ClamshellPhone.skin/ClamshellPhone.skin -share/qvfb/ClamshellPhone.skin/ClamshellPhone1-5-closed.png -share/qvfb/ClamshellPhone.skin/ClamshellPhone1-5-pressed.png -share/qvfb/ClamshellPhone.skin/ClamshellPhone1-5.png -share/qvfb/ClamshellPhone.skin/defaultbuttons.conf -share/qvfb/DualScreenPhone.skin/DualScreen-pressed.png -share/qvfb/DualScreenPhone.skin/DualScreen.png -share/qvfb/DualScreenPhone.skin/DualScreenPhone.skin -share/qvfb/DualScreenPhone.skin/defaultbuttons.conf -share/qvfb/PDAPhone.skin/PDAPhone.skin -share/qvfb/PDAPhone.skin/defaultbuttons.conf -share/qvfb/PDAPhone.skin/finger.png -share/qvfb/PDAPhone.skin/pda_down.png -share/qvfb/PDAPhone.skin/pda_up.png -share/qvfb/PortableMedia.skin/PortableMedia.skin -share/qvfb/PortableMedia.skin/defaultbuttons.conf -share/qvfb/PortableMedia.skin/portablemedia-pressed.png -share/qvfb/PortableMedia.skin/portablemedia.png -share/qvfb/PortableMedia.skin/portablemedia.xcf -share/qvfb/SmartPhone.skin/SmartPhone-pressed.png -share/qvfb/SmartPhone.skin/SmartPhone.png -share/qvfb/SmartPhone.skin/SmartPhone.skin -share/qvfb/SmartPhone.skin/defaultbuttons.conf -share/qvfb/SmartPhone2.skin/SmartPhone2-pressed.png -share/qvfb/SmartPhone2.skin/SmartPhone2.png -share/qvfb/SmartPhone2.skin/SmartPhone2.skin -share/qvfb/SmartPhone2.skin/defaultbuttons.conf -share/qvfb/SmartPhoneWithButtons.skin/SmartPhoneWithButtons-pressed.png -share/qvfb/SmartPhoneWithButtons.skin/SmartPhoneWithButtons.png -share/qvfb/SmartPhoneWithButtons.skin/SmartPhoneWithButtons.skin -share/qvfb/SmartPhoneWithButtons.skin/defaultbuttons.conf -share/qvfb/TouchscreenPhone.skin/TouchscreenPhone-pressed.png -share/qvfb/TouchscreenPhone.skin/TouchscreenPhone.png -share/qvfb/TouchscreenPhone.skin/TouchscreenPhone.skin -share/qvfb/TouchscreenPhone.skin/defaultbuttons.conf -share/qvfb/Trolltech-Keypad.skin/Trolltech-Keypad-closed.png -share/qvfb/Trolltech-Keypad.skin/Trolltech-Keypad-down.png -share/qvfb/Trolltech-Keypad.skin/Trolltech-Keypad.png -share/qvfb/Trolltech-Keypad.skin/Trolltech-Keypad.skin -share/qvfb/Trolltech-Keypad.skin/defaultbuttons.conf -share/qvfb/Trolltech-Touchscreen.skin/Trolltech-Touchscreen-down.png -share/qvfb/Trolltech-Touchscreen.skin/Trolltech-Touchscreen.png -share/qvfb/Trolltech-Touchscreen.skin/Trolltech-Touchscreen.skin -share/qvfb/Trolltech-Touchscreen.skin/defaultbuttons.conf -share/qvfb/pda.qrc -share/qvfb/pda.skin -share/qvfb/pda_down.png -share/qvfb/pda_up.png -@dirrm share/qvfb/Trolltech-Touchscreen.skin -@dirrm share/qvfb/Trolltech-Keypad.skin -@dirrm share/qvfb/TouchscreenPhone.skin -@dirrm share/qvfb/SmartPhoneWithButtons.skin -@dirrm share/qvfb/SmartPhone2.skin -@dirrm share/qvfb/SmartPhone.skin -@dirrm share/qvfb/PortableMedia.skin -@dirrm share/qvfb/PDAPhone.skin -@dirrm share/qvfb/DualScreenPhone.skin -@dirrm share/qvfb/ClamshellPhone.skin -@dirrm share/qvfb diff --git a/devel/qt4-rcc/Makefile b/devel/qt4-rcc/Makefile index 9ae1ad4ce781..3b503b92ea79 100644 --- a/devel/qt4-rcc/Makefile +++ b/devel/qt4-rcc/Makefile @@ -28,17 +28,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl \ + src/phonon src/qt3support src/script src/sql src/svg \ + src/testlib src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../../ diff --git a/devel/qt4-rcc/distinfo b/devel/qt4-rcc/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-rcc/distinfo +++ b/devel/qt4-rcc/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-script/Makefile b/devel/qt4-script/Makefile index 93515fe0670b..831b9a7a2c0b 100644 --- a/devel/qt4-script/Makefile +++ b/devel/qt4-script/Makefile @@ -8,7 +8,7 @@ PORTNAME= script PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -24,44 +24,38 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ PATCH_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ - -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtScript.pc .include <bsd.port.mk> diff --git a/devel/qt4-script/distinfo b/devel/qt4-script/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-script/distinfo +++ b/devel/qt4-script/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-script/pkg-plist b/devel/qt4-script/pkg-plist index f1c5ba44991c..878bd738a0ef 100644 --- a/devel/qt4-script/pkg-plist +++ b/devel/qt4-script/pkg-plist @@ -1,33 +1,51 @@ -include/Qt/QtScript -include/Qt/qscriptable.h -include/Qt/qscriptcontext.h -include/Qt/qscriptengine.h -include/Qt/qscriptextensioninterface.h -include/Qt/qscriptextensionplugin.h -include/Qt/qscriptvalue.h -include/Qt/qscriptvalueiterator.h -include/QtScript/QScriptContext -include/QtScript/QScriptEngine -include/QtScript/QScriptExtensionInterface -include/QtScript/QScriptExtensionPlugin -include/QtScript/QScriptValue -include/QtScript/QScriptValueIterator -include/QtScript/QScriptValueList -include/QtScript/QScriptable -include/QtScript/QtScript -include/QtScript/qscriptable.h -include/QtScript/qscriptcontext.h -include/QtScript/qscriptengine.h -include/QtScript/qscriptextensioninterface.h -include/QtScript/qscriptextensionplugin.h -include/QtScript/qscriptvalue.h -include/QtScript/qscriptvalueiterator.h -lib/libQtScript.la -lib/libQtScript.prl -lib/libQtScript.so -lib/libQtScript.so.4 -lib/libQtScript.so.4.3 -lib/libQtScript.so.4.3.4 -%%DEBUG%%lib/libQtScript.so.4.3.4.debug +include/qt4/Qt/QtScript +include/qt4/Qt/qscriptable.h +include/qt4/Qt/qscriptclass.h +include/qt4/Qt/qscriptclasspropertyiterator.h +include/qt4/Qt/qscriptcontext.h +include/qt4/Qt/qscriptcontextinfo.h +include/qt4/Qt/qscriptengine.h +include/qt4/Qt/qscriptengineagent.h +include/qt4/Qt/qscriptextensioninterface.h +include/qt4/Qt/qscriptextensionplugin.h +include/qt4/Qt/qscriptstring.h +include/qt4/Qt/qscriptvalue.h +include/qt4/Qt/qscriptvalueiterator.h +include/qt4/QtScript/QScriptClass +include/qt4/QtScript/QScriptClassPropertyIterator +include/qt4/QtScript/QScriptContext +include/qt4/QtScript/QScriptContextInfo +include/qt4/QtScript/QScriptContextInfoList +include/qt4/QtScript/QScriptEngine +include/qt4/QtScript/QScriptEngineAgent +include/qt4/QtScript/QScriptExtensionInterface +include/qt4/QtScript/QScriptExtensionPlugin +include/qt4/QtScript/QScriptString +include/qt4/QtScript/QScriptValue +include/qt4/QtScript/QScriptValueIterator +include/qt4/QtScript/QScriptValueList +include/qt4/QtScript/QScriptable +include/qt4/QtScript/QtScript +include/qt4/QtScript/qscriptable.h +include/qt4/QtScript/qscriptclass.h +include/qt4/QtScript/qscriptclasspropertyiterator.h +include/qt4/QtScript/qscriptcontext.h +include/qt4/QtScript/qscriptcontextinfo.h +include/qt4/QtScript/qscriptengine.h +include/qt4/QtScript/qscriptengineagent.h +include/qt4/QtScript/qscriptextensioninterface.h +include/qt4/QtScript/qscriptextensionplugin.h +include/qt4/QtScript/qscriptstring.h +include/qt4/QtScript/qscriptvalue.h +include/qt4/QtScript/qscriptvalueiterator.h +lib/qt4/libQtScript.la +lib/qt4/libQtScript.prl +lib/qt4/libQtScript.so +lib/qt4/libQtScript.so.4 +lib/qt4/libQtScript.so.4.4 +lib/qt4/libQtScript.so.4.4.1 +%%DEBUG%%lib/qt4/libQtScript.so.4.4.1.debug libdata/pkgconfig/QtScript.pc -@dirrm include/QtScript +@dirrm include/qt4/QtScript +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/devel/qt4-uic/Makefile b/devel/qt4-uic/Makefile index 940196e76a73..daeb1448cdcd 100644 --- a/devel/qt4-uic/Makefile +++ b/devel/qt4-uic/Makefile @@ -29,17 +29,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl \ + src/phonon src/qt3support src/script src/sql src/svg \ + src/testlib src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../../ diff --git a/devel/qt4-uic/distinfo b/devel/qt4-uic/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-uic/distinfo +++ b/devel/qt4-uic/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/devel/qt4-uic3/Makefile b/devel/qt4-uic3/Makefile index a3866a83745e..2677b6dcf74b 100644 --- a/devel/qt4-uic3/Makefile +++ b/devel/qt4-uic3/Makefile @@ -8,7 +8,7 @@ PORTNAME= uic3 PORTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION=0 CATEGORIES?= devel MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -22,7 +22,6 @@ USE_QT_VER= 4 QT_COMPONENTS= qmake_build qt3support corelib gui network sql xml QT_NONSTANDARD= yes QT_DIST= yes -USE_XORG= sm ice xrender xrandr xfixes xcursor xinerama xi HAS_CONFIGURE= yes @@ -30,24 +29,22 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/opengl src/phonon \ + src/script src/svg src/testlib \ + src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/bin|g' \ - ${WRKSRC}/${PORTNAME}.pro ${MKDIR} ${WRKSRC}/../../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../bin/qmake diff --git a/devel/qt4-uic3/distinfo b/devel/qt4-uic3/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/devel/qt4-uic3/distinfo +++ b/devel/qt4-uic3/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/graphics/qt4-iconengines/Makefile b/graphics/qt4-iconengines/Makefile index 122739a91e74..cc1bb506cbd2 100644 --- a/graphics/qt4-iconengines/Makefile +++ b/graphics/qt4-iconengines/Makefile @@ -8,7 +8,7 @@ PORTNAME= iconengines PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= graphics MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -22,31 +22,31 @@ USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build corelib gui svg xml QT_NONSTANDARD= yes QT_DIST= yes - + HAS_CONFIGURE= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' -WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME} -CONFIGURE_WRKSRC=${WRKSRC}/../../.. + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/iconengines/svgiconengine +CONFIGURE_WRKSRC=${WRKSRC}/../../../.. pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${MKDIR} ${WRKSRC}/../../../mkspecs - ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../bin/qmake - ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../bin/moc + ${MKDIR} ${WRKSRC}/../../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc .include <bsd.port.mk> diff --git a/graphics/qt4-iconengines/distinfo b/graphics/qt4-iconengines/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/graphics/qt4-iconengines/distinfo +++ b/graphics/qt4-iconengines/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/graphics/qt4-iconengines/pkg-plist b/graphics/qt4-iconengines/pkg-plist index 926993c972f8..e3eafa6f386f 100644 --- a/graphics/qt4-iconengines/pkg-plist +++ b/graphics/qt4-iconengines/pkg-plist @@ -1,3 +1,3 @@ -lib/qt4/plugins/iconengines/libqsvg.so -%%DEBUG%%lib/qt4/plugins/iconengines/libqsvg.so.debug -@dirrm lib/qt4/plugins/iconengines +lib/qt4/plugins/iconengines/libqsvgicon.so +%%DEBUG%%lib/qt4/plugins/iconengines/libqsvgicon.so.debug +@dirrmtry lib/qt4/plugins/iconengines diff --git a/graphics/qt4-imageformats/Makefile b/graphics/qt4-imageformats/Makefile index 0c6eefca8ec1..3b7f9cb662ee 100644 --- a/graphics/qt4-imageformats/Makefile +++ b/graphics/qt4-imageformats/Makefile @@ -8,7 +8,7 @@ PORTNAME= imageformats PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= graphics MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -34,17 +34,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= |${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../.. @@ -55,10 +55,4 @@ pre-configure: ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../bin/moc ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../bin/rcc -post-build: - cd ${WRKSRC}/gif; qmake-qt4; make -f Makefile - -post-install: - cd ${WRKSRC}/gif; make -f Makefile install - .include <bsd.port.mk> diff --git a/graphics/qt4-imageformats/distinfo b/graphics/qt4-imageformats/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/graphics/qt4-imageformats/distinfo +++ b/graphics/qt4-imageformats/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/graphics/qt4-imageformats/pkg-plist b/graphics/qt4-imageformats/pkg-plist index 99495ffeec5a..1b01f5eb0bca 100644 --- a/graphics/qt4-imageformats/pkg-plist +++ b/graphics/qt4-imageformats/pkg-plist @@ -8,4 +8,6 @@ lib/qt4/plugins/imageformats/libqsvg.so %%DEBUG%%lib/qt4/plugins/imageformats/libqsvg.so.debug lib/qt4/plugins/imageformats/libqtiff.so %%DEBUG%%lib/qt4/plugins/imageformats/libqtiff.so.debug -@dirrm lib/qt4/plugins/imageformats +lib/qt4/plugins/imageformats/libqico.so +%%DEBUG%%lib/qt4/plugins/imageformats/libqico.so.debug +@dirrmtry lib/qt4/plugins/imageformats diff --git a/graphics/qt4-pixeltool/Makefile b/graphics/qt4-pixeltool/Makefile index 0a70be29f9e5..1f1e2a1e15b2 100644 --- a/graphics/qt4-pixeltool/Makefile +++ b/graphics/qt4-pixeltool/Makefile @@ -8,7 +8,7 @@ PORTNAME= pixeltool PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= graphics MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -19,8 +19,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt screen magnification utility USE_QT_VER= 4 -QT_COMPONENTS= qmake_build moc_build uic_build assistantclient corelib gui \ - network +QT_COMPONENTS= qmake_build moc_build corelib gui network QT_NONSTANDARD= yes QT_DIST= yes @@ -30,17 +29,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ @@ -51,6 +50,5 @@ pre-configure: ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc - ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../bin/uic .include <bsd.port.mk> diff --git a/graphics/qt4-pixeltool/distinfo b/graphics/qt4-pixeltool/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/graphics/qt4-pixeltool/distinfo +++ b/graphics/qt4-pixeltool/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/graphics/qt4-svg/Makefile b/graphics/qt4-svg/Makefile index 71fbb77351cf..c6a49a65a67f 100644 --- a/graphics/qt4-svg/Makefile +++ b/graphics/qt4-svg/Makefile @@ -8,7 +8,6 @@ PORTNAME= svg PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES?= graphics MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -19,49 +18,42 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt SVG library USE_QT_VER= 4 -QT_COMPONENTS= qmake_build moc_build corelib gui xml +QT_COMPONENTS= qmake_build moc_build corelib gui QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/plugins' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ - -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtSvg.pc .include <bsd.port.mk> diff --git a/graphics/qt4-svg/distinfo b/graphics/qt4-svg/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/graphics/qt4-svg/distinfo +++ b/graphics/qt4-svg/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/graphics/qt4-svg/pkg-plist b/graphics/qt4-svg/pkg-plist index 44406bb5f79e..3e60a4c04adc 100644 --- a/graphics/qt4-svg/pkg-plist +++ b/graphics/qt4-svg/pkg-plist @@ -1,23 +1,25 @@ -include/Qt/QtSvg -include/Qt/qgraphicssvgitem.h -include/Qt/qsvggenerator.h -include/Qt/qsvgrenderer.h -include/Qt/qsvgwidget.h -include/QtSvg/QGraphicsSvgItem -include/QtSvg/QSvgGenerator -include/QtSvg/QSvgRenderer -include/QtSvg/QSvgWidget -include/QtSvg/QtSvg -include/QtSvg/qgraphicssvgitem.h -include/QtSvg/qsvggenerator.h -include/QtSvg/qsvgrenderer.h -include/QtSvg/qsvgwidget.h -lib/libQtSvg.la -lib/libQtSvg.prl -lib/libQtSvg.so -lib/libQtSvg.so.4 -lib/libQtSvg.so.4.3 -lib/libQtSvg.so.4.3.4 -%%DEBUG%%lib/libQtSvg.so.4.3.4.debug +include/qt4/Qt/QtSvg +include/qt4/Qt/qgraphicssvgitem.h +include/qt4/Qt/qsvggenerator.h +include/qt4/Qt/qsvgrenderer.h +include/qt4/Qt/qsvgwidget.h +include/qt4/QtSvg/QGraphicsSvgItem +include/qt4/QtSvg/QSvgGenerator +include/qt4/QtSvg/QSvgRenderer +include/qt4/QtSvg/QSvgWidget +include/qt4/QtSvg/QtSvg +include/qt4/QtSvg/qgraphicssvgitem.h +include/qt4/QtSvg/qsvggenerator.h +include/qt4/QtSvg/qsvgrenderer.h +include/qt4/QtSvg/qsvgwidget.h +lib/qt4/libQtSvg.la +lib/qt4/libQtSvg.prl +lib/qt4/libQtSvg.so +lib/qt4/libQtSvg.so.4 +lib/qt4/libQtSvg.so.4.4 +lib/qt4/libQtSvg.so.4.4.1 +%%DEBUG%%lib/qt4/libQtSvg.so.4.4.1.debug libdata/pkgconfig/QtSvg.pc -@dirrm include/QtSvg +@dirrm include/qt4/QtSvg +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/japanese/qt4-codecs-jp/Makefile b/japanese/qt4-codecs-jp/Makefile index 68aedd14054a..d9647ffc9537 100644 --- a/japanese/qt4-codecs-jp/Makefile +++ b/japanese/qt4-codecs-jp/Makefile @@ -25,23 +25,22 @@ QT_DIST= yes #USE_BZIP2= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME}/jp CONFIGURE_WRKSRC=${WRKSRC}/../../../.. @@ -49,6 +48,5 @@ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} ${MKDIR} ${WRKSRC}/../../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake - ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc .include <bsd.port.mk> diff --git a/japanese/qt4-codecs-jp/distinfo b/japanese/qt4-codecs-jp/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/japanese/qt4-codecs-jp/distinfo +++ b/japanese/qt4-codecs-jp/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/japanese/qt4-codecs-jp/pkg-plist b/japanese/qt4-codecs-jp/pkg-plist index 94fb35d3b9a3..09338d7687df 100644 --- a/japanese/qt4-codecs-jp/pkg-plist +++ b/japanese/qt4-codecs-jp/pkg-plist @@ -1,3 +1,3 @@ lib/qt4/plugins/codecs/libqjpcodecs.so %%DEBUG%%lib/qt4/plugins/codecs/libqjpcodecs.so.debug -@dirrm lib/qt4/plugins/codecs +@dirrmtry lib/qt4/plugins/codecs diff --git a/korean/qt4-codecs-kr/Makefile b/korean/qt4-codecs-kr/Makefile index 65f224afe359..256c93f8fac7 100644 --- a/korean/qt4-codecs-kr/Makefile +++ b/korean/qt4-codecs-kr/Makefile @@ -25,23 +25,22 @@ QT_DIST= yes #USE_BZIP2= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME}/kr CONFIGURE_WRKSRC=${WRKSRC}/../../../.. @@ -49,7 +48,6 @@ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} ${MKDIR} ${WRKSRC}/../../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake - ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc .include <bsd.port.mk> diff --git a/korean/qt4-codecs-kr/distinfo b/korean/qt4-codecs-kr/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/korean/qt4-codecs-kr/distinfo +++ b/korean/qt4-codecs-kr/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/korean/qt4-codecs-kr/pkg-plist b/korean/qt4-codecs-kr/pkg-plist index d354ae9aac7d..1e19d68738bc 100644 --- a/korean/qt4-codecs-kr/pkg-plist +++ b/korean/qt4-codecs-kr/pkg-plist @@ -1,3 +1,3 @@ lib/qt4/plugins/codecs/libqkrcodecs.so %%DEBUG%%lib/qt4/plugins/codecs/libqkrcodecs.so.debug -@dirrm lib/qt4/plugins/codecs +@dirrmtry lib/qt4/plugins/codecs diff --git a/misc/qt4-doc/Makefile b/misc/qt4-doc/Makefile index f2da4a8c19c9..51bf9617d58a 100644 --- a/misc/qt4-doc/Makefile +++ b/misc/qt4-doc/Makefile @@ -18,31 +18,20 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Multiplatform C++ application framework QT_DIST= yes - NO_BUILD= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/moc'\ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +EXTRACT_AFTER_ARGS=| ${TAR} -xf - '${DISTNAME}/doc' DOCSDIR=${PREFIX}/share/doc/qt4 + do-install: - ${MKDIR} ${DOCSDIR} - ${RM} -f ${WRKSRC}/doc/html/qmake* - ${CP} -Rp ${WRKSRC}/doc/html ${DOCSDIR} + ${MKDIR} ${DOCSDIR} && \ + ${CP} -Rp ${WRKSRC}/doc/html ${WRKSRC}/doc/qch ${DOCSDIR} .include <bsd.port.pre.mk> .include "${.CURDIR}/../../Mk/bsd.qt.mk" diff --git a/misc/qt4-doc/distinfo b/misc/qt4-doc/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/misc/qt4-doc/distinfo +++ b/misc/qt4-doc/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/misc/qt4-doc/pkg-plist b/misc/qt4-doc/pkg-plist index 5cbe817c2860..86cb3022b02b 100644 --- a/misc/qt4-doc/pkg-plist +++ b/misc/qt4-doc/pkg-plist @@ -1,4144 +1,4826 @@ -share/doc/qt4/html/3rdparty.html -share/doc/qt4/html/aboutqt.html -share/doc/qt4/html/abstractwidgets.html -share/doc/qt4/html/accelerators.html -share/doc/qt4/html/accessibility.html -share/doc/qt4/html/accessible.html -share/doc/qt4/html/activeqt-comapp-main-cpp.html -share/doc/qt4/html/activeqt-comapp.html -share/doc/qt4/html/activeqt-dotnet.html -share/doc/qt4/html/activeqt-dumpcpp.html -share/doc/qt4/html/activeqt-dumpdoc.html -share/doc/qt4/html/activeqt-hierarchy-main-cpp.html -share/doc/qt4/html/activeqt-hierarchy-objects-cpp.html -share/doc/qt4/html/activeqt-hierarchy-objects-h.html -share/doc/qt4/html/activeqt-hierarchy.html -share/doc/qt4/html/activeqt-idc.html -share/doc/qt4/html/activeqt-menus-main-cpp.html -share/doc/qt4/html/activeqt-menus-menus-cpp.html -share/doc/qt4/html/activeqt-menus-menus-h.html -share/doc/qt4/html/activeqt-menus.html -share/doc/qt4/html/activeqt-multiple-ax1-h.html -share/doc/qt4/html/activeqt-multiple-ax2-h.html -share/doc/qt4/html/activeqt-multiple-main-cpp.html -share/doc/qt4/html/activeqt-multiple.html -share/doc/qt4/html/activeqt-opengl-glbox-cpp.html -share/doc/qt4/html/activeqt-opengl-glbox-h.html -share/doc/qt4/html/activeqt-opengl-globjwin-cpp.html -share/doc/qt4/html/activeqt-opengl-globjwin-h.html -share/doc/qt4/html/activeqt-opengl-main-cpp.html -share/doc/qt4/html/activeqt-opengl.html -share/doc/qt4/html/activeqt-qutlook-addressview-cpp.html -share/doc/qt4/html/activeqt-qutlook-addressview-h.html -share/doc/qt4/html/activeqt-qutlook-main-cpp.html -share/doc/qt4/html/activeqt-qutlook.html -share/doc/qt4/html/activeqt-simple-main-cpp.html -share/doc/qt4/html/activeqt-simple.html -share/doc/qt4/html/activeqt-testcon.html -share/doc/qt4/html/activeqt-tools.html -share/doc/qt4/html/activeqt-webbrowser-main-cpp.html -share/doc/qt4/html/activeqt-webbrowser-webaxwidget-h.html -share/doc/qt4/html/activeqt-webbrowser.html -share/doc/qt4/html/activeqt-wrapper-main-cpp.html -share/doc/qt4/html/activeqt-wrapper.html -share/doc/qt4/html/activeqt.html -share/doc/qt4/html/advanced.html -share/doc/qt4/html/annotated.html -share/doc/qt4/html/appearance.html -share/doc/qt4/html/appicon.html -share/doc/qt4/html/application.html -share/doc/qt4/html/architecture.html -share/doc/qt4/html/assistant-manual.html -share/doc/qt4/html/assistant-simpletextviewer-findfiledialog-cpp.html -share/doc/qt4/html/assistant-simpletextviewer-findfiledialog-h.html -share/doc/qt4/html/assistant-simpletextviewer-main-cpp.html -share/doc/qt4/html/assistant-simpletextviewer-mainwindow-cpp.html -share/doc/qt4/html/assistant-simpletextviewer-mainwindow-h.html -share/doc/qt4/html/assistant-simpletextviewer.html -share/doc/qt4/html/assistant.dcf -share/doc/qt4/html/atomic-operations.html -share/doc/qt4/html/basicwidgets.html -share/doc/qt4/html/bughowto.html -share/doc/qt4/html/buildsystem.html -share/doc/qt4/html/classes.html -share/doc/qt4/html/classic.css -share/doc/qt4/html/classlists.html -share/doc/qt4/html/codec-big5.html -share/doc/qt4/html/codec-big5hkscs.html -share/doc/qt4/html/codec-eucjp.html -share/doc/qt4/html/codec-euckr.html -share/doc/qt4/html/codec-gbk.html -share/doc/qt4/html/codec-sjis.html -share/doc/qt4/html/codec-tscii.html -share/doc/qt4/html/codecs-jis.html -share/doc/qt4/html/codecs.html -share/doc/qt4/html/commercialeditions.html -share/doc/qt4/html/compatclasses.html -share/doc/qt4/html/compiler-notes.html -share/doc/qt4/html/console-edition-classes.html -share/doc/qt4/html/containers.html -share/doc/qt4/html/coordsys.html -share/doc/qt4/html/credits.html -share/doc/qt4/html/database.html -share/doc/qt4/html/datastreamformat.html -share/doc/qt4/html/debug.html -share/doc/qt4/html/demos-affine-affine-qrc.html -share/doc/qt4/html/demos-affine-main-cpp.html -share/doc/qt4/html/demos-affine-xform-cpp.html -share/doc/qt4/html/demos-affine-xform-h.html -share/doc/qt4/html/demos-affine.html -share/doc/qt4/html/demos-arthurplugin-arthur-plugin-qrc.html -share/doc/qt4/html/demos-arthurplugin-plugin-cpp.html -share/doc/qt4/html/demos-arthurplugin.html -share/doc/qt4/html/demos-books-bookdelegate-cpp.html -share/doc/qt4/html/demos-books-bookdelegate-h.html -share/doc/qt4/html/demos-books-books-qrc.html -share/doc/qt4/html/demos-books-bookwindow-cpp.html -share/doc/qt4/html/demos-books-bookwindow-h.html -share/doc/qt4/html/demos-books-initdb-h.html -share/doc/qt4/html/demos-books-main-cpp.html -share/doc/qt4/html/demos-books.html -share/doc/qt4/html/demos-chip-chip-cpp.html -share/doc/qt4/html/demos-chip-chip-h.html -share/doc/qt4/html/demos-chip-images-qrc.html -share/doc/qt4/html/demos-chip-main-cpp.html -share/doc/qt4/html/demos-chip-mainwindow-cpp.html -share/doc/qt4/html/demos-chip-mainwindow-h.html -share/doc/qt4/html/demos-chip-view-cpp.html -share/doc/qt4/html/demos-chip-view-h.html -share/doc/qt4/html/demos-chip.html -share/doc/qt4/html/demos-composition-composition-cpp.html -share/doc/qt4/html/demos-composition-composition-h.html -share/doc/qt4/html/demos-composition-composition-qrc.html -share/doc/qt4/html/demos-composition-main-cpp.html -share/doc/qt4/html/demos-composition.html -share/doc/qt4/html/demos-deform-deform-qrc.html -share/doc/qt4/html/demos-deform-main-cpp.html -share/doc/qt4/html/demos-deform-pathdeform-cpp.html -share/doc/qt4/html/demos-deform-pathdeform-h.html -share/doc/qt4/html/demos-deform.html -share/doc/qt4/html/demos-gradients-gradients-cpp.html -share/doc/qt4/html/demos-gradients-gradients-h.html -share/doc/qt4/html/demos-gradients-gradients-qrc.html -share/doc/qt4/html/demos-gradients-main-cpp.html -share/doc/qt4/html/demos-gradients.html -share/doc/qt4/html/demos-interview-interview-qrc.html -share/doc/qt4/html/demos-interview-main-cpp.html -share/doc/qt4/html/demos-interview-model-cpp.html -share/doc/qt4/html/demos-interview-model-h.html -share/doc/qt4/html/demos-interview.html -share/doc/qt4/html/demos-mainwindow-colorswatch-cpp.html -share/doc/qt4/html/demos-mainwindow-colorswatch-h.html -share/doc/qt4/html/demos-mainwindow-main-cpp.html -share/doc/qt4/html/demos-mainwindow-mainwindow-cpp.html -share/doc/qt4/html/demos-mainwindow-mainwindow-h.html -share/doc/qt4/html/demos-mainwindow-mainwindow-qrc.html -share/doc/qt4/html/demos-mainwindow-toolbar-cpp.html -share/doc/qt4/html/demos-mainwindow-toolbar-h.html -share/doc/qt4/html/demos-mainwindow.html -share/doc/qt4/html/demos-pathstroke-main-cpp.html -share/doc/qt4/html/demos-pathstroke-pathstroke-cpp.html -share/doc/qt4/html/demos-pathstroke-pathstroke-h.html -share/doc/qt4/html/demos-pathstroke-pathstroke-qrc.html -share/doc/qt4/html/demos-pathstroke.html -share/doc/qt4/html/demos-spreadsheet-main-cpp.html -share/doc/qt4/html/demos-spreadsheet-spreadsheet-qrc.html -share/doc/qt4/html/demos-spreadsheet.html -share/doc/qt4/html/demos-sqlbrowser-browser-cpp.html -share/doc/qt4/html/demos-sqlbrowser-browser-h.html -share/doc/qt4/html/demos-sqlbrowser-connectionwidget-cpp.html -share/doc/qt4/html/demos-sqlbrowser-connectionwidget-h.html -share/doc/qt4/html/demos-sqlbrowser-main-cpp.html -share/doc/qt4/html/demos-sqlbrowser-qsqlconnectiondialog-cpp.html -share/doc/qt4/html/demos-sqlbrowser-qsqlconnectiondialog-h.html -share/doc/qt4/html/demos-sqlbrowser.html -share/doc/qt4/html/demos-textedit-main-cpp.html -share/doc/qt4/html/demos-textedit-printpreview-cpp.html -share/doc/qt4/html/demos-textedit-printpreview-h.html -share/doc/qt4/html/demos-textedit-textedit-cpp.html -share/doc/qt4/html/demos-textedit-textedit-h.html -share/doc/qt4/html/demos-textedit-textedit-qrc.html -share/doc/qt4/html/demos-textedit.html -share/doc/qt4/html/demos-undo-commands-cpp.html -share/doc/qt4/html/demos-undo-commands-h.html -share/doc/qt4/html/demos-undo-document-cpp.html -share/doc/qt4/html/demos-undo-document-h.html -share/doc/qt4/html/demos-undo-main-cpp.html -share/doc/qt4/html/demos-undo-mainwindow-cpp.html -share/doc/qt4/html/demos-undo-mainwindow-h.html -share/doc/qt4/html/demos-undo-undo-qrc.html -share/doc/qt4/html/demos-undo.html -share/doc/qt4/html/demos.html -share/doc/qt4/html/deployment-mac.html -share/doc/qt4/html/deployment-windows.html -share/doc/qt4/html/deployment-x11.html -share/doc/qt4/html/deployment.html -share/doc/qt4/html/designer-buddy-mode.html -share/doc/qt4/html/designer-calculatorbuilder-calculatorbuilder-qrc.html -share/doc/qt4/html/designer-calculatorbuilder-calculatorform-cpp.html -share/doc/qt4/html/designer-calculatorbuilder-calculatorform-h.html -share/doc/qt4/html/designer-calculatorbuilder-main-cpp.html -share/doc/qt4/html/designer-calculatorbuilder.html -share/doc/qt4/html/designer-calculatorform-calculatorform-cpp.html -share/doc/qt4/html/designer-calculatorform-calculatorform-h.html -share/doc/qt4/html/designer-calculatorform-main-cpp.html -share/doc/qt4/html/designer-calculatorform.html -share/doc/qt4/html/designer-connection-mode.html -share/doc/qt4/html/designer-containerextension-multipagewidget-cpp.html -share/doc/qt4/html/designer-containerextension-multipagewidget-h.html -share/doc/qt4/html/designer-containerextension-multipagewidgetcontainerextension-cpp.html -share/doc/qt4/html/designer-containerextension-multipagewidgetcontainerextension-h.html -share/doc/qt4/html/designer-containerextension-multipagewidgetextensionfactory-cpp.html -share/doc/qt4/html/designer-containerextension-multipagewidgetextensionfactory-h.html -share/doc/qt4/html/designer-containerextension-multipagewidgetplugin-cpp.html -share/doc/qt4/html/designer-containerextension-multipagewidgetplugin-h.html -share/doc/qt4/html/designer-containerextension.html -share/doc/qt4/html/designer-creating-custom-widgets-extensions.html -share/doc/qt4/html/designer-creating-custom-widgets.html -share/doc/qt4/html/designer-creating-mainwindows.html -share/doc/qt4/html/designer-customizing-forms.html -share/doc/qt4/html/designer-customwidgetplugin-analogclock-cpp.html -share/doc/qt4/html/designer-customwidgetplugin-analogclock-h.html -share/doc/qt4/html/designer-customwidgetplugin-customwidgetplugin-cpp.html -share/doc/qt4/html/designer-customwidgetplugin-customwidgetplugin-h.html -share/doc/qt4/html/designer-customwidgetplugin.html -share/doc/qt4/html/designer-designing-a-component.html -share/doc/qt4/html/designer-editing-mode.html -share/doc/qt4/html/designer-getting-started.html -share/doc/qt4/html/designer-manual.html -share/doc/qt4/html/designer-recursive-shadow-casting.html -share/doc/qt4/html/designer-resources.html -share/doc/qt4/html/designer-tab-order.html -share/doc/qt4/html/designer-taskmenuextension-tictactoe-cpp.html -share/doc/qt4/html/designer-taskmenuextension-tictactoe-h.html -share/doc/qt4/html/designer-taskmenuextension-tictactoedialog-cpp.html -share/doc/qt4/html/designer-taskmenuextension-tictactoedialog-h.html -share/doc/qt4/html/designer-taskmenuextension-tictactoeplugin-cpp.html -share/doc/qt4/html/designer-taskmenuextension-tictactoeplugin-h.html -share/doc/qt4/html/designer-taskmenuextension-tictactoetaskmenu-cpp.html -share/doc/qt4/html/designer-taskmenuextension-tictactoetaskmenu-h.html -share/doc/qt4/html/designer-taskmenuextension.html -share/doc/qt4/html/designer-ui-file-format.html -share/doc/qt4/html/designer-using-a-component.html -share/doc/qt4/html/designer-using-containers.html -share/doc/qt4/html/designer-using-custom-widgets.html -share/doc/qt4/html/designer-worldtimeclockbuilder-main-cpp.html -share/doc/qt4/html/designer-worldtimeclockbuilder-worldtimeclockbuilder-qrc.html -share/doc/qt4/html/designer-worldtimeclockbuilder.html -share/doc/qt4/html/designer-worldtimeclockplugin-worldtimeclock-cpp.html -share/doc/qt4/html/designer-worldtimeclockplugin-worldtimeclock-h.html -share/doc/qt4/html/designer-worldtimeclockplugin-worldtimeclockplugin-cpp.html -share/doc/qt4/html/designer-worldtimeclockplugin-worldtimeclockplugin-h.html -share/doc/qt4/html/designer-worldtimeclockplugin.html -share/doc/qt4/html/designer.dcf -share/doc/qt4/html/desktop-edition-classes.html -share/doc/qt4/html/desktop-integration.html -share/doc/qt4/html/desktop-light-edition-classes.html -share/doc/qt4/html/desktop-screenshot-main-cpp.html -share/doc/qt4/html/desktop-screenshot-screenshot-cpp.html -share/doc/qt4/html/desktop-screenshot-screenshot-h.html -share/doc/qt4/html/desktop-screenshot.html -share/doc/qt4/html/desktop-systray-main-cpp.html -share/doc/qt4/html/desktop-systray-systray-qrc.html -share/doc/qt4/html/desktop-systray-window-cpp.html -share/doc/qt4/html/desktop-systray-window-h.html -share/doc/qt4/html/desktop-systray.html -share/doc/qt4/html/desktop.html -share/doc/qt4/html/dialogs-classwizard-classwizard-cpp.html -share/doc/qt4/html/dialogs-classwizard-classwizard-h.html -share/doc/qt4/html/dialogs-classwizard-classwizard-qrc.html -share/doc/qt4/html/dialogs-classwizard-main-cpp.html -share/doc/qt4/html/dialogs-classwizard.html -share/doc/qt4/html/dialogs-configdialog-configdialog-cpp.html -share/doc/qt4/html/dialogs-configdialog-configdialog-h.html -share/doc/qt4/html/dialogs-configdialog-configdialog-qrc.html -share/doc/qt4/html/dialogs-configdialog-main-cpp.html -share/doc/qt4/html/dialogs-configdialog-pages-cpp.html -share/doc/qt4/html/dialogs-configdialog-pages-h.html -share/doc/qt4/html/dialogs-configdialog.html -share/doc/qt4/html/dialogs-extension-finddialog-cpp.html -share/doc/qt4/html/dialogs-extension-finddialog-h.html -share/doc/qt4/html/dialogs-extension-main-cpp.html -share/doc/qt4/html/dialogs-extension.html -share/doc/qt4/html/dialogs-findfiles-main-cpp.html -share/doc/qt4/html/dialogs-findfiles-window-cpp.html -share/doc/qt4/html/dialogs-findfiles-window-h.html -share/doc/qt4/html/dialogs-findfiles.html -share/doc/qt4/html/dialogs-licensewizard-licensewizard-cpp.html -share/doc/qt4/html/dialogs-licensewizard-licensewizard-h.html -share/doc/qt4/html/dialogs-licensewizard-licensewizard-qrc.html -share/doc/qt4/html/dialogs-licensewizard-main-cpp.html -share/doc/qt4/html/dialogs-licensewizard.html -share/doc/qt4/html/dialogs-standarddialogs-dialog-cpp.html -share/doc/qt4/html/dialogs-standarddialogs-dialog-h.html -share/doc/qt4/html/dialogs-standarddialogs-main-cpp.html -share/doc/qt4/html/dialogs-standarddialogs.html -share/doc/qt4/html/dialogs-tabdialog-main-cpp.html -share/doc/qt4/html/dialogs-tabdialog-tabdialog-cpp.html -share/doc/qt4/html/dialogs-tabdialog-tabdialog-h.html -share/doc/qt4/html/dialogs-tabdialog.html -share/doc/qt4/html/dialogs-trivialwizard-trivialwizard-cpp.html -share/doc/qt4/html/dialogs-trivialwizard.html -share/doc/qt4/html/dialogs.html -share/doc/qt4/html/dnd.html -share/doc/qt4/html/draganddrop-draggableicons-draggableicons-qrc.html -share/doc/qt4/html/draganddrop-draggableicons-dragwidget-cpp.html -share/doc/qt4/html/draganddrop-draggableicons-dragwidget-h.html -share/doc/qt4/html/draganddrop-draggableicons-main-cpp.html -share/doc/qt4/html/draganddrop-draggableicons.html -share/doc/qt4/html/draganddrop-draggabletext-draggabletext-qrc.html -share/doc/qt4/html/draganddrop-draggabletext-draglabel-cpp.html -share/doc/qt4/html/draganddrop-draggabletext-draglabel-h.html -share/doc/qt4/html/draganddrop-draggabletext-dragwidget-cpp.html -share/doc/qt4/html/draganddrop-draggabletext-dragwidget-h.html -share/doc/qt4/html/draganddrop-draggabletext-main-cpp.html -share/doc/qt4/html/draganddrop-draggabletext.html -share/doc/qt4/html/draganddrop-dropsite-droparea-cpp.html -share/doc/qt4/html/draganddrop-dropsite-droparea-h.html -share/doc/qt4/html/draganddrop-dropsite-dropsitewindow-cpp.html -share/doc/qt4/html/draganddrop-dropsite-dropsitewindow-h.html -share/doc/qt4/html/draganddrop-dropsite-main-cpp.html -share/doc/qt4/html/draganddrop-dropsite.html -share/doc/qt4/html/draganddrop-fridgemagnets-draglabel-cpp.html -share/doc/qt4/html/draganddrop-fridgemagnets-draglabel-h.html -share/doc/qt4/html/draganddrop-fridgemagnets-dragwidget-cpp.html -share/doc/qt4/html/draganddrop-fridgemagnets-dragwidget-h.html -share/doc/qt4/html/draganddrop-fridgemagnets-fridgemagnets-qrc.html -share/doc/qt4/html/draganddrop-fridgemagnets-main-cpp.html -share/doc/qt4/html/draganddrop-fridgemagnets.html -share/doc/qt4/html/draganddrop-puzzle-main-cpp.html -share/doc/qt4/html/draganddrop-puzzle-mainwindow-cpp.html -share/doc/qt4/html/draganddrop-puzzle-mainwindow-h.html -share/doc/qt4/html/draganddrop-puzzle-pieceslist-cpp.html -share/doc/qt4/html/draganddrop-puzzle-pieceslist-h.html -share/doc/qt4/html/draganddrop-puzzle-puzzle-qrc.html -share/doc/qt4/html/draganddrop-puzzle-puzzlewidget-cpp.html -share/doc/qt4/html/draganddrop-puzzle-puzzlewidget-h.html -share/doc/qt4/html/draganddrop-puzzle.html -share/doc/qt4/html/draganddrop.html -share/doc/qt4/html/ecmascript.html -share/doc/qt4/html/editions.html -share/doc/qt4/html/environment.html -share/doc/qt4/html/events.html -share/doc/qt4/html/eventsandfilters.html -share/doc/qt4/html/examples-overview.html -share/doc/qt4/html/examples.html -share/doc/qt4/html/exportedfunctions.html -share/doc/qt4/html/focus.html -share/doc/qt4/html/functions.html -share/doc/qt4/html/gallery-cde.html -share/doc/qt4/html/gallery-cleanlooks.html -share/doc/qt4/html/gallery-macintosh.html -share/doc/qt4/html/gallery-motif.html -share/doc/qt4/html/gallery-plastique.html -share/doc/qt4/html/gallery-windows.html -share/doc/qt4/html/gallery-windowsvista.html -share/doc/qt4/html/gallery-windowsxp.html -share/doc/qt4/html/gallery.html -share/doc/qt4/html/geomanagement.html -share/doc/qt4/html/geometry.html -share/doc/qt4/html/gpl.html -share/doc/qt4/html/graphicsview-collidingmice-main-cpp.html -share/doc/qt4/html/graphicsview-collidingmice-mice-qrc.html -share/doc/qt4/html/graphicsview-collidingmice-mouse-cpp.html -share/doc/qt4/html/graphicsview-collidingmice-mouse-h.html -share/doc/qt4/html/graphicsview-collidingmice.html -share/doc/qt4/html/graphicsview-diagramscene-arrow-cpp.html -share/doc/qt4/html/graphicsview-diagramscene-arrow-h.html -share/doc/qt4/html/graphicsview-diagramscene-diagramitem-cpp.html -share/doc/qt4/html/graphicsview-diagramscene-diagramitem-h.html -share/doc/qt4/html/graphicsview-diagramscene-diagramscene-cpp.html -share/doc/qt4/html/graphicsview-diagramscene-diagramscene-h.html -share/doc/qt4/html/graphicsview-diagramscene-diagramscene-qrc.html -share/doc/qt4/html/graphicsview-diagramscene-diagramtextitem-cpp.html -share/doc/qt4/html/graphicsview-diagramscene-diagramtextitem-h.html -share/doc/qt4/html/graphicsview-diagramscene-main-cpp.html -share/doc/qt4/html/graphicsview-diagramscene-mainwindow-cpp.html -share/doc/qt4/html/graphicsview-diagramscene-mainwindow-h.html -share/doc/qt4/html/graphicsview-diagramscene.html -share/doc/qt4/html/graphicsview-dragdroprobot-coloritem-cpp.html -share/doc/qt4/html/graphicsview-dragdroprobot-coloritem-h.html -share/doc/qt4/html/graphicsview-dragdroprobot-main-cpp.html -share/doc/qt4/html/graphicsview-dragdroprobot-robot-cpp.html -share/doc/qt4/html/graphicsview-dragdroprobot-robot-h.html -share/doc/qt4/html/graphicsview-dragdroprobot-robot-qrc.html -share/doc/qt4/html/graphicsview-dragdroprobot.html -share/doc/qt4/html/graphicsview-elasticnodes-edge-cpp.html -share/doc/qt4/html/graphicsview-elasticnodes-edge-h.html -share/doc/qt4/html/graphicsview-elasticnodes-graphwidget-cpp.html -share/doc/qt4/html/graphicsview-elasticnodes-graphwidget-h.html -share/doc/qt4/html/graphicsview-elasticnodes-main-cpp.html -share/doc/qt4/html/graphicsview-elasticnodes-node-cpp.html -share/doc/qt4/html/graphicsview-elasticnodes-node-h.html -share/doc/qt4/html/graphicsview-elasticnodes.html -share/doc/qt4/html/graphicsview-portedasteroids-animateditem-cpp.html -share/doc/qt4/html/graphicsview-portedasteroids-animateditem-h.html -share/doc/qt4/html/graphicsview-portedasteroids-ledmeter-cpp.html -share/doc/qt4/html/graphicsview-portedasteroids-ledmeter-h.html -share/doc/qt4/html/graphicsview-portedasteroids-main-cpp.html -share/doc/qt4/html/graphicsview-portedasteroids-portedasteroids-qrc.html -share/doc/qt4/html/graphicsview-portedasteroids-sprites-h.html -share/doc/qt4/html/graphicsview-portedasteroids-toplevel-cpp.html -share/doc/qt4/html/graphicsview-portedasteroids-toplevel-h.html -share/doc/qt4/html/graphicsview-portedasteroids-view-cpp.html -share/doc/qt4/html/graphicsview-portedasteroids-view-h.html -share/doc/qt4/html/graphicsview-portedasteroids.html -share/doc/qt4/html/graphicsview-portedcanvas-blendshadow-cpp.html -share/doc/qt4/html/graphicsview-portedcanvas-canvas-cpp.html -share/doc/qt4/html/graphicsview-portedcanvas-canvas-h.html -share/doc/qt4/html/graphicsview-portedcanvas-main-cpp.html -share/doc/qt4/html/graphicsview-portedcanvas-makeimg-cpp.html -share/doc/qt4/html/graphicsview-portedcanvas-portedcanvas-qrc.html -share/doc/qt4/html/graphicsview-portedcanvas.html -share/doc/qt4/html/graphicsview-porting.html -share/doc/qt4/html/graphicsview.html -share/doc/qt4/html/groups.html -share/doc/qt4/html/gui-programming.html -share/doc/qt4/html/guibooks.html -share/doc/qt4/html/helpsystem.html -share/doc/qt4/html/hierarchy.html -share/doc/qt4/html/how-to-learn-qt.html -share/doc/qt4/html/howto.html -share/doc/qt4/html/i18n.html -share/doc/qt4/html/images/2dpainting-example.png -share/doc/qt4/html/images/abstract-connections.png -share/doc/qt4/html/images/accessibilityarchitecture.png -share/doc/qt4/html/images/accessibleobjecttree.png -share/doc/qt4/html/images/affine-demo.png -share/doc/qt4/html/images/alphachannelimage.png -share/doc/qt4/html/images/alphafill.png -share/doc/qt4/html/images/analogclock-example.png -share/doc/qt4/html/images/analogclock-viewport.png -share/doc/qt4/html/images/antialiased.png -share/doc/qt4/html/images/application-menus.png -share/doc/qt4/html/images/application.png -share/doc/qt4/html/images/arthurplugin-demo.png -share/doc/qt4/html/images/assistant-assistant.png -share/doc/qt4/html/images/assistant-docwindow.png -share/doc/qt4/html/images/assistant-examples.png -share/doc/qt4/html/images/assistant-search.png -share/doc/qt4/html/images/assistant-sidebar.png -share/doc/qt4/html/images/assistant-toolbar1.png -share/doc/qt4/html/images/basicdrawing-example.png -share/doc/qt4/html/images/basiclayouts-example.png -share/doc/qt4/html/images/basicsortfiltermodel-example.png -share/doc/qt4/html/images/bearings.png -share/doc/qt4/html/images/blockingfortuneclient-example.png -share/doc/qt4/html/images/books-demo.png -share/doc/qt4/html/images/borderlayout-example.png -share/doc/qt4/html/images/branchindicatorimage.png -share/doc/qt4/html/images/broadcastreceiver-example.png -share/doc/qt4/html/images/broadcastsender-example.png -share/doc/qt4/html/images/brush-outline.png -share/doc/qt4/html/images/brush-styles.png -share/doc/qt4/html/images/button.png -share/doc/qt4/html/images/buttonbox-gnomelayout-horizontal.png -share/doc/qt4/html/images/buttonbox-gnomelayout-vertical.png -share/doc/qt4/html/images/buttonbox-kdelayout-horizontal.png -share/doc/qt4/html/images/buttonbox-kdelayout-vertical.png -share/doc/qt4/html/images/buttonbox-mac-modeless-horizontal.png -share/doc/qt4/html/images/buttonbox-mac-modeless-vertical.png -share/doc/qt4/html/images/buttonbox-maclayout-horizontal.png -share/doc/qt4/html/images/buttonbox-maclayout-vertical.png -share/doc/qt4/html/images/buttonbox-winlayout-horizontal.png -share/doc/qt4/html/images/buttonbox-winlayout-vertical.png -share/doc/qt4/html/images/cachedtable-example.png -share/doc/qt4/html/images/calculator-example.png -share/doc/qt4/html/images/calculator-ugly.png -share/doc/qt4/html/images/calculatorbuilder-example.png -share/doc/qt4/html/images/calculatorform-example.png -share/doc/qt4/html/images/calendar-example.png -share/doc/qt4/html/images/calendarwidgetexample.png -share/doc/qt4/html/images/cde-calendarwidget.png -share/doc/qt4/html/images/cde-checkbox.png -share/doc/qt4/html/images/cde-combobox.png -share/doc/qt4/html/images/cde-dateedit.png -share/doc/qt4/html/images/cde-datetimeedit.png -share/doc/qt4/html/images/cde-dial.png -share/doc/qt4/html/images/cde-doublespinbox.png -share/doc/qt4/html/images/cde-fontcombobox.png -share/doc/qt4/html/images/cde-frame.png -share/doc/qt4/html/images/cde-groupbox.png -share/doc/qt4/html/images/cde-horizontalscrollbar.png -share/doc/qt4/html/images/cde-label.png -share/doc/qt4/html/images/cde-lcdnumber.png -share/doc/qt4/html/images/cde-lineedit.png -share/doc/qt4/html/images/cde-listview.png -share/doc/qt4/html/images/cde-progressbar.png -share/doc/qt4/html/images/cde-pushbutton.png -share/doc/qt4/html/images/cde-radiobutton.png -share/doc/qt4/html/images/cde-slider.png -share/doc/qt4/html/images/cde-spinbox.png -share/doc/qt4/html/images/cde-tableview.png -share/doc/qt4/html/images/cde-tabwidget.png -share/doc/qt4/html/images/cde-textedit.png -share/doc/qt4/html/images/cde-timeedit.png -share/doc/qt4/html/images/cde-toolbox.png -share/doc/qt4/html/images/cde-toolbutton.png -share/doc/qt4/html/images/cde-treeview.png -share/doc/qt4/html/images/charactermap-example.png -share/doc/qt4/html/images/chart-example.png -share/doc/qt4/html/images/chat-example.png -share/doc/qt4/html/images/checkbox.png -share/doc/qt4/html/images/checkboxexample.png -share/doc/qt4/html/images/chip-demo.png -share/doc/qt4/html/images/classwizard-flow.png -share/doc/qt4/html/images/classwizard.png -share/doc/qt4/html/images/cleanlooks-calendarwidget.png -share/doc/qt4/html/images/cleanlooks-checkbox.png -share/doc/qt4/html/images/cleanlooks-combobox.png -share/doc/qt4/html/images/cleanlooks-dateedit.png -share/doc/qt4/html/images/cleanlooks-datetimeedit.png -share/doc/qt4/html/images/cleanlooks-dial.png -share/doc/qt4/html/images/cleanlooks-doublespinbox.png -share/doc/qt4/html/images/cleanlooks-fontcombobox.png -share/doc/qt4/html/images/cleanlooks-frame.png -share/doc/qt4/html/images/cleanlooks-groupbox.png -share/doc/qt4/html/images/cleanlooks-horizontalscrollbar.png -share/doc/qt4/html/images/cleanlooks-label.png -share/doc/qt4/html/images/cleanlooks-lcdnumber.png -share/doc/qt4/html/images/cleanlooks-lineedit.png -share/doc/qt4/html/images/cleanlooks-listview.png -share/doc/qt4/html/images/cleanlooks-progressbar.png -share/doc/qt4/html/images/cleanlooks-pushbutton-menu.png -share/doc/qt4/html/images/cleanlooks-pushbutton.png -share/doc/qt4/html/images/cleanlooks-radiobutton.png -share/doc/qt4/html/images/cleanlooks-slider.png -share/doc/qt4/html/images/cleanlooks-spinbox.png -share/doc/qt4/html/images/cleanlooks-tableview.png -share/doc/qt4/html/images/cleanlooks-tabwidget.png -share/doc/qt4/html/images/cleanlooks-textedit.png -share/doc/qt4/html/images/cleanlooks-timeedit.png -share/doc/qt4/html/images/cleanlooks-toolbox.png -share/doc/qt4/html/images/cleanlooks-toolbutton.png -share/doc/qt4/html/images/cleanlooks-treeview.png -share/doc/qt4/html/images/codecs-example.png -share/doc/qt4/html/images/collidingmice-example.png -share/doc/qt4/html/images/coloreditorfactoryimage.png -share/doc/qt4/html/images/combobox.png -share/doc/qt4/html/images/comboboximage.png -share/doc/qt4/html/images/completer-example-country.png -share/doc/qt4/html/images/completer-example-dirmodel.png -share/doc/qt4/html/images/completer-example-qdirmodel.png -share/doc/qt4/html/images/completer-example-word.png -share/doc/qt4/html/images/completer-example.png -share/doc/qt4/html/images/composition-demo.png -share/doc/qt4/html/images/concentriccircles-example.png -share/doc/qt4/html/images/conceptualpushbuttontree.png -share/doc/qt4/html/images/configdialog-example.png -share/doc/qt4/html/images/conicalGradient.png -share/doc/qt4/html/images/containerextension-example.png -share/doc/qt4/html/images/context2d-example.png -share/doc/qt4/html/images/coordinatesystem-analogclock.png -share/doc/qt4/html/images/coordinatesystem-line-antialias.png -share/doc/qt4/html/images/coordinatesystem-line-raster.png -share/doc/qt4/html/images/coordinatesystem-line.png -share/doc/qt4/html/images/coordinatesystem-rect-antialias.png -share/doc/qt4/html/images/coordinatesystem-rect-raster.png -share/doc/qt4/html/images/coordinatesystem-rect.png -share/doc/qt4/html/images/coordinatesystem-transformations.png -share/doc/qt4/html/images/cursor-arrow.png -share/doc/qt4/html/images/cursor-busy.png -share/doc/qt4/html/images/cursor-closedhand.png -share/doc/qt4/html/images/cursor-cross.png -share/doc/qt4/html/images/cursor-forbidden.png -share/doc/qt4/html/images/cursor-hand.png -share/doc/qt4/html/images/cursor-hsplit.png -share/doc/qt4/html/images/cursor-ibeam.png -share/doc/qt4/html/images/cursor-openhand.png -share/doc/qt4/html/images/cursor-sizeall.png -share/doc/qt4/html/images/cursor-sizeb.png -share/doc/qt4/html/images/cursor-sizef.png -share/doc/qt4/html/images/cursor-sizeh.png -share/doc/qt4/html/images/cursor-sizev.png -share/doc/qt4/html/images/cursor-uparrow.png -share/doc/qt4/html/images/cursor-vsplit.png -share/doc/qt4/html/images/cursor-wait.png -share/doc/qt4/html/images/cursor-whatsthis.png -share/doc/qt4/html/images/customcompleter-example.png -share/doc/qt4/html/images/customcompleter-insertcompletion.png -share/doc/qt4/html/images/customsortfiltermodel-example.png -share/doc/qt4/html/images/customwidgetplugin-example.png -share/doc/qt4/html/images/datetimewidgets.png -share/doc/qt4/html/images/defaultprototypes-example.png -share/doc/qt4/html/images/deform-demo.png -share/doc/qt4/html/images/dependencies.png -share/doc/qt4/html/images/deployment-mac-application.png -share/doc/qt4/html/images/deployment-mac-bundlestructure.png -share/doc/qt4/html/images/deployment-windows-depends.png -share/doc/qt4/html/images/designer-action-editor.png -share/doc/qt4/html/images/designer-adding-dockwidget.png -share/doc/qt4/html/images/designer-adding-dynamic-property.png -share/doc/qt4/html/images/designer-adding-menu-action.png -share/doc/qt4/html/images/designer-adding-toolbar-action.png -share/doc/qt4/html/images/designer-buddy-making.png -share/doc/qt4/html/images/designer-buddy-mode.png -share/doc/qt4/html/images/designer-buddy-tool.png -share/doc/qt4/html/images/designer-choosing-form.png -share/doc/qt4/html/images/designer-connection-dialog.png -share/doc/qt4/html/images/designer-connection-editing.png -share/doc/qt4/html/images/designer-connection-editor.png -share/doc/qt4/html/images/designer-connection-highlight.png -share/doc/qt4/html/images/designer-connection-making.png -share/doc/qt4/html/images/designer-connection-mode.png -share/doc/qt4/html/images/designer-connection-to-form.png -share/doc/qt4/html/images/designer-connection-tool.png -share/doc/qt4/html/images/designer-containers-dockwidget.png -share/doc/qt4/html/images/designer-containers-frame.png -share/doc/qt4/html/images/designer-containers-groupbox.png -share/doc/qt4/html/images/designer-containers-stackedwidget.png -share/doc/qt4/html/images/designer-containers-tabwidget.png -share/doc/qt4/html/images/designer-containers-toolbox.png -share/doc/qt4/html/images/designer-creating-dynamic-property.png -share/doc/qt4/html/images/designer-creating-menu-entry1.png -share/doc/qt4/html/images/designer-creating-menu-entry2.png -share/doc/qt4/html/images/designer-creating-menu-entry3.png -share/doc/qt4/html/images/designer-creating-menu-entry4.png -share/doc/qt4/html/images/designer-creating-menu1.png -share/doc/qt4/html/images/designer-creating-menu2.png -share/doc/qt4/html/images/designer-creating-menu3.png -share/doc/qt4/html/images/designer-creating-menu4.png -share/doc/qt4/html/images/designer-dialog-final.png -share/doc/qt4/html/images/designer-dialog-initial.png -share/doc/qt4/html/images/designer-dialog-layout.png -share/doc/qt4/html/images/designer-dialog-preview.png -share/doc/qt4/html/images/designer-dragging-onto-form.png -share/doc/qt4/html/images/designer-edit-resource.png -share/doc/qt4/html/images/designer-editing-mode.png -share/doc/qt4/html/images/designer-examples.png -share/doc/qt4/html/images/designer-form-layoutfunction.png -share/doc/qt4/html/images/designer-form-settings.png -share/doc/qt4/html/images/designer-getting-started.png -share/doc/qt4/html/images/designer-layout-inserting.png -share/doc/qt4/html/images/designer-main-window.png -share/doc/qt4/html/images/designer-making-connection.png -share/doc/qt4/html/images/designer-manual-containerextension.png -share/doc/qt4/html/images/designer-manual-membersheetextension.png -share/doc/qt4/html/images/designer-manual-propertysheetextension.png -share/doc/qt4/html/images/designer-manual-taskmenuextension.png -share/doc/qt4/html/images/designer-object-inspector.png -share/doc/qt4/html/images/designer-promoting-widgets.png -share/doc/qt4/html/images/designer-property-editor-link.png -share/doc/qt4/html/images/designer-property-editor.png -share/doc/qt4/html/images/designer-resource-editor.png -share/doc/qt4/html/images/designer-resources-editing.png -share/doc/qt4/html/images/designer-resources-using.png -share/doc/qt4/html/images/designer-selecting-widget.png -share/doc/qt4/html/images/designer-splitter-layout.png -share/doc/qt4/html/images/designer-tab-order-mode.png -share/doc/qt4/html/images/designer-tab-order-tool.png -share/doc/qt4/html/images/designer-validator-highlighter.png -share/doc/qt4/html/images/designer-widget-box.png -share/doc/qt4/html/images/designer-widget-tool.png -share/doc/qt4/html/images/desktop-examples.png -share/doc/qt4/html/images/diagonalGradient.png -share/doc/qt4/html/images/diagramscene.png -share/doc/qt4/html/images/dialog-examples.png -share/doc/qt4/html/images/digitalclock-example.png -share/doc/qt4/html/images/directapproach-calculatorform.png -share/doc/qt4/html/images/dirview-example.png -share/doc/qt4/html/images/dockwidget.png -share/doc/qt4/html/images/dockwidgetimage.png -share/doc/qt4/html/images/dockwidgets-example.png -share/doc/qt4/html/images/dombookmarks-example.png -share/doc/qt4/html/images/draganddrop-examples.png -share/doc/qt4/html/images/draganddroppuzzle-example.png -share/doc/qt4/html/images/dragdroprobot-example.png -share/doc/qt4/html/images/draggableicons-example.png -share/doc/qt4/html/images/draggabletext-example.png -share/doc/qt4/html/images/drilldown-example.png -share/doc/qt4/html/images/dropsite-example.png -share/doc/qt4/html/images/echopluginexample.png -share/doc/qt4/html/images/elasticnodes-example.png -share/doc/qt4/html/images/extension-example.png -share/doc/qt4/html/images/extension_more.png -share/doc/qt4/html/images/findfiles-example.png -share/doc/qt4/html/images/findfiles_progress_dialog.png -share/doc/qt4/html/images/flowlayout-example.png -share/doc/qt4/html/images/fontsampler-example.png -share/doc/qt4/html/images/foreignkeys.png -share/doc/qt4/html/images/fortuneclient-example.png -share/doc/qt4/html/images/fortuneserver-example.png -share/doc/qt4/html/images/framebufferobject-example.png -share/doc/qt4/html/images/framebufferobject2-example.png -share/doc/qt4/html/images/frames.png -share/doc/qt4/html/images/fridgemagnets-example.png -share/doc/qt4/html/images/ftp-example.png -share/doc/qt4/html/images/geometry.png -share/doc/qt4/html/images/grabber-example.png -share/doc/qt4/html/images/gradientText.png -share/doc/qt4/html/images/gradients-demo.png -share/doc/qt4/html/images/graphicsview-ellipseitem-pie.png -share/doc/qt4/html/images/graphicsview-ellipseitem.png -share/doc/qt4/html/images/graphicsview-examples.png -share/doc/qt4/html/images/graphicsview-items.png -share/doc/qt4/html/images/graphicsview-lineitem.png -share/doc/qt4/html/images/graphicsview-parentchild.png -share/doc/qt4/html/images/graphicsview-pathitem.png -share/doc/qt4/html/images/graphicsview-pixmapitem.png -share/doc/qt4/html/images/graphicsview-polygonitem.png -share/doc/qt4/html/images/graphicsview-rectitem.png -share/doc/qt4/html/images/graphicsview-simpletextitem.png -share/doc/qt4/html/images/graphicsview-textitem.png -share/doc/qt4/html/images/graphicsview-view.png -share/doc/qt4/html/images/graphicsview-zorder.png -share/doc/qt4/html/images/gridlayout.png -share/doc/qt4/html/images/groupbox-example.png -share/doc/qt4/html/images/groupbox.png -share/doc/qt4/html/images/groupboximage.png -share/doc/qt4/html/images/header.png -share/doc/qt4/html/images/headerimage.png -share/doc/qt4/html/images/hellogl-example.png -share/doc/qt4/html/images/http-example.png -share/doc/qt4/html/images/httpstack.png -share/doc/qt4/html/images/i18n-example.png -share/doc/qt4/html/images/icon.png -share/doc/qt4/html/images/icons-example.png -share/doc/qt4/html/images/icons-view-menu.png -share/doc/qt4/html/images/icons_find_normal.png -share/doc/qt4/html/images/icons_find_normal_disabled.png -share/doc/qt4/html/images/icons_images_groupbox.png -share/doc/qt4/html/images/icons_monkey.png -share/doc/qt4/html/images/icons_monkey_active.png -share/doc/qt4/html/images/icons_monkey_mess.png -share/doc/qt4/html/images/icons_preview_area.png -share/doc/qt4/html/images/icons_qtopia_16x16.png -share/doc/qt4/html/images/icons_qtopia_17x17.png -share/doc/qt4/html/images/icons_qtopia_32x32.png -share/doc/qt4/html/images/icons_qtopia_33x33.png -share/doc/qt4/html/images/icons_qtopia_48x48.png -share/doc/qt4/html/images/icons_qtopia_64x64.png -share/doc/qt4/html/images/icons_qtopia_8x8.png -share/doc/qt4/html/images/icons_size_groupbox.png -share/doc/qt4/html/images/icons_size_spinbox.png -share/doc/qt4/html/images/imagecomposition-example.png -share/doc/qt4/html/images/imageviewer-example.png -share/doc/qt4/html/images/imageviewer-original_size.png -share/doc/qt4/html/images/imageviewer-zoom_in_1.png -share/doc/qt4/html/images/imageviewer-zoom_in_2.png -share/doc/qt4/html/images/inputdialogs.png -share/doc/qt4/html/images/insertrowinmodelview.png -share/doc/qt4/html/images/interview-demo.png -share/doc/qt4/html/images/interview-shareddirmodel.png -share/doc/qt4/html/images/itemview-examples.png -share/doc/qt4/html/images/itemviews-editabletreemodel-indexes.png -share/doc/qt4/html/images/itemviews-editabletreemodel-items.png -share/doc/qt4/html/images/itemviews-editabletreemodel-model.png -share/doc/qt4/html/images/itemviews-editabletreemodel-values.png -share/doc/qt4/html/images/itemviews-editabletreemodel.png -share/doc/qt4/html/images/itemviewspuzzle-example.png -share/doc/qt4/html/images/javaiterators1.png -share/doc/qt4/html/images/javaiterators2.png -share/doc/qt4/html/images/layout-examples.png -share/doc/qt4/html/images/layout1.png -share/doc/qt4/html/images/layout2.png -share/doc/qt4/html/images/licensewizard-example.png -share/doc/qt4/html/images/licensewizard-flow.png -share/doc/qt4/html/images/lineedits-example.png -share/doc/qt4/html/images/linguist-arrowpad_en.png -share/doc/qt4/html/images/linguist-arrowpad_fr.png -share/doc/qt4/html/images/linguist-arrowpad_nl.png -share/doc/qt4/html/images/linguist-doneandnext.png -share/doc/qt4/html/images/linguist-editcopy.png -share/doc/qt4/html/images/linguist-editcut.png -share/doc/qt4/html/images/linguist-editfind.png -share/doc/qt4/html/images/linguist-editpaste.png -share/doc/qt4/html/images/linguist-editredo.png -share/doc/qt4/html/images/linguist-editundo.png -share/doc/qt4/html/images/linguist-examples.png -share/doc/qt4/html/images/linguist-fileopen.png -share/doc/qt4/html/images/linguist-fileprint.png -share/doc/qt4/html/images/linguist-filesave.png -share/doc/qt4/html/images/linguist-finddialog.png -share/doc/qt4/html/images/linguist-hellotr_en.png -share/doc/qt4/html/images/linguist-hellotr_la.png -share/doc/qt4/html/images/linguist-linguist.png -share/doc/qt4/html/images/linguist-menubar.png -share/doc/qt4/html/images/linguist-next.png -share/doc/qt4/html/images/linguist-nextunfinished.png -share/doc/qt4/html/images/linguist-phrasebookdialog.png -share/doc/qt4/html/images/linguist-phrasebookopen.png -share/doc/qt4/html/images/linguist-prev.png -share/doc/qt4/html/images/linguist-prevunfinished.png -share/doc/qt4/html/images/linguist-toolbar.png -share/doc/qt4/html/images/linguist-trollprint_10_en.png -share/doc/qt4/html/images/linguist-trollprint_10_pt_bad.png -share/doc/qt4/html/images/linguist-trollprint_10_pt_good.png -share/doc/qt4/html/images/linguist-trollprint_11_en.png -share/doc/qt4/html/images/linguist-trollprint_11_pt.png -share/doc/qt4/html/images/linguist-validateaccelerators.png -share/doc/qt4/html/images/linguist-validatephrases.png -share/doc/qt4/html/images/linguist-validatepunctuation.png -share/doc/qt4/html/images/loopback-example.png -share/doc/qt4/html/images/macintosh-calendarwidget.png -share/doc/qt4/html/images/macintosh-checkbox.png -share/doc/qt4/html/images/macintosh-combobox.png -share/doc/qt4/html/images/macintosh-dateedit.png -share/doc/qt4/html/images/macintosh-datetimeedit.png -share/doc/qt4/html/images/macintosh-dial.png -share/doc/qt4/html/images/macintosh-doublespinbox.png -share/doc/qt4/html/images/macintosh-fontcombobox.png -share/doc/qt4/html/images/macintosh-frame.png -share/doc/qt4/html/images/macintosh-groupbox.png -share/doc/qt4/html/images/macintosh-horizontalscrollbar.png -share/doc/qt4/html/images/macintosh-label.png -share/doc/qt4/html/images/macintosh-lcdnumber.png -share/doc/qt4/html/images/macintosh-lineedit.png -share/doc/qt4/html/images/macintosh-listview.png -share/doc/qt4/html/images/macintosh-menu.png -share/doc/qt4/html/images/macintosh-progressbar.png -share/doc/qt4/html/images/macintosh-pushbutton.png -share/doc/qt4/html/images/macintosh-radiobutton.png -share/doc/qt4/html/images/macintosh-slider.png -share/doc/qt4/html/images/macintosh-spinbox.png -share/doc/qt4/html/images/macintosh-tableview.png -share/doc/qt4/html/images/macintosh-tabwidget.png -share/doc/qt4/html/images/macintosh-textedit.png -share/doc/qt4/html/images/macintosh-timeedit.png -share/doc/qt4/html/images/macintosh-toolbox.png -share/doc/qt4/html/images/macintosh-toolbutton.png -share/doc/qt4/html/images/macintosh-treeview.png -share/doc/qt4/html/images/macintosh-unified-toolbar.png -share/doc/qt4/html/images/mainwindow-custom-dock.png -share/doc/qt4/html/images/mainwindow-demo.png -share/doc/qt4/html/images/mainwindow-docks-example.png -share/doc/qt4/html/images/mainwindow-docks.png -share/doc/qt4/html/images/mainwindow-examples.png -share/doc/qt4/html/images/mainwindow-vertical-dock.png -share/doc/qt4/html/images/mainwindow-vertical-tabs.png -share/doc/qt4/html/images/mainwindowlayout.png -share/doc/qt4/html/images/mandelbrot-example.png -share/doc/qt4/html/images/mandelbrot_scroll1.png -share/doc/qt4/html/images/mandelbrot_scroll2.png -share/doc/qt4/html/images/mandelbrot_scroll3.png -share/doc/qt4/html/images/mandelbrot_zoom1.png -share/doc/qt4/html/images/mandelbrot_zoom2.png -share/doc/qt4/html/images/mandelbrot_zoom3.png -share/doc/qt4/html/images/masterdetail-example.png -share/doc/qt4/html/images/mdi-example.png -share/doc/qt4/html/images/menu.png -share/doc/qt4/html/images/menubar.png -share/doc/qt4/html/images/menubarimage.png -share/doc/qt4/html/images/menuimage.png -share/doc/qt4/html/images/menus-example.png -share/doc/qt4/html/images/modelindex-no-parent.png -share/doc/qt4/html/images/modelview-begin-append-columns.png -share/doc/qt4/html/images/modelview-begin-append-rows.png -share/doc/qt4/html/images/modelview-begin-insert-columns.png -share/doc/qt4/html/images/modelview-begin-insert-rows.png -share/doc/qt4/html/images/modelview-begin-remove-columns.png -share/doc/qt4/html/images/modelview-begin-remove-rows.png -share/doc/qt4/html/images/modelview-models.png -share/doc/qt4/html/images/modelview-overview.png -share/doc/qt4/html/images/modelview-roles.png -share/doc/qt4/html/images/modelview-tablemodel.png -share/doc/qt4/html/images/modelview-treemodel.png -share/doc/qt4/html/images/motif-calendarwidget.png -share/doc/qt4/html/images/motif-checkbox.png -share/doc/qt4/html/images/motif-combobox.png -share/doc/qt4/html/images/motif-dateedit.png -share/doc/qt4/html/images/motif-datetimeedit.png -share/doc/qt4/html/images/motif-dial.png -share/doc/qt4/html/images/motif-doublespinbox.png -share/doc/qt4/html/images/motif-fontcombobox.png -share/doc/qt4/html/images/motif-frame.png -share/doc/qt4/html/images/motif-groupbox.png -share/doc/qt4/html/images/motif-horizontalscrollbar.png -share/doc/qt4/html/images/motif-label.png -share/doc/qt4/html/images/motif-lcdnumber.png -share/doc/qt4/html/images/motif-lineedit.png -share/doc/qt4/html/images/motif-listview.png -share/doc/qt4/html/images/motif-menubar.png -share/doc/qt4/html/images/motif-progressbar.png -share/doc/qt4/html/images/motif-pushbutton.png -share/doc/qt4/html/images/motif-radiobutton.png -share/doc/qt4/html/images/motif-slider.png -share/doc/qt4/html/images/motif-spinbox.png -share/doc/qt4/html/images/motif-tableview.png -share/doc/qt4/html/images/motif-tabwidget.png -share/doc/qt4/html/images/motif-textedit.png -share/doc/qt4/html/images/motif-timeedit.png -share/doc/qt4/html/images/motif-toolbox.png -share/doc/qt4/html/images/motif-toolbutton.png -share/doc/qt4/html/images/motif-treeview.png -share/doc/qt4/html/images/movie-example.png -share/doc/qt4/html/images/multipleinheritance-example.png -share/doc/qt4/html/images/network-examples.png -share/doc/qt4/html/images/noforeignkeys.png -share/doc/qt4/html/images/opengl-examples.png -share/doc/qt4/html/images/orderform-example-detailsdialog.png -share/doc/qt4/html/images/orderform-example.png -share/doc/qt4/html/images/overpainting-example.png -share/doc/qt4/html/images/painterpaths-example.png -share/doc/qt4/html/images/painting-examples.png -share/doc/qt4/html/images/paintsystem-antialiasing.png -share/doc/qt4/html/images/paintsystem-core.png -share/doc/qt4/html/images/paintsystem-devices.png -share/doc/qt4/html/images/paintsystem-fancygradient.png -share/doc/qt4/html/images/paintsystem-gradients.png -share/doc/qt4/html/images/paintsystem-icon.png -share/doc/qt4/html/images/paintsystem-movie.png -share/doc/qt4/html/images/paintsystem-painterpath.png -share/doc/qt4/html/images/paintsystem-stylepainter.png -share/doc/qt4/html/images/paintsystem-svg.png -share/doc/qt4/html/images/palette.png -share/doc/qt4/html/images/parent-child-widgets.png -share/doc/qt4/html/images/pathexample.png -share/doc/qt4/html/images/pathstroke-demo.png -share/doc/qt4/html/images/pbuffers-example.png -share/doc/qt4/html/images/pbuffers2-example.png -share/doc/qt4/html/images/pixelator-example.png -share/doc/qt4/html/images/plaintext-layout.png -share/doc/qt4/html/images/plastique-calendarwidget.png -share/doc/qt4/html/images/plastique-checkbox.png -share/doc/qt4/html/images/plastique-colordialog.png -share/doc/qt4/html/images/plastique-combobox.png -share/doc/qt4/html/images/plastique-dateedit.png -share/doc/qt4/html/images/plastique-datetimeedit.png -share/doc/qt4/html/images/plastique-dial.png -share/doc/qt4/html/images/plastique-doublespinbox.png -share/doc/qt4/html/images/plastique-filedialog.png -share/doc/qt4/html/images/plastique-fontcombobox.png -share/doc/qt4/html/images/plastique-fontdialog.png -share/doc/qt4/html/images/plastique-frame.png -share/doc/qt4/html/images/plastique-groupbox.png -share/doc/qt4/html/images/plastique-horizontalscrollbar.png -share/doc/qt4/html/images/plastique-label.png -share/doc/qt4/html/images/plastique-lcdnumber.png -share/doc/qt4/html/images/plastique-lineedit.png -share/doc/qt4/html/images/plastique-listview.png -share/doc/qt4/html/images/plastique-menu.png -share/doc/qt4/html/images/plastique-menubar.png -share/doc/qt4/html/images/plastique-printdialog-properties.png -share/doc/qt4/html/images/plastique-printdialog.png -share/doc/qt4/html/images/plastique-progressbar.png -share/doc/qt4/html/images/plastique-progressdialog.png -share/doc/qt4/html/images/plastique-pushbutton-menu.png -share/doc/qt4/html/images/plastique-pushbutton.png -share/doc/qt4/html/images/plastique-radiobutton.png -share/doc/qt4/html/images/plastique-sizegrip.png -share/doc/qt4/html/images/plastique-slider.png -share/doc/qt4/html/images/plastique-spinbox.png -share/doc/qt4/html/images/plastique-statusbar.png -share/doc/qt4/html/images/plastique-tabbar-truncated.png -share/doc/qt4/html/images/plastique-tabbar.png -share/doc/qt4/html/images/plastique-tableview.png -share/doc/qt4/html/images/plastique-tabwidget.png -share/doc/qt4/html/images/plastique-textedit.png -share/doc/qt4/html/images/plastique-timeedit.png -share/doc/qt4/html/images/plastique-toolbox.png -share/doc/qt4/html/images/plastique-toolbutton.png -share/doc/qt4/html/images/plastique-treeview.png -share/doc/qt4/html/images/plugandpaint-plugindialog.png -share/doc/qt4/html/images/plugandpaint.png -share/doc/qt4/html/images/portedasteroids-example.png -share/doc/qt4/html/images/portedcanvas-example.png -share/doc/qt4/html/images/printer-rects.png -share/doc/qt4/html/images/progressBar-stylesheet.png -share/doc/qt4/html/images/progressBar2-stylesheet.png -share/doc/qt4/html/images/progressbar.png -share/doc/qt4/html/images/progressbarimage.png -share/doc/qt4/html/images/propagation-custom.png -share/doc/qt4/html/images/propagation-standard.png -share/doc/qt4/html/images/pushbutton.png -share/doc/qt4/html/images/q3painter_rationale.png -share/doc/qt4/html/images/qactiongroup-align.png -share/doc/qt4/html/images/qcalendarwidget-grid.png -share/doc/qt4/html/images/qcalendarwidget-maximum.png -share/doc/qt4/html/images/qcalendarwidget-minimum.png -share/doc/qt4/html/images/qcanvasellipse.png -share/doc/qt4/html/images/qcdestyle.png -share/doc/qt4/html/images/qcolor-cmyk.png -share/doc/qt4/html/images/qcolor-hsv.png -share/doc/qt4/html/images/qcolor-hue.png -share/doc/qt4/html/images/qcolor-rgb.png -share/doc/qt4/html/images/qcolor-saturation.png -share/doc/qt4/html/images/qcolor-value.png -share/doc/qt4/html/images/qcolumnview.png -share/doc/qt4/html/images/qconicalgradient.png -share/doc/qt4/html/images/qdatawidgetmapper-simple.png -share/doc/qt4/html/images/qdesktopwidget.png -share/doc/qt4/html/images/qdockwindow.png -share/doc/qt4/html/images/qerrormessage.png -share/doc/qt4/html/images/qgradient-conical.png -share/doc/qt4/html/images/qgradient-linear.png -share/doc/qt4/html/images/qgradient-radial.png -share/doc/qt4/html/images/qgridlayout-with-5-children.png -share/doc/qt4/html/images/qhbox-m.png -share/doc/qt4/html/images/qhboxlayout-with-5-children.png -share/doc/qt4/html/images/qimage-32bit_scaled.png -share/doc/qt4/html/images/qimage-8bit_scaled.png -share/doc/qt4/html/images/qimage-scaling.png -share/doc/qt4/html/images/qline-coordinates.png -share/doc/qt4/html/images/qline-point.png -share/doc/qt4/html/images/qlineargradient-pad.png -share/doc/qt4/html/images/qlineargradient-reflect.png -share/doc/qt4/html/images/qlineargradient-repeat.png -share/doc/qt4/html/images/qlinef-angle-identicaldirection.png -share/doc/qt4/html/images/qlinef-angle-oppositedirection.png -share/doc/qt4/html/images/qlinef-bounded.png -share/doc/qt4/html/images/qlinef-normalvector.png -share/doc/qt4/html/images/qlinef-unbounded.png -share/doc/qt4/html/images/qlistbox-m.png -share/doc/qt4/html/images/qlistbox-w.png -share/doc/qt4/html/images/qlistviewitems.png -share/doc/qt4/html/images/qmacstyle.png -share/doc/qt4/html/images/qmainwindow-qdockareas.png -share/doc/qt4/html/images/qmatrix-combinedtransformation.png -share/doc/qt4/html/images/qmatrix-representation.png -share/doc/qt4/html/images/qmatrix-simpletransformation.png -share/doc/qt4/html/images/qmdiarea-arrange.png -share/doc/qt4/html/images/qmdisubwindowlayout.png -share/doc/qt4/html/images/qmessagebox-crit.png -share/doc/qt4/html/images/qmessagebox-info.png -share/doc/qt4/html/images/qmessagebox-quest.png -share/doc/qt4/html/images/qmessagebox-warn.png -share/doc/qt4/html/images/qmotifstyle.png -share/doc/qt4/html/images/qpainter-affinetransformations.png -share/doc/qt4/html/images/qpainter-arc.png -share/doc/qt4/html/images/qpainter-basicdrawing.png -share/doc/qt4/html/images/qpainter-chord.png -share/doc/qt4/html/images/qpainter-clock.png -share/doc/qt4/html/images/qpainter-compositiondemo.png -share/doc/qt4/html/images/qpainter-compositionmode1.png -share/doc/qt4/html/images/qpainter-compositionmode2.png -share/doc/qt4/html/images/qpainter-concentriccircles.png -share/doc/qt4/html/images/qpainter-ellipse.png -share/doc/qt4/html/images/qpainter-gradients.png -share/doc/qt4/html/images/qpainter-line.png -share/doc/qt4/html/images/qpainter-painterpaths.png -share/doc/qt4/html/images/qpainter-path.png -share/doc/qt4/html/images/qpainter-pathstroking.png -share/doc/qt4/html/images/qpainter-pie.png -share/doc/qt4/html/images/qpainter-polygon.png -share/doc/qt4/html/images/qpainter-rectangle.png -share/doc/qt4/html/images/qpainter-rotation.png -share/doc/qt4/html/images/qpainter-roundrect.png -share/doc/qt4/html/images/qpainter-scale.png -share/doc/qt4/html/images/qpainter-text.png -share/doc/qt4/html/images/qpainter-translation.png -share/doc/qt4/html/images/qpainter-vectordeformation.png -share/doc/qt4/html/images/qpainterpath-addellipse.png -share/doc/qt4/html/images/qpainterpath-addpolygon.png -share/doc/qt4/html/images/qpainterpath-addrectangle.png -share/doc/qt4/html/images/qpainterpath-addtext.png -share/doc/qt4/html/images/qpainterpath-arcto.png -share/doc/qt4/html/images/qpainterpath-construction.png -share/doc/qt4/html/images/qpainterpath-cubicto.png -share/doc/qt4/html/images/qpainterpath-demo.png -share/doc/qt4/html/images/qpainterpath-example.png -share/doc/qt4/html/images/qpen-bevel.png -share/doc/qt4/html/images/qpen-custom.png -share/doc/qt4/html/images/qpen-dash.png -share/doc/qt4/html/images/qpen-dashdot.png -share/doc/qt4/html/images/qpen-dashdotdot.png -share/doc/qt4/html/images/qpen-demo.png -share/doc/qt4/html/images/qpen-dot.png -share/doc/qt4/html/images/qpen-flat.png -share/doc/qt4/html/images/qpen-miter.png -share/doc/qt4/html/images/qpen-miterlimit.png -share/doc/qt4/html/images/qpen-roundcap.png -share/doc/qt4/html/images/qpen-roundjoin.png -share/doc/qt4/html/images/qpen-solid.png -share/doc/qt4/html/images/qpen-square.png -share/doc/qt4/html/images/qplastiquestyle.png -share/doc/qt4/html/images/qprogbar-m.png -share/doc/qt4/html/images/qprogbar-w.png -share/doc/qt4/html/images/qprogdlg-m.png -share/doc/qt4/html/images/qprogdlg-w.png -share/doc/qt4/html/images/qradialgradient-pad.png -share/doc/qt4/html/images/qradialgradient-reflect.png -share/doc/qt4/html/images/qradialgradient-repeat.png -share/doc/qt4/html/images/qrect-coordinates.png -share/doc/qt4/html/images/qrect-diagram-one.png -share/doc/qt4/html/images/qrect-diagram-three.png -share/doc/qt4/html/images/qrect-diagram-two.png -share/doc/qt4/html/images/qrect-diagram-zero.png -share/doc/qt4/html/images/qrect-intersect.png -share/doc/qt4/html/images/qrect-unite.png -share/doc/qt4/html/images/qrectf-coordinates.png -share/doc/qt4/html/images/qrectf-diagram-one.png -share/doc/qt4/html/images/qrectf-diagram-three.png -share/doc/qt4/html/images/qrectf-diagram-two.png -share/doc/qt4/html/images/qscrollarea-noscrollbars.png -share/doc/qt4/html/images/qscrollarea-onescrollbar.png -share/doc/qt4/html/images/qscrollarea-twoscrollbars.png -share/doc/qt4/html/images/qscrollbar-picture.png -share/doc/qt4/html/images/qscrollbar-values.png -share/doc/qt4/html/images/qscrollview-cl.png -share/doc/qt4/html/images/qscrollview-vp.png -share/doc/qt4/html/images/qscrollview-vp2.png -share/doc/qt4/html/images/qsortfilterproxymodel-sorting.png -share/doc/qt4/html/images/qspinbox-plusminus.png -share/doc/qt4/html/images/qspinbox-updown.png -share/doc/qt4/html/images/qstatustipevent-action.png -share/doc/qt4/html/images/qstatustipevent-widget.png -share/doc/qt4/html/images/qstyle-comboboxes.png -share/doc/qt4/html/images/qstyleoptiontoolbar-position.png -share/doc/qt4/html/images/qt-colors.png -share/doc/qt4/html/images/qt-fillrule-oddeven.png -share/doc/qt4/html/images/qt-fillrule-winding.png -share/doc/qt4/html/images/qt-logo.png -share/doc/qt4/html/images/qtableitems.png -share/doc/qt4/html/images/qtabletevent-tilt.png -share/doc/qt4/html/images/qtconfig-appearance.png -share/doc/qt4/html/images/qtdemo-small.png -share/doc/qt4/html/images/qtdemo.png -share/doc/qt4/html/images/qtdesignerextensions.png -share/doc/qt4/html/images/qtdesignerscreenshot.png -share/doc/qt4/html/images/qtextblock-sequence.png -share/doc/qt4/html/images/qtextfragment-split.png -share/doc/qt4/html/images/qtextframe-style.png -share/doc/qt4/html/images/qtexttableformat-cell.png -share/doc/qt4/html/images/qtopiacore-accelerateddriver.png -share/doc/qt4/html/images/qtopiacore-architecture.png -share/doc/qt4/html/images/qtopiacore-architecture2.png -share/doc/qt4/html/images/qtopiacore-characterinputlayer.png -share/doc/qt4/html/images/qtopiacore-clamshellphone-closed.png -share/doc/qt4/html/images/qtopiacore-clamshellphone-pressed.png -share/doc/qt4/html/images/qtopiacore-clamshellphone.png -share/doc/qt4/html/images/qtopiacore-client.png -share/doc/qt4/html/images/qtopiacore-clientrendering.png -share/doc/qt4/html/images/qtopiacore-clientservercommunication.png -share/doc/qt4/html/images/qtopiacore-drawingonscreen.png -share/doc/qt4/html/images/qtopiacore-examples.png -share/doc/qt4/html/images/qtopiacore-fontfeatures.png -share/doc/qt4/html/images/qtopiacore-opengl1.png -share/doc/qt4/html/images/qtopiacore-opengl2.png -share/doc/qt4/html/images/qtopiacore-opengl3.png -share/doc/qt4/html/images/qtopiacore-pda.png -share/doc/qt4/html/images/qtopiacore-phone.png -share/doc/qt4/html/images/qtopiacore-pointerhandlinglayer.png -share/doc/qt4/html/images/qtopiacore-qconfigtool.png -share/doc/qt4/html/images/qtopiacore-qvfbfilemenu.png -share/doc/qt4/html/images/qtopiacore-qvfbviewmenu.png -share/doc/qt4/html/images/qtopiacore-reserveregion.png -share/doc/qt4/html/images/qtopiacore-runningapplication.png -share/doc/qt4/html/images/qtopiacore-setwindowattribute.png -share/doc/qt4/html/images/qtopiacore-virtualframebuffer.png -share/doc/qt4/html/images/qtransform-combinedtransformation.png -share/doc/qt4/html/images/qtransform-combinedtransformation2.png -share/doc/qt4/html/images/qtransform-simpletransformation.png -share/doc/qt4/html/images/qtscript-calculator-example.png -share/doc/qt4/html/images/qtscript-calculator.png -share/doc/qt4/html/images/qtscript-context2d.png -share/doc/qt4/html/images/qtscript-examples.png -share/doc/qt4/html/images/qtwizard-aero1.png -share/doc/qt4/html/images/qtwizard-aero2.png -share/doc/qt4/html/images/qtwizard-classic1.png -share/doc/qt4/html/images/qtwizard-classic2.png -share/doc/qt4/html/images/qtwizard-mac1.png -share/doc/qt4/html/images/qtwizard-mac2.png -share/doc/qt4/html/images/qtwizard-macpage.png -share/doc/qt4/html/images/qtwizard-modern1.png -share/doc/qt4/html/images/qtwizard-modern2.png -share/doc/qt4/html/images/qtwizard-nonmacpage.png -share/doc/qt4/html/images/querymodel-example.png -share/doc/qt4/html/images/qundoview.png -share/doc/qt4/html/images/qurl-authority.png -share/doc/qt4/html/images/qurl-authority2.png -share/doc/qt4/html/images/qurl-authority3.png -share/doc/qt4/html/images/qurl-fragment.png -share/doc/qt4/html/images/qurl-ftppath.png -share/doc/qt4/html/images/qurl-mailtopath.png -share/doc/qt4/html/images/qurl-querystring.png -share/doc/qt4/html/images/qvbox-m.png -share/doc/qt4/html/images/qvboxlayout-with-5-children.png -share/doc/qt4/html/images/qwindowsstyle.png -share/doc/qt4/html/images/qwindowsxpstyle.png -share/doc/qt4/html/images/qworkspace-arrange.png -share/doc/qt4/html/images/qwsserver_keyboardfilter.png -share/doc/qt4/html/images/radialGradient.png -share/doc/qt4/html/images/recentfiles-example.png -share/doc/qt4/html/images/regexp-example.png -share/doc/qt4/html/images/relationaltable.png -share/doc/qt4/html/images/relationaltablemodel-example.png -share/doc/qt4/html/images/resources.png -share/doc/qt4/html/images/richtext-document.png -share/doc/qt4/html/images/richtext-examples.png -share/doc/qt4/html/images/rintersect.png -share/doc/qt4/html/images/rsslistingexample.png -share/doc/qt4/html/images/rsubtract.png -share/doc/qt4/html/images/rubberband.png -share/doc/qt4/html/images/rubberbandimage.png -share/doc/qt4/html/images/runion.png -share/doc/qt4/html/images/rxor.png -share/doc/qt4/html/images/samplebuffers-example.png -share/doc/qt4/html/images/saxbookmarks-example.png -share/doc/qt4/html/images/screenshot-example.png -share/doc/qt4/html/images/scribble-example.png -share/doc/qt4/html/images/scrollbar.png -share/doc/qt4/html/images/scrollbarimage.png -share/doc/qt4/html/images/sdi-example.png -share/doc/qt4/html/images/securesocketclient.png -share/doc/qt4/html/images/securesocketclient2.png -share/doc/qt4/html/images/selected-items1.png -share/doc/qt4/html/images/selected-items2.png -share/doc/qt4/html/images/selected-items3.png -share/doc/qt4/html/images/selection-extended.png -share/doc/qt4/html/images/selection-multi.png -share/doc/qt4/html/images/selection-single.png -share/doc/qt4/html/images/session.png -share/doc/qt4/html/images/settingseditor-example.png -share/doc/qt4/html/images/shapedclock-dragging.png -share/doc/qt4/html/images/shapedclock-example.png -share/doc/qt4/html/images/shareddirmodel.png -share/doc/qt4/html/images/sharedmodel-tableviews.png -share/doc/qt4/html/images/sharedselection-tableviews.png -share/doc/qt4/html/images/simpledommodel-example.png -share/doc/qt4/html/images/simpletextviewer-example.png -share/doc/qt4/html/images/simpletextviewer-findfiledialog.png -share/doc/qt4/html/images/simpletextviewer-mainwindow.png -share/doc/qt4/html/images/simpletreemodel-example.png -share/doc/qt4/html/images/simplewidgetmapper-example.png -share/doc/qt4/html/images/sizegrip.png -share/doc/qt4/html/images/sizegripimage.png -share/doc/qt4/html/images/slider.png -share/doc/qt4/html/images/sliderimage.png -share/doc/qt4/html/images/sliders-example.png -share/doc/qt4/html/images/spinbox.png -share/doc/qt4/html/images/spinboxdelegate-example.png -share/doc/qt4/html/images/spinboxes-example.png -share/doc/qt4/html/images/spinboximage.png -share/doc/qt4/html/images/spreadsheet-demo.png -share/doc/qt4/html/images/sql-examples.png -share/doc/qt4/html/images/sqlbrowser-demo.png -share/doc/qt4/html/images/standard-views.png -share/doc/qt4/html/images/standarddialogs-example.png -share/doc/qt4/html/images/stardelegate.png -share/doc/qt4/html/images/stliterators1.png -share/doc/qt4/html/images/stringlistmodel.png -share/doc/qt4/html/images/stylepluginexample.png -share/doc/qt4/html/images/styles-3d.png -share/doc/qt4/html/images/styles-aliasing.png -share/doc/qt4/html/images/styles-disabledwood.png -share/doc/qt4/html/images/styles-enabledwood.png -share/doc/qt4/html/images/styles-woodbuttons.png -share/doc/qt4/html/images/stylesheet-boxmodel.png -share/doc/qt4/html/images/stylesheet-branch-closed.png -share/doc/qt4/html/images/stylesheet-branch-end.png -share/doc/qt4/html/images/stylesheet-branch-more.png -share/doc/qt4/html/images/stylesheet-branch-open.png -share/doc/qt4/html/images/stylesheet-coffee-xp.png -share/doc/qt4/html/images/stylesheet-designer-options.png -share/doc/qt4/html/images/stylesheet-pagefold.png -share/doc/qt4/html/images/stylesheet-redbutton1.png -share/doc/qt4/html/images/stylesheet-redbutton2.png -share/doc/qt4/html/images/stylesheet-redbutton3.png -share/doc/qt4/html/images/stylesheet-scrollbar1.png -share/doc/qt4/html/images/stylesheet-scrollbar2.png -share/doc/qt4/html/images/stylesheet-treeview.png -share/doc/qt4/html/images/stylesheet-vline.png -share/doc/qt4/html/images/svg-image.png -share/doc/qt4/html/images/svgviewer-example.png -share/doc/qt4/html/images/syntaxhighlighter-example.png -share/doc/qt4/html/images/system-tray.png -share/doc/qt4/html/images/systemtray-editor.png -share/doc/qt4/html/images/systemtray-example.png -share/doc/qt4/html/images/t1.png -share/doc/qt4/html/images/t10.png -share/doc/qt4/html/images/t11.png -share/doc/qt4/html/images/t12.png -share/doc/qt4/html/images/t13.png -share/doc/qt4/html/images/t14.png -share/doc/qt4/html/images/t2.png -share/doc/qt4/html/images/t3.png -share/doc/qt4/html/images/t4.png -share/doc/qt4/html/images/t5.png -share/doc/qt4/html/images/t6.png -share/doc/qt4/html/images/t7.png -share/doc/qt4/html/images/t8.png -share/doc/qt4/html/images/t9.png -share/doc/qt4/html/images/t9_1.png -share/doc/qt4/html/images/t9_2.png -share/doc/qt4/html/images/tab.png -share/doc/qt4/html/images/tabWidget-stylesheet1.png -share/doc/qt4/html/images/tabWidget-stylesheet2.png -share/doc/qt4/html/images/tabWidget-stylesheet3.png -share/doc/qt4/html/images/tabdialog-example.png -share/doc/qt4/html/images/tableWidget-stylesheet.png -share/doc/qt4/html/images/tablemodel-example.png -share/doc/qt4/html/images/tabletexample.png -share/doc/qt4/html/images/tabwidget.png -share/doc/qt4/html/images/taskmenuextension-dialog.png -share/doc/qt4/html/images/taskmenuextension-example-faded.png -share/doc/qt4/html/images/taskmenuextension-menu.png -share/doc/qt4/html/images/tcpstream.png -share/doc/qt4/html/images/tetrix-example.png -share/doc/qt4/html/images/textedit-demo.png -share/doc/qt4/html/images/textfinder-example-find.png -share/doc/qt4/html/images/textfinder-example-find2.png -share/doc/qt4/html/images/textfinder-example-userinterface.png -share/doc/qt4/html/images/texttable-merge.png -share/doc/qt4/html/images/texttable-split.png -share/doc/qt4/html/images/textures-example.png -share/doc/qt4/html/images/thread-examples.png -share/doc/qt4/html/images/threadedfortuneserver-example.png -share/doc/qt4/html/images/threadsandobjects.png -share/doc/qt4/html/images/titlebar.png -share/doc/qt4/html/images/titlebarimage.png -share/doc/qt4/html/images/tool-examples.png -share/doc/qt4/html/images/toolbar.png -share/doc/qt4/html/images/toolbarimage.png -share/doc/qt4/html/images/toolbox.png -share/doc/qt4/html/images/toolboximage.png -share/doc/qt4/html/images/toolbutton.png -share/doc/qt4/html/images/toolbuttonimage.png -share/doc/qt4/html/images/tooltips-example.png -share/doc/qt4/html/images/torrent-example.png -share/doc/qt4/html/images/transformations-example.png -share/doc/qt4/html/images/treemodel-structure.png -share/doc/qt4/html/images/treemodelcompleter-example.png -share/doc/qt4/html/images/trivialwizard-example-conclusion.png -share/doc/qt4/html/images/trivialwizard-example-flow.png -share/doc/qt4/html/images/trivialwizard-example-introduction.png -share/doc/qt4/html/images/trivialwizard-example-registration.png -share/doc/qt4/html/images/trolltech-logo.png -share/doc/qt4/html/images/tutorial8-layout.png -share/doc/qt4/html/images/tutorial8-reallayout.png -share/doc/qt4/html/images/udppackets.png -share/doc/qt4/html/images/uitools-examples.png -share/doc/qt4/html/images/undodemo.png -share/doc/qt4/html/images/undoframeworkexample.png -share/doc/qt4/html/images/wVista-Cert-border-small.png -share/doc/qt4/html/images/whatsthis.png -share/doc/qt4/html/images/widget-examples.png -share/doc/qt4/html/images/wiggly-example.png -share/doc/qt4/html/images/windowflags-example.png -share/doc/qt4/html/images/windowflags_controllerwindow.png -share/doc/qt4/html/images/windowflags_previewwindow.png -share/doc/qt4/html/images/windows-calendarwidget.png -share/doc/qt4/html/images/windows-checkbox.png -share/doc/qt4/html/images/windows-combobox.png -share/doc/qt4/html/images/windows-dateedit.png -share/doc/qt4/html/images/windows-datetimeedit.png -share/doc/qt4/html/images/windows-dial.png -share/doc/qt4/html/images/windows-doublespinbox.png -share/doc/qt4/html/images/windows-fontcombobox.png -share/doc/qt4/html/images/windows-frame.png -share/doc/qt4/html/images/windows-groupbox.png -share/doc/qt4/html/images/windows-horizontalscrollbar.png -share/doc/qt4/html/images/windows-label.png -share/doc/qt4/html/images/windows-lcdnumber.png -share/doc/qt4/html/images/windows-lineedit.png -share/doc/qt4/html/images/windows-listview.png -share/doc/qt4/html/images/windows-progressbar.png -share/doc/qt4/html/images/windows-pushbutton.png -share/doc/qt4/html/images/windows-radiobutton.png -share/doc/qt4/html/images/windows-slider.png -share/doc/qt4/html/images/windows-spinbox.png -share/doc/qt4/html/images/windows-tableview.png -share/doc/qt4/html/images/windows-tabwidget.png -share/doc/qt4/html/images/windows-textedit.png -share/doc/qt4/html/images/windows-timeedit.png -share/doc/qt4/html/images/windows-toolbox.png -share/doc/qt4/html/images/windows-toolbutton.png -share/doc/qt4/html/images/windows-treeview.png -share/doc/qt4/html/images/windowstabimage.png -share/doc/qt4/html/images/windowsvista-calendarwidget.png -share/doc/qt4/html/images/windowsvista-checkbox.png -share/doc/qt4/html/images/windowsvista-combobox.png -share/doc/qt4/html/images/windowsvista-dateedit.png -share/doc/qt4/html/images/windowsvista-datetimeedit.png -share/doc/qt4/html/images/windowsvista-dial.png -share/doc/qt4/html/images/windowsvista-doublespinbox.png -share/doc/qt4/html/images/windowsvista-fontcombobox.png -share/doc/qt4/html/images/windowsvista-frame.png -share/doc/qt4/html/images/windowsvista-groupbox.png -share/doc/qt4/html/images/windowsvista-horizontalscrollbar.png -share/doc/qt4/html/images/windowsvista-label.png -share/doc/qt4/html/images/windowsvista-lcdnumber.png -share/doc/qt4/html/images/windowsvista-lineedit.png -share/doc/qt4/html/images/windowsvista-listview.png -share/doc/qt4/html/images/windowsvista-progressbar.png -share/doc/qt4/html/images/windowsvista-pushbutton.png -share/doc/qt4/html/images/windowsvista-radiobutton.png -share/doc/qt4/html/images/windowsvista-slider.png -share/doc/qt4/html/images/windowsvista-spinbox.png -share/doc/qt4/html/images/windowsvista-tableview.png -share/doc/qt4/html/images/windowsvista-tabwidget.png -share/doc/qt4/html/images/windowsvista-textedit.png -share/doc/qt4/html/images/windowsvista-timeedit.png -share/doc/qt4/html/images/windowsvista-toolbox.png -share/doc/qt4/html/images/windowsvista-toolbutton.png -share/doc/qt4/html/images/windowsvista-treeview.png -share/doc/qt4/html/images/windowsxp-calendarwidget.png -share/doc/qt4/html/images/windowsxp-checkbox.png -share/doc/qt4/html/images/windowsxp-combobox.png -share/doc/qt4/html/images/windowsxp-dateedit.png -share/doc/qt4/html/images/windowsxp-datetimeedit.png -share/doc/qt4/html/images/windowsxp-dial.png -share/doc/qt4/html/images/windowsxp-doublespinbox.png -share/doc/qt4/html/images/windowsxp-fontcombobox.png -share/doc/qt4/html/images/windowsxp-frame.png -share/doc/qt4/html/images/windowsxp-groupbox.png -share/doc/qt4/html/images/windowsxp-horizontalscrollbar.png -share/doc/qt4/html/images/windowsxp-label.png -share/doc/qt4/html/images/windowsxp-lcdnumber.png -share/doc/qt4/html/images/windowsxp-lineedit.png -share/doc/qt4/html/images/windowsxp-listview.png -share/doc/qt4/html/images/windowsxp-menu.png -share/doc/qt4/html/images/windowsxp-progressbar.png -share/doc/qt4/html/images/windowsxp-pushbutton.png -share/doc/qt4/html/images/windowsxp-radiobutton.png -share/doc/qt4/html/images/windowsxp-slider.png -share/doc/qt4/html/images/windowsxp-spinbox.png -share/doc/qt4/html/images/windowsxp-tableview.png -share/doc/qt4/html/images/windowsxp-tabwidget.png -share/doc/qt4/html/images/windowsxp-textedit.png -share/doc/qt4/html/images/windowsxp-timeedit.png -share/doc/qt4/html/images/windowsxp-toolbox.png -share/doc/qt4/html/images/windowsxp-toolbutton.png -share/doc/qt4/html/images/windowsxp-treeview.png -share/doc/qt4/html/images/woodbackground.png -share/doc/qt4/html/images/woodbutton.png -share/doc/qt4/html/images/worldtimeclock-connection.png -share/doc/qt4/html/images/worldtimeclock-signalandslot.png -share/doc/qt4/html/images/worldtimeclockbuilder-example.png -share/doc/qt4/html/images/worldtimeclockplugin-example.png -share/doc/qt4/html/images/xml-examples.png -share/doc/qt4/html/images/xmlstreamexample-filemenu.png -share/doc/qt4/html/images/xmlstreamexample-helpmenu.png -share/doc/qt4/html/images/xmlstreamexample-screenshot.png -share/doc/qt4/html/index.html -share/doc/qt4/html/install-mac.html -share/doc/qt4/html/install-win.html -share/doc/qt4/html/install-x11.html -share/doc/qt4/html/installation.html -share/doc/qt4/html/intro-to-dbus.html -share/doc/qt4/html/io.html -share/doc/qt4/html/itemviews-basicsortfiltermodel-main-cpp.html -share/doc/qt4/html/itemviews-basicsortfiltermodel-window-cpp.html -share/doc/qt4/html/itemviews-basicsortfiltermodel-window-h.html -share/doc/qt4/html/itemviews-basicsortfiltermodel.html -share/doc/qt4/html/itemviews-chart-chart-qrc.html -share/doc/qt4/html/itemviews-chart-main-cpp.html -share/doc/qt4/html/itemviews-chart-mainwindow-cpp.html -share/doc/qt4/html/itemviews-chart-mainwindow-h.html -share/doc/qt4/html/itemviews-chart-pieview-cpp.html -share/doc/qt4/html/itemviews-chart-pieview-h.html -share/doc/qt4/html/itemviews-chart.html -share/doc/qt4/html/itemviews-coloreditorfactory-colorlisteditor-cpp.html -share/doc/qt4/html/itemviews-coloreditorfactory-colorlisteditor-h.html -share/doc/qt4/html/itemviews-coloreditorfactory-main-cpp.html -share/doc/qt4/html/itemviews-coloreditorfactory-window-cpp.html -share/doc/qt4/html/itemviews-coloreditorfactory-window-h.html -share/doc/qt4/html/itemviews-coloreditorfactory.html -share/doc/qt4/html/itemviews-customsortfiltermodel-main-cpp.html -share/doc/qt4/html/itemviews-customsortfiltermodel-mysortfilterproxymodel-cpp.html -share/doc/qt4/html/itemviews-customsortfiltermodel-mysortfilterproxymodel-h.html -share/doc/qt4/html/itemviews-customsortfiltermodel-window-cpp.html -share/doc/qt4/html/itemviews-customsortfiltermodel-window-h.html -share/doc/qt4/html/itemviews-customsortfiltermodel.html -share/doc/qt4/html/itemviews-dirview-main-cpp.html -share/doc/qt4/html/itemviews-dirview.html -share/doc/qt4/html/itemviews-editabletreemodel-editabletreemodel-qrc.html -share/doc/qt4/html/itemviews-editabletreemodel-main-cpp.html -share/doc/qt4/html/itemviews-editabletreemodel-mainwindow-cpp.html -share/doc/qt4/html/itemviews-editabletreemodel-mainwindow-h.html -share/doc/qt4/html/itemviews-editabletreemodel-treeitem-cpp.html -share/doc/qt4/html/itemviews-editabletreemodel-treeitem-h.html -share/doc/qt4/html/itemviews-editabletreemodel-treemodel-cpp.html -share/doc/qt4/html/itemviews-editabletreemodel-treemodel-h.html -share/doc/qt4/html/itemviews-editabletreemodel.html -share/doc/qt4/html/itemviews-pixelator-imagemodel-cpp.html -share/doc/qt4/html/itemviews-pixelator-imagemodel-h.html -share/doc/qt4/html/itemviews-pixelator-images-qrc.html -share/doc/qt4/html/itemviews-pixelator-main-cpp.html -share/doc/qt4/html/itemviews-pixelator-mainwindow-cpp.html -share/doc/qt4/html/itemviews-pixelator-mainwindow-h.html -share/doc/qt4/html/itemviews-pixelator-pixeldelegate-cpp.html -share/doc/qt4/html/itemviews-pixelator-pixeldelegate-h.html -share/doc/qt4/html/itemviews-pixelator.html -share/doc/qt4/html/itemviews-puzzle-main-cpp.html -share/doc/qt4/html/itemviews-puzzle-mainwindow-cpp.html -share/doc/qt4/html/itemviews-puzzle-mainwindow-h.html -share/doc/qt4/html/itemviews-puzzle-piecesmodel-cpp.html -share/doc/qt4/html/itemviews-puzzle-piecesmodel-h.html -share/doc/qt4/html/itemviews-puzzle-puzzle-qrc.html -share/doc/qt4/html/itemviews-puzzle-puzzlewidget-cpp.html -share/doc/qt4/html/itemviews-puzzle-puzzlewidget-h.html -share/doc/qt4/html/itemviews-puzzle.html -share/doc/qt4/html/itemviews-simpledommodel-domitem-cpp.html -share/doc/qt4/html/itemviews-simpledommodel-domitem-h.html -share/doc/qt4/html/itemviews-simpledommodel-dommodel-cpp.html -share/doc/qt4/html/itemviews-simpledommodel-dommodel-h.html -share/doc/qt4/html/itemviews-simpledommodel-main-cpp.html -share/doc/qt4/html/itemviews-simpledommodel-mainwindow-cpp.html -share/doc/qt4/html/itemviews-simpledommodel-mainwindow-h.html -share/doc/qt4/html/itemviews-simpledommodel.html -share/doc/qt4/html/itemviews-simpletreemodel-main-cpp.html -share/doc/qt4/html/itemviews-simpletreemodel-simpletreemodel-qrc.html -share/doc/qt4/html/itemviews-simpletreemodel-treeitem-cpp.html -share/doc/qt4/html/itemviews-simpletreemodel-treeitem-h.html -share/doc/qt4/html/itemviews-simpletreemodel-treemodel-cpp.html -share/doc/qt4/html/itemviews-simpletreemodel-treemodel-h.html -share/doc/qt4/html/itemviews-simpletreemodel.html -share/doc/qt4/html/itemviews-simplewidgetmapper-main-cpp.html -share/doc/qt4/html/itemviews-simplewidgetmapper-window-cpp.html -share/doc/qt4/html/itemviews-simplewidgetmapper-window-h.html -share/doc/qt4/html/itemviews-simplewidgetmapper.html -share/doc/qt4/html/itemviews-spinboxdelegate-delegate-cpp.html -share/doc/qt4/html/itemviews-spinboxdelegate-delegate-h.html -share/doc/qt4/html/itemviews-spinboxdelegate-main-cpp.html -share/doc/qt4/html/itemviews-spinboxdelegate.html -share/doc/qt4/html/itemviews-stardelegate-main-cpp.html -share/doc/qt4/html/itemviews-stardelegate-stardelegate-cpp.html -share/doc/qt4/html/itemviews-stardelegate-stardelegate-h.html -share/doc/qt4/html/itemviews-stardelegate-stareditor-cpp.html -share/doc/qt4/html/itemviews-stardelegate-stareditor-h.html -share/doc/qt4/html/itemviews-stardelegate-starrating-cpp.html -share/doc/qt4/html/itemviews-stardelegate-starrating-h.html -share/doc/qt4/html/itemviews-stardelegate.html -share/doc/qt4/html/known-issues.html -share/doc/qt4/html/layout.html -share/doc/qt4/html/layouts-basiclayouts-dialog-cpp.html -share/doc/qt4/html/layouts-basiclayouts-dialog-h.html -share/doc/qt4/html/layouts-basiclayouts-main-cpp.html -share/doc/qt4/html/layouts-basiclayouts.html -share/doc/qt4/html/layouts-borderlayout-borderlayout-cpp.html -share/doc/qt4/html/layouts-borderlayout-borderlayout-h.html -share/doc/qt4/html/layouts-borderlayout-main-cpp.html -share/doc/qt4/html/layouts-borderlayout-window-cpp.html -share/doc/qt4/html/layouts-borderlayout-window-h.html -share/doc/qt4/html/layouts-borderlayout.html -share/doc/qt4/html/layouts-dynamiclayouts-dialog-cpp.html -share/doc/qt4/html/layouts-dynamiclayouts-dialog-h.html -share/doc/qt4/html/layouts-dynamiclayouts-main-cpp.html -share/doc/qt4/html/layouts-dynamiclayouts.html -share/doc/qt4/html/layouts-flowlayout-flowlayout-cpp.html -share/doc/qt4/html/layouts-flowlayout-flowlayout-h.html -share/doc/qt4/html/layouts-flowlayout-main-cpp.html -share/doc/qt4/html/layouts-flowlayout-window-cpp.html -share/doc/qt4/html/layouts-flowlayout-window-h.html -share/doc/qt4/html/layouts-flowlayout.html -share/doc/qt4/html/license-gpl-exceptions.html -share/doc/qt4/html/licenses-fonts.html -share/doc/qt4/html/licenses-gpl-exceptions-addendum.html -share/doc/qt4/html/licenses.html -share/doc/qt4/html/licensing.html -share/doc/qt4/html/linguist-arrowpad-arrowpad-cpp.html -share/doc/qt4/html/linguist-arrowpad-arrowpad-h.html -share/doc/qt4/html/linguist-arrowpad-main-cpp.html -share/doc/qt4/html/linguist-arrowpad-mainwindow-cpp.html -share/doc/qt4/html/linguist-arrowpad-mainwindow-h.html -share/doc/qt4/html/linguist-arrowpad.html -share/doc/qt4/html/linguist-hellotr-main-cpp.html -share/doc/qt4/html/linguist-hellotr.html -share/doc/qt4/html/linguist-manager.html -share/doc/qt4/html/linguist-manual.html -share/doc/qt4/html/linguist-programmers.html -share/doc/qt4/html/linguist-translators.html -share/doc/qt4/html/linguist-trollprint-main-cpp.html -share/doc/qt4/html/linguist-trollprint-mainwindow-cpp.html -share/doc/qt4/html/linguist-trollprint-mainwindow-h.html -share/doc/qt4/html/linguist-trollprint-printpanel-cpp.html -share/doc/qt4/html/linguist-trollprint-printpanel-h.html -share/doc/qt4/html/linguist-trollprint.html -share/doc/qt4/html/linguist-ts-file-format.html -share/doc/qt4/html/linguist.dcf -share/doc/qt4/html/mac-differences.html -share/doc/qt4/html/mainclasses.html -share/doc/qt4/html/mainwindows-application-application-qrc.html -share/doc/qt4/html/mainwindows-application-main-cpp.html -share/doc/qt4/html/mainwindows-application-mainwindow-cpp.html -share/doc/qt4/html/mainwindows-application-mainwindow-h.html -share/doc/qt4/html/mainwindows-application.html -share/doc/qt4/html/mainwindows-dockwidgets-dockwidgets-qrc.html -share/doc/qt4/html/mainwindows-dockwidgets-main-cpp.html -share/doc/qt4/html/mainwindows-dockwidgets-mainwindow-cpp.html -share/doc/qt4/html/mainwindows-dockwidgets-mainwindow-h.html -share/doc/qt4/html/mainwindows-dockwidgets.html -share/doc/qt4/html/mainwindows-mdi-main-cpp.html -share/doc/qt4/html/mainwindows-mdi-mainwindow-cpp.html -share/doc/qt4/html/mainwindows-mdi-mainwindow-h.html -share/doc/qt4/html/mainwindows-mdi-mdi-qrc.html -share/doc/qt4/html/mainwindows-mdi-mdichild-cpp.html -share/doc/qt4/html/mainwindows-mdi-mdichild-h.html -share/doc/qt4/html/mainwindows-mdi.html -share/doc/qt4/html/mainwindows-menus-main-cpp.html -share/doc/qt4/html/mainwindows-menus-mainwindow-cpp.html -share/doc/qt4/html/mainwindows-menus-mainwindow-h.html -share/doc/qt4/html/mainwindows-menus.html -share/doc/qt4/html/mainwindows-recentfiles-main-cpp.html -share/doc/qt4/html/mainwindows-recentfiles-mainwindow-cpp.html -share/doc/qt4/html/mainwindows-recentfiles-mainwindow-h.html -share/doc/qt4/html/mainwindows-recentfiles.html -share/doc/qt4/html/mainwindows-sdi-main-cpp.html -share/doc/qt4/html/mainwindows-sdi-mainwindow-cpp.html -share/doc/qt4/html/mainwindows-sdi-mainwindow-h.html -share/doc/qt4/html/mainwindows-sdi-sdi-qrc.html -share/doc/qt4/html/mainwindows-sdi.html -share/doc/qt4/html/metaobjects.html -share/doc/qt4/html/misc.html -share/doc/qt4/html/moc.html -share/doc/qt4/html/model-view-convenience.html -share/doc/qt4/html/model-view-creating-models.html -share/doc/qt4/html/model-view-delegate.html -share/doc/qt4/html/model-view-dnd.html -share/doc/qt4/html/model-view-introduction.html -share/doc/qt4/html/model-view-model-subclassing.html -share/doc/qt4/html/model-view-model.html -share/doc/qt4/html/model-view-programming.html -share/doc/qt4/html/model-view-proxy-models.html -share/doc/qt4/html/model-view-selection.html -share/doc/qt4/html/model-view-using.html -share/doc/qt4/html/model-view-view.html -share/doc/qt4/html/model-view.html -share/doc/qt4/html/modules.html -share/doc/qt4/html/multimedia.html -share/doc/qt4/html/network-blockingfortuneclient-blockingclient-cpp.html -share/doc/qt4/html/network-blockingfortuneclient-blockingclient-h.html -share/doc/qt4/html/network-blockingfortuneclient-fortunethread-cpp.html -share/doc/qt4/html/network-blockingfortuneclient-fortunethread-h.html -share/doc/qt4/html/network-blockingfortuneclient-main-cpp.html -share/doc/qt4/html/network-blockingfortuneclient.html -share/doc/qt4/html/network-broadcastreceiver-main-cpp.html -share/doc/qt4/html/network-broadcastreceiver-receiver-cpp.html -share/doc/qt4/html/network-broadcastreceiver-receiver-h.html -share/doc/qt4/html/network-broadcastreceiver.html -share/doc/qt4/html/network-broadcastsender-main-cpp.html -share/doc/qt4/html/network-broadcastsender-sender-cpp.html -share/doc/qt4/html/network-broadcastsender-sender-h.html -share/doc/qt4/html/network-broadcastsender.html -share/doc/qt4/html/network-chat-chatdialog-cpp.html -share/doc/qt4/html/network-chat-chatdialog-h.html -share/doc/qt4/html/network-chat-client-cpp.html -share/doc/qt4/html/network-chat-client-h.html -share/doc/qt4/html/network-chat-connection-cpp.html -share/doc/qt4/html/network-chat-connection-h.html -share/doc/qt4/html/network-chat-main-cpp.html -share/doc/qt4/html/network-chat-peermanager-cpp.html -share/doc/qt4/html/network-chat-peermanager-h.html -share/doc/qt4/html/network-chat-server-cpp.html -share/doc/qt4/html/network-chat-server-h.html -share/doc/qt4/html/network-chat.html -share/doc/qt4/html/network-fortuneclient-client-cpp.html -share/doc/qt4/html/network-fortuneclient-client-h.html -share/doc/qt4/html/network-fortuneclient-main-cpp.html -share/doc/qt4/html/network-fortuneclient.html -share/doc/qt4/html/network-fortuneserver-main-cpp.html -share/doc/qt4/html/network-fortuneserver-server-cpp.html -share/doc/qt4/html/network-fortuneserver-server-h.html -share/doc/qt4/html/network-fortuneserver.html -share/doc/qt4/html/network-ftp-ftp-qrc.html -share/doc/qt4/html/network-ftp-ftpwindow-cpp.html -share/doc/qt4/html/network-ftp-ftpwindow-h.html -share/doc/qt4/html/network-ftp-main-cpp.html -share/doc/qt4/html/network-ftp.html -share/doc/qt4/html/network-http-httpwindow-cpp.html -share/doc/qt4/html/network-http-httpwindow-h.html -share/doc/qt4/html/network-http-main-cpp.html -share/doc/qt4/html/network-http.html -share/doc/qt4/html/network-loopback-dialog-cpp.html -share/doc/qt4/html/network-loopback-dialog-h.html -share/doc/qt4/html/network-loopback-main-cpp.html -share/doc/qt4/html/network-loopback.html -share/doc/qt4/html/network-securesocketclient-certificateinfo-cpp.html -share/doc/qt4/html/network-securesocketclient-certificateinfo-h.html -share/doc/qt4/html/network-securesocketclient-main-cpp.html -share/doc/qt4/html/network-securesocketclient-securesocketclient-qrc.html -share/doc/qt4/html/network-securesocketclient-sslclient-cpp.html -share/doc/qt4/html/network-securesocketclient-sslclient-h.html -share/doc/qt4/html/network-securesocketclient.html -share/doc/qt4/html/network-threadedfortuneserver-dialog-cpp.html -share/doc/qt4/html/network-threadedfortuneserver-dialog-h.html -share/doc/qt4/html/network-threadedfortuneserver-fortuneserver-cpp.html -share/doc/qt4/html/network-threadedfortuneserver-fortuneserver-h.html -share/doc/qt4/html/network-threadedfortuneserver-fortunethread-cpp.html -share/doc/qt4/html/network-threadedfortuneserver-fortunethread-h.html -share/doc/qt4/html/network-threadedfortuneserver-main-cpp.html -share/doc/qt4/html/network-threadedfortuneserver.html -share/doc/qt4/html/network-torrent-3rdparty-sha1-h.html -share/doc/qt4/html/network-torrent-addtorrentdialog-cpp.html -share/doc/qt4/html/network-torrent-addtorrentdialog-h.html -share/doc/qt4/html/network-torrent-bencodeparser-cpp.html -share/doc/qt4/html/network-torrent-bencodeparser-h.html -share/doc/qt4/html/network-torrent-connectionmanager-cpp.html -share/doc/qt4/html/network-torrent-connectionmanager-h.html -share/doc/qt4/html/network-torrent-filemanager-cpp.html -share/doc/qt4/html/network-torrent-filemanager-h.html -share/doc/qt4/html/network-torrent-icons-qrc.html -share/doc/qt4/html/network-torrent-main-cpp.html -share/doc/qt4/html/network-torrent-mainwindow-cpp.html -share/doc/qt4/html/network-torrent-mainwindow-h.html -share/doc/qt4/html/network-torrent-metainfo-cpp.html -share/doc/qt4/html/network-torrent-metainfo-h.html -share/doc/qt4/html/network-torrent-peerwireclient-cpp.html -share/doc/qt4/html/network-torrent-peerwireclient-h.html -share/doc/qt4/html/network-torrent-ratecontroller-cpp.html -share/doc/qt4/html/network-torrent-ratecontroller-h.html -share/doc/qt4/html/network-torrent-torrentclient-cpp.html -share/doc/qt4/html/network-torrent-torrentclient-h.html -share/doc/qt4/html/network-torrent-torrentserver-cpp.html -share/doc/qt4/html/network-torrent-torrentserver-h.html -share/doc/qt4/html/network-torrent-trackerclient-cpp.html -share/doc/qt4/html/network-torrent-trackerclient-h.html -share/doc/qt4/html/network-torrent.html -share/doc/qt4/html/object.html -share/doc/qt4/html/objectmodel.html -share/doc/qt4/html/objecttrees.html -share/doc/qt4/html/opengl-2dpainting-glwidget-cpp.html -share/doc/qt4/html/opengl-2dpainting-glwidget-h.html -share/doc/qt4/html/opengl-2dpainting-helper-cpp.html -share/doc/qt4/html/opengl-2dpainting-helper-h.html -share/doc/qt4/html/opengl-2dpainting-main-cpp.html -share/doc/qt4/html/opengl-2dpainting-widget-cpp.html -share/doc/qt4/html/opengl-2dpainting-widget-h.html -share/doc/qt4/html/opengl-2dpainting-window-cpp.html -share/doc/qt4/html/opengl-2dpainting-window-h.html -share/doc/qt4/html/opengl-2dpainting.html -share/doc/qt4/html/opengl-framebufferobject-framebufferobject-qrc.html -share/doc/qt4/html/opengl-framebufferobject-glwidget-cpp.html -share/doc/qt4/html/opengl-framebufferobject-glwidget-h.html -share/doc/qt4/html/opengl-framebufferobject-main-cpp.html -share/doc/qt4/html/opengl-framebufferobject.html -share/doc/qt4/html/opengl-framebufferobject2-framebufferobject2-qrc.html -share/doc/qt4/html/opengl-framebufferobject2-glwidget-cpp.html -share/doc/qt4/html/opengl-framebufferobject2-glwidget-h.html -share/doc/qt4/html/opengl-framebufferobject2-main-cpp.html -share/doc/qt4/html/opengl-framebufferobject2.html -share/doc/qt4/html/opengl-grabber-glwidget-cpp.html -share/doc/qt4/html/opengl-grabber-glwidget-h.html -share/doc/qt4/html/opengl-grabber-main-cpp.html -share/doc/qt4/html/opengl-grabber-mainwindow-cpp.html -share/doc/qt4/html/opengl-grabber-mainwindow-h.html -share/doc/qt4/html/opengl-grabber.html -share/doc/qt4/html/opengl-hellogl-glwidget-cpp.html -share/doc/qt4/html/opengl-hellogl-glwidget-h.html -share/doc/qt4/html/opengl-hellogl-main-cpp.html -share/doc/qt4/html/opengl-hellogl-window-cpp.html -share/doc/qt4/html/opengl-hellogl-window-h.html -share/doc/qt4/html/opengl-hellogl.html -share/doc/qt4/html/opengl-overpainting-bubble-cpp.html -share/doc/qt4/html/opengl-overpainting-bubble-h.html -share/doc/qt4/html/opengl-overpainting-glwidget-cpp.html -share/doc/qt4/html/opengl-overpainting-glwidget-h.html -share/doc/qt4/html/opengl-overpainting-main-cpp.html -share/doc/qt4/html/opengl-overpainting.html -share/doc/qt4/html/opengl-pbuffers-glwidget-cpp.html -share/doc/qt4/html/opengl-pbuffers-glwidget-h.html -share/doc/qt4/html/opengl-pbuffers-main-cpp.html -share/doc/qt4/html/opengl-pbuffers-pbuffers-qrc.html -share/doc/qt4/html/opengl-pbuffers.html -share/doc/qt4/html/opengl-pbuffers2-glwidget-cpp.html -share/doc/qt4/html/opengl-pbuffers2-glwidget-h.html -share/doc/qt4/html/opengl-pbuffers2-main-cpp.html -share/doc/qt4/html/opengl-pbuffers2-pbuffers2-qrc.html -share/doc/qt4/html/opengl-pbuffers2.html -share/doc/qt4/html/opengl-samplebuffers-glwidget-cpp.html -share/doc/qt4/html/opengl-samplebuffers-glwidget-h.html -share/doc/qt4/html/opengl-samplebuffers-main-cpp.html -share/doc/qt4/html/opengl-samplebuffers.html -share/doc/qt4/html/opengl-textures-glwidget-cpp.html -share/doc/qt4/html/opengl-textures-glwidget-h.html -share/doc/qt4/html/opengl-textures-main-cpp.html -share/doc/qt4/html/opengl-textures-textures-qrc.html -share/doc/qt4/html/opengl-textures-window-cpp.html -share/doc/qt4/html/opengl-textures-window-h.html -share/doc/qt4/html/opengl-textures.html -share/doc/qt4/html/opensourceedition.html -share/doc/qt4/html/organizers.html -share/doc/qt4/html/overviews.html -share/doc/qt4/html/painting-basicdrawing-basicdrawing-qrc.html -share/doc/qt4/html/painting-basicdrawing-main-cpp.html -share/doc/qt4/html/painting-basicdrawing-renderarea-cpp.html -share/doc/qt4/html/painting-basicdrawing-renderarea-h.html -share/doc/qt4/html/painting-basicdrawing-window-cpp.html -share/doc/qt4/html/painting-basicdrawing-window-h.html -share/doc/qt4/html/painting-basicdrawing.html -share/doc/qt4/html/painting-concentriccircles-circlewidget-cpp.html -share/doc/qt4/html/painting-concentriccircles-circlewidget-h.html -share/doc/qt4/html/painting-concentriccircles-main-cpp.html -share/doc/qt4/html/painting-concentriccircles-window-cpp.html -share/doc/qt4/html/painting-concentriccircles-window-h.html -share/doc/qt4/html/painting-concentriccircles.html -share/doc/qt4/html/painting-fontsampler-main-cpp.html -share/doc/qt4/html/painting-fontsampler-mainwindow-cpp.html -share/doc/qt4/html/painting-fontsampler-mainwindow-h.html -share/doc/qt4/html/painting-fontsampler-previewdialog-cpp.html -share/doc/qt4/html/painting-fontsampler-previewdialog-h.html -share/doc/qt4/html/painting-fontsampler-previewlabel-cpp.html -share/doc/qt4/html/painting-fontsampler-previewlabel-h.html -share/doc/qt4/html/painting-fontsampler.html -share/doc/qt4/html/painting-imagecomposition-imagecomposer-cpp.html -share/doc/qt4/html/painting-imagecomposition-imagecomposer-h.html -share/doc/qt4/html/painting-imagecomposition-imagecomposition-qrc.html -share/doc/qt4/html/painting-imagecomposition-main-cpp.html -share/doc/qt4/html/painting-imagecomposition.html -share/doc/qt4/html/painting-painterpaths-main-cpp.html -share/doc/qt4/html/painting-painterpaths-renderarea-cpp.html -share/doc/qt4/html/painting-painterpaths-renderarea-h.html -share/doc/qt4/html/painting-painterpaths-window-cpp.html -share/doc/qt4/html/painting-painterpaths-window-h.html -share/doc/qt4/html/painting-painterpaths.html -share/doc/qt4/html/painting-svgviewer-main-cpp.html -share/doc/qt4/html/painting-svgviewer-mainwindow-cpp.html -share/doc/qt4/html/painting-svgviewer-mainwindow-h.html -share/doc/qt4/html/painting-svgviewer-svgview-cpp.html -share/doc/qt4/html/painting-svgviewer-svgview-h.html -share/doc/qt4/html/painting-svgviewer-svgviewer-qrc.html -share/doc/qt4/html/painting-svgviewer-svgwindow-cpp.html -share/doc/qt4/html/painting-svgviewer-svgwindow-h.html -share/doc/qt4/html/painting-svgviewer.html -share/doc/qt4/html/painting-transformations-main-cpp.html -share/doc/qt4/html/painting-transformations-renderarea-cpp.html -share/doc/qt4/html/painting-transformations-renderarea-h.html -share/doc/qt4/html/painting-transformations-window-cpp.html -share/doc/qt4/html/painting-transformations-window-h.html -share/doc/qt4/html/painting-transformations.html -share/doc/qt4/html/paintsystem.html -share/doc/qt4/html/pdf-licensing.html -share/doc/qt4/html/platform-notes-mac.html -share/doc/qt4/html/platform-notes-platforms.html -share/doc/qt4/html/platform-notes-windows.html -share/doc/qt4/html/platform-notes-x11.html -share/doc/qt4/html/platform-notes.html -share/doc/qt4/html/plugins-howto.html -share/doc/qt4/html/plugins.html -share/doc/qt4/html/porting-qsa.html -share/doc/qt4/html/porting.html -share/doc/qt4/html/porting4-designer.html -share/doc/qt4/html/porting4-dnd.html -share/doc/qt4/html/porting4-overview.html -share/doc/qt4/html/porting4.html -share/doc/qt4/html/printing.html -share/doc/qt4/html/properties.html -share/doc/qt4/html/q3accel-members.html -share/doc/qt4/html/q3accel-obsolete.html -share/doc/qt4/html/q3accel.html -share/doc/qt4/html/q3action-members.html -share/doc/qt4/html/q3action.html -share/doc/qt4/html/q3actiongroup-members.html -share/doc/qt4/html/q3actiongroup.html -share/doc/qt4/html/q3asciicache-members.html -share/doc/qt4/html/q3asciicache.html -share/doc/qt4/html/q3asciicacheiterator-members.html -share/doc/qt4/html/q3asciicacheiterator.html -share/doc/qt4/html/q3asciidict-members.html -share/doc/qt4/html/q3asciidict.html -share/doc/qt4/html/q3asciidictiterator-members.html -share/doc/qt4/html/q3asciidictiterator.html -share/doc/qt4/html/q3button-members.html -share/doc/qt4/html/q3button.html -share/doc/qt4/html/q3buttongroup-members.html -share/doc/qt4/html/q3buttongroup.html -share/doc/qt4/html/q3cache-members.html -share/doc/qt4/html/q3cache.html -share/doc/qt4/html/q3cacheiterator-members.html -share/doc/qt4/html/q3cacheiterator.html -share/doc/qt4/html/q3canvas-members.html -share/doc/qt4/html/q3canvas.html -share/doc/qt4/html/q3canvasellipse-members.html -share/doc/qt4/html/q3canvasellipse.html -share/doc/qt4/html/q3canvasitem-members.html -share/doc/qt4/html/q3canvasitem-obsolete.html -share/doc/qt4/html/q3canvasitem.html -share/doc/qt4/html/q3canvasitemlist-members.html -share/doc/qt4/html/q3canvasitemlist.html -share/doc/qt4/html/q3canvasline-members.html -share/doc/qt4/html/q3canvasline.html -share/doc/qt4/html/q3canvaspixmap-members.html -share/doc/qt4/html/q3canvaspixmap.html -share/doc/qt4/html/q3canvaspixmaparray-members.html -share/doc/qt4/html/q3canvaspixmaparray-obsolete.html -share/doc/qt4/html/q3canvaspixmaparray.html -share/doc/qt4/html/q3canvaspolygon-members.html -share/doc/qt4/html/q3canvaspolygon.html -share/doc/qt4/html/q3canvaspolygonalitem-members.html -share/doc/qt4/html/q3canvaspolygonalitem.html -share/doc/qt4/html/q3canvasrectangle-members.html -share/doc/qt4/html/q3canvasrectangle.html -share/doc/qt4/html/q3canvasspline-members.html -share/doc/qt4/html/q3canvasspline.html -share/doc/qt4/html/q3canvassprite-members.html -share/doc/qt4/html/q3canvassprite.html -share/doc/qt4/html/q3canvastext-members.html -share/doc/qt4/html/q3canvastext.html -share/doc/qt4/html/q3canvasview-members.html -share/doc/qt4/html/q3canvasview.html -share/doc/qt4/html/q3checklistitem-members.html -share/doc/qt4/html/q3checklistitem.html -share/doc/qt4/html/q3checktableitem-members.html -share/doc/qt4/html/q3checktableitem.html -share/doc/qt4/html/q3colordrag-members.html -share/doc/qt4/html/q3colordrag.html -share/doc/qt4/html/q3combobox-members.html -share/doc/qt4/html/q3combobox-obsolete.html -share/doc/qt4/html/q3combobox.html -share/doc/qt4/html/q3combotableitem-members.html -share/doc/qt4/html/q3combotableitem.html -share/doc/qt4/html/q3cstring-members.html -share/doc/qt4/html/q3cstring.html -share/doc/qt4/html/q3databrowser-members.html -share/doc/qt4/html/q3databrowser.html -share/doc/qt4/html/q3datatable-members.html -share/doc/qt4/html/q3datatable.html -share/doc/qt4/html/q3dataview-members.html -share/doc/qt4/html/q3dataview.html -share/doc/qt4/html/q3dateedit-members.html -share/doc/qt4/html/q3dateedit.html -share/doc/qt4/html/q3datetimeedit-members.html -share/doc/qt4/html/q3datetimeedit.html -share/doc/qt4/html/q3datetimeeditbase-members.html -share/doc/qt4/html/q3datetimeeditbase.html -share/doc/qt4/html/q3deepcopy-members.html -share/doc/qt4/html/q3deepcopy.html -share/doc/qt4/html/q3dict-members.html -share/doc/qt4/html/q3dict.html -share/doc/qt4/html/q3dictiterator-members.html -share/doc/qt4/html/q3dictiterator.html -share/doc/qt4/html/q3dns-members.html -share/doc/qt4/html/q3dns.html -share/doc/qt4/html/q3dockarea-members.html -share/doc/qt4/html/q3dockarea.html -share/doc/qt4/html/q3dockwindow-members.html -share/doc/qt4/html/q3dockwindow.html -share/doc/qt4/html/q3dragobject-members.html -share/doc/qt4/html/q3dragobject.html -share/doc/qt4/html/q3dropsite-members.html -share/doc/qt4/html/q3dropsite.html -share/doc/qt4/html/q3editorfactory-members.html -share/doc/qt4/html/q3editorfactory.html -share/doc/qt4/html/q3filedialog-members.html -share/doc/qt4/html/q3filedialog.html -share/doc/qt4/html/q3fileiconprovider-members.html -share/doc/qt4/html/q3fileiconprovider.html -share/doc/qt4/html/q3filepreview-members.html -share/doc/qt4/html/q3filepreview.html -share/doc/qt4/html/q3frame-members.html -share/doc/qt4/html/q3frame.html -share/doc/qt4/html/q3ftp-members.html -share/doc/qt4/html/q3ftp.html -share/doc/qt4/html/q3grid-members.html -share/doc/qt4/html/q3grid.html -share/doc/qt4/html/q3gridview-members.html -share/doc/qt4/html/q3gridview.html -share/doc/qt4/html/q3groupbox-members.html -share/doc/qt4/html/q3groupbox.html -share/doc/qt4/html/q3hbox-members.html -share/doc/qt4/html/q3hbox.html -share/doc/qt4/html/q3hbuttongroup-members.html -share/doc/qt4/html/q3hbuttongroup.html -share/doc/qt4/html/q3header-members.html -share/doc/qt4/html/q3header.html -share/doc/qt4/html/q3hgroupbox-members.html -share/doc/qt4/html/q3hgroupbox.html -share/doc/qt4/html/q3http-members.html -share/doc/qt4/html/q3http.html -share/doc/qt4/html/q3httpheader-members.html -share/doc/qt4/html/q3httpheader.html -share/doc/qt4/html/q3httprequestheader-members.html -share/doc/qt4/html/q3httprequestheader.html -share/doc/qt4/html/q3httpresponseheader-members.html -share/doc/qt4/html/q3httpresponseheader.html -share/doc/qt4/html/q3icondrag-members.html -share/doc/qt4/html/q3icondrag.html -share/doc/qt4/html/q3icondragitem-members.html -share/doc/qt4/html/q3icondragitem.html -share/doc/qt4/html/q3iconview-members.html -share/doc/qt4/html/q3iconview.html -share/doc/qt4/html/q3iconviewitem-members.html -share/doc/qt4/html/q3iconviewitem.html -share/doc/qt4/html/q3imagedrag-members.html -share/doc/qt4/html/q3imagedrag.html -share/doc/qt4/html/q3intcache-members.html -share/doc/qt4/html/q3intcache.html -share/doc/qt4/html/q3intcacheiterator-members.html -share/doc/qt4/html/q3intcacheiterator.html -share/doc/qt4/html/q3intdict-members.html -share/doc/qt4/html/q3intdict.html -share/doc/qt4/html/q3intdictiterator-members.html -share/doc/qt4/html/q3intdictiterator.html -share/doc/qt4/html/q3listbox-members.html -share/doc/qt4/html/q3listbox.html -share/doc/qt4/html/q3listboxitem-members.html -share/doc/qt4/html/q3listboxitem.html -share/doc/qt4/html/q3listboxpixmap-members.html -share/doc/qt4/html/q3listboxpixmap.html -share/doc/qt4/html/q3listboxtext-members.html -share/doc/qt4/html/q3listboxtext.html -share/doc/qt4/html/q3listview-members.html -share/doc/qt4/html/q3listview.html -share/doc/qt4/html/q3listviewitem-members.html -share/doc/qt4/html/q3listviewitem.html -share/doc/qt4/html/q3listviewitemiterator-members.html -share/doc/qt4/html/q3listviewitemiterator.html -share/doc/qt4/html/q3localfs-members.html -share/doc/qt4/html/q3localfs.html -share/doc/qt4/html/q3mainwindow-members.html -share/doc/qt4/html/q3mainwindow.html -share/doc/qt4/html/q3memarray-members.html -share/doc/qt4/html/q3memarray.html -share/doc/qt4/html/q3mimesourcefactory-members.html -share/doc/qt4/html/q3mimesourcefactory.html -share/doc/qt4/html/q3multilineedit-members.html -share/doc/qt4/html/q3multilineedit.html -share/doc/qt4/html/q3networkoperation-members.html -share/doc/qt4/html/q3networkoperation.html -share/doc/qt4/html/q3networkprotocol-members.html -share/doc/qt4/html/q3networkprotocol.html -share/doc/qt4/html/q3paintdevicemetrics-members.html -share/doc/qt4/html/q3paintdevicemetrics.html -share/doc/qt4/html/q3painter-members.html -share/doc/qt4/html/q3painter.html -share/doc/qt4/html/q3picture-members.html -share/doc/qt4/html/q3picture.html -share/doc/qt4/html/q3pointarray-members.html -share/doc/qt4/html/q3pointarray.html -share/doc/qt4/html/q3popupmenu-members.html -share/doc/qt4/html/q3popupmenu.html -share/doc/qt4/html/q3process-members.html -share/doc/qt4/html/q3process.html -share/doc/qt4/html/q3progressbar-members.html -share/doc/qt4/html/q3progressbar-obsolete.html -share/doc/qt4/html/q3progressbar.html -share/doc/qt4/html/q3progressdialog-members.html -share/doc/qt4/html/q3progressdialog.html -share/doc/qt4/html/q3ptrcollection-members.html -share/doc/qt4/html/q3ptrcollection.html -share/doc/qt4/html/q3ptrdict-members.html -share/doc/qt4/html/q3ptrdict.html -share/doc/qt4/html/q3ptrdictiterator-members.html -share/doc/qt4/html/q3ptrdictiterator.html -share/doc/qt4/html/q3ptrlist-members.html -share/doc/qt4/html/q3ptrlist.html -share/doc/qt4/html/q3ptrlistiterator-members.html -share/doc/qt4/html/q3ptrlistiterator.html -share/doc/qt4/html/q3ptrqueue-members.html -share/doc/qt4/html/q3ptrqueue.html -share/doc/qt4/html/q3ptrstack-members.html -share/doc/qt4/html/q3ptrstack.html -share/doc/qt4/html/q3ptrvector-members.html -share/doc/qt4/html/q3ptrvector.html -share/doc/qt4/html/q3rangecontrol-members.html -share/doc/qt4/html/q3rangecontrol.html -share/doc/qt4/html/q3scrollview-members.html -share/doc/qt4/html/q3scrollview-obsolete.html -share/doc/qt4/html/q3scrollview.html -share/doc/qt4/html/q3semaphore-members.html -share/doc/qt4/html/q3semaphore.html -share/doc/qt4/html/q3serversocket-members.html -share/doc/qt4/html/q3serversocket.html -share/doc/qt4/html/q3shared-members.html -share/doc/qt4/html/q3shared.html -share/doc/qt4/html/q3signal-members.html -share/doc/qt4/html/q3signal-obsolete.html -share/doc/qt4/html/q3signal.html -share/doc/qt4/html/q3simplerichtext-members.html -share/doc/qt4/html/q3simplerichtext.html -share/doc/qt4/html/q3socket-members.html -share/doc/qt4/html/q3socket.html -share/doc/qt4/html/q3socketdevice-members.html -share/doc/qt4/html/q3socketdevice.html -share/doc/qt4/html/q3sqlcursor-members.html -share/doc/qt4/html/q3sqlcursor.html -share/doc/qt4/html/q3sqleditorfactory-members.html -share/doc/qt4/html/q3sqleditorfactory.html -share/doc/qt4/html/q3sqlfieldinfo-members.html -share/doc/qt4/html/q3sqlfieldinfo.html -share/doc/qt4/html/q3sqlform-members.html -share/doc/qt4/html/q3sqlform.html -share/doc/qt4/html/q3sqlpropertymap-members.html -share/doc/qt4/html/q3sqlpropertymap.html -share/doc/qt4/html/q3sqlrecordinfo-members.html -share/doc/qt4/html/q3sqlrecordinfo.html -share/doc/qt4/html/q3sqlselectcursor-members.html -share/doc/qt4/html/q3sqlselectcursor.html -share/doc/qt4/html/q3storeddrag-members.html -share/doc/qt4/html/q3storeddrag.html -share/doc/qt4/html/q3strilist-members.html -share/doc/qt4/html/q3strilist.html -share/doc/qt4/html/q3strlist-members.html -share/doc/qt4/html/q3strlist.html -share/doc/qt4/html/q3strlistiterator-members.html -share/doc/qt4/html/q3strlistiterator.html -share/doc/qt4/html/q3stylesheet-members.html -share/doc/qt4/html/q3stylesheet.html -share/doc/qt4/html/q3stylesheetitem-members.html -share/doc/qt4/html/q3stylesheetitem.html -share/doc/qt4/html/q3syntaxhighlighter-members.html -share/doc/qt4/html/q3syntaxhighlighter.html -share/doc/qt4/html/q3tabdialog-members.html -share/doc/qt4/html/q3tabdialog-obsolete.html -share/doc/qt4/html/q3tabdialog.html -share/doc/qt4/html/q3table-members.html -share/doc/qt4/html/q3table.html -share/doc/qt4/html/q3tableitem-members.html -share/doc/qt4/html/q3tableitem.html -share/doc/qt4/html/q3tableselection-members.html -share/doc/qt4/html/q3tableselection.html -share/doc/qt4/html/q3textbrowser-members.html -share/doc/qt4/html/q3textbrowser.html -share/doc/qt4/html/q3textdrag-members.html -share/doc/qt4/html/q3textdrag.html -share/doc/qt4/html/q3textedit-members.html -share/doc/qt4/html/q3textedit.html -share/doc/qt4/html/q3textstream-members.html -share/doc/qt4/html/q3textstream-obsolete.html -share/doc/qt4/html/q3textstream.html -share/doc/qt4/html/q3textview-members.html -share/doc/qt4/html/q3textview.html -share/doc/qt4/html/q3timeedit-members.html -share/doc/qt4/html/q3timeedit.html -share/doc/qt4/html/q3toolbar-members.html -share/doc/qt4/html/q3toolbar.html -share/doc/qt4/html/q3uridrag-members.html -share/doc/qt4/html/q3uridrag-obsolete.html -share/doc/qt4/html/q3uridrag.html -share/doc/qt4/html/q3url-members.html -share/doc/qt4/html/q3url.html -share/doc/qt4/html/q3urloperator-members.html -share/doc/qt4/html/q3urloperator.html -share/doc/qt4/html/q3valuelist-members.html -share/doc/qt4/html/q3valuelist.html -share/doc/qt4/html/q3valuelistconstiterator-members.html -share/doc/qt4/html/q3valuelistconstiterator.html -share/doc/qt4/html/q3valuelistiterator-members.html -share/doc/qt4/html/q3valuelistiterator.html -share/doc/qt4/html/q3valuestack-members.html -share/doc/qt4/html/q3valuestack.html -share/doc/qt4/html/q3valuevector-members.html -share/doc/qt4/html/q3valuevector.html -share/doc/qt4/html/q3vbox-members.html -share/doc/qt4/html/q3vbox.html -share/doc/qt4/html/q3vbuttongroup-members.html -share/doc/qt4/html/q3vbuttongroup.html -share/doc/qt4/html/q3vgroupbox-members.html -share/doc/qt4/html/q3vgroupbox.html -share/doc/qt4/html/q3whatsthis-members.html -share/doc/qt4/html/q3whatsthis.html -share/doc/qt4/html/q3widgetstack-members.html -share/doc/qt4/html/q3widgetstack.html -share/doc/qt4/html/q3wizard-members.html -share/doc/qt4/html/q3wizard-obsolete.html -share/doc/qt4/html/q3wizard.html -share/doc/qt4/html/qabstractbutton-members.html -share/doc/qt4/html/qabstractbutton-qt3.html -share/doc/qt4/html/qabstractbutton.html -share/doc/qt4/html/qabstracteventdispatcher-members.html -share/doc/qt4/html/qabstracteventdispatcher.html -share/doc/qt4/html/qabstractextensionfactory-members.html -share/doc/qt4/html/qabstractextensionfactory.html -share/doc/qt4/html/qabstractextensionmanager-members.html -share/doc/qt4/html/qabstractextensionmanager.html -share/doc/qt4/html/qabstractfileengine-extensionoption.html -share/doc/qt4/html/qabstractfileengine-extensionreturn.html -share/doc/qt4/html/qabstractfileengine-members.html -share/doc/qt4/html/qabstractfileengine.html -share/doc/qt4/html/qabstractfileenginehandler-members.html -share/doc/qt4/html/qabstractfileenginehandler.html -share/doc/qt4/html/qabstractfileengineiterator-members.html -share/doc/qt4/html/qabstractfileengineiterator.html -share/doc/qt4/html/qabstractfontengine-fixedpoint-members.html -share/doc/qt4/html/qabstractfontengine-fixedpoint.html -share/doc/qt4/html/qabstractfontengine-glyphmetrics-members.html -share/doc/qt4/html/qabstractfontengine-glyphmetrics.html -share/doc/qt4/html/qabstractfontengine-members.html -share/doc/qt4/html/qabstractfontengine.html -share/doc/qt4/html/qabstractformbuilder-members.html -share/doc/qt4/html/qabstractformbuilder.html -share/doc/qt4/html/qabstractgraphicsshapeitem-members.html -share/doc/qt4/html/qabstractgraphicsshapeitem.html -share/doc/qt4/html/qabstractitemdelegate-members.html -share/doc/qt4/html/qabstractitemdelegate-obsolete.html -share/doc/qt4/html/qabstractitemdelegate.html -share/doc/qt4/html/qabstractitemmodel-members.html -share/doc/qt4/html/qabstractitemmodel-obsolete.html -share/doc/qt4/html/qabstractitemmodel.html -share/doc/qt4/html/qabstractitemview-members.html -share/doc/qt4/html/qabstractitemview-obsolete.html -share/doc/qt4/html/qabstractitemview.html -share/doc/qt4/html/qabstractlistmodel-members.html -share/doc/qt4/html/qabstractlistmodel.html -share/doc/qt4/html/qabstractprintdialog-members.html -share/doc/qt4/html/qabstractprintdialog.html -share/doc/qt4/html/qabstractproxymodel-members.html -share/doc/qt4/html/qabstractproxymodel.html -share/doc/qt4/html/qabstractscrollarea-members.html -share/doc/qt4/html/qabstractscrollarea.html -share/doc/qt4/html/qabstractslider-members.html -share/doc/qt4/html/qabstractslider-qt3.html -share/doc/qt4/html/qabstractslider.html -share/doc/qt4/html/qabstractsocket-members.html -share/doc/qt4/html/qabstractsocket-qt3.html -share/doc/qt4/html/qabstractsocket.html -share/doc/qt4/html/qabstractspinbox-members.html -share/doc/qt4/html/qabstractspinbox.html -share/doc/qt4/html/qabstracttablemodel-members.html -share/doc/qt4/html/qabstracttablemodel.html -share/doc/qt4/html/qabstracttextdocumentlayout-members.html -share/doc/qt4/html/qabstracttextdocumentlayout-paintcontext-members.html -share/doc/qt4/html/qabstracttextdocumentlayout-paintcontext.html -share/doc/qt4/html/qabstracttextdocumentlayout-selection-members.html -share/doc/qt4/html/qabstracttextdocumentlayout-selection.html -share/doc/qt4/html/qabstracttextdocumentlayout.html -share/doc/qt4/html/qaccessible-members.html -share/doc/qt4/html/qaccessible.html -share/doc/qt4/html/qaccessiblebridge-members.html -share/doc/qt4/html/qaccessiblebridge.html -share/doc/qt4/html/qaccessiblebridgeplugin-members.html -share/doc/qt4/html/qaccessiblebridgeplugin.html -share/doc/qt4/html/qaccessibleevent-members.html -share/doc/qt4/html/qaccessibleevent.html -share/doc/qt4/html/qaccessibleinterface-members.html -share/doc/qt4/html/qaccessibleinterface.html -share/doc/qt4/html/qaccessibleobject-members.html -share/doc/qt4/html/qaccessibleobject.html -share/doc/qt4/html/qaccessibleplugin-members.html -share/doc/qt4/html/qaccessibleplugin.html -share/doc/qt4/html/qaccessiblewidget-members.html -share/doc/qt4/html/qaccessiblewidget.html -share/doc/qt4/html/qaction-members.html -share/doc/qt4/html/qaction-qt3.html -share/doc/qt4/html/qaction.html -share/doc/qt4/html/qactionevent-members.html -share/doc/qt4/html/qactionevent.html -share/doc/qt4/html/qactiongroup-members.html -share/doc/qt4/html/qactiongroup-qt3.html -share/doc/qt4/html/qactiongroup.html -share/doc/qt4/html/qapplication-members.html -share/doc/qt4/html/qapplication-qt3.html -share/doc/qt4/html/qapplication.html -share/doc/qt4/html/qassistantclient-members.html -share/doc/qt4/html/qassistantclient.html -share/doc/qt4/html/qauthenticator-members.html -share/doc/qt4/html/qauthenticator.html -share/doc/qt4/html/qaxaggregated-members.html -share/doc/qt4/html/qaxaggregated.html -share/doc/qt4/html/qaxbase-members.html -share/doc/qt4/html/qaxbase.html -share/doc/qt4/html/qaxbindable-members.html -share/doc/qt4/html/qaxbindable.html -share/doc/qt4/html/qaxcontainer.html -share/doc/qt4/html/qaxfactory-members.html -share/doc/qt4/html/qaxfactory.html -share/doc/qt4/html/qaxobject-members.html -share/doc/qt4/html/qaxobject.html -share/doc/qt4/html/qaxscript-members.html -share/doc/qt4/html/qaxscript.html -share/doc/qt4/html/qaxscriptengine-members.html -share/doc/qt4/html/qaxscriptengine.html -share/doc/qt4/html/qaxscriptmanager-members.html -share/doc/qt4/html/qaxscriptmanager.html -share/doc/qt4/html/qaxserver-demo-hierarchy.html -share/doc/qt4/html/qaxserver-demo-menus.html -share/doc/qt4/html/qaxserver-demo-multiple.html -share/doc/qt4/html/qaxserver-demo-opengl.html -share/doc/qt4/html/qaxserver-demo-simple.html -share/doc/qt4/html/qaxserver-demo-wrapper.html -share/doc/qt4/html/qaxserver.html -share/doc/qt4/html/qaxwidget-members.html -share/doc/qt4/html/qaxwidget.html -share/doc/qt4/html/qbasictimer-members.html -share/doc/qt4/html/qbasictimer.html -share/doc/qt4/html/qbitarray-members.html -share/doc/qt4/html/qbitarray.html -share/doc/qt4/html/qbitmap-members.html -share/doc/qt4/html/qbitmap-qt3.html -share/doc/qt4/html/qbitmap.html -share/doc/qt4/html/qboxlayout-members.html -share/doc/qt4/html/qboxlayout-qt3.html -share/doc/qt4/html/qboxlayout.html -share/doc/qt4/html/qbrush-members.html -share/doc/qt4/html/qbrush-qt3.html -share/doc/qt4/html/qbrush.html -share/doc/qt4/html/qbuffer-members.html -share/doc/qt4/html/qbuffer.html -share/doc/qt4/html/qbuttongroup-members.html -share/doc/qt4/html/qbuttongroup-qt3.html -share/doc/qt4/html/qbuttongroup.html -share/doc/qt4/html/qbytearray-members.html -share/doc/qt4/html/qbytearray-qt3.html -share/doc/qt4/html/qbytearray.html -share/doc/qt4/html/qbytearraymatcher-members.html -share/doc/qt4/html/qbytearraymatcher.html -share/doc/qt4/html/qcache-members.html -share/doc/qt4/html/qcache-qt3.html -share/doc/qt4/html/qcache.html -share/doc/qt4/html/qcalendarwidget-members.html -share/doc/qt4/html/qcalendarwidget-obsolete.html -share/doc/qt4/html/qcalendarwidget.html -share/doc/qt4/html/qcdestyle-members.html -share/doc/qt4/html/qcdestyle.html -share/doc/qt4/html/qchar-members.html -share/doc/qt4/html/qchar-qt3.html -share/doc/qt4/html/qchar.html -share/doc/qt4/html/qcheckbox-members.html -share/doc/qt4/html/qcheckbox-qt3.html -share/doc/qt4/html/qcheckbox.html -share/doc/qt4/html/qchildevent-members.html -share/doc/qt4/html/qchildevent-qt3.html -share/doc/qt4/html/qchildevent.html -share/doc/qt4/html/qcleanlooksstyle-members.html -share/doc/qt4/html/qcleanlooksstyle.html -share/doc/qt4/html/qclipboard-members.html -share/doc/qt4/html/qclipboard-qt3.html -share/doc/qt4/html/qclipboard.html -share/doc/qt4/html/qcloseevent-members.html -share/doc/qt4/html/qcloseevent.html -share/doc/qt4/html/qcolor-members.html -share/doc/qt4/html/qcolor-obsolete.html -share/doc/qt4/html/qcolor-qt3.html -share/doc/qt4/html/qcolor.html -share/doc/qt4/html/qcolordialog-members.html -share/doc/qt4/html/qcolordialog-qt3.html -share/doc/qt4/html/qcolordialog.html -share/doc/qt4/html/qcolorgroup-members.html -share/doc/qt4/html/qcolorgroup-qt3.html -share/doc/qt4/html/qcolorgroup.html -share/doc/qt4/html/qcolormap-members.html -share/doc/qt4/html/qcolormap.html -share/doc/qt4/html/qcolumnview-members.html -share/doc/qt4/html/qcolumnview.html -share/doc/qt4/html/qcombobox-members.html -share/doc/qt4/html/qcombobox-obsolete.html -share/doc/qt4/html/qcombobox-qt3.html -share/doc/qt4/html/qcombobox.html -share/doc/qt4/html/qcommonstyle-members.html -share/doc/qt4/html/qcommonstyle.html -share/doc/qt4/html/qcompleter-members.html -share/doc/qt4/html/qcompleter.html -share/doc/qt4/html/qconicalgradient-members.html -share/doc/qt4/html/qconicalgradient.html -share/doc/qt4/html/qconststring-members.html -share/doc/qt4/html/qconststring-qt3.html -share/doc/qt4/html/qconststring.html -share/doc/qt4/html/qcontextmenuevent-members.html -share/doc/qt4/html/qcontextmenuevent-qt3.html -share/doc/qt4/html/qcontextmenuevent.html -share/doc/qt4/html/qcopchannel-members.html -share/doc/qt4/html/qcopchannel-qt3.html -share/doc/qt4/html/qcopchannel.html -share/doc/qt4/html/qcoreapplication-members.html -share/doc/qt4/html/qcoreapplication-qt3.html -share/doc/qt4/html/qcoreapplication.html -share/doc/qt4/html/qcryptographichash-members.html -share/doc/qt4/html/qcryptographichash.html -share/doc/qt4/html/qcursor-members.html -share/doc/qt4/html/qcursor.html -share/doc/qt4/html/qcustomevent-members.html -share/doc/qt4/html/qcustomevent-qt3.html -share/doc/qt4/html/qcustomevent.html -share/doc/qt4/html/qcustomrasterpaintdevice-members.html -share/doc/qt4/html/qcustomrasterpaintdevice.html -share/doc/qt4/html/qdatastream-members.html -share/doc/qt4/html/qdatastream-qt3.html -share/doc/qt4/html/qdatastream.html -share/doc/qt4/html/qdatawidgetmapper-members.html -share/doc/qt4/html/qdatawidgetmapper.html -share/doc/qt4/html/qdate-members.html -share/doc/qt4/html/qdate-obsolete.html -share/doc/qt4/html/qdate-qt3.html -share/doc/qt4/html/qdate.html -share/doc/qt4/html/qdateedit-members.html -share/doc/qt4/html/qdateedit.html -share/doc/qt4/html/qdatetime-members.html -share/doc/qt4/html/qdatetime-qt3.html -share/doc/qt4/html/qdatetime.html -share/doc/qt4/html/qdatetimeedit-members.html -share/doc/qt4/html/qdatetimeedit.html -share/doc/qt4/html/qdbus.html -share/doc/qt4/html/qdbusabstractadaptor-members.html -share/doc/qt4/html/qdbusabstractadaptor.html -share/doc/qt4/html/qdbusabstractinterface-members.html -share/doc/qt4/html/qdbusabstractinterface.html -share/doc/qt4/html/qdbusadaptorexample.html -share/doc/qt4/html/qdbusargument-members.html -share/doc/qt4/html/qdbusargument.html -share/doc/qt4/html/qdbusconnection-members.html -share/doc/qt4/html/qdbusconnection.html -share/doc/qt4/html/qdbusconnectioninterface-members.html -share/doc/qt4/html/qdbusconnectioninterface.html -share/doc/qt4/html/qdbuscontext-members.html -share/doc/qt4/html/qdbuscontext.html -share/doc/qt4/html/qdbusdeclaringsignals.html -share/doc/qt4/html/qdbusdeclaringslots.html -share/doc/qt4/html/qdbuserror-members.html -share/doc/qt4/html/qdbuserror.html -share/doc/qt4/html/qdbusinterface-members.html -share/doc/qt4/html/qdbusinterface.html -share/doc/qt4/html/qdbusmessage-members.html -share/doc/qt4/html/qdbusmessage.html -share/doc/qt4/html/qdbusobjectpath-members.html -share/doc/qt4/html/qdbusobjectpath.html -share/doc/qt4/html/qdbusreply-members.html -share/doc/qt4/html/qdbusreply.html -share/doc/qt4/html/qdbusserver-members.html -share/doc/qt4/html/qdbusserver.html -share/doc/qt4/html/qdbussignature-members.html -share/doc/qt4/html/qdbussignature.html -share/doc/qt4/html/qdbustypesystem.html -share/doc/qt4/html/qdbusvariant-members.html -share/doc/qt4/html/qdbusvariant.html -share/doc/qt4/html/qdbusviewer.html -share/doc/qt4/html/qdbusxml2cpp.html -share/doc/qt4/html/qdecoration-members.html -share/doc/qt4/html/qdecoration.html -share/doc/qt4/html/qdecorationfactory-members.html -share/doc/qt4/html/qdecorationfactory.html -share/doc/qt4/html/qdecorationplugin-members.html -share/doc/qt4/html/qdecorationplugin.html -share/doc/qt4/html/qdesigneractioneditorinterface-members.html -share/doc/qt4/html/qdesigneractioneditorinterface.html -share/doc/qt4/html/qdesignercontainerextension-members.html -share/doc/qt4/html/qdesignercontainerextension.html -share/doc/qt4/html/qdesignercustomwidgetcollectioninterface-members.html -share/doc/qt4/html/qdesignercustomwidgetcollectioninterface.html -share/doc/qt4/html/qdesignercustomwidgetinterface-members.html -share/doc/qt4/html/qdesignercustomwidgetinterface.html -share/doc/qt4/html/qdesignerdynamicpropertysheetextension-members.html -share/doc/qt4/html/qdesignerdynamicpropertysheetextension.html -share/doc/qt4/html/qdesignerformeditorinterface-members.html -share/doc/qt4/html/qdesignerformeditorinterface.html -share/doc/qt4/html/qdesignerformwindowcursorinterface-members.html -share/doc/qt4/html/qdesignerformwindowcursorinterface.html -share/doc/qt4/html/qdesignerformwindowinterface-members.html -share/doc/qt4/html/qdesignerformwindowinterface.html -share/doc/qt4/html/qdesignerformwindowmanagerinterface-members.html -share/doc/qt4/html/qdesignerformwindowmanagerinterface.html -share/doc/qt4/html/qdesignermembersheetextension-members.html -share/doc/qt4/html/qdesignermembersheetextension.html -share/doc/qt4/html/qdesignerobjectinspectorinterface-members.html -share/doc/qt4/html/qdesignerobjectinspectorinterface.html -share/doc/qt4/html/qdesignerpropertyeditorinterface-members.html -share/doc/qt4/html/qdesignerpropertyeditorinterface.html -share/doc/qt4/html/qdesignerpropertysheetextension-members.html -share/doc/qt4/html/qdesignerpropertysheetextension.html -share/doc/qt4/html/qdesignertaskmenuextension-members.html -share/doc/qt4/html/qdesignertaskmenuextension.html -share/doc/qt4/html/qdesignerwidgetboxinterface-members.html -share/doc/qt4/html/qdesignerwidgetboxinterface.html -share/doc/qt4/html/qdesktopservices-members.html -share/doc/qt4/html/qdesktopservices.html -share/doc/qt4/html/qdesktopwidget-members.html -share/doc/qt4/html/qdesktopwidget.html -share/doc/qt4/html/qdial-members.html -share/doc/qt4/html/qdial-qt3.html -share/doc/qt4/html/qdial.html -share/doc/qt4/html/qdialog-members.html -share/doc/qt4/html/qdialog-obsolete.html -share/doc/qt4/html/qdialog-qt3.html -share/doc/qt4/html/qdialog.html -share/doc/qt4/html/qdialogbuttonbox-members.html -share/doc/qt4/html/qdialogbuttonbox.html -share/doc/qt4/html/qdir-members.html -share/doc/qt4/html/qdir-obsolete.html -share/doc/qt4/html/qdir-qt3.html -share/doc/qt4/html/qdir.html -share/doc/qt4/html/qdirectpainter-members.html -share/doc/qt4/html/qdirectpainter-obsolete.html -share/doc/qt4/html/qdirectpainter.html -share/doc/qt4/html/qdiriterator-members.html -share/doc/qt4/html/qdiriterator.html -share/doc/qt4/html/qdirmodel-members.html -share/doc/qt4/html/qdirmodel.html -share/doc/qt4/html/qdockwidget-members.html -share/doc/qt4/html/qdockwidget.html -share/doc/qt4/html/qdomattr-members.html -share/doc/qt4/html/qdomattr.html -share/doc/qt4/html/qdomcdatasection-members.html -share/doc/qt4/html/qdomcdatasection.html -share/doc/qt4/html/qdomcharacterdata-members.html -share/doc/qt4/html/qdomcharacterdata.html -share/doc/qt4/html/qdomcomment-members.html -share/doc/qt4/html/qdomcomment.html -share/doc/qt4/html/qdomdocument-members.html -share/doc/qt4/html/qdomdocument.html -share/doc/qt4/html/qdomdocumentfragment-members.html -share/doc/qt4/html/qdomdocumentfragment.html -share/doc/qt4/html/qdomdocumenttype-members.html -share/doc/qt4/html/qdomdocumenttype.html -share/doc/qt4/html/qdomelement-members.html -share/doc/qt4/html/qdomelement.html -share/doc/qt4/html/qdomentity-members.html -share/doc/qt4/html/qdomentity.html -share/doc/qt4/html/qdomentityreference-members.html -share/doc/qt4/html/qdomentityreference.html -share/doc/qt4/html/qdomimplementation-members.html -share/doc/qt4/html/qdomimplementation.html -share/doc/qt4/html/qdomnamednodemap-members.html -share/doc/qt4/html/qdomnamednodemap.html -share/doc/qt4/html/qdomnode-members.html -share/doc/qt4/html/qdomnode.html -share/doc/qt4/html/qdomnodelist-members.html -share/doc/qt4/html/qdomnodelist.html -share/doc/qt4/html/qdomnotation-members.html -share/doc/qt4/html/qdomnotation.html -share/doc/qt4/html/qdomprocessinginstruction-members.html -share/doc/qt4/html/qdomprocessinginstruction.html -share/doc/qt4/html/qdomtext-members.html -share/doc/qt4/html/qdomtext.html -share/doc/qt4/html/qdoublespinbox-members.html -share/doc/qt4/html/qdoublespinbox.html -share/doc/qt4/html/qdoublevalidator-members.html -share/doc/qt4/html/qdoublevalidator-qt3.html -share/doc/qt4/html/qdoublevalidator.html -share/doc/qt4/html/qdrag-members.html -share/doc/qt4/html/qdrag-obsolete.html -share/doc/qt4/html/qdrag.html -share/doc/qt4/html/qdragenterevent-members.html -share/doc/qt4/html/qdragenterevent.html -share/doc/qt4/html/qdragleaveevent-members.html -share/doc/qt4/html/qdragleaveevent.html -share/doc/qt4/html/qdragmoveevent-members.html -share/doc/qt4/html/qdragmoveevent-qt3.html -share/doc/qt4/html/qdragmoveevent.html -share/doc/qt4/html/qdropevent-members.html -share/doc/qt4/html/qdropevent-qt3.html -share/doc/qt4/html/qdropevent.html -share/doc/qt4/html/qdynamicpropertychangeevent-members.html -share/doc/qt4/html/qdynamicpropertychangeevent.html -share/doc/qt4/html/qerrormessage-members.html -share/doc/qt4/html/qerrormessage-qt3.html -share/doc/qt4/html/qerrormessage.html -share/doc/qt4/html/qevent-members.html -share/doc/qt4/html/qevent.html -share/doc/qt4/html/qeventloop-members.html -share/doc/qt4/html/qeventloop.html -share/doc/qt4/html/qextensionfactory-members.html -share/doc/qt4/html/qextensionfactory.html -share/doc/qt4/html/qextensionmanager-members.html -share/doc/qt4/html/qextensionmanager.html -share/doc/qt4/html/qfile-members.html -share/doc/qt4/html/qfile-obsolete.html -share/doc/qt4/html/qfile-qt3.html -share/doc/qt4/html/qfile.html -share/doc/qt4/html/qfiledialog-members.html -share/doc/qt4/html/qfiledialog-qt3.html -share/doc/qt4/html/qfiledialog.html -share/doc/qt4/html/qfileiconprovider-members.html -share/doc/qt4/html/qfileiconprovider.html -share/doc/qt4/html/qfileinfo-members.html -share/doc/qt4/html/qfileinfo-obsolete.html -share/doc/qt4/html/qfileinfo-qt3.html -share/doc/qt4/html/qfileinfo.html -share/doc/qt4/html/qfileopenevent-members.html -share/doc/qt4/html/qfileopenevent.html -share/doc/qt4/html/qfilesystemwatcher-members.html -share/doc/qt4/html/qfilesystemwatcher.html -share/doc/qt4/html/qflag-members.html -share/doc/qt4/html/qflag.html -share/doc/qt4/html/qflags-members.html -share/doc/qt4/html/qflags.html -share/doc/qt4/html/qfocusevent-members.html -share/doc/qt4/html/qfocusevent-qt3.html -share/doc/qt4/html/qfocusevent.html -share/doc/qt4/html/qfocusframe-members.html -share/doc/qt4/html/qfocusframe.html -share/doc/qt4/html/qfont-members.html -share/doc/qt4/html/qfont-qt3.html -share/doc/qt4/html/qfont.html -share/doc/qt4/html/qfontcombobox-members.html -share/doc/qt4/html/qfontcombobox.html -share/doc/qt4/html/qfontdatabase-members.html -share/doc/qt4/html/qfontdatabase.html -share/doc/qt4/html/qfontdialog-members.html -share/doc/qt4/html/qfontdialog.html -share/doc/qt4/html/qfontengineinfo-members.html -share/doc/qt4/html/qfontengineinfo.html -share/doc/qt4/html/qfontengineplugin-members.html -share/doc/qt4/html/qfontengineplugin.html -share/doc/qt4/html/qfontinfo-members.html -share/doc/qt4/html/qfontinfo.html -share/doc/qt4/html/qfontmetrics-members.html -share/doc/qt4/html/qfontmetrics-qt3.html -share/doc/qt4/html/qfontmetrics.html -share/doc/qt4/html/qfontmetricsf-members.html -share/doc/qt4/html/qfontmetricsf.html -share/doc/qt4/html/qformbuilder-members.html -share/doc/qt4/html/qformbuilder.html -share/doc/qt4/html/qframe-members.html -share/doc/qt4/html/qframe-qt3.html -share/doc/qt4/html/qframe.html -share/doc/qt4/html/qfsfileengine-members.html -share/doc/qt4/html/qfsfileengine.html -share/doc/qt4/html/qftp-members.html -share/doc/qt4/html/qftp-qt3.html -share/doc/qt4/html/qftp.html -share/doc/qt4/html/qgenericargument-members.html -share/doc/qt4/html/qgenericargument.html -share/doc/qt4/html/qgenericreturnargument-members.html -share/doc/qt4/html/qgenericreturnargument.html -share/doc/qt4/html/qgl.html -share/doc/qt4/html/qglcolormap-members.html -share/doc/qt4/html/qglcolormap.html -share/doc/qt4/html/qglcontext-members.html -share/doc/qt4/html/qglcontext-obsolete.html -share/doc/qt4/html/qglcontext.html -share/doc/qt4/html/qglformat-members.html -share/doc/qt4/html/qglformat.html -share/doc/qt4/html/qglframebufferobject-members.html -share/doc/qt4/html/qglframebufferobject.html -share/doc/qt4/html/qglpixelbuffer-members.html -share/doc/qt4/html/qglpixelbuffer.html -share/doc/qt4/html/qglwidget-members.html -share/doc/qt4/html/qglwidget-obsolete.html -share/doc/qt4/html/qglwidget-qt3.html -share/doc/qt4/html/qglwidget.html -share/doc/qt4/html/qgradient-members.html -share/doc/qt4/html/qgradient.html -share/doc/qt4/html/qgraphicsellipseitem-members.html -share/doc/qt4/html/qgraphicsellipseitem.html -share/doc/qt4/html/qgraphicsitem-members.html -share/doc/qt4/html/qgraphicsitem-obsolete.html -share/doc/qt4/html/qgraphicsitem.html -share/doc/qt4/html/qgraphicsitemanimation-members.html -share/doc/qt4/html/qgraphicsitemanimation.html -share/doc/qt4/html/qgraphicsitemgroup-members.html -share/doc/qt4/html/qgraphicsitemgroup.html -share/doc/qt4/html/qgraphicslineitem-members.html -share/doc/qt4/html/qgraphicslineitem.html -share/doc/qt4/html/qgraphicspathitem-members.html -share/doc/qt4/html/qgraphicspathitem.html -share/doc/qt4/html/qgraphicspixmapitem-members.html -share/doc/qt4/html/qgraphicspixmapitem.html -share/doc/qt4/html/qgraphicspolygonitem-members.html -share/doc/qt4/html/qgraphicspolygonitem.html -share/doc/qt4/html/qgraphicsrectitem-members.html -share/doc/qt4/html/qgraphicsrectitem.html -share/doc/qt4/html/qgraphicsscene-members.html -share/doc/qt4/html/qgraphicsscene.html -share/doc/qt4/html/qgraphicsscenecontextmenuevent-members.html -share/doc/qt4/html/qgraphicsscenecontextmenuevent.html -share/doc/qt4/html/qgraphicsscenedragdropevent-members.html -share/doc/qt4/html/qgraphicsscenedragdropevent.html -share/doc/qt4/html/qgraphicssceneevent-members.html -share/doc/qt4/html/qgraphicssceneevent.html -share/doc/qt4/html/qgraphicsscenehelpevent-members.html -share/doc/qt4/html/qgraphicsscenehelpevent.html -share/doc/qt4/html/qgraphicsscenehoverevent-members.html -share/doc/qt4/html/qgraphicsscenehoverevent.html -share/doc/qt4/html/qgraphicsscenemouseevent-members.html -share/doc/qt4/html/qgraphicsscenemouseevent.html -share/doc/qt4/html/qgraphicsscenewheelevent-members.html -share/doc/qt4/html/qgraphicsscenewheelevent.html -share/doc/qt4/html/qgraphicssimpletextitem-members.html -share/doc/qt4/html/qgraphicssimpletextitem.html -share/doc/qt4/html/qgraphicssvgitem-members.html -share/doc/qt4/html/qgraphicssvgitem.html -share/doc/qt4/html/qgraphicstextitem-members.html -share/doc/qt4/html/qgraphicstextitem.html -share/doc/qt4/html/qgraphicsview-members.html -share/doc/qt4/html/qgraphicsview.html -share/doc/qt4/html/qgridlayout-members.html -share/doc/qt4/html/qgridlayout-qt3.html -share/doc/qt4/html/qgridlayout.html -share/doc/qt4/html/qgroupbox-members.html -share/doc/qt4/html/qgroupbox-qt3.html -share/doc/qt4/html/qgroupbox.html -share/doc/qt4/html/qhash-const-iterator-members.html -share/doc/qt4/html/qhash-const-iterator.html -share/doc/qt4/html/qhash-iterator-members.html -share/doc/qt4/html/qhash-iterator.html -share/doc/qt4/html/qhash-members.html -share/doc/qt4/html/qhash.html -share/doc/qt4/html/qhashiterator-members.html -share/doc/qt4/html/qhashiterator.html -share/doc/qt4/html/qhboxlayout-members.html -share/doc/qt4/html/qhboxlayout-qt3.html -share/doc/qt4/html/qhboxlayout.html -share/doc/qt4/html/qheaderview-members.html -share/doc/qt4/html/qheaderview.html -share/doc/qt4/html/qhelpevent-members.html -share/doc/qt4/html/qhelpevent.html -share/doc/qt4/html/qhideevent-members.html -share/doc/qt4/html/qhideevent.html -share/doc/qt4/html/qhostaddress-members.html -share/doc/qt4/html/qhostaddress-qt3.html -share/doc/qt4/html/qhostaddress.html -share/doc/qt4/html/qhostinfo-members.html -share/doc/qt4/html/qhostinfo.html -share/doc/qt4/html/qhoverevent-members.html -share/doc/qt4/html/qhoverevent.html -share/doc/qt4/html/qhttp-members.html -share/doc/qt4/html/qhttp-obsolete.html -share/doc/qt4/html/qhttp-qt3.html -share/doc/qt4/html/qhttp.html -share/doc/qt4/html/qhttpheader-members.html -share/doc/qt4/html/qhttpheader.html -share/doc/qt4/html/qhttprequestheader-members.html -share/doc/qt4/html/qhttprequestheader.html -share/doc/qt4/html/qhttpresponseheader-members.html -share/doc/qt4/html/qhttpresponseheader.html -share/doc/qt4/html/qicon-members.html -share/doc/qt4/html/qicon-obsolete.html -share/doc/qt4/html/qicon-qt3.html -share/doc/qt4/html/qicon.html -share/doc/qt4/html/qicondragevent-members.html -share/doc/qt4/html/qicondragevent.html -share/doc/qt4/html/qiconengine-members.html -share/doc/qt4/html/qiconengine.html -share/doc/qt4/html/qiconengineplugin-members.html -share/doc/qt4/html/qiconengineplugin.html -share/doc/qt4/html/qiconenginepluginv2-members.html -share/doc/qt4/html/qiconenginepluginv2.html -share/doc/qt4/html/qiconenginev2-members.html -share/doc/qt4/html/qiconenginev2.html -share/doc/qt4/html/qimage-members.html -share/doc/qt4/html/qimage-obsolete.html -share/doc/qt4/html/qimage-qt3.html -share/doc/qt4/html/qimage.html -share/doc/qt4/html/qimageiohandler-members.html -share/doc/qt4/html/qimageiohandler-obsolete.html -share/doc/qt4/html/qimageiohandler.html -share/doc/qt4/html/qimageioplugin-members.html -share/doc/qt4/html/qimageioplugin.html -share/doc/qt4/html/qimagereader-members.html -share/doc/qt4/html/qimagereader.html -share/doc/qt4/html/qimagewriter-members.html -share/doc/qt4/html/qimagewriter-obsolete.html -share/doc/qt4/html/qimagewriter.html -share/doc/qt4/html/qinputcontext-members.html -share/doc/qt4/html/qinputcontext.html -share/doc/qt4/html/qinputcontextfactory-members.html -share/doc/qt4/html/qinputcontextfactory.html -share/doc/qt4/html/qinputcontextplugin-members.html -share/doc/qt4/html/qinputcontextplugin.html -share/doc/qt4/html/qinputdialog-members.html -share/doc/qt4/html/qinputdialog-qt3.html -share/doc/qt4/html/qinputdialog.html -share/doc/qt4/html/qinputevent-members.html -share/doc/qt4/html/qinputevent.html -share/doc/qt4/html/qinputmethodevent-attribute-members.html -share/doc/qt4/html/qinputmethodevent-attribute.html -share/doc/qt4/html/qinputmethodevent-members.html -share/doc/qt4/html/qinputmethodevent.html -share/doc/qt4/html/qintvalidator-members.html -share/doc/qt4/html/qintvalidator-qt3.html -share/doc/qt4/html/qintvalidator.html -share/doc/qt4/html/qiodevice-members.html -share/doc/qt4/html/qiodevice-qt3.html -share/doc/qt4/html/qiodevice.html -share/doc/qt4/html/qitemdelegate-members.html -share/doc/qt4/html/qitemdelegate.html -share/doc/qt4/html/qitemeditorcreator-members.html -share/doc/qt4/html/qitemeditorcreator.html -share/doc/qt4/html/qitemeditorcreatorbase-members.html -share/doc/qt4/html/qitemeditorcreatorbase.html -share/doc/qt4/html/qitemeditorfactory-members.html -share/doc/qt4/html/qitemeditorfactory.html -share/doc/qt4/html/qitemselection-members.html -share/doc/qt4/html/qitemselection.html -share/doc/qt4/html/qitemselectionmodel-members.html -share/doc/qt4/html/qitemselectionmodel.html -share/doc/qt4/html/qitemselectionrange-members.html -share/doc/qt4/html/qitemselectionrange-obsolete.html -share/doc/qt4/html/qitemselectionrange.html -share/doc/qt4/html/qkbddriverfactory-members.html -share/doc/qt4/html/qkbddriverfactory.html -share/doc/qt4/html/qkbddriverplugin-members.html -share/doc/qt4/html/qkbddriverplugin.html -share/doc/qt4/html/qkeyevent-members.html -share/doc/qt4/html/qkeyevent-qt3.html -share/doc/qt4/html/qkeyevent.html -share/doc/qt4/html/qkeysequence-members.html -share/doc/qt4/html/qkeysequence-obsolete.html -share/doc/qt4/html/qkeysequence.html -share/doc/qt4/html/qlabel-members.html -share/doc/qt4/html/qlabel-qt3.html -share/doc/qt4/html/qlabel.html -share/doc/qt4/html/qlatin1char-members.html -share/doc/qt4/html/qlatin1char.html -share/doc/qt4/html/qlatin1string-members.html -share/doc/qt4/html/qlatin1string.html -share/doc/qt4/html/qlayout-members.html -share/doc/qt4/html/qlayout-obsolete.html -share/doc/qt4/html/qlayout-qt3.html -share/doc/qt4/html/qlayout.html -share/doc/qt4/html/qlayoutitem-members.html -share/doc/qt4/html/qlayoutitem.html -share/doc/qt4/html/qlcdnumber-members.html -share/doc/qt4/html/qlcdnumber-qt3.html -share/doc/qt4/html/qlcdnumber.html -share/doc/qt4/html/qlibrary-members.html -share/doc/qt4/html/qlibrary-qt3.html -share/doc/qt4/html/qlibrary.html -share/doc/qt4/html/qlibraryinfo-members.html -share/doc/qt4/html/qlibraryinfo.html -share/doc/qt4/html/qline-members.html -share/doc/qt4/html/qline.html -share/doc/qt4/html/qlineargradient-members.html -share/doc/qt4/html/qlineargradient.html -share/doc/qt4/html/qlineedit-members.html -share/doc/qt4/html/qlineedit-qt3.html -share/doc/qt4/html/qlineedit.html -share/doc/qt4/html/qlinef-members.html -share/doc/qt4/html/qlinef.html -share/doc/qt4/html/qlinkedlist-const-iterator-members.html -share/doc/qt4/html/qlinkedlist-const-iterator.html -share/doc/qt4/html/qlinkedlist-iterator-members.html -share/doc/qt4/html/qlinkedlist-iterator.html -share/doc/qt4/html/qlinkedlist-members.html -share/doc/qt4/html/qlinkedlist-qt3.html -share/doc/qt4/html/qlinkedlist.html -share/doc/qt4/html/qlinkedlistiterator-members.html -share/doc/qt4/html/qlinkedlistiterator.html -share/doc/qt4/html/qlist-const-iterator-members.html -share/doc/qt4/html/qlist-const-iterator.html -share/doc/qt4/html/qlist-iterator-members.html -share/doc/qt4/html/qlist-iterator.html -share/doc/qt4/html/qlist-members.html -share/doc/qt4/html/qlist-qt3.html -share/doc/qt4/html/qlist.html -share/doc/qt4/html/qlistiterator-members.html -share/doc/qt4/html/qlistiterator.html -share/doc/qt4/html/qlistview-members.html -share/doc/qt4/html/qlistview.html -share/doc/qt4/html/qlistwidget-members.html -share/doc/qt4/html/qlistwidget-obsolete.html -share/doc/qt4/html/qlistwidget.html -share/doc/qt4/html/qlistwidgetitem-members.html -share/doc/qt4/html/qlistwidgetitem-obsolete.html -share/doc/qt4/html/qlistwidgetitem.html -share/doc/qt4/html/qlocale-members.html -share/doc/qt4/html/qlocale.html -share/doc/qt4/html/qmacpasteboardmime-members.html -share/doc/qt4/html/qmacpasteboardmime.html -share/doc/qt4/html/qmacstyle-members.html -share/doc/qt4/html/qmacstyle-obsolete.html -share/doc/qt4/html/qmacstyle.html -share/doc/qt4/html/qmainwindow-members.html -share/doc/qt4/html/qmainwindow-qt3.html -share/doc/qt4/html/qmainwindow.html -share/doc/qt4/html/qmap-const-iterator-members.html -share/doc/qt4/html/qmap-const-iterator-qt3.html -share/doc/qt4/html/qmap-const-iterator.html -share/doc/qt4/html/qmap-iterator-members.html -share/doc/qt4/html/qmap-iterator-qt3.html -share/doc/qt4/html/qmap-iterator.html -share/doc/qt4/html/qmap-members.html -share/doc/qt4/html/qmap-qt3.html -share/doc/qt4/html/qmap.html -share/doc/qt4/html/qmapiterator-members.html -share/doc/qt4/html/qmapiterator.html -share/doc/qt4/html/qmatrix-members.html -share/doc/qt4/html/qmatrix-qt3.html -share/doc/qt4/html/qmatrix.html -share/doc/qt4/html/qmdiarea-members.html -share/doc/qt4/html/qmdiarea.html -share/doc/qt4/html/qmdisubwindow-members.html -share/doc/qt4/html/qmdisubwindow.html -share/doc/qt4/html/qmenu-members.html -share/doc/qt4/html/qmenu-qt3.html -share/doc/qt4/html/qmenu.html -share/doc/qt4/html/qmenubar-members.html -share/doc/qt4/html/qmenubar-qt3.html -share/doc/qt4/html/qmenubar.html -share/doc/qt4/html/qmenuitem-members.html -share/doc/qt4/html/qmenuitem-qt3.html -share/doc/qt4/html/qmenuitem.html -share/doc/qt4/html/qmessagebox-members.html -share/doc/qt4/html/qmessagebox-obsolete.html -share/doc/qt4/html/qmessagebox-qt3.html -share/doc/qt4/html/qmessagebox.html -share/doc/qt4/html/qmetaclassinfo-members.html -share/doc/qt4/html/qmetaclassinfo.html -share/doc/qt4/html/qmetaenum-members.html -share/doc/qt4/html/qmetaenum.html -share/doc/qt4/html/qmetamethod-members.html -share/doc/qt4/html/qmetamethod.html -share/doc/qt4/html/qmetaobject-members.html -share/doc/qt4/html/qmetaobject.html -share/doc/qt4/html/qmetaproperty-members.html -share/doc/qt4/html/qmetaproperty-obsolete.html -share/doc/qt4/html/qmetaproperty.html -share/doc/qt4/html/qmetatype-members.html -share/doc/qt4/html/qmetatype.html -share/doc/qt4/html/qmimedata-members.html -share/doc/qt4/html/qmimedata.html -share/doc/qt4/html/qmimesource-members.html -share/doc/qt4/html/qmimesource.html -share/doc/qt4/html/qmodelindex-members.html -share/doc/qt4/html/qmodelindex.html -share/doc/qt4/html/qmotifstyle-members.html -share/doc/qt4/html/qmotifstyle.html -share/doc/qt4/html/qmousedriverfactory-members.html -share/doc/qt4/html/qmousedriverfactory.html -share/doc/qt4/html/qmousedriverplugin-members.html -share/doc/qt4/html/qmousedriverplugin.html -share/doc/qt4/html/qmouseevent-members.html -share/doc/qt4/html/qmouseevent-qt3.html -share/doc/qt4/html/qmouseevent.html -share/doc/qt4/html/qmoveevent-members.html -share/doc/qt4/html/qmoveevent.html -share/doc/qt4/html/qmovie-members.html -share/doc/qt4/html/qmovie-qt3.html -share/doc/qt4/html/qmovie.html -share/doc/qt4/html/qmultihash-members.html -share/doc/qt4/html/qmultihash.html -share/doc/qt4/html/qmultimap-members.html -share/doc/qt4/html/qmultimap.html -share/doc/qt4/html/qmutablehashiterator-members.html -share/doc/qt4/html/qmutablehashiterator.html -share/doc/qt4/html/qmutablelinkedlistiterator-members.html -share/doc/qt4/html/qmutablelinkedlistiterator.html -share/doc/qt4/html/qmutablelistiterator-members.html -share/doc/qt4/html/qmutablelistiterator.html -share/doc/qt4/html/qmutablemapiterator-members.html -share/doc/qt4/html/qmutablemapiterator.html -share/doc/qt4/html/qmutablesetiterator-members.html -share/doc/qt4/html/qmutablesetiterator.html -share/doc/qt4/html/qmutablevectoriterator-members.html -share/doc/qt4/html/qmutablevectoriterator.html -share/doc/qt4/html/qmutex-members.html -share/doc/qt4/html/qmutex-qt3.html -share/doc/qt4/html/qmutex.html -share/doc/qt4/html/qmutexlocker-members.html -share/doc/qt4/html/qmutexlocker.html -share/doc/qt4/html/qnetworkaddressentry-members.html -share/doc/qt4/html/qnetworkaddressentry.html -share/doc/qt4/html/qnetworkinterface-members.html -share/doc/qt4/html/qnetworkinterface.html -share/doc/qt4/html/qnetworkproxy-members.html -share/doc/qt4/html/qnetworkproxy.html -share/doc/qt4/html/qobject-members.html -share/doc/qt4/html/qobject-qt3.html -share/doc/qt4/html/qobject.html -share/doc/qt4/html/qobjectcleanuphandler-members.html -share/doc/qt4/html/qobjectcleanuphandler.html -share/doc/qt4/html/qpagesetupdialog-members.html -share/doc/qt4/html/qpagesetupdialog.html -share/doc/qt4/html/qpaintdevice-members.html -share/doc/qt4/html/qpaintdevice-qt3.html -share/doc/qt4/html/qpaintdevice.html -share/doc/qt4/html/qpaintengine-members.html -share/doc/qt4/html/qpaintengine.html -share/doc/qt4/html/qpaintenginestate-members.html -share/doc/qt4/html/qpaintenginestate.html -share/doc/qt4/html/qpainter-members.html -share/doc/qt4/html/qpainter-obsolete.html -share/doc/qt4/html/qpainter-qt3.html -share/doc/qt4/html/qpainter.html -share/doc/qt4/html/qpainterpath-element-members.html -share/doc/qt4/html/qpainterpath-element.html -share/doc/qt4/html/qpainterpath-members.html -share/doc/qt4/html/qpainterpath.html -share/doc/qt4/html/qpainterpathstroker-members.html -share/doc/qt4/html/qpainterpathstroker.html -share/doc/qt4/html/qpaintevent-members.html -share/doc/qt4/html/qpaintevent-qt3.html -share/doc/qt4/html/qpaintevent.html -share/doc/qt4/html/qpair-members.html -share/doc/qt4/html/qpair.html -share/doc/qt4/html/qpalette-members.html -share/doc/qt4/html/qpalette-obsolete.html -share/doc/qt4/html/qpalette-qt3.html -share/doc/qt4/html/qpalette.html -share/doc/qt4/html/qpen-members.html -share/doc/qt4/html/qpen.html -share/doc/qt4/html/qpersistentmodelindex-members.html -share/doc/qt4/html/qpersistentmodelindex.html -share/doc/qt4/html/qpicture-members.html -share/doc/qt4/html/qpicture-obsolete.html -share/doc/qt4/html/qpicture-qt3.html -share/doc/qt4/html/qpicture.html -share/doc/qt4/html/qpictureformatplugin-members.html -share/doc/qt4/html/qpictureformatplugin.html -share/doc/qt4/html/qpictureio-members.html -share/doc/qt4/html/qpictureio.html -share/doc/qt4/html/qpixmap-members.html -share/doc/qt4/html/qpixmap-obsolete.html -share/doc/qt4/html/qpixmap-qt3.html -share/doc/qt4/html/qpixmap.html -share/doc/qt4/html/qpixmapcache-members.html -share/doc/qt4/html/qpixmapcache-obsolete.html -share/doc/qt4/html/qpixmapcache.html -share/doc/qt4/html/qpl.html -share/doc/qt4/html/qplastiquestyle-members.html -share/doc/qt4/html/qplastiquestyle.html -share/doc/qt4/html/qpluginloader-members.html -share/doc/qt4/html/qpluginloader.html -share/doc/qt4/html/qpoint-members.html -share/doc/qt4/html/qpoint.html -share/doc/qt4/html/qpointer-members.html -share/doc/qt4/html/qpointer.html -share/doc/qt4/html/qpointf-members.html -share/doc/qt4/html/qpointf.html -share/doc/qt4/html/qpolygon-members.html -share/doc/qt4/html/qpolygon.html -share/doc/qt4/html/qpolygonf-members.html -share/doc/qt4/html/qpolygonf.html -share/doc/qt4/html/qprintdialog-members.html -share/doc/qt4/html/qprintdialog.html -share/doc/qt4/html/qprintengine-members.html -share/doc/qt4/html/qprintengine.html -share/doc/qt4/html/qprinter-members.html -share/doc/qt4/html/qprinter-qt3.html -share/doc/qt4/html/qprinter.html -share/doc/qt4/html/qprocess-members.html -share/doc/qt4/html/qprocess-obsolete.html -share/doc/qt4/html/qprocess.html -share/doc/qt4/html/qprogressbar-members.html -share/doc/qt4/html/qprogressbar.html -share/doc/qt4/html/qprogressdialog-members.html -share/doc/qt4/html/qprogressdialog.html -share/doc/qt4/html/qproxymodel-members.html -share/doc/qt4/html/qproxymodel.html -share/doc/qt4/html/qpushbutton-members.html -share/doc/qt4/html/qpushbutton-qt3.html -share/doc/qt4/html/qpushbutton.html -share/doc/qt4/html/qqueue-members.html -share/doc/qt4/html/qqueue.html -share/doc/qt4/html/qradialgradient-members.html -share/doc/qt4/html/qradialgradient.html -share/doc/qt4/html/qradiobutton-members.html -share/doc/qt4/html/qradiobutton-qt3.html -share/doc/qt4/html/qradiobutton.html -share/doc/qt4/html/qrasterpaintengine-members.html -share/doc/qt4/html/qrasterpaintengine.html -share/doc/qt4/html/qreadlocker-members.html -share/doc/qt4/html/qreadlocker.html -share/doc/qt4/html/qreadwritelock-members.html -share/doc/qt4/html/qreadwritelock.html -share/doc/qt4/html/qrect-members.html -share/doc/qt4/html/qrect-obsolete.html -share/doc/qt4/html/qrect-qt3.html -share/doc/qt4/html/qrect.html -share/doc/qt4/html/qrectf-members.html -share/doc/qt4/html/qrectf-obsolete.html -share/doc/qt4/html/qrectf.html -share/doc/qt4/html/qregexp-members.html -share/doc/qt4/html/qregexp-qt3.html -share/doc/qt4/html/qregexp.html -share/doc/qt4/html/qregexpvalidator-members.html -share/doc/qt4/html/qregexpvalidator-qt3.html -share/doc/qt4/html/qregexpvalidator.html -share/doc/qt4/html/qregion-members.html -share/doc/qt4/html/qregion-obsolete.html -share/doc/qt4/html/qregion-qt3.html -share/doc/qt4/html/qregion.html -share/doc/qt4/html/qresizeevent-members.html -share/doc/qt4/html/qresizeevent.html -share/doc/qt4/html/qresource-members.html -share/doc/qt4/html/qresource-obsolete.html -share/doc/qt4/html/qresource.html -share/doc/qt4/html/qrubberband-members.html -share/doc/qt4/html/qrubberband.html -share/doc/qt4/html/qscreen-members.html -share/doc/qt4/html/qscreen.html -share/doc/qt4/html/qscreencursor-members.html -share/doc/qt4/html/qscreencursor.html -share/doc/qt4/html/qscreendriverfactory-members.html -share/doc/qt4/html/qscreendriverfactory.html -share/doc/qt4/html/qscreendriverplugin-members.html -share/doc/qt4/html/qscreendriverplugin.html -share/doc/qt4/html/qscriptable-members.html -share/doc/qt4/html/qscriptable.html -share/doc/qt4/html/qscriptcontext-members.html -share/doc/qt4/html/qscriptcontext.html -share/doc/qt4/html/qscriptengine-members.html -share/doc/qt4/html/qscriptengine.html -share/doc/qt4/html/qscriptextensionplugin-members.html -share/doc/qt4/html/qscriptextensionplugin.html -share/doc/qt4/html/qscriptvalue-members.html -share/doc/qt4/html/qscriptvalue.html -share/doc/qt4/html/qscriptvalueiterator-members.html -share/doc/qt4/html/qscriptvalueiterator.html -share/doc/qt4/html/qscrollarea-members.html -share/doc/qt4/html/qscrollarea.html -share/doc/qt4/html/qscrollbar-members.html -share/doc/qt4/html/qscrollbar-qt3.html -share/doc/qt4/html/qscrollbar.html -share/doc/qt4/html/qsemaphore-members.html -share/doc/qt4/html/qsemaphore.html -share/doc/qt4/html/qsessionmanager-members.html -share/doc/qt4/html/qsessionmanager.html -share/doc/qt4/html/qset-const-iterator-members.html -share/doc/qt4/html/qset-const-iterator.html -share/doc/qt4/html/qset-iterator-members.html -share/doc/qt4/html/qset-iterator.html -share/doc/qt4/html/qset-members.html -share/doc/qt4/html/qset.html -share/doc/qt4/html/qsetiterator-members.html -share/doc/qt4/html/qsetiterator.html -share/doc/qt4/html/qsettings-members.html -share/doc/qt4/html/qsettings-obsolete.html -share/doc/qt4/html/qsettings-qt3.html -share/doc/qt4/html/qsettings.html -share/doc/qt4/html/qshareddata-members.html -share/doc/qt4/html/qshareddata.html -share/doc/qt4/html/qshareddatapointer-members.html -share/doc/qt4/html/qshareddatapointer.html -share/doc/qt4/html/qshortcut-members.html -share/doc/qt4/html/qshortcut.html -share/doc/qt4/html/qshortcutevent-members.html -share/doc/qt4/html/qshortcutevent.html -share/doc/qt4/html/qshowevent-members.html -share/doc/qt4/html/qshowevent.html -share/doc/qt4/html/qsignalmapper-members.html -share/doc/qt4/html/qsignalmapper-qt3.html -share/doc/qt4/html/qsignalmapper.html -share/doc/qt4/html/qsignalspy-members.html -share/doc/qt4/html/qsignalspy.html -share/doc/qt4/html/qsize-members.html -share/doc/qt4/html/qsize.html -share/doc/qt4/html/qsizef-members.html -share/doc/qt4/html/qsizef.html -share/doc/qt4/html/qsizegrip-members.html -share/doc/qt4/html/qsizegrip-qt3.html -share/doc/qt4/html/qsizegrip.html -share/doc/qt4/html/qsizepolicy-members.html -share/doc/qt4/html/qsizepolicy-qt3.html -share/doc/qt4/html/qsizepolicy.html -share/doc/qt4/html/qslider-members.html -share/doc/qt4/html/qslider-qt3.html -share/doc/qt4/html/qslider.html -share/doc/qt4/html/qsocketnotifier-members.html -share/doc/qt4/html/qsocketnotifier-qt3.html -share/doc/qt4/html/qsocketnotifier.html -share/doc/qt4/html/qsortfilterproxymodel-members.html -share/doc/qt4/html/qsortfilterproxymodel-obsolete.html -share/doc/qt4/html/qsortfilterproxymodel.html -share/doc/qt4/html/qsound-members.html -share/doc/qt4/html/qsound-qt3.html -share/doc/qt4/html/qsound.html -share/doc/qt4/html/qspaceritem-members.html -share/doc/qt4/html/qspaceritem.html -share/doc/qt4/html/qspinbox-members.html -share/doc/qt4/html/qspinbox-qt3.html -share/doc/qt4/html/qspinbox.html -share/doc/qt4/html/qsplashscreen-members.html -share/doc/qt4/html/qsplashscreen-qt3.html -share/doc/qt4/html/qsplashscreen.html -share/doc/qt4/html/qsplitter-members.html -share/doc/qt4/html/qsplitter-obsolete.html -share/doc/qt4/html/qsplitter-qt3.html -share/doc/qt4/html/qsplitter.html -share/doc/qt4/html/qsplitterhandle-members.html -share/doc/qt4/html/qsplitterhandle.html -share/doc/qt4/html/qsql-qt3.html -share/doc/qt4/html/qsql.html -share/doc/qt4/html/qsqldatabase-members.html -share/doc/qt4/html/qsqldatabase-qt3.html -share/doc/qt4/html/qsqldatabase.html -share/doc/qt4/html/qsqldriver-members.html -share/doc/qt4/html/qsqldriver-qt3.html -share/doc/qt4/html/qsqldriver.html -share/doc/qt4/html/qsqldrivercreator-members.html -share/doc/qt4/html/qsqldrivercreator.html -share/doc/qt4/html/qsqldrivercreatorbase-members.html -share/doc/qt4/html/qsqldrivercreatorbase.html -share/doc/qt4/html/qsqldriverplugin-members.html -share/doc/qt4/html/qsqldriverplugin.html -share/doc/qt4/html/qsqlerror-members.html -share/doc/qt4/html/qsqlerror.html -share/doc/qt4/html/qsqlfield-members.html -share/doc/qt4/html/qsqlfield-qt3.html -share/doc/qt4/html/qsqlfield.html -share/doc/qt4/html/qsqlindex-members.html -share/doc/qt4/html/qsqlindex-qt3.html -share/doc/qt4/html/qsqlindex.html -share/doc/qt4/html/qsqlquery-members.html -share/doc/qt4/html/qsqlquery-qt3.html -share/doc/qt4/html/qsqlquery.html -share/doc/qt4/html/qsqlquerymodel-members.html -share/doc/qt4/html/qsqlquerymodel.html -share/doc/qt4/html/qsqlrecord-members.html -share/doc/qt4/html/qsqlrecord-qt3.html -share/doc/qt4/html/qsqlrecord.html -share/doc/qt4/html/qsqlrelation-members.html -share/doc/qt4/html/qsqlrelation.html -share/doc/qt4/html/qsqlrelationaldelegate-members.html -share/doc/qt4/html/qsqlrelationaldelegate.html -share/doc/qt4/html/qsqlrelationaltablemodel-members.html -share/doc/qt4/html/qsqlrelationaltablemodel.html -share/doc/qt4/html/qsqlresult-members.html -share/doc/qt4/html/qsqlresult.html -share/doc/qt4/html/qsqltablemodel-members.html -share/doc/qt4/html/qsqltablemodel.html -share/doc/qt4/html/qssl.html -share/doc/qt4/html/qsslcertificate-members.html -share/doc/qt4/html/qsslcertificate.html -share/doc/qt4/html/qsslcipher-members.html -share/doc/qt4/html/qsslcipher.html -share/doc/qt4/html/qsslerror-members.html -share/doc/qt4/html/qsslerror.html -share/doc/qt4/html/qsslkey-members.html -share/doc/qt4/html/qsslkey.html -share/doc/qt4/html/qsslsocket-members.html -share/doc/qt4/html/qsslsocket.html -share/doc/qt4/html/qstack-members.html -share/doc/qt4/html/qstack.html -share/doc/qt4/html/qstackedlayout-members.html -share/doc/qt4/html/qstackedlayout.html -share/doc/qt4/html/qstackedwidget-members.html -share/doc/qt4/html/qstackedwidget.html -share/doc/qt4/html/qstandarditem-members.html -share/doc/qt4/html/qstandarditem.html -share/doc/qt4/html/qstandarditemeditorcreator-members.html -share/doc/qt4/html/qstandarditemeditorcreator.html -share/doc/qt4/html/qstandarditemmodel-members.html -share/doc/qt4/html/qstandarditemmodel.html -share/doc/qt4/html/qstatusbar-members.html -share/doc/qt4/html/qstatusbar-qt3.html -share/doc/qt4/html/qstatusbar.html -share/doc/qt4/html/qstatustipevent-members.html -share/doc/qt4/html/qstatustipevent.html -share/doc/qt4/html/qstring-members.html -share/doc/qt4/html/qstring-null.html -share/doc/qt4/html/qstring-qt3.html -share/doc/qt4/html/qstring.html -share/doc/qt4/html/qstringlist-members.html -share/doc/qt4/html/qstringlist-qt3.html -share/doc/qt4/html/qstringlist.html -share/doc/qt4/html/qstringlistmodel-members.html -share/doc/qt4/html/qstringlistmodel.html -share/doc/qt4/html/qstringmatcher-members.html -share/doc/qt4/html/qstringmatcher.html -share/doc/qt4/html/qstringref-members.html -share/doc/qt4/html/qstringref.html -share/doc/qt4/html/qstyle-members.html -share/doc/qt4/html/qstyle-obsolete.html -share/doc/qt4/html/qstyle.html -share/doc/qt4/html/qstylefactory-members.html -share/doc/qt4/html/qstylefactory.html -share/doc/qt4/html/qstylehintreturn-members.html -share/doc/qt4/html/qstylehintreturn.html -share/doc/qt4/html/qstylehintreturnmask-members.html -share/doc/qt4/html/qstylehintreturnmask.html -share/doc/qt4/html/qstylehintreturnvariant-members.html -share/doc/qt4/html/qstylehintreturnvariant.html -share/doc/qt4/html/qstyleoption-members.html -share/doc/qt4/html/qstyleoption-obsolete.html -share/doc/qt4/html/qstyleoption.html -share/doc/qt4/html/qstyleoptionbutton-members.html -share/doc/qt4/html/qstyleoptionbutton.html -share/doc/qt4/html/qstyleoptioncombobox-members.html -share/doc/qt4/html/qstyleoptioncombobox.html -share/doc/qt4/html/qstyleoptioncomplex-members.html -share/doc/qt4/html/qstyleoptioncomplex.html -share/doc/qt4/html/qstyleoptiondockwidget-members.html -share/doc/qt4/html/qstyleoptiondockwidget.html -share/doc/qt4/html/qstyleoptionfocusrect-members.html -share/doc/qt4/html/qstyleoptionfocusrect.html -share/doc/qt4/html/qstyleoptionframe-members.html -share/doc/qt4/html/qstyleoptionframe.html -share/doc/qt4/html/qstyleoptionframev2-members.html -share/doc/qt4/html/qstyleoptionframev2.html -share/doc/qt4/html/qstyleoptiongraphicsitem-members.html -share/doc/qt4/html/qstyleoptiongraphicsitem.html -share/doc/qt4/html/qstyleoptiongroupbox-members.html -share/doc/qt4/html/qstyleoptiongroupbox.html -share/doc/qt4/html/qstyleoptionheader-members.html -share/doc/qt4/html/qstyleoptionheader.html -share/doc/qt4/html/qstyleoptionmenuitem-members.html -share/doc/qt4/html/qstyleoptionmenuitem.html -share/doc/qt4/html/qstyleoptionprogressbar-members.html -share/doc/qt4/html/qstyleoptionprogressbar.html -share/doc/qt4/html/qstyleoptionprogressbarv2-members.html -share/doc/qt4/html/qstyleoptionprogressbarv2.html -share/doc/qt4/html/qstyleoptionq3dockwindow-members.html -share/doc/qt4/html/qstyleoptionq3dockwindow.html -share/doc/qt4/html/qstyleoptionq3listview-members.html -share/doc/qt4/html/qstyleoptionq3listview.html -share/doc/qt4/html/qstyleoptionq3listviewitem-members.html -share/doc/qt4/html/qstyleoptionq3listviewitem.html -share/doc/qt4/html/qstyleoptionrubberband-members.html -share/doc/qt4/html/qstyleoptionrubberband.html -share/doc/qt4/html/qstyleoptionsizegrip-members.html -share/doc/qt4/html/qstyleoptionsizegrip.html -share/doc/qt4/html/qstyleoptionslider-members.html -share/doc/qt4/html/qstyleoptionslider.html -share/doc/qt4/html/qstyleoptionspinbox-members.html -share/doc/qt4/html/qstyleoptionspinbox.html -share/doc/qt4/html/qstyleoptiontab-members.html -share/doc/qt4/html/qstyleoptiontab.html -share/doc/qt4/html/qstyleoptiontabbarbase-members.html -share/doc/qt4/html/qstyleoptiontabbarbase.html -share/doc/qt4/html/qstyleoptiontabv2-members.html -share/doc/qt4/html/qstyleoptiontabv2.html -share/doc/qt4/html/qstyleoptiontabwidgetframe-members.html -share/doc/qt4/html/qstyleoptiontabwidgetframe.html -share/doc/qt4/html/qstyleoptiontitlebar-members.html -share/doc/qt4/html/qstyleoptiontitlebar.html -share/doc/qt4/html/qstyleoptiontoolbar-members.html -share/doc/qt4/html/qstyleoptiontoolbar.html -share/doc/qt4/html/qstyleoptiontoolbox-members.html -share/doc/qt4/html/qstyleoptiontoolbox.html -share/doc/qt4/html/qstyleoptiontoolboxv2-members.html -share/doc/qt4/html/qstyleoptiontoolboxv2.html -share/doc/qt4/html/qstyleoptiontoolbutton-members.html -share/doc/qt4/html/qstyleoptiontoolbutton.html -share/doc/qt4/html/qstyleoptionviewitem-members.html -share/doc/qt4/html/qstyleoptionviewitem.html -share/doc/qt4/html/qstyleoptionviewitemv2-members.html -share/doc/qt4/html/qstyleoptionviewitemv2.html -share/doc/qt4/html/qstylepainter-members.html -share/doc/qt4/html/qstylepainter.html -share/doc/qt4/html/qstyleplugin-members.html -share/doc/qt4/html/qstyleplugin.html -share/doc/qt4/html/qsvggenerator-members.html -share/doc/qt4/html/qsvggenerator.html -share/doc/qt4/html/qsvgrenderer-members.html -share/doc/qt4/html/qsvgrenderer.html -share/doc/qt4/html/qsvgwidget-members.html -share/doc/qt4/html/qsvgwidget.html -share/doc/qt4/html/qsyntaxhighlighter-members.html -share/doc/qt4/html/qsyntaxhighlighter.html -share/doc/qt4/html/qsysinfo-members.html -share/doc/qt4/html/qsysinfo.html -share/doc/qt4/html/qsystemlocale-members.html -share/doc/qt4/html/qsystemlocale.html -share/doc/qt4/html/qsystemtrayicon-members.html -share/doc/qt4/html/qsystemtrayicon.html -share/doc/qt4/html/qt-conf.html -share/doc/qt4/html/qt-qt3.html -share/doc/qt4/html/qt.dcf -share/doc/qt4/html/qt.html -share/doc/qt4/html/qt3support.html -share/doc/qt4/html/qt3to4-treewalker.html -share/doc/qt4/html/qt3to4.html -share/doc/qt4/html/qt4-3-intro.html -share/doc/qt4/html/qt4-accessibility.html -share/doc/qt4/html/qt4-arthur.html -share/doc/qt4/html/qt4-designer.html -share/doc/qt4/html/qt4-interview.html -share/doc/qt4/html/qt4-intro.html -share/doc/qt4/html/qt4-mainwindow.html -share/doc/qt4/html/qt4-network.html -share/doc/qt4/html/qt4-scribe.html -share/doc/qt4/html/qt4-sql.html -share/doc/qt4/html/qt4-styles.html -share/doc/qt4/html/qt4-threads.html -share/doc/qt4/html/qt4-tulip.html -share/doc/qt4/html/qtabbar-members.html -share/doc/qt4/html/qtabbar-qt3.html -share/doc/qt4/html/qtabbar.html -share/doc/qt4/html/qtabletevent-members.html -share/doc/qt4/html/qtabletevent.html -share/doc/qt4/html/qtableview-members.html -share/doc/qt4/html/qtableview-obsolete.html -share/doc/qt4/html/qtableview.html -share/doc/qt4/html/qtablewidget-members.html -share/doc/qt4/html/qtablewidget-obsolete.html -share/doc/qt4/html/qtablewidget.html -share/doc/qt4/html/qtablewidgetitem-members.html -share/doc/qt4/html/qtablewidgetitem-obsolete.html -share/doc/qt4/html/qtablewidgetitem.html -share/doc/qt4/html/qtablewidgetselectionrange-members.html -share/doc/qt4/html/qtablewidgetselectionrange.html -share/doc/qt4/html/qtabwidget-members.html -share/doc/qt4/html/qtabwidget-qt3.html -share/doc/qt4/html/qtabwidget.html -share/doc/qt4/html/qtalgorithms.html -share/doc/qt4/html/qtassistant.html -share/doc/qt4/html/qtconfig.html -share/doc/qt4/html/qtcore.html -share/doc/qt4/html/qtcpserver-members.html -share/doc/qt4/html/qtcpserver.html -share/doc/qt4/html/qtcpsocket-members.html -share/doc/qt4/html/qtcpsocket.html -share/doc/qt4/html/qtdbus.html -share/doc/qt4/html/qtdemo.html -share/doc/qt4/html/qtdesigner.html -share/doc/qt4/html/qtemporaryfile-members.html -share/doc/qt4/html/qtemporaryfile.html -share/doc/qt4/html/qtest.html -share/doc/qt4/html/qtesteventlist-members.html -share/doc/qt4/html/qtesteventlist.html -share/doc/qt4/html/qtestlib-manual.html -share/doc/qt4/html/qtestlib-tutorial.html -share/doc/qt4/html/qtestlib-tutorial1-testqstring-cpp.html -share/doc/qt4/html/qtestlib-tutorial1.html -share/doc/qt4/html/qtestlib-tutorial2-testqstring-cpp.html -share/doc/qt4/html/qtestlib-tutorial2.html -share/doc/qt4/html/qtestlib-tutorial3-testgui-cpp.html -share/doc/qt4/html/qtestlib-tutorial3.html -share/doc/qt4/html/qtestlib-tutorial4-testgui-cpp.html -share/doc/qt4/html/qtestlib-tutorial4.html -share/doc/qt4/html/qtextblock-iterator-members.html -share/doc/qt4/html/qtextblock-iterator.html -share/doc/qt4/html/qtextblock-members.html -share/doc/qt4/html/qtextblock.html -share/doc/qt4/html/qtextblockformat-members.html -share/doc/qt4/html/qtextblockformat.html -share/doc/qt4/html/qtextblockgroup-members.html -share/doc/qt4/html/qtextblockgroup.html -share/doc/qt4/html/qtextblockuserdata-members.html -share/doc/qt4/html/qtextblockuserdata.html -share/doc/qt4/html/qtextbrowser-members.html -share/doc/qt4/html/qtextbrowser-qt3.html -share/doc/qt4/html/qtextbrowser.html -share/doc/qt4/html/qtextcharformat-members.html -share/doc/qt4/html/qtextcharformat-obsolete.html -share/doc/qt4/html/qtextcharformat.html -share/doc/qt4/html/qtextcodec-converterstate-members.html -share/doc/qt4/html/qtextcodec-converterstate.html -share/doc/qt4/html/qtextcodec-members.html -share/doc/qt4/html/qtextcodec-qt3.html -share/doc/qt4/html/qtextcodec.html -share/doc/qt4/html/qtextcodecplugin-members.html -share/doc/qt4/html/qtextcodecplugin.html -share/doc/qt4/html/qtextcursor-members.html -share/doc/qt4/html/qtextcursor.html -share/doc/qt4/html/qtextdecoder-members.html -share/doc/qt4/html/qtextdecoder.html -share/doc/qt4/html/qtextdocument-members.html -share/doc/qt4/html/qtextdocument.html -share/doc/qt4/html/qtextdocumentfragment-members.html -share/doc/qt4/html/qtextdocumentfragment.html -share/doc/qt4/html/qtextedit-extraselection-members.html -share/doc/qt4/html/qtextedit-extraselection.html -share/doc/qt4/html/qtextedit-members.html -share/doc/qt4/html/qtextedit-qt3.html -share/doc/qt4/html/qtextedit.html -share/doc/qt4/html/qtextencoder-members.html -share/doc/qt4/html/qtextencoder.html -share/doc/qt4/html/qtextformat-members.html -share/doc/qt4/html/qtextformat.html -share/doc/qt4/html/qtextfragment-members.html -share/doc/qt4/html/qtextfragment.html -share/doc/qt4/html/qtextframe-iterator-members.html -share/doc/qt4/html/qtextframe-iterator.html -share/doc/qt4/html/qtextframe-members.html -share/doc/qt4/html/qtextframe.html -share/doc/qt4/html/qtextframeformat-members.html -share/doc/qt4/html/qtextframeformat.html -share/doc/qt4/html/qtextimageformat-members.html -share/doc/qt4/html/qtextimageformat.html -share/doc/qt4/html/qtextinlineobject-members.html -share/doc/qt4/html/qtextinlineobject.html -share/doc/qt4/html/qtextistream-members.html -share/doc/qt4/html/qtextistream.html -share/doc/qt4/html/qtextlayout-formatrange-members.html -share/doc/qt4/html/qtextlayout-formatrange.html -share/doc/qt4/html/qtextlayout-members.html -share/doc/qt4/html/qtextlayout.html -share/doc/qt4/html/qtextlength-members.html -share/doc/qt4/html/qtextlength.html -share/doc/qt4/html/qtextline-members.html -share/doc/qt4/html/qtextline.html -share/doc/qt4/html/qtextlist-members.html -share/doc/qt4/html/qtextlist-obsolete.html -share/doc/qt4/html/qtextlist.html -share/doc/qt4/html/qtextlistformat-members.html -share/doc/qt4/html/qtextlistformat.html -share/doc/qt4/html/qtextobject-members.html -share/doc/qt4/html/qtextobject.html -share/doc/qt4/html/qtextoption-members.html -share/doc/qt4/html/qtextoption.html -share/doc/qt4/html/qtextostream-members.html -share/doc/qt4/html/qtextostream.html -share/doc/qt4/html/qtextstream-members.html -share/doc/qt4/html/qtextstream-qt3.html -share/doc/qt4/html/qtextstream.html -share/doc/qt4/html/qtexttable-members.html -share/doc/qt4/html/qtexttable.html -share/doc/qt4/html/qtexttablecell-members.html -share/doc/qt4/html/qtexttablecell.html -share/doc/qt4/html/qtexttableformat-members.html -share/doc/qt4/html/qtexttableformat.html -share/doc/qt4/html/qtglobal.html -share/doc/qt4/html/qtgui.html -share/doc/qt4/html/qthread-members.html -share/doc/qt4/html/qthread-qt3.html -share/doc/qt4/html/qthread.html -share/doc/qt4/html/qthreadstorage-members.html -share/doc/qt4/html/qthreadstorage.html -share/doc/qt4/html/qtime-members.html -share/doc/qt4/html/qtime-qt3.html -share/doc/qt4/html/qtime.html -share/doc/qt4/html/qtimeedit-members.html -share/doc/qt4/html/qtimeedit.html -share/doc/qt4/html/qtimeline-members.html -share/doc/qt4/html/qtimeline.html -share/doc/qt4/html/qtimer-members.html -share/doc/qt4/html/qtimer-qt3.html -share/doc/qt4/html/qtimer.html -share/doc/qt4/html/qtimerevent-members.html -share/doc/qt4/html/qtimerevent.html -share/doc/qt4/html/qtmac-as-native.html -share/doc/qt4/html/qtnetwork.html -share/doc/qt4/html/qtoolbar-members.html -share/doc/qt4/html/qtoolbar-qt3.html -share/doc/qt4/html/qtoolbar.html -share/doc/qt4/html/qtoolbox-members.html -share/doc/qt4/html/qtoolbox-qt3.html -share/doc/qt4/html/qtoolbox.html -share/doc/qt4/html/qtoolbutton-members.html -share/doc/qt4/html/qtoolbutton-qt3.html -share/doc/qt4/html/qtoolbutton.html -share/doc/qt4/html/qtooltip-members.html -share/doc/qt4/html/qtooltip-qt3.html -share/doc/qt4/html/qtooltip.html -share/doc/qt4/html/qtopengl.html -share/doc/qt4/html/qtopiacore-accel.html -share/doc/qt4/html/qtopiacore-ahigl-qscreenahigl-qws-cpp.html -share/doc/qt4/html/qtopiacore-ahigl-qscreenahigl-qws-h.html -share/doc/qt4/html/qtopiacore-ahigl-qscreenahiglplugin-cpp.html -share/doc/qt4/html/qtopiacore-ahigl-qwindowsurface-ahigl-cpp.html -share/doc/qt4/html/qtopiacore-ahigl-qwindowsurface-ahigl-p-h.html -share/doc/qt4/html/qtopiacore-ahigl.html -share/doc/qt4/html/qtopiacore-architecture.html -share/doc/qt4/html/qtopiacore-charinput.html -share/doc/qt4/html/qtopiacore-crosscompiling.html -share/doc/qt4/html/qtopiacore-deployment.html -share/doc/qt4/html/qtopiacore-differences.html -share/doc/qt4/html/qtopiacore-displaymanagement.html -share/doc/qt4/html/qtopiacore-envvars.html -share/doc/qt4/html/qtopiacore-features.html -share/doc/qt4/html/qtopiacore-fonts.html -share/doc/qt4/html/qtopiacore-install.html -share/doc/qt4/html/qtopiacore-makeqpf.html -share/doc/qt4/html/qtopiacore-mousecalibration-calibration-cpp.html -share/doc/qt4/html/qtopiacore-mousecalibration-calibration-h.html -share/doc/qt4/html/qtopiacore-mousecalibration-main-cpp.html -share/doc/qt4/html/qtopiacore-mousecalibration-scribblewidget-cpp.html -share/doc/qt4/html/qtopiacore-mousecalibration-scribblewidget-h.html -share/doc/qt4/html/qtopiacore-mousecalibration.html -share/doc/qt4/html/qtopiacore-opengl.html -share/doc/qt4/html/qtopiacore-performance.html -share/doc/qt4/html/qtopiacore-pointer.html -share/doc/qt4/html/qtopiacore-porting-device.html -share/doc/qt4/html/qtopiacore-porting-operatingsystem.html -share/doc/qt4/html/qtopiacore-qvfb.html -share/doc/qt4/html/qtopiacore-running.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibpaintdevice-cpp.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibpaintdevice-h.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibpaintengine-cpp.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibpaintengine-h.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibplugin-cpp.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibscreen-cpp.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibscreen-h.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibsurface-cpp.html -share/doc/qt4/html/qtopiacore-svgalib-svgalibsurface-h.html -share/doc/qt4/html/qtopiacore-svgalib.html -share/doc/qt4/html/qtopiacore-testingframebuffer.html -share/doc/qt4/html/qtopiacore-vnc.html -share/doc/qt4/html/qtopiacore.html -share/doc/qt4/html/qtplugin.html -share/doc/qt4/html/qtransform-members.html -share/doc/qt4/html/qtransform.html -share/doc/qt4/html/qtranslator-members.html -share/doc/qt4/html/qtranslator-qt3.html -share/doc/qt4/html/qtranslator.html -share/doc/qt4/html/qtreeview-members.html -share/doc/qt4/html/qtreeview-obsolete.html -share/doc/qt4/html/qtreeview.html -share/doc/qt4/html/qtreewidget-members.html -share/doc/qt4/html/qtreewidget-obsolete.html -share/doc/qt4/html/qtreewidget.html -share/doc/qt4/html/qtreewidgetitem-members.html -share/doc/qt4/html/qtreewidgetitem-obsolete.html -share/doc/qt4/html/qtreewidgetitem.html -share/doc/qt4/html/qtreewidgetitemiterator-members.html -share/doc/qt4/html/qtreewidgetitemiterator.html -share/doc/qt4/html/qtscript.html -share/doc/qt4/html/qtscriptextensions.html -share/doc/qt4/html/qtsql.html -share/doc/qt4/html/qtsvg.html -share/doc/qt4/html/qttest.html -share/doc/qt4/html/qttools.html -share/doc/qt4/html/qtuitools.html -share/doc/qt4/html/qtxml.html -share/doc/qt4/html/qudpsocket-members.html -share/doc/qt4/html/qudpsocket.html -share/doc/qt4/html/quiloader-members.html -share/doc/qt4/html/quiloader.html -share/doc/qt4/html/qundo.html -share/doc/qt4/html/qundocommand-members.html -share/doc/qt4/html/qundocommand.html -share/doc/qt4/html/qundogroup-members.html -share/doc/qt4/html/qundogroup.html -share/doc/qt4/html/qundostack-members.html -share/doc/qt4/html/qundostack.html -share/doc/qt4/html/qundoview-members.html -share/doc/qt4/html/qundoview.html -share/doc/qt4/html/qurl-members.html -share/doc/qt4/html/qurl-obsolete.html -share/doc/qt4/html/qurl-qt3.html -share/doc/qt4/html/qurl.html -share/doc/qt4/html/qurlinfo-members.html -share/doc/qt4/html/qurlinfo.html -share/doc/qt4/html/quuid-members.html -share/doc/qt4/html/quuid.html -share/doc/qt4/html/qvalidator-members.html -share/doc/qt4/html/qvalidator-qt3.html -share/doc/qt4/html/qvalidator.html -share/doc/qt4/html/qvariant-members.html -share/doc/qt4/html/qvariant-qt3.html -share/doc/qt4/html/qvariant.html -share/doc/qt4/html/qvarlengtharray-members.html -share/doc/qt4/html/qvarlengtharray.html -share/doc/qt4/html/qvboxlayout-members.html -share/doc/qt4/html/qvboxlayout-qt3.html -share/doc/qt4/html/qvboxlayout.html -share/doc/qt4/html/qvector-members.html -share/doc/qt4/html/qvector.html -share/doc/qt4/html/qvectoriterator-members.html -share/doc/qt4/html/qvectoriterator.html -share/doc/qt4/html/qwaitcondition-members.html -share/doc/qt4/html/qwaitcondition.html -share/doc/qt4/html/qwhatsthis-members.html -share/doc/qt4/html/qwhatsthis-qt3.html -share/doc/qt4/html/qwhatsthis.html -share/doc/qt4/html/qwhatsthisclickedevent-members.html -share/doc/qt4/html/qwhatsthisclickedevent.html -share/doc/qt4/html/qwheelevent-members.html -share/doc/qt4/html/qwheelevent-qt3.html -share/doc/qt4/html/qwheelevent.html -share/doc/qt4/html/qwidget-members.html -share/doc/qt4/html/qwidget-obsolete.html -share/doc/qt4/html/qwidget-qt3.html -share/doc/qt4/html/qwidget.html -share/doc/qt4/html/qwidgetaction-members.html -share/doc/qt4/html/qwidgetaction.html -share/doc/qt4/html/qwidgetitem-members.html -share/doc/qt4/html/qwidgetitem.html -share/doc/qt4/html/qwindowsmime-members.html -share/doc/qt4/html/qwindowsmime.html -share/doc/qt4/html/qwindowsstyle-members.html -share/doc/qt4/html/qwindowsstyle.html -share/doc/qt4/html/qwindowstatechangeevent-members.html -share/doc/qt4/html/qwindowstatechangeevent.html -share/doc/qt4/html/qwindowsvistastyle-members.html -share/doc/qt4/html/qwindowsvistastyle.html -share/doc/qt4/html/qwindowsxpstyle-members.html -share/doc/qt4/html/qwindowsxpstyle.html -share/doc/qt4/html/qwizard-members.html -share/doc/qt4/html/qwizard.html -share/doc/qt4/html/qwizardpage-members.html -share/doc/qt4/html/qwizardpage.html -share/doc/qt4/html/qworkspace-members.html -share/doc/qt4/html/qworkspace-qt3.html -share/doc/qt4/html/qworkspace.html -share/doc/qt4/html/qwritelocker-members.html -share/doc/qt4/html/qwritelocker.html -share/doc/qt4/html/qws.html -share/doc/qt4/html/qwscalibratedmousehandler-members.html -share/doc/qt4/html/qwscalibratedmousehandler.html -share/doc/qt4/html/qwsclient-members.html -share/doc/qt4/html/qwsclient.html -share/doc/qt4/html/qwsembedwidget-members.html -share/doc/qt4/html/qwsembedwidget.html -share/doc/qt4/html/qwsevent-members.html -share/doc/qt4/html/qwsevent.html -share/doc/qt4/html/qwsglwindowsurface-members.html -share/doc/qt4/html/qwsglwindowsurface.html -share/doc/qt4/html/qwsinputmethod-members.html -share/doc/qt4/html/qwsinputmethod-obsolete.html -share/doc/qt4/html/qwsinputmethod.html -share/doc/qt4/html/qwskeyboardhandler-members.html -share/doc/qt4/html/qwskeyboardhandler.html -share/doc/qt4/html/qwsmousehandler-members.html -share/doc/qt4/html/qwsmousehandler.html -share/doc/qt4/html/qwspointercalibrationdata-members.html -share/doc/qt4/html/qwspointercalibrationdata.html -share/doc/qt4/html/qwsscreensaver-members.html -share/doc/qt4/html/qwsscreensaver.html -share/doc/qt4/html/qwsserver-keyboardfilter-members.html -share/doc/qt4/html/qwsserver-keyboardfilter.html -share/doc/qt4/html/qwsserver-members.html -share/doc/qt4/html/qwsserver-obsolete.html -share/doc/qt4/html/qwsserver-qt3.html -share/doc/qt4/html/qwsserver.html -share/doc/qt4/html/qwswindow-members.html -share/doc/qt4/html/qwswindow.html -share/doc/qt4/html/qx11embedcontainer-members.html -share/doc/qt4/html/qx11embedcontainer.html -share/doc/qt4/html/qx11embedwidget-members.html -share/doc/qt4/html/qx11embedwidget.html -share/doc/qt4/html/qx11info-members.html -share/doc/qt4/html/qx11info.html -share/doc/qt4/html/qxmlattributes-members.html -share/doc/qt4/html/qxmlattributes.html -share/doc/qt4/html/qxmlcontenthandler-members.html -share/doc/qt4/html/qxmlcontenthandler.html -share/doc/qt4/html/qxmldeclhandler-members.html -share/doc/qt4/html/qxmldeclhandler.html -share/doc/qt4/html/qxmldefaulthandler-members.html -share/doc/qt4/html/qxmldefaulthandler.html -share/doc/qt4/html/qxmldtdhandler-members.html -share/doc/qt4/html/qxmldtdhandler.html -share/doc/qt4/html/qxmlentityresolver-members.html -share/doc/qt4/html/qxmlentityresolver.html -share/doc/qt4/html/qxmlerrorhandler-members.html -share/doc/qt4/html/qxmlerrorhandler.html -share/doc/qt4/html/qxmlinputsource-members.html -share/doc/qt4/html/qxmlinputsource-qt3.html -share/doc/qt4/html/qxmlinputsource.html -share/doc/qt4/html/qxmllexicalhandler-members.html -share/doc/qt4/html/qxmllexicalhandler.html -share/doc/qt4/html/qxmllocator-members.html -share/doc/qt4/html/qxmllocator.html -share/doc/qt4/html/qxmlnamespacesupport-members.html -share/doc/qt4/html/qxmlnamespacesupport.html -share/doc/qt4/html/qxmlparseexception-members.html -share/doc/qt4/html/qxmlparseexception.html -share/doc/qt4/html/qxmlreader-members.html -share/doc/qt4/html/qxmlreader-obsolete.html -share/doc/qt4/html/qxmlreader.html -share/doc/qt4/html/qxmlsimplereader-members.html -share/doc/qt4/html/qxmlsimplereader.html -share/doc/qt4/html/qxmlstreamattribute-members.html -share/doc/qt4/html/qxmlstreamattribute.html -share/doc/qt4/html/qxmlstreamattributes-members.html -share/doc/qt4/html/qxmlstreamattributes.html -share/doc/qt4/html/qxmlstreamentitydeclaration-members.html -share/doc/qt4/html/qxmlstreamentitydeclaration.html -share/doc/qt4/html/qxmlstreamnamespacedeclaration-members.html -share/doc/qt4/html/qxmlstreamnamespacedeclaration.html -share/doc/qt4/html/qxmlstreamnotationdeclaration-members.html -share/doc/qt4/html/qxmlstreamnotationdeclaration.html -share/doc/qt4/html/qxmlstreamreader-members.html -share/doc/qt4/html/qxmlstreamreader.html -share/doc/qt4/html/qxmlstreamwriter-members.html -share/doc/qt4/html/qxmlstreamwriter.html -share/doc/qt4/html/rcc.html -share/doc/qt4/html/resources.html -share/doc/qt4/html/richtext-advanced-processing.html -share/doc/qt4/html/richtext-calendar-main-cpp.html -share/doc/qt4/html/richtext-calendar-mainwindow-cpp.html -share/doc/qt4/html/richtext-calendar-mainwindow-h.html -share/doc/qt4/html/richtext-calendar.html -share/doc/qt4/html/richtext-common-tasks.html -share/doc/qt4/html/richtext-cursor.html -share/doc/qt4/html/richtext-html-subset.html -share/doc/qt4/html/richtext-orderform-detailsdialog-cpp.html -share/doc/qt4/html/richtext-orderform-detailsdialog-h.html -share/doc/qt4/html/richtext-orderform-main-cpp.html -share/doc/qt4/html/richtext-orderform-mainwindow-cpp.html -share/doc/qt4/html/richtext-orderform-mainwindow-h.html -share/doc/qt4/html/richtext-orderform.html -share/doc/qt4/html/richtext-structure.html -share/doc/qt4/html/richtext-syntaxhighlighter-highlighter-cpp.html -share/doc/qt4/html/richtext-syntaxhighlighter-highlighter-h.html -share/doc/qt4/html/richtext-syntaxhighlighter-main-cpp.html -share/doc/qt4/html/richtext-syntaxhighlighter-mainwindow-cpp.html -share/doc/qt4/html/richtext-syntaxhighlighter-mainwindow-h.html -share/doc/qt4/html/richtext-syntaxhighlighter.html -share/doc/qt4/html/richtext.html -share/doc/qt4/html/script-calculator-calculator-js.html -share/doc/qt4/html/script-calculator-calculator-qrc.html -share/doc/qt4/html/script-calculator-main-cpp.html -share/doc/qt4/html/script-calculator.html -share/doc/qt4/html/script-context2d-context2d-cpp.html -share/doc/qt4/html/script-context2d-context2d-h.html -share/doc/qt4/html/script-context2d-context2d-qrc.html -share/doc/qt4/html/script-context2d-domimage-cpp.html -share/doc/qt4/html/script-context2d-domimage-h.html -share/doc/qt4/html/script-context2d-main-cpp.html -share/doc/qt4/html/script-context2d-qcontext2dcanvas-cpp.html -share/doc/qt4/html/script-context2d-qcontext2dcanvas-h.html -share/doc/qt4/html/script-context2d-scripts-alpha-js.html -share/doc/qt4/html/script-context2d-scripts-arc-js.html -share/doc/qt4/html/script-context2d-scripts-bezier-js.html -share/doc/qt4/html/script-context2d-scripts-clock-js.html -share/doc/qt4/html/script-context2d-scripts-fill1-js.html -share/doc/qt4/html/script-context2d-scripts-grad-js.html -share/doc/qt4/html/script-context2d-scripts-linecap-js.html -share/doc/qt4/html/script-context2d-scripts-linestye-js.html -share/doc/qt4/html/script-context2d-scripts-moveto-js.html -share/doc/qt4/html/script-context2d-scripts-moveto2-js.html -share/doc/qt4/html/script-context2d-scripts-pacman-js.html -share/doc/qt4/html/script-context2d-scripts-plasma-js.html -share/doc/qt4/html/script-context2d-scripts-pong-js.html -share/doc/qt4/html/script-context2d-scripts-quad-js.html -share/doc/qt4/html/script-context2d-scripts-rgba-js.html -share/doc/qt4/html/script-context2d-scripts-rotate-js.html -share/doc/qt4/html/script-context2d-scripts-scale-js.html -share/doc/qt4/html/script-context2d-scripts-stroke1-js.html -share/doc/qt4/html/script-context2d-scripts-translate-js.html -share/doc/qt4/html/script-context2d-window-cpp.html -share/doc/qt4/html/script-context2d-window-h.html -share/doc/qt4/html/script-context2d.html -share/doc/qt4/html/script-defaultprototypes-code-js.html -share/doc/qt4/html/script-defaultprototypes-defaultprototypes-qrc.html -share/doc/qt4/html/script-defaultprototypes-main-cpp.html -share/doc/qt4/html/script-defaultprototypes-prototypes-cpp.html -share/doc/qt4/html/script-defaultprototypes-prototypes-h.html -share/doc/qt4/html/script-defaultprototypes.html -share/doc/qt4/html/script-helloscript-main-cpp.html -share/doc/qt4/html/script-helloscript.html -share/doc/qt4/html/script-tetrix-main-cpp.html -share/doc/qt4/html/script-tetrix-tetrix-qrc.html -share/doc/qt4/html/script-tetrix-tetrixboard-cpp.html -share/doc/qt4/html/script-tetrix-tetrixboard-h.html -share/doc/qt4/html/script-tetrix-tetrixboard-js.html -share/doc/qt4/html/script-tetrix-tetrixpiece-js.html -share/doc/qt4/html/script-tetrix-tetrixwindow-js.html -share/doc/qt4/html/script-tetrix.html -share/doc/qt4/html/script.html -share/doc/qt4/html/scripting.html -share/doc/qt4/html/session.html -share/doc/qt4/html/shared.html -share/doc/qt4/html/signalsandslots.html -share/doc/qt4/html/sql-cachedtable-main-cpp.html -share/doc/qt4/html/sql-cachedtable-tableeditor-cpp.html -share/doc/qt4/html/sql-cachedtable-tableeditor-h.html -share/doc/qt4/html/sql-cachedtable.html -share/doc/qt4/html/sql-drilldown-drilldown-qrc.html -share/doc/qt4/html/sql-drilldown-imageitem-cpp.html -share/doc/qt4/html/sql-drilldown-imageitem-h.html -share/doc/qt4/html/sql-drilldown-informationwindow-cpp.html -share/doc/qt4/html/sql-drilldown-informationwindow-h.html -share/doc/qt4/html/sql-drilldown-main-cpp.html -share/doc/qt4/html/sql-drilldown-view-cpp.html -share/doc/qt4/html/sql-drilldown-view-h.html -share/doc/qt4/html/sql-drilldown.html -share/doc/qt4/html/sql-driver.html -share/doc/qt4/html/sql-masterdetail-database-h.html -share/doc/qt4/html/sql-masterdetail-dialog-cpp.html -share/doc/qt4/html/sql-masterdetail-dialog-h.html -share/doc/qt4/html/sql-masterdetail-main-cpp.html -share/doc/qt4/html/sql-masterdetail-mainwindow-cpp.html -share/doc/qt4/html/sql-masterdetail-mainwindow-h.html -share/doc/qt4/html/sql-masterdetail-masterdetail-qrc.html -share/doc/qt4/html/sql-masterdetail.html -share/doc/qt4/html/sql-querymodel-customsqlmodel-cpp.html -share/doc/qt4/html/sql-querymodel-customsqlmodel-h.html -share/doc/qt4/html/sql-querymodel-editablesqlmodel-cpp.html -share/doc/qt4/html/sql-querymodel-editablesqlmodel-h.html -share/doc/qt4/html/sql-querymodel-main-cpp.html -share/doc/qt4/html/sql-querymodel.html -share/doc/qt4/html/sql-relationaltablemodel-relationaltablemodel-cpp.html -share/doc/qt4/html/sql-relationaltablemodel.html -share/doc/qt4/html/sql-tablemodel-tablemodel-cpp.html -share/doc/qt4/html/sql-tablemodel.html -share/doc/qt4/html/style-reference.html -share/doc/qt4/html/stylesheet-customizing.html -share/doc/qt4/html/stylesheet-designer.html -share/doc/qt4/html/stylesheet-examples.html -share/doc/qt4/html/stylesheet-reference.html -share/doc/qt4/html/stylesheet-syntax.html -share/doc/qt4/html/stylesheet.html -share/doc/qt4/html/supported-platforms.html -share/doc/qt4/html/templates.html -share/doc/qt4/html/text-processing.html -share/doc/qt4/html/text.html -share/doc/qt4/html/thread.html -share/doc/qt4/html/threads-mandelbrot-main-cpp.html -share/doc/qt4/html/threads-mandelbrot-mandelbrotwidget-cpp.html -share/doc/qt4/html/threads-mandelbrot-mandelbrotwidget-h.html -share/doc/qt4/html/threads-mandelbrot-renderthread-cpp.html -share/doc/qt4/html/threads-mandelbrot-renderthread-h.html -share/doc/qt4/html/threads-mandelbrot.html -share/doc/qt4/html/threads-semaphores-semaphores-cpp.html -share/doc/qt4/html/threads-semaphores.html -share/doc/qt4/html/threads-waitconditions-waitconditions-cpp.html -share/doc/qt4/html/threads-waitconditions.html -share/doc/qt4/html/threads.html -share/doc/qt4/html/time.html -share/doc/qt4/html/timers.html -share/doc/qt4/html/tools-codecs-main-cpp.html -share/doc/qt4/html/tools-codecs-mainwindow-cpp.html -share/doc/qt4/html/tools-codecs-mainwindow-h.html -share/doc/qt4/html/tools-codecs-previewform-cpp.html -share/doc/qt4/html/tools-codecs-previewform-h.html -share/doc/qt4/html/tools-codecs.html -share/doc/qt4/html/tools-completer-completer-qrc.html -share/doc/qt4/html/tools-completer-dirmodel-cpp.html -share/doc/qt4/html/tools-completer-dirmodel-h.html -share/doc/qt4/html/tools-completer-main-cpp.html -share/doc/qt4/html/tools-completer-mainwindow-cpp.html -share/doc/qt4/html/tools-completer-mainwindow-h.html -share/doc/qt4/html/tools-completer.html -share/doc/qt4/html/tools-customcompleter-customcompleter-qrc.html -share/doc/qt4/html/tools-customcompleter-main-cpp.html -share/doc/qt4/html/tools-customcompleter-mainwindow-cpp.html -share/doc/qt4/html/tools-customcompleter-mainwindow-h.html -share/doc/qt4/html/tools-customcompleter-textedit-cpp.html -share/doc/qt4/html/tools-customcompleter-textedit-h.html -share/doc/qt4/html/tools-customcompleter.html -share/doc/qt4/html/tools-echoplugin-echowindow-echointerface-h.html -share/doc/qt4/html/tools-echoplugin-echowindow-echowindow-cpp.html -share/doc/qt4/html/tools-echoplugin-echowindow-echowindow-h.html -share/doc/qt4/html/tools-echoplugin-echowindow-main-cpp.html -share/doc/qt4/html/tools-echoplugin-plugin-echoplugin-cpp.html -share/doc/qt4/html/tools-echoplugin-plugin-echoplugin-h.html -share/doc/qt4/html/tools-echoplugin.html -share/doc/qt4/html/tools-i18n-i18n-qrc.html -share/doc/qt4/html/tools-i18n-languagechooser-cpp.html -share/doc/qt4/html/tools-i18n-languagechooser-h.html -share/doc/qt4/html/tools-i18n-main-cpp.html -share/doc/qt4/html/tools-i18n-mainwindow-cpp.html -share/doc/qt4/html/tools-i18n-mainwindow-h.html -share/doc/qt4/html/tools-i18n.html -share/doc/qt4/html/tools-plugandpaint-interfaces-h.html -share/doc/qt4/html/tools-plugandpaint-main-cpp.html -share/doc/qt4/html/tools-plugandpaint-mainwindow-cpp.html -share/doc/qt4/html/tools-plugandpaint-mainwindow-h.html -share/doc/qt4/html/tools-plugandpaint-paintarea-cpp.html -share/doc/qt4/html/tools-plugandpaint-paintarea-h.html -share/doc/qt4/html/tools-plugandpaint-plugindialog-cpp.html -share/doc/qt4/html/tools-plugandpaint-plugindialog-h.html -share/doc/qt4/html/tools-plugandpaint.html -share/doc/qt4/html/tools-plugandpaintplugins-basictools-basictoolsplugin-cpp.html -share/doc/qt4/html/tools-plugandpaintplugins-basictools-basictoolsplugin-h.html -share/doc/qt4/html/tools-plugandpaintplugins-basictools.html -share/doc/qt4/html/tools-plugandpaintplugins-extrafilters-extrafiltersplugin-cpp.html -share/doc/qt4/html/tools-plugandpaintplugins-extrafilters-extrafiltersplugin-h.html -share/doc/qt4/html/tools-plugandpaintplugins-extrafilters.html -share/doc/qt4/html/tools-regexp-main-cpp.html -share/doc/qt4/html/tools-regexp-regexpdialog-cpp.html -share/doc/qt4/html/tools-regexp-regexpdialog-h.html -share/doc/qt4/html/tools-regexp.html -share/doc/qt4/html/tools-settingseditor-locationdialog-cpp.html -share/doc/qt4/html/tools-settingseditor-locationdialog-h.html -share/doc/qt4/html/tools-settingseditor-main-cpp.html -share/doc/qt4/html/tools-settingseditor-mainwindow-cpp.html -share/doc/qt4/html/tools-settingseditor-mainwindow-h.html -share/doc/qt4/html/tools-settingseditor-settingstree-cpp.html -share/doc/qt4/html/tools-settingseditor-settingstree-h.html -share/doc/qt4/html/tools-settingseditor-variantdelegate-cpp.html -share/doc/qt4/html/tools-settingseditor-variantdelegate-h.html -share/doc/qt4/html/tools-settingseditor.html -share/doc/qt4/html/tools-styleplugin-plugin-simplestyle-cpp.html -share/doc/qt4/html/tools-styleplugin-plugin-simplestyle-h.html -share/doc/qt4/html/tools-styleplugin-plugin-simplestyleplugin-cpp.html -share/doc/qt4/html/tools-styleplugin-plugin-simplestyleplugin-h.html -share/doc/qt4/html/tools-styleplugin-stylewindow-main-cpp.html -share/doc/qt4/html/tools-styleplugin-stylewindow-stylewindow-cpp.html -share/doc/qt4/html/tools-styleplugin-stylewindow-stylewindow-h.html -share/doc/qt4/html/tools-styleplugin.html -share/doc/qt4/html/tools-treemodelcompleter-main-cpp.html -share/doc/qt4/html/tools-treemodelcompleter-mainwindow-cpp.html -share/doc/qt4/html/tools-treemodelcompleter-mainwindow-h.html -share/doc/qt4/html/tools-treemodelcompleter-treemodelcompleter-cpp.html -share/doc/qt4/html/tools-treemodelcompleter-treemodelcompleter-h.html -share/doc/qt4/html/tools-treemodelcompleter-treemodelcompleter-qrc.html -share/doc/qt4/html/tools-treemodelcompleter.html -share/doc/qt4/html/tools-undoframework-commands-cpp.html -share/doc/qt4/html/tools-undoframework-commands-h.html -share/doc/qt4/html/tools-undoframework-diagramitem-cpp.html -share/doc/qt4/html/tools-undoframework-diagramitem-h.html -share/doc/qt4/html/tools-undoframework-diagramscene-cpp.html -share/doc/qt4/html/tools-undoframework-diagramscene-h.html -share/doc/qt4/html/tools-undoframework-main-cpp.html -share/doc/qt4/html/tools-undoframework-mainwindow-cpp.html -share/doc/qt4/html/tools-undoframework-mainwindow-h.html -share/doc/qt4/html/tools-undoframework-undoframework-qrc.html -share/doc/qt4/html/tools-undoframework.html -share/doc/qt4/html/tools.html -share/doc/qt4/html/topics.html -share/doc/qt4/html/trademarks.html -share/doc/qt4/html/trolltech.html -share/doc/qt4/html/tutorial-t1-main-cpp.html -share/doc/qt4/html/tutorial-t1.html -share/doc/qt4/html/tutorial-t10-cannonfield-cpp.html -share/doc/qt4/html/tutorial-t10-cannonfield-h.html -share/doc/qt4/html/tutorial-t10-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t10-lcdrange-h.html -share/doc/qt4/html/tutorial-t10-main-cpp.html -share/doc/qt4/html/tutorial-t10.html -share/doc/qt4/html/tutorial-t11-cannonfield-cpp.html -share/doc/qt4/html/tutorial-t11-cannonfield-h.html -share/doc/qt4/html/tutorial-t11-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t11-lcdrange-h.html -share/doc/qt4/html/tutorial-t11-main-cpp.html -share/doc/qt4/html/tutorial-t11.html -share/doc/qt4/html/tutorial-t12-cannonfield-cpp.html -share/doc/qt4/html/tutorial-t12-cannonfield-h.html -share/doc/qt4/html/tutorial-t12-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t12-lcdrange-h.html -share/doc/qt4/html/tutorial-t12-main-cpp.html -share/doc/qt4/html/tutorial-t12.html -share/doc/qt4/html/tutorial-t13-cannonfield-cpp.html -share/doc/qt4/html/tutorial-t13-cannonfield-h.html -share/doc/qt4/html/tutorial-t13-gameboard-cpp.html -share/doc/qt4/html/tutorial-t13-gameboard-h.html -share/doc/qt4/html/tutorial-t13-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t13-lcdrange-h.html -share/doc/qt4/html/tutorial-t13-main-cpp.html -share/doc/qt4/html/tutorial-t13.html -share/doc/qt4/html/tutorial-t14-cannonfield-cpp.html -share/doc/qt4/html/tutorial-t14-cannonfield-h.html -share/doc/qt4/html/tutorial-t14-gameboard-cpp.html -share/doc/qt4/html/tutorial-t14-gameboard-h.html -share/doc/qt4/html/tutorial-t14-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t14-lcdrange-h.html -share/doc/qt4/html/tutorial-t14-main-cpp.html -share/doc/qt4/html/tutorial-t14.html -share/doc/qt4/html/tutorial-t2-main-cpp.html -share/doc/qt4/html/tutorial-t2.html -share/doc/qt4/html/tutorial-t3-main-cpp.html -share/doc/qt4/html/tutorial-t3.html -share/doc/qt4/html/tutorial-t4-main-cpp.html -share/doc/qt4/html/tutorial-t4.html -share/doc/qt4/html/tutorial-t5-main-cpp.html -share/doc/qt4/html/tutorial-t5.html -share/doc/qt4/html/tutorial-t6-main-cpp.html -share/doc/qt4/html/tutorial-t6.html -share/doc/qt4/html/tutorial-t7-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t7-lcdrange-h.html -share/doc/qt4/html/tutorial-t7-main-cpp.html -share/doc/qt4/html/tutorial-t7.html -share/doc/qt4/html/tutorial-t8-cannonfield-cpp.html -share/doc/qt4/html/tutorial-t8-cannonfield-h.html -share/doc/qt4/html/tutorial-t8-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t8-lcdrange-h.html -share/doc/qt4/html/tutorial-t8-main-cpp.html -share/doc/qt4/html/tutorial-t8.html -share/doc/qt4/html/tutorial-t9-cannonfield-cpp.html -share/doc/qt4/html/tutorial-t9-cannonfield-h.html -share/doc/qt4/html/tutorial-t9-lcdrange-cpp.html -share/doc/qt4/html/tutorial-t9-lcdrange-h.html -share/doc/qt4/html/tutorial-t9-main-cpp.html -share/doc/qt4/html/tutorial-t9.html -share/doc/qt4/html/tutorial.html -share/doc/qt4/html/uic.html -share/doc/qt4/html/uitools-multipleinheritance-calculatorform-cpp.html -share/doc/qt4/html/uitools-multipleinheritance-calculatorform-h.html -share/doc/qt4/html/uitools-multipleinheritance-main-cpp.html -share/doc/qt4/html/uitools-multipleinheritance.html -share/doc/qt4/html/uitools-textfinder-main-cpp.html -share/doc/qt4/html/uitools-textfinder-textfinder-cpp.html -share/doc/qt4/html/uitools-textfinder-textfinder-h.html -share/doc/qt4/html/uitools-textfinder-textfinder-qrc.html -share/doc/qt4/html/uitools-textfinder.html -share/doc/qt4/html/unicode.html -share/doc/qt4/html/usingadaptors.html -share/doc/qt4/html/widgets-analogclock-analogclock-cpp.html -share/doc/qt4/html/widgets-analogclock-analogclock-h.html -share/doc/qt4/html/widgets-analogclock-main-cpp.html -share/doc/qt4/html/widgets-analogclock.html -share/doc/qt4/html/widgets-calculator-button-cpp.html -share/doc/qt4/html/widgets-calculator-button-h.html -share/doc/qt4/html/widgets-calculator-calculator-cpp.html -share/doc/qt4/html/widgets-calculator-calculator-h.html -share/doc/qt4/html/widgets-calculator-main-cpp.html -share/doc/qt4/html/widgets-calculator.html -share/doc/qt4/html/widgets-calendarwidget-main-cpp.html -share/doc/qt4/html/widgets-calendarwidget-window-cpp.html -share/doc/qt4/html/widgets-calendarwidget-window-h.html -share/doc/qt4/html/widgets-calendarwidget.html -share/doc/qt4/html/widgets-charactermap-characterwidget-cpp.html -share/doc/qt4/html/widgets-charactermap-characterwidget-h.html -share/doc/qt4/html/widgets-charactermap-main-cpp.html -share/doc/qt4/html/widgets-charactermap-mainwindow-cpp.html -share/doc/qt4/html/widgets-charactermap-mainwindow-h.html -share/doc/qt4/html/widgets-charactermap.html -share/doc/qt4/html/widgets-digitalclock-digitalclock-cpp.html -share/doc/qt4/html/widgets-digitalclock-digitalclock-h.html -share/doc/qt4/html/widgets-digitalclock-main-cpp.html -share/doc/qt4/html/widgets-digitalclock.html -share/doc/qt4/html/widgets-groupbox-main-cpp.html -share/doc/qt4/html/widgets-groupbox-window-cpp.html -share/doc/qt4/html/widgets-groupbox-window-h.html -share/doc/qt4/html/widgets-groupbox.html -share/doc/qt4/html/widgets-icons-iconpreviewarea-cpp.html -share/doc/qt4/html/widgets-icons-iconpreviewarea-h.html -share/doc/qt4/html/widgets-icons-iconsizespinbox-cpp.html -share/doc/qt4/html/widgets-icons-iconsizespinbox-h.html -share/doc/qt4/html/widgets-icons-imagedelegate-cpp.html -share/doc/qt4/html/widgets-icons-imagedelegate-h.html -share/doc/qt4/html/widgets-icons-main-cpp.html -share/doc/qt4/html/widgets-icons-mainwindow-cpp.html -share/doc/qt4/html/widgets-icons-mainwindow-h.html -share/doc/qt4/html/widgets-icons.html -share/doc/qt4/html/widgets-imageviewer-imageviewer-cpp.html -share/doc/qt4/html/widgets-imageviewer-imageviewer-h.html -share/doc/qt4/html/widgets-imageviewer-main-cpp.html -share/doc/qt4/html/widgets-imageviewer.html -share/doc/qt4/html/widgets-lineedits-main-cpp.html -share/doc/qt4/html/widgets-lineedits-window-cpp.html -share/doc/qt4/html/widgets-lineedits-window-h.html -share/doc/qt4/html/widgets-lineedits.html -share/doc/qt4/html/widgets-movie-main-cpp.html -share/doc/qt4/html/widgets-movie-movie-qrc.html -share/doc/qt4/html/widgets-movie-movieplayer-cpp.html -share/doc/qt4/html/widgets-movie-movieplayer-h.html -share/doc/qt4/html/widgets-movie.html -share/doc/qt4/html/widgets-scribble-main-cpp.html -share/doc/qt4/html/widgets-scribble-mainwindow-cpp.html -share/doc/qt4/html/widgets-scribble-mainwindow-h.html -share/doc/qt4/html/widgets-scribble-scribblearea-cpp.html -share/doc/qt4/html/widgets-scribble-scribblearea-h.html -share/doc/qt4/html/widgets-scribble.html -share/doc/qt4/html/widgets-shapedclock-main-cpp.html -share/doc/qt4/html/widgets-shapedclock-shapedclock-cpp.html -share/doc/qt4/html/widgets-shapedclock-shapedclock-h.html -share/doc/qt4/html/widgets-shapedclock.html -share/doc/qt4/html/widgets-sliders-main-cpp.html -share/doc/qt4/html/widgets-sliders-slidersgroup-cpp.html -share/doc/qt4/html/widgets-sliders-slidersgroup-h.html -share/doc/qt4/html/widgets-sliders-window-cpp.html -share/doc/qt4/html/widgets-sliders-window-h.html -share/doc/qt4/html/widgets-sliders.html -share/doc/qt4/html/widgets-spinboxes-main-cpp.html -share/doc/qt4/html/widgets-spinboxes-window-cpp.html -share/doc/qt4/html/widgets-spinboxes-window-h.html -share/doc/qt4/html/widgets-spinboxes.html -share/doc/qt4/html/widgets-styles-main-cpp.html -share/doc/qt4/html/widgets-styles-norwegianwoodstyle-cpp.html -share/doc/qt4/html/widgets-styles-norwegianwoodstyle-h.html -share/doc/qt4/html/widgets-styles-styles-qrc.html -share/doc/qt4/html/widgets-styles-widgetgallery-cpp.html -share/doc/qt4/html/widgets-styles-widgetgallery-h.html -share/doc/qt4/html/widgets-styles.html -share/doc/qt4/html/widgets-stylesheet-main-cpp.html -share/doc/qt4/html/widgets-stylesheet-mainwindow-cpp.html -share/doc/qt4/html/widgets-stylesheet-mainwindow-h.html -share/doc/qt4/html/widgets-stylesheet-stylesheet-qrc.html -share/doc/qt4/html/widgets-stylesheet-stylesheeteditor-cpp.html -share/doc/qt4/html/widgets-stylesheet-stylesheeteditor-h.html -share/doc/qt4/html/widgets-stylesheet.html -share/doc/qt4/html/widgets-tablet-main-cpp.html -share/doc/qt4/html/widgets-tablet-mainwindow-cpp.html -share/doc/qt4/html/widgets-tablet-mainwindow-h.html -share/doc/qt4/html/widgets-tablet-tabletapplication-cpp.html -share/doc/qt4/html/widgets-tablet-tabletapplication-h.html -share/doc/qt4/html/widgets-tablet-tabletcanvas-cpp.html -share/doc/qt4/html/widgets-tablet-tabletcanvas-h.html -share/doc/qt4/html/widgets-tablet.html -share/doc/qt4/html/widgets-tetrix-main-cpp.html -share/doc/qt4/html/widgets-tetrix-tetrixboard-cpp.html -share/doc/qt4/html/widgets-tetrix-tetrixboard-h.html -share/doc/qt4/html/widgets-tetrix-tetrixpiece-cpp.html -share/doc/qt4/html/widgets-tetrix-tetrixpiece-h.html -share/doc/qt4/html/widgets-tetrix-tetrixwindow-cpp.html -share/doc/qt4/html/widgets-tetrix-tetrixwindow-h.html -share/doc/qt4/html/widgets-tetrix.html -share/doc/qt4/html/widgets-tooltips-main-cpp.html -share/doc/qt4/html/widgets-tooltips-shapeitem-cpp.html -share/doc/qt4/html/widgets-tooltips-shapeitem-h.html -share/doc/qt4/html/widgets-tooltips-sortingbox-cpp.html -share/doc/qt4/html/widgets-tooltips-sortingbox-h.html -share/doc/qt4/html/widgets-tooltips-tooltips-qrc.html -share/doc/qt4/html/widgets-tooltips.html -share/doc/qt4/html/widgets-wiggly-dialog-cpp.html -share/doc/qt4/html/widgets-wiggly-dialog-h.html -share/doc/qt4/html/widgets-wiggly-main-cpp.html -share/doc/qt4/html/widgets-wiggly-wigglywidget-cpp.html -share/doc/qt4/html/widgets-wiggly-wigglywidget-h.html -share/doc/qt4/html/widgets-wiggly.html -share/doc/qt4/html/widgets-windowflags-controllerwindow-cpp.html -share/doc/qt4/html/widgets-windowflags-controllerwindow-h.html -share/doc/qt4/html/widgets-windowflags-main-cpp.html -share/doc/qt4/html/widgets-windowflags-previewwindow-cpp.html -share/doc/qt4/html/widgets-windowflags-previewwindow-h.html -share/doc/qt4/html/widgets-windowflags.html -share/doc/qt4/html/winsystem.html -share/doc/qt4/html/xml-dombookmarks-main-cpp.html -share/doc/qt4/html/xml-dombookmarks-mainwindow-cpp.html -share/doc/qt4/html/xml-dombookmarks-mainwindow-h.html -share/doc/qt4/html/xml-dombookmarks-xbeltree-cpp.html -share/doc/qt4/html/xml-dombookmarks-xbeltree-h.html -share/doc/qt4/html/xml-dombookmarks.html -share/doc/qt4/html/xml-rsslisting-main-cpp.html -share/doc/qt4/html/xml-rsslisting-rsslisting-cpp.html -share/doc/qt4/html/xml-rsslisting-rsslisting-h.html -share/doc/qt4/html/xml-rsslisting.html -share/doc/qt4/html/xml-saxbookmarks-main-cpp.html -share/doc/qt4/html/xml-saxbookmarks-mainwindow-cpp.html -share/doc/qt4/html/xml-saxbookmarks-mainwindow-h.html -share/doc/qt4/html/xml-saxbookmarks-xbelgenerator-cpp.html -share/doc/qt4/html/xml-saxbookmarks-xbelgenerator-h.html -share/doc/qt4/html/xml-saxbookmarks-xbelhandler-cpp.html -share/doc/qt4/html/xml-saxbookmarks-xbelhandler-h.html -share/doc/qt4/html/xml-saxbookmarks.html -share/doc/qt4/html/xml-streambookmarks-main-cpp.html -share/doc/qt4/html/xml-streambookmarks-mainwindow-cpp.html -share/doc/qt4/html/xml-streambookmarks-mainwindow-h.html -share/doc/qt4/html/xml-streambookmarks-xbelreader-cpp.html -share/doc/qt4/html/xml-streambookmarks-xbelreader-h.html -share/doc/qt4/html/xml-streambookmarks-xbelwriter-cpp.html -share/doc/qt4/html/xml-streambookmarks-xbelwriter-h.html -share/doc/qt4/html/xml-streambookmarks.html -share/doc/qt4/html/xml-tools.html -share/doc/qt4/html/xml-xmlstreamlint-main-cpp.html -share/doc/qt4/html/xml-xmlstreamlint.html -@dirrm share/doc/qt4/html/images -@dirrm share/doc/qt4/html -@dirrm share/doc/qt4 +%%DOCSDIR%%/html/3rdparty.html +%%DOCSDIR%%/html/aboutqt.html +%%DOCSDIR%%/html/abstractwidgets.html +%%DOCSDIR%%/html/accelerators.html +%%DOCSDIR%%/html/accessibility.html +%%DOCSDIR%%/html/accessible.html +%%DOCSDIR%%/html/activeqt-dumpcpp.html +%%DOCSDIR%%/html/activeqt-dumpdoc.html +%%DOCSDIR%%/html/activeqt-idc.html +%%DOCSDIR%%/html/activeqt-testcon.html +%%DOCSDIR%%/html/activeqt-tools.html +%%DOCSDIR%%/html/activeqt.html +%%DOCSDIR%%/html/advanced.html +%%DOCSDIR%%/html/annotated.html +%%DOCSDIR%%/html/appearance.html +%%DOCSDIR%%/html/appicon.html +%%DOCSDIR%%/html/application.html +%%DOCSDIR%%/html/architecture.html +%%DOCSDIR%%/html/assistant-custom-help-viewer.html +%%DOCSDIR%%/html/assistant-details.html +%%DOCSDIR%%/html/assistant-manual.html +%%DOCSDIR%%/html/assistant.dcf +%%DOCSDIR%%/html/atomic-operations.html +%%DOCSDIR%%/html/basicwidgets.html +%%DOCSDIR%%/html/bughowto.html +%%DOCSDIR%%/html/buildsystem.html +%%DOCSDIR%%/html/classes.html +%%DOCSDIR%%/html/classic.css +%%DOCSDIR%%/html/classlists.html +%%DOCSDIR%%/html/codec-big5.html +%%DOCSDIR%%/html/codec-big5hkscs.html +%%DOCSDIR%%/html/codec-eucjp.html +%%DOCSDIR%%/html/codec-euckr.html +%%DOCSDIR%%/html/codec-gbk.html +%%DOCSDIR%%/html/codec-sjis.html +%%DOCSDIR%%/html/codec-tscii.html +%%DOCSDIR%%/html/codecs-jis.html +%%DOCSDIR%%/html/codecs.html +%%DOCSDIR%%/html/commercialeditions.html +%%DOCSDIR%%/html/compatclasses.html +%%DOCSDIR%%/html/compiler-notes.html +%%DOCSDIR%%/html/console-edition-classes.html +%%DOCSDIR%%/html/containers.html +%%DOCSDIR%%/html/coordsys.html +%%DOCSDIR%%/html/credits.html +%%DOCSDIR%%/html/database.html +%%DOCSDIR%%/html/datastreamformat.html +%%DOCSDIR%%/html/debug.html +%%DOCSDIR%%/html/demos-affine-affine-pro.html +%%DOCSDIR%%/html/demos-affine-affine-qrc.html +%%DOCSDIR%%/html/demos-affine-main-cpp.html +%%DOCSDIR%%/html/demos-affine-xform-cpp.html +%%DOCSDIR%%/html/demos-affine-xform-h.html +%%DOCSDIR%%/html/demos-affine.html +%%DOCSDIR%%/html/demos-arthurplugin-arthur-plugin-qrc.html +%%DOCSDIR%%/html/demos-arthurplugin-arthurplugin-pro.html +%%DOCSDIR%%/html/demos-arthurplugin-plugin-cpp.html +%%DOCSDIR%%/html/demos-arthurplugin.html +%%DOCSDIR%%/html/demos-books-bookdelegate-cpp.html +%%DOCSDIR%%/html/demos-books-bookdelegate-h.html +%%DOCSDIR%%/html/demos-books-books-pro.html +%%DOCSDIR%%/html/demos-books-books-qrc.html +%%DOCSDIR%%/html/demos-books-bookwindow-cpp.html +%%DOCSDIR%%/html/demos-books-bookwindow-h.html +%%DOCSDIR%%/html/demos-books-bookwindow-ui.html +%%DOCSDIR%%/html/demos-books-initdb-h.html +%%DOCSDIR%%/html/demos-books-main-cpp.html +%%DOCSDIR%%/html/demos-books.html +%%DOCSDIR%%/html/demos-browser.html +%%DOCSDIR%%/html/demos-chip-chip-cpp.html +%%DOCSDIR%%/html/demos-chip-chip-h.html +%%DOCSDIR%%/html/demos-chip-chip-pro.html +%%DOCSDIR%%/html/demos-chip-images-qrc.html +%%DOCSDIR%%/html/demos-chip-main-cpp.html +%%DOCSDIR%%/html/demos-chip-mainwindow-cpp.html +%%DOCSDIR%%/html/demos-chip-mainwindow-h.html +%%DOCSDIR%%/html/demos-chip-view-cpp.html +%%DOCSDIR%%/html/demos-chip-view-h.html +%%DOCSDIR%%/html/demos-chip.html +%%DOCSDIR%%/html/demos-composition-composition-cpp.html +%%DOCSDIR%%/html/demos-composition-composition-h.html +%%DOCSDIR%%/html/demos-composition-composition-pro.html +%%DOCSDIR%%/html/demos-composition-composition-qrc.html +%%DOCSDIR%%/html/demos-composition-main-cpp.html +%%DOCSDIR%%/html/demos-composition.html +%%DOCSDIR%%/html/demos-deform-deform-pro.html +%%DOCSDIR%%/html/demos-deform-deform-qrc.html +%%DOCSDIR%%/html/demos-deform-main-cpp.html +%%DOCSDIR%%/html/demos-deform-pathdeform-cpp.html +%%DOCSDIR%%/html/demos-deform-pathdeform-h.html +%%DOCSDIR%%/html/demos-deform.html +%%DOCSDIR%%/html/demos-embeddeddialogs-customproxy-cpp.html +%%DOCSDIR%%/html/demos-embeddeddialogs-customproxy-h.html +%%DOCSDIR%%/html/demos-embeddeddialogs-embeddeddialog-cpp.html +%%DOCSDIR%%/html/demos-embeddeddialogs-embeddeddialog-h.html +%%DOCSDIR%%/html/demos-embeddeddialogs-embeddeddialog-ui.html +%%DOCSDIR%%/html/demos-embeddeddialogs-embeddeddialogs-pro.html +%%DOCSDIR%%/html/demos-embeddeddialogs-embeddeddialogs-qrc.html +%%DOCSDIR%%/html/demos-embeddeddialogs-main-cpp.html +%%DOCSDIR%%/html/demos-embeddeddialogs.html +%%DOCSDIR%%/html/demos-gradients-gradients-cpp.html +%%DOCSDIR%%/html/demos-gradients-gradients-h.html +%%DOCSDIR%%/html/demos-gradients-gradients-pro.html +%%DOCSDIR%%/html/demos-gradients-gradients-qrc.html +%%DOCSDIR%%/html/demos-gradients-main-cpp.html +%%DOCSDIR%%/html/demos-gradients.html +%%DOCSDIR%%/html/demos-interview-interview-pro.html +%%DOCSDIR%%/html/demos-interview-interview-qrc.html +%%DOCSDIR%%/html/demos-interview-main-cpp.html +%%DOCSDIR%%/html/demos-interview-model-cpp.html +%%DOCSDIR%%/html/demos-interview-model-h.html +%%DOCSDIR%%/html/demos-interview.html +%%DOCSDIR%%/html/demos-macmainwindow-macmainwindow-cpp.html +%%DOCSDIR%%/html/demos-macmainwindow-macmainwindow-h.html +%%DOCSDIR%%/html/demos-macmainwindow-macmainwindow-pro.html +%%DOCSDIR%%/html/demos-macmainwindow-main-cpp.html +%%DOCSDIR%%/html/demos-macmainwindow.html +%%DOCSDIR%%/html/demos-mainwindow-colorswatch-cpp.html +%%DOCSDIR%%/html/demos-mainwindow-colorswatch-h.html +%%DOCSDIR%%/html/demos-mainwindow-main-cpp.html +%%DOCSDIR%%/html/demos-mainwindow-mainwindow-cpp.html +%%DOCSDIR%%/html/demos-mainwindow-mainwindow-h.html +%%DOCSDIR%%/html/demos-mainwindow-mainwindow-pro.html +%%DOCSDIR%%/html/demos-mainwindow-mainwindow-qrc.html +%%DOCSDIR%%/html/demos-mainwindow-toolbar-cpp.html +%%DOCSDIR%%/html/demos-mainwindow-toolbar-h.html +%%DOCSDIR%%/html/demos-mainwindow.html +%%DOCSDIR%%/html/demos-mediaplayer-main-cpp.html +%%DOCSDIR%%/html/demos-mediaplayer-mediaplayer-cpp.html +%%DOCSDIR%%/html/demos-mediaplayer-mediaplayer-h.html +%%DOCSDIR%%/html/demos-mediaplayer-mediaplayer-pro.html +%%DOCSDIR%%/html/demos-mediaplayer-mediaplayer-qrc.html +%%DOCSDIR%%/html/demos-mediaplayer-settings-ui.html +%%DOCSDIR%%/html/demos-mediaplayer.html +%%DOCSDIR%%/html/demos-pathstroke-main-cpp.html +%%DOCSDIR%%/html/demos-pathstroke-pathstroke-cpp.html +%%DOCSDIR%%/html/demos-pathstroke-pathstroke-h.html +%%DOCSDIR%%/html/demos-pathstroke-pathstroke-pro.html +%%DOCSDIR%%/html/demos-pathstroke-pathstroke-qrc.html +%%DOCSDIR%%/html/demos-pathstroke.html +%%DOCSDIR%%/html/demos-spreadsheet-main-cpp.html +%%DOCSDIR%%/html/demos-spreadsheet-spreadsheet-pro.html +%%DOCSDIR%%/html/demos-spreadsheet-spreadsheet-qrc.html +%%DOCSDIR%%/html/demos-spreadsheet.html +%%DOCSDIR%%/html/demos-sqlbrowser-browser-cpp.html +%%DOCSDIR%%/html/demos-sqlbrowser-browser-h.html +%%DOCSDIR%%/html/demos-sqlbrowser-browserwidget-ui.html +%%DOCSDIR%%/html/demos-sqlbrowser-connectionwidget-cpp.html +%%DOCSDIR%%/html/demos-sqlbrowser-connectionwidget-h.html +%%DOCSDIR%%/html/demos-sqlbrowser-main-cpp.html +%%DOCSDIR%%/html/demos-sqlbrowser-qsqlconnectiondialog-cpp.html +%%DOCSDIR%%/html/demos-sqlbrowser-qsqlconnectiondialog-h.html +%%DOCSDIR%%/html/demos-sqlbrowser-qsqlconnectiondialog-ui.html +%%DOCSDIR%%/html/demos-sqlbrowser-sqlbrowser-pro.html +%%DOCSDIR%%/html/demos-sqlbrowser.html +%%DOCSDIR%%/html/demos-textedit-main-cpp.html +%%DOCSDIR%%/html/demos-textedit-textedit-cpp.html +%%DOCSDIR%%/html/demos-textedit-textedit-h.html +%%DOCSDIR%%/html/demos-textedit-textedit-pro.html +%%DOCSDIR%%/html/demos-textedit-textedit-qrc.html +%%DOCSDIR%%/html/demos-textedit.html +%%DOCSDIR%%/html/demos-undo-commands-cpp.html +%%DOCSDIR%%/html/demos-undo-commands-h.html +%%DOCSDIR%%/html/demos-undo-document-cpp.html +%%DOCSDIR%%/html/demos-undo-document-h.html +%%DOCSDIR%%/html/demos-undo-main-cpp.html +%%DOCSDIR%%/html/demos-undo-mainwindow-cpp.html +%%DOCSDIR%%/html/demos-undo-mainwindow-h.html +%%DOCSDIR%%/html/demos-undo-mainwindow-ui.html +%%DOCSDIR%%/html/demos-undo-undo-pro.html +%%DOCSDIR%%/html/demos-undo-undo-qrc.html +%%DOCSDIR%%/html/demos-undo.html +%%DOCSDIR%%/html/demos.html +%%DOCSDIR%%/html/deployment-mac.html +%%DOCSDIR%%/html/deployment-windows.html +%%DOCSDIR%%/html/deployment-x11.html +%%DOCSDIR%%/html/deployment.html +%%DOCSDIR%%/html/designer-buddy-mode.html +%%DOCSDIR%%/html/designer-calculatorbuilder-calculatorbuilder-pro.html +%%DOCSDIR%%/html/designer-calculatorbuilder-calculatorbuilder-qrc.html +%%DOCSDIR%%/html/designer-calculatorbuilder-calculatorform-cpp.html +%%DOCSDIR%%/html/designer-calculatorbuilder-calculatorform-h.html +%%DOCSDIR%%/html/designer-calculatorbuilder-calculatorform-ui.html +%%DOCSDIR%%/html/designer-calculatorbuilder-main-cpp.html +%%DOCSDIR%%/html/designer-calculatorbuilder.html +%%DOCSDIR%%/html/designer-calculatorform-calculatorform-cpp.html +%%DOCSDIR%%/html/designer-calculatorform-calculatorform-h.html +%%DOCSDIR%%/html/designer-calculatorform-calculatorform-pro.html +%%DOCSDIR%%/html/designer-calculatorform-calculatorform-ui.html +%%DOCSDIR%%/html/designer-calculatorform-main-cpp.html +%%DOCSDIR%%/html/designer-calculatorform.html +%%DOCSDIR%%/html/designer-connection-mode.html +%%DOCSDIR%%/html/designer-containerextension-containerextension-pro.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidget-cpp.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidget-h.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidgetcontainerextension-cpp.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidgetcontainerextension-h.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidgetextensionfactory-cpp.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidgetextensionfactory-h.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidgetplugin-cpp.html +%%DOCSDIR%%/html/designer-containerextension-multipagewidgetplugin-h.html +%%DOCSDIR%%/html/designer-containerextension.html +%%DOCSDIR%%/html/designer-creating-custom-widgets-extensions.html +%%DOCSDIR%%/html/designer-creating-custom-widgets.html +%%DOCSDIR%%/html/designer-creating-mainwindows.html +%%DOCSDIR%%/html/designer-customizing-forms.html +%%DOCSDIR%%/html/designer-customwidgetplugin-analogclock-cpp.html +%%DOCSDIR%%/html/designer-customwidgetplugin-analogclock-h.html +%%DOCSDIR%%/html/designer-customwidgetplugin-customwidgetplugin-cpp.html +%%DOCSDIR%%/html/designer-customwidgetplugin-customwidgetplugin-h.html +%%DOCSDIR%%/html/designer-customwidgetplugin-customwidgetplugin-pro.html +%%DOCSDIR%%/html/designer-customwidgetplugin.html +%%DOCSDIR%%/html/designer-designing-a-component.html +%%DOCSDIR%%/html/designer-editing-mode.html +%%DOCSDIR%%/html/designer-getting-started.html +%%DOCSDIR%%/html/designer-manual.html +%%DOCSDIR%%/html/designer-recursive-shadow-casting.html +%%DOCSDIR%%/html/designer-resources.html +%%DOCSDIR%%/html/designer-stylesheet.html +%%DOCSDIR%%/html/designer-tab-order.html +%%DOCSDIR%%/html/designer-taskmenuextension-taskmenuextension-pro.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoe-cpp.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoe-h.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoedialog-cpp.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoedialog-h.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoeplugin-cpp.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoeplugin-h.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoetaskmenu-cpp.html +%%DOCSDIR%%/html/designer-taskmenuextension-tictactoetaskmenu-h.html +%%DOCSDIR%%/html/designer-taskmenuextension.html +%%DOCSDIR%%/html/designer-ui-file-format.html +%%DOCSDIR%%/html/designer-using-a-component.html +%%DOCSDIR%%/html/designer-using-containers.html +%%DOCSDIR%%/html/designer-using-custom-widgets.html +%%DOCSDIR%%/html/designer-worldtimeclockbuilder-form-ui.html +%%DOCSDIR%%/html/designer-worldtimeclockbuilder-main-cpp.html +%%DOCSDIR%%/html/designer-worldtimeclockbuilder-worldtimeclockbuilder-pro.html +%%DOCSDIR%%/html/designer-worldtimeclockbuilder-worldtimeclockbuilder-qrc.html +%%DOCSDIR%%/html/designer-worldtimeclockbuilder.html +%%DOCSDIR%%/html/designer-worldtimeclockplugin-worldtimeclock-cpp.html +%%DOCSDIR%%/html/designer-worldtimeclockplugin-worldtimeclock-h.html +%%DOCSDIR%%/html/designer-worldtimeclockplugin-worldtimeclockplugin-cpp.html +%%DOCSDIR%%/html/designer-worldtimeclockplugin-worldtimeclockplugin-h.html +%%DOCSDIR%%/html/designer-worldtimeclockplugin-worldtimeclockplugin-pro.html +%%DOCSDIR%%/html/designer-worldtimeclockplugin.html +%%DOCSDIR%%/html/designer.dcf +%%DOCSDIR%%/html/desktop-edition-classes.html +%%DOCSDIR%%/html/desktop-integration.html +%%DOCSDIR%%/html/desktop-light-edition-classes.html +%%DOCSDIR%%/html/desktop-screenshot-main-cpp.html +%%DOCSDIR%%/html/desktop-screenshot-screenshot-cpp.html +%%DOCSDIR%%/html/desktop-screenshot-screenshot-h.html +%%DOCSDIR%%/html/desktop-screenshot-screenshot-pro.html +%%DOCSDIR%%/html/desktop-screenshot.html +%%DOCSDIR%%/html/desktop-systray-images-bad-svg.html +%%DOCSDIR%%/html/desktop-systray-images-heart-svg.html +%%DOCSDIR%%/html/desktop-systray-images-trash-svg.html +%%DOCSDIR%%/html/desktop-systray-main-cpp.html +%%DOCSDIR%%/html/desktop-systray-systray-pro.html +%%DOCSDIR%%/html/desktop-systray-systray-qrc.html +%%DOCSDIR%%/html/desktop-systray-window-cpp.html +%%DOCSDIR%%/html/desktop-systray-window-h.html +%%DOCSDIR%%/html/desktop-systray.html +%%DOCSDIR%%/html/desktop.html +%%DOCSDIR%%/html/dialogs-classwizard-classwizard-cpp.html +%%DOCSDIR%%/html/dialogs-classwizard-classwizard-h.html +%%DOCSDIR%%/html/dialogs-classwizard-classwizard-pro.html +%%DOCSDIR%%/html/dialogs-classwizard-classwizard-qrc.html +%%DOCSDIR%%/html/dialogs-classwizard-main-cpp.html +%%DOCSDIR%%/html/dialogs-classwizard.html +%%DOCSDIR%%/html/dialogs-configdialog-configdialog-cpp.html +%%DOCSDIR%%/html/dialogs-configdialog-configdialog-h.html +%%DOCSDIR%%/html/dialogs-configdialog-configdialog-pro.html +%%DOCSDIR%%/html/dialogs-configdialog-configdialog-qrc.html +%%DOCSDIR%%/html/dialogs-configdialog-main-cpp.html +%%DOCSDIR%%/html/dialogs-configdialog-pages-cpp.html +%%DOCSDIR%%/html/dialogs-configdialog-pages-h.html +%%DOCSDIR%%/html/dialogs-configdialog.html +%%DOCSDIR%%/html/dialogs-extension-extension-pro.html +%%DOCSDIR%%/html/dialogs-extension-finddialog-cpp.html +%%DOCSDIR%%/html/dialogs-extension-finddialog-h.html +%%DOCSDIR%%/html/dialogs-extension-main-cpp.html +%%DOCSDIR%%/html/dialogs-extension.html +%%DOCSDIR%%/html/dialogs-findfiles-findfiles-pro.html +%%DOCSDIR%%/html/dialogs-findfiles-main-cpp.html +%%DOCSDIR%%/html/dialogs-findfiles-window-cpp.html +%%DOCSDIR%%/html/dialogs-findfiles-window-h.html +%%DOCSDIR%%/html/dialogs-findfiles.html +%%DOCSDIR%%/html/dialogs-licensewizard-licensewizard-cpp.html +%%DOCSDIR%%/html/dialogs-licensewizard-licensewizard-h.html +%%DOCSDIR%%/html/dialogs-licensewizard-licensewizard-pro.html +%%DOCSDIR%%/html/dialogs-licensewizard-licensewizard-qrc.html +%%DOCSDIR%%/html/dialogs-licensewizard-main-cpp.html +%%DOCSDIR%%/html/dialogs-licensewizard.html +%%DOCSDIR%%/html/dialogs-sipdialog-dialog-cpp.html +%%DOCSDIR%%/html/dialogs-sipdialog-dialog-h.html +%%DOCSDIR%%/html/dialogs-sipdialog-main-cpp.html +%%DOCSDIR%%/html/dialogs-sipdialog-sipdialog-pro.html +%%DOCSDIR%%/html/dialogs-sipdialog.html +%%DOCSDIR%%/html/dialogs-standarddialogs-dialog-cpp.html +%%DOCSDIR%%/html/dialogs-standarddialogs-dialog-h.html +%%DOCSDIR%%/html/dialogs-standarddialogs-main-cpp.html +%%DOCSDIR%%/html/dialogs-standarddialogs-standarddialogs-pro.html +%%DOCSDIR%%/html/dialogs-standarddialogs.html +%%DOCSDIR%%/html/dialogs-tabdialog-main-cpp.html +%%DOCSDIR%%/html/dialogs-tabdialog-tabdialog-cpp.html +%%DOCSDIR%%/html/dialogs-tabdialog-tabdialog-h.html +%%DOCSDIR%%/html/dialogs-tabdialog-tabdialog-pro.html +%%DOCSDIR%%/html/dialogs-tabdialog.html +%%DOCSDIR%%/html/dialogs-trivialwizard-trivialwizard-cpp.html +%%DOCSDIR%%/html/dialogs-trivialwizard-trivialwizard-pro.html +%%DOCSDIR%%/html/dialogs-trivialwizard.html +%%DOCSDIR%%/html/dialogs.html +%%DOCSDIR%%/html/dnd.html +%%DOCSDIR%%/html/draganddrop-draggableicons-draggableicons-pro.html +%%DOCSDIR%%/html/draganddrop-draggableicons-draggableicons-qrc.html +%%DOCSDIR%%/html/draganddrop-draggableicons-dragwidget-cpp.html +%%DOCSDIR%%/html/draganddrop-draggableicons-dragwidget-h.html +%%DOCSDIR%%/html/draganddrop-draggableicons-main-cpp.html +%%DOCSDIR%%/html/draganddrop-draggableicons.html +%%DOCSDIR%%/html/draganddrop-draggabletext-draggabletext-pro.html +%%DOCSDIR%%/html/draganddrop-draggabletext-draggabletext-qrc.html +%%DOCSDIR%%/html/draganddrop-draggabletext-draglabel-cpp.html +%%DOCSDIR%%/html/draganddrop-draggabletext-draglabel-h.html +%%DOCSDIR%%/html/draganddrop-draggabletext-dragwidget-cpp.html +%%DOCSDIR%%/html/draganddrop-draggabletext-dragwidget-h.html +%%DOCSDIR%%/html/draganddrop-draggabletext-main-cpp.html +%%DOCSDIR%%/html/draganddrop-draggabletext.html +%%DOCSDIR%%/html/draganddrop-dropsite-droparea-cpp.html +%%DOCSDIR%%/html/draganddrop-dropsite-droparea-h.html +%%DOCSDIR%%/html/draganddrop-dropsite-dropsite-pro.html +%%DOCSDIR%%/html/draganddrop-dropsite-dropsitewindow-cpp.html +%%DOCSDIR%%/html/draganddrop-dropsite-dropsitewindow-h.html +%%DOCSDIR%%/html/draganddrop-dropsite-main-cpp.html +%%DOCSDIR%%/html/draganddrop-dropsite.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets-draglabel-cpp.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets-draglabel-h.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets-dragwidget-cpp.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets-dragwidget-h.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets-fridgemagnets-pro.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets-fridgemagnets-qrc.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets-main-cpp.html +%%DOCSDIR%%/html/draganddrop-fridgemagnets.html +%%DOCSDIR%%/html/draganddrop-puzzle-main-cpp.html +%%DOCSDIR%%/html/draganddrop-puzzle-mainwindow-cpp.html +%%DOCSDIR%%/html/draganddrop-puzzle-mainwindow-h.html +%%DOCSDIR%%/html/draganddrop-puzzle-pieceslist-cpp.html +%%DOCSDIR%%/html/draganddrop-puzzle-pieceslist-h.html +%%DOCSDIR%%/html/draganddrop-puzzle-puzzle-pro.html +%%DOCSDIR%%/html/draganddrop-puzzle-puzzle-qrc.html +%%DOCSDIR%%/html/draganddrop-puzzle-puzzlewidget-cpp.html +%%DOCSDIR%%/html/draganddrop-puzzle-puzzlewidget-h.html +%%DOCSDIR%%/html/draganddrop-puzzle.html +%%DOCSDIR%%/html/draganddrop.html +%%DOCSDIR%%/html/ecmascript.html +%%DOCSDIR%%/html/editions.html +%%DOCSDIR%%/html/environment.html +%%DOCSDIR%%/html/events.html +%%DOCSDIR%%/html/eventsandfilters.html +%%DOCSDIR%%/html/examples-overview.html +%%DOCSDIR%%/html/examples.html +%%DOCSDIR%%/html/explicitly-shared.html +%%DOCSDIR%%/html/exportedfunctions.html +%%DOCSDIR%%/html/focus.html +%%DOCSDIR%%/html/functions.html +%%DOCSDIR%%/html/gallery-cde.html +%%DOCSDIR%%/html/gallery-cleanlooks.html +%%DOCSDIR%%/html/gallery-macintosh.html +%%DOCSDIR%%/html/gallery-motif.html +%%DOCSDIR%%/html/gallery-plastique.html +%%DOCSDIR%%/html/gallery-windows.html +%%DOCSDIR%%/html/gallery-windowsvista.html +%%DOCSDIR%%/html/gallery-windowsxp.html +%%DOCSDIR%%/html/gallery.html +%%DOCSDIR%%/html/geomanagement.html +%%DOCSDIR%%/html/geometry.html +%%DOCSDIR%%/html/gpl.html +%%DOCSDIR%%/html/graphicsview-api.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts-basicgraphicslayouts-pro.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts-basicgraphicslayouts-qrc.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts-layoutitem-cpp.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts-layoutitem-h.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts-main-cpp.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts-window-cpp.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts-window-h.html +%%DOCSDIR%%/html/graphicsview-basicgraphicslayouts.html +%%DOCSDIR%%/html/graphicsview-collidingmice-collidingmice-pro.html +%%DOCSDIR%%/html/graphicsview-collidingmice-main-cpp.html +%%DOCSDIR%%/html/graphicsview-collidingmice-mice-qrc.html +%%DOCSDIR%%/html/graphicsview-collidingmice-mouse-cpp.html +%%DOCSDIR%%/html/graphicsview-collidingmice-mouse-h.html +%%DOCSDIR%%/html/graphicsview-collidingmice.html +%%DOCSDIR%%/html/graphicsview-diagramscene-arrow-cpp.html +%%DOCSDIR%%/html/graphicsview-diagramscene-arrow-h.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramitem-cpp.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramitem-h.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramscene-cpp.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramscene-h.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramscene-pro.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramscene-qrc.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramtextitem-cpp.html +%%DOCSDIR%%/html/graphicsview-diagramscene-diagramtextitem-h.html +%%DOCSDIR%%/html/graphicsview-diagramscene-main-cpp.html +%%DOCSDIR%%/html/graphicsview-diagramscene-mainwindow-cpp.html +%%DOCSDIR%%/html/graphicsview-diagramscene-mainwindow-h.html +%%DOCSDIR%%/html/graphicsview-diagramscene.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot-coloritem-cpp.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot-coloritem-h.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot-dragdroprobot-pro.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot-main-cpp.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot-robot-cpp.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot-robot-h.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot-robot-qrc.html +%%DOCSDIR%%/html/graphicsview-dragdroprobot.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-edge-cpp.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-edge-h.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-elasticnodes-pro.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-graphwidget-cpp.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-graphwidget-h.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-main-cpp.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-node-cpp.html +%%DOCSDIR%%/html/graphicsview-elasticnodes-node-h.html +%%DOCSDIR%%/html/graphicsview-elasticnodes.html +%%DOCSDIR%%/html/graphicsview-padnavigator-backside-ui.html +%%DOCSDIR%%/html/graphicsview-padnavigator-main-cpp.html +%%DOCSDIR%%/html/graphicsview-padnavigator-padnavigator-pro.html +%%DOCSDIR%%/html/graphicsview-padnavigator-padnavigator-qrc.html +%%DOCSDIR%%/html/graphicsview-padnavigator-panel-cpp.html +%%DOCSDIR%%/html/graphicsview-padnavigator-panel-h.html +%%DOCSDIR%%/html/graphicsview-padnavigator-roundrectitem-cpp.html +%%DOCSDIR%%/html/graphicsview-padnavigator-roundrectitem-h.html +%%DOCSDIR%%/html/graphicsview-padnavigator-splashitem-cpp.html +%%DOCSDIR%%/html/graphicsview-padnavigator-splashitem-h.html +%%DOCSDIR%%/html/graphicsview-padnavigator.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-animateditem-cpp.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-animateditem-h.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-ledmeter-cpp.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-ledmeter-h.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-main-cpp.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-portedasteroids-pro.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-portedasteroids-qrc.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-sprites-h.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-toplevel-cpp.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-toplevel-h.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-view-cpp.html +%%DOCSDIR%%/html/graphicsview-portedasteroids-view-h.html +%%DOCSDIR%%/html/graphicsview-portedasteroids.html +%%DOCSDIR%%/html/graphicsview-portedcanvas-blendshadow-cpp.html +%%DOCSDIR%%/html/graphicsview-portedcanvas-canvas-cpp.html +%%DOCSDIR%%/html/graphicsview-portedcanvas-canvas-h.html +%%DOCSDIR%%/html/graphicsview-portedcanvas-main-cpp.html +%%DOCSDIR%%/html/graphicsview-portedcanvas-makeimg-cpp.html +%%DOCSDIR%%/html/graphicsview-portedcanvas-portedcanvas-pro.html +%%DOCSDIR%%/html/graphicsview-portedcanvas-portedcanvas-qrc.html +%%DOCSDIR%%/html/graphicsview-portedcanvas.html +%%DOCSDIR%%/html/graphicsview-porting.html +%%DOCSDIR%%/html/graphicsview.html +%%DOCSDIR%%/html/groups.html +%%DOCSDIR%%/html/gui-programming.html +%%DOCSDIR%%/html/guibooks.html +%%DOCSDIR%%/html/help-remotecontrol-main-cpp.html +%%DOCSDIR%%/html/help-remotecontrol-remotecontrol-cpp.html +%%DOCSDIR%%/html/help-remotecontrol-remotecontrol-h.html +%%DOCSDIR%%/html/help-remotecontrol-remotecontrol-pro.html +%%DOCSDIR%%/html/help-remotecontrol-remotecontrol-qrc.html +%%DOCSDIR%%/html/help-remotecontrol-remotecontrol-ui.html +%%DOCSDIR%%/html/help-remotecontrol.html +%%DOCSDIR%%/html/help-simpletextviewer-assistant-cpp.html +%%DOCSDIR%%/html/help-simpletextviewer-assistant-h.html +%%DOCSDIR%%/html/help-simpletextviewer-documentation-simpletextviewer-qhcp.html +%%DOCSDIR%%/html/help-simpletextviewer-documentation-simpletextviewer-qhp.html +%%DOCSDIR%%/html/help-simpletextviewer-findfiledialog-cpp.html +%%DOCSDIR%%/html/help-simpletextviewer-findfiledialog-h.html +%%DOCSDIR%%/html/help-simpletextviewer-main-cpp.html +%%DOCSDIR%%/html/help-simpletextviewer-mainwindow-cpp.html +%%DOCSDIR%%/html/help-simpletextviewer-mainwindow-h.html +%%DOCSDIR%%/html/help-simpletextviewer-simpletextviewer-pro.html +%%DOCSDIR%%/html/help-simpletextviewer-textedit-cpp.html +%%DOCSDIR%%/html/help-simpletextviewer-textedit-h.html +%%DOCSDIR%%/html/help-simpletextviewer.html +%%DOCSDIR%%/html/helpsystem.html +%%DOCSDIR%%/html/hierarchy.html +%%DOCSDIR%%/html/how-to-learn-qt.html +%%DOCSDIR%%/html/howto.html +%%DOCSDIR%%/html/i18n.html +%%DOCSDIR%%/html/images/2dpainting-example.png +%%DOCSDIR%%/html/images/abstract-connections.png +%%DOCSDIR%%/html/images/accessibilityarchitecture.png +%%DOCSDIR%%/html/images/accessibleobjecttree.png +%%DOCSDIR%%/html/images/addressbook-adddialog.png +%%DOCSDIR%%/html/images/addressbook-classes.png +%%DOCSDIR%%/html/images/addressbook-editdialog.png +%%DOCSDIR%%/html/images/addressbook-example.png +%%DOCSDIR%%/html/images/addressbook-filemenu.png +%%DOCSDIR%%/html/images/addressbook-newaddresstab.png +%%DOCSDIR%%/html/images/addressbook-signals.png +%%DOCSDIR%%/html/images/addressbook-toolsmenu.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part1-labeled-layout.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part1-labeled-screenshot.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part1-screenshot.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part2-add-contact.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part2-add-flowchart.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part2-add-successful.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part2-labeled-layout.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part2-signals-and-slots.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part2-stretch-effects.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part3-labeled-layout.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part3-linkedlist.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part3-screenshot.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part4-remove.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part5-finddialog.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part5-notfound.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part5-screenshot.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part5-signals-and-slots.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part6-load.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part6-save.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part6-screenshot.png +%%DOCSDIR%%/html/images/addressbook-tutorial-part7-screenshot.png +%%DOCSDIR%%/html/images/addressbook-tutorial-screenshot.png +%%DOCSDIR%%/html/images/addressbook-tutorial.png +%%DOCSDIR%%/html/images/affine-demo.png +%%DOCSDIR%%/html/images/alphachannelimage.png +%%DOCSDIR%%/html/images/alphafill.png +%%DOCSDIR%%/html/images/analogclock-example.png +%%DOCSDIR%%/html/images/analogclock-viewport.png +%%DOCSDIR%%/html/images/antialiased.png +%%DOCSDIR%%/html/images/application-menus.png +%%DOCSDIR%%/html/images/application.png +%%DOCSDIR%%/html/images/arthurplugin-demo.png +%%DOCSDIR%%/html/images/assistant-address-toolbar.png +%%DOCSDIR%%/html/images/assistant-assistant.png +%%DOCSDIR%%/html/images/assistant-dockwidgets.png +%%DOCSDIR%%/html/images/assistant-docwindow.png +%%DOCSDIR%%/html/images/assistant-examples.png +%%DOCSDIR%%/html/images/assistant-filter-toolbar.png +%%DOCSDIR%%/html/images/assistant-preferences-documentation.png +%%DOCSDIR%%/html/images/assistant-preferences-filters.png +%%DOCSDIR%%/html/images/assistant-preferences-fonts.png +%%DOCSDIR%%/html/images/assistant-search.png +%%DOCSDIR%%/html/images/assistant-toolbar.png +%%DOCSDIR%%/html/images/basicdrawing-example.png +%%DOCSDIR%%/html/images/basicgraphicslayouts-example.png +%%DOCSDIR%%/html/images/basiclayouts-example.png +%%DOCSDIR%%/html/images/basicsortfiltermodel-example.png +%%DOCSDIR%%/html/images/bearings.png +%%DOCSDIR%%/html/images/blockingfortuneclient-example.png +%%DOCSDIR%%/html/images/books-demo.png +%%DOCSDIR%%/html/images/borderlayout-example.png +%%DOCSDIR%%/html/images/branchindicatorimage.png +%%DOCSDIR%%/html/images/broadcastreceiver-example.png +%%DOCSDIR%%/html/images/broadcastsender-example.png +%%DOCSDIR%%/html/images/browser-demo.png +%%DOCSDIR%%/html/images/brush-outline.png +%%DOCSDIR%%/html/images/brush-styles.png +%%DOCSDIR%%/html/images/button.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-mac-modeless-vertical.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/cachedtable-example.png +%%DOCSDIR%%/html/images/calculator-example.png +%%DOCSDIR%%/html/images/calculator-ugly.png +%%DOCSDIR%%/html/images/calculatorbuilder-example.png +%%DOCSDIR%%/html/images/calculatorform-example.png +%%DOCSDIR%%/html/images/calendar-example.png +%%DOCSDIR%%/html/images/calendarwidgetexample.png +%%DOCSDIR%%/html/images/cannon-tutorial.png +%%DOCSDIR%%/html/images/capabilitiesexample.png +%%DOCSDIR%%/html/images/cde-calendarwidget.png +%%DOCSDIR%%/html/images/cde-checkbox.png +%%DOCSDIR%%/html/images/cde-combobox.png +%%DOCSDIR%%/html/images/cde-dateedit.png +%%DOCSDIR%%/html/images/cde-datetimeedit.png +%%DOCSDIR%%/html/images/cde-dial.png +%%DOCSDIR%%/html/images/cde-doublespinbox.png +%%DOCSDIR%%/html/images/cde-fontcombobox.png +%%DOCSDIR%%/html/images/cde-frame.png +%%DOCSDIR%%/html/images/cde-groupbox.png +%%DOCSDIR%%/html/images/cde-horizontalscrollbar.png +%%DOCSDIR%%/html/images/cde-label.png +%%DOCSDIR%%/html/images/cde-lcdnumber.png +%%DOCSDIR%%/html/images/cde-lineedit.png +%%DOCSDIR%%/html/images/cde-listview.png +%%DOCSDIR%%/html/images/cde-progressbar.png +%%DOCSDIR%%/html/images/cde-pushbutton.png +%%DOCSDIR%%/html/images/cde-radiobutton.png +%%DOCSDIR%%/html/images/cde-slider.png +%%DOCSDIR%%/html/images/cde-spinbox.png +%%DOCSDIR%%/html/images/cde-tableview.png +%%DOCSDIR%%/html/images/cde-tabwidget.png +%%DOCSDIR%%/html/images/cde-textedit.png +%%DOCSDIR%%/html/images/cde-timeedit.png +%%DOCSDIR%%/html/images/cde-toolbox.png +%%DOCSDIR%%/html/images/cde-toolbutton.png +%%DOCSDIR%%/html/images/cde-treeview.png +%%DOCSDIR%%/html/images/charactermap-example.png +%%DOCSDIR%%/html/images/chart-example.png +%%DOCSDIR%%/html/images/chat-example.png +%%DOCSDIR%%/html/images/checkbox.png +%%DOCSDIR%%/html/images/checkboxexample.png +%%DOCSDIR%%/html/images/chip-demo.png +%%DOCSDIR%%/html/images/classwizard-flow.png +%%DOCSDIR%%/html/images/classwizard.png +%%DOCSDIR%%/html/images/cleanlooks-calendarwidget.png +%%DOCSDIR%%/html/images/cleanlooks-checkbox.png +%%DOCSDIR%%/html/images/cleanlooks-combobox.png +%%DOCSDIR%%/html/images/cleanlooks-dateedit.png +%%DOCSDIR%%/html/images/cleanlooks-datetimeedit.png +%%DOCSDIR%%/html/images/cleanlooks-dial.png +%%DOCSDIR%%/html/images/cleanlooks-doublespinbox.png +%%DOCSDIR%%/html/images/cleanlooks-fontcombobox.png +%%DOCSDIR%%/html/images/cleanlooks-frame.png +%%DOCSDIR%%/html/images/cleanlooks-groupbox.png +%%DOCSDIR%%/html/images/cleanlooks-horizontalscrollbar.png +%%DOCSDIR%%/html/images/cleanlooks-label.png +%%DOCSDIR%%/html/images/cleanlooks-lcdnumber.png +%%DOCSDIR%%/html/images/cleanlooks-lineedit.png +%%DOCSDIR%%/html/images/cleanlooks-listview.png +%%DOCSDIR%%/html/images/cleanlooks-progressbar.png +%%DOCSDIR%%/html/images/cleanlooks-pushbutton-menu.png +%%DOCSDIR%%/html/images/cleanlooks-pushbutton.png +%%DOCSDIR%%/html/images/cleanlooks-radiobutton.png +%%DOCSDIR%%/html/images/cleanlooks-slider.png +%%DOCSDIR%%/html/images/cleanlooks-spinbox.png +%%DOCSDIR%%/html/images/cleanlooks-tableview.png +%%DOCSDIR%%/html/images/cleanlooks-tabwidget.png +%%DOCSDIR%%/html/images/cleanlooks-textedit.png +%%DOCSDIR%%/html/images/cleanlooks-timeedit.png +%%DOCSDIR%%/html/images/cleanlooks-toolbox.png +%%DOCSDIR%%/html/images/cleanlooks-toolbutton.png +%%DOCSDIR%%/html/images/cleanlooks-treeview.png +%%DOCSDIR%%/html/images/codecs-example.png +%%DOCSDIR%%/html/images/collidingmice-example.png +%%DOCSDIR%%/html/images/coloreditorfactoryimage.png +%%DOCSDIR%%/html/images/combobox.png +%%DOCSDIR%%/html/images/comboboximage.png +%%DOCSDIR%%/html/images/completer-example-country.png +%%DOCSDIR%%/html/images/completer-example-dirmodel.png +%%DOCSDIR%%/html/images/completer-example-qdirmodel.png +%%DOCSDIR%%/html/images/completer-example-word.png +%%DOCSDIR%%/html/images/completer-example.png +%%DOCSDIR%%/html/images/composition-demo.png +%%DOCSDIR%%/html/images/concentriccircles-example.png +%%DOCSDIR%%/html/images/conceptaudio.png +%%DOCSDIR%%/html/images/conceptualpushbuttontree.png +%%DOCSDIR%%/html/images/conceptvideo.png +%%DOCSDIR%%/html/images/configdialog-example.png +%%DOCSDIR%%/html/images/conicalGradient.png +%%DOCSDIR%%/html/images/containerextension-example.png +%%DOCSDIR%%/html/images/context2d-example.png +%%DOCSDIR%%/html/images/coordinatesystem-analogclock.png +%%DOCSDIR%%/html/images/coordinatesystem-line-antialias.png +%%DOCSDIR%%/html/images/coordinatesystem-line-raster.png +%%DOCSDIR%%/html/images/coordinatesystem-line.png +%%DOCSDIR%%/html/images/coordinatesystem-rect-antialias.png +%%DOCSDIR%%/html/images/coordinatesystem-rect-raster.png +%%DOCSDIR%%/html/images/coordinatesystem-rect.png +%%DOCSDIR%%/html/images/coordinatesystem-transformations.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/customcompleter-example.png +%%DOCSDIR%%/html/images/customcompleter-insertcompletion.png +%%DOCSDIR%%/html/images/customsortfiltermodel-example.png +%%DOCSDIR%%/html/images/customwidgetplugin-example.png +%%DOCSDIR%%/html/images/datetimewidgets.png +%%DOCSDIR%%/html/images/defaultprototypes-example.png +%%DOCSDIR%%/html/images/deform-demo.png +%%DOCSDIR%%/html/images/deployment-mac-application.png +%%DOCSDIR%%/html/images/deployment-mac-bundlestructure.png +%%DOCSDIR%%/html/images/deployment-windows-depends.png +%%DOCSDIR%%/html/images/designer-action-editor.png +%%DOCSDIR%%/html/images/designer-add-custom-toolbar.png +%%DOCSDIR%%/html/images/designer-add-files-button.png +%%DOCSDIR%%/html/images/designer-add-resource-entry-button.png +%%DOCSDIR%%/html/images/designer-adding-dockwidget.png +%%DOCSDIR%%/html/images/designer-adding-menu-action.png +%%DOCSDIR%%/html/images/designer-adding-toolbar-action.png +%%DOCSDIR%%/html/images/designer-buddy-making.png +%%DOCSDIR%%/html/images/designer-buddy-mode.png +%%DOCSDIR%%/html/images/designer-buddy-tool.png +%%DOCSDIR%%/html/images/designer-choosing-form.png +%%DOCSDIR%%/html/images/designer-code-viewer.png +%%DOCSDIR%%/html/images/designer-connection-dialog.png +%%DOCSDIR%%/html/images/designer-connection-editing.png +%%DOCSDIR%%/html/images/designer-connection-editor.png +%%DOCSDIR%%/html/images/designer-connection-highlight.png +%%DOCSDIR%%/html/images/designer-connection-making.png +%%DOCSDIR%%/html/images/designer-connection-mode.png +%%DOCSDIR%%/html/images/designer-connection-to-form.png +%%DOCSDIR%%/html/images/designer-connection-tool.png +%%DOCSDIR%%/html/images/designer-containers-dockwidget.png +%%DOCSDIR%%/html/images/designer-containers-frame.png +%%DOCSDIR%%/html/images/designer-containers-groupbox.png +%%DOCSDIR%%/html/images/designer-containers-stackedwidget.png +%%DOCSDIR%%/html/images/designer-containers-tabwidget.png +%%DOCSDIR%%/html/images/designer-containers-toolbox.png +%%DOCSDIR%%/html/images/designer-creating-menu-entry1.png +%%DOCSDIR%%/html/images/designer-creating-menu-entry2.png +%%DOCSDIR%%/html/images/designer-creating-menu-entry3.png +%%DOCSDIR%%/html/images/designer-creating-menu-entry4.png +%%DOCSDIR%%/html/images/designer-creating-menu1.png +%%DOCSDIR%%/html/images/designer-creating-menu2.png +%%DOCSDIR%%/html/images/designer-creating-menu3.png +%%DOCSDIR%%/html/images/designer-creating-menu4.png +%%DOCSDIR%%/html/images/designer-customize-toolbar.png +%%DOCSDIR%%/html/images/designer-dialog-preview.png +%%DOCSDIR%%/html/images/designer-dragging-onto-form.png +%%DOCSDIR%%/html/images/designer-edit-resource.png +%%DOCSDIR%%/html/images/designer-edit-resources-button.png +%%DOCSDIR%%/html/images/designer-editing-mode.png +%%DOCSDIR%%/html/images/designer-examples.png +%%DOCSDIR%%/html/images/designer-file-menu.png +%%DOCSDIR%%/html/images/designer-form-layout-cleanlooks.png +%%DOCSDIR%%/html/images/designer-form-layout-macintosh.png +%%DOCSDIR%%/html/images/designer-form-layout-windowsXP.png +%%DOCSDIR%%/html/images/designer-form-layout.png +%%DOCSDIR%%/html/images/designer-form-layoutfunction.png +%%DOCSDIR%%/html/images/designer-form-settings.png +%%DOCSDIR%%/html/images/designer-form-viewcode.png +%%DOCSDIR%%/html/images/designer-getting-started.png +%%DOCSDIR%%/html/images/designer-layout-inserting.png +%%DOCSDIR%%/html/images/designer-main-window.png +%%DOCSDIR%%/html/images/designer-making-connection.png +%%DOCSDIR%%/html/images/designer-manual-containerextension.png +%%DOCSDIR%%/html/images/designer-manual-membersheetextension.png +%%DOCSDIR%%/html/images/designer-manual-propertysheetextension.png +%%DOCSDIR%%/html/images/designer-manual-taskmenuextension.png +%%DOCSDIR%%/html/images/designer-object-inspector.png +%%DOCSDIR%%/html/images/designer-preview-device-skin.png +%%DOCSDIR%%/html/images/designer-preview-deviceskin-selection.png +%%DOCSDIR%%/html/images/designer-preview-style-selection.png +%%DOCSDIR%%/html/images/designer-preview-style.png +%%DOCSDIR%%/html/images/designer-preview-stylesheet.png +%%DOCSDIR%%/html/images/designer-promoting-widgets.png +%%DOCSDIR%%/html/images/designer-property-editor-add-dynamic.png +%%DOCSDIR%%/html/images/designer-property-editor-configure.png +%%DOCSDIR%%/html/images/designer-property-editor-link.png +%%DOCSDIR%%/html/images/designer-property-editor-remove-dynamic.png +%%DOCSDIR%%/html/images/designer-property-editor-toolbar.png +%%DOCSDIR%%/html/images/designer-property-editor.png +%%DOCSDIR%%/html/images/designer-reload-resources-button.png +%%DOCSDIR%%/html/images/designer-remove-custom-toolbar.png +%%DOCSDIR%%/html/images/designer-remove-resource-entry-button.png +%%DOCSDIR%%/html/images/designer-resource-browser.png +%%DOCSDIR%%/html/images/designer-resource-selector.png +%%DOCSDIR%%/html/images/designer-resources-editing.png +%%DOCSDIR%%/html/images/designer-resources-using.png +%%DOCSDIR%%/html/images/designer-selecting-widget.png +%%DOCSDIR%%/html/images/designer-set-layout.png +%%DOCSDIR%%/html/images/designer-set-layout2.png +%%DOCSDIR%%/html/images/designer-splitter-layout.png +%%DOCSDIR%%/html/images/designer-stylesheet-options.png +%%DOCSDIR%%/html/images/designer-stylesheet-usage.png +%%DOCSDIR%%/html/images/designer-tab-order-mode.png +%%DOCSDIR%%/html/images/designer-tab-order-tool.png +%%DOCSDIR%%/html/images/designer-validator-highlighter.png +%%DOCSDIR%%/html/images/designer-widget-box.png +%%DOCSDIR%%/html/images/designer-widget-final.png +%%DOCSDIR%%/html/images/designer-widget-initial.png +%%DOCSDIR%%/html/images/designer-widget-layout.png +%%DOCSDIR%%/html/images/designer-widget-preview.png +%%DOCSDIR%%/html/images/designer-widget-tool.png +%%DOCSDIR%%/html/images/desktop-examples.png +%%DOCSDIR%%/html/images/diagonalGradient.png +%%DOCSDIR%%/html/images/diagramscene.png +%%DOCSDIR%%/html/images/dialog-examples.png +%%DOCSDIR%%/html/images/digitalclock-example.png +%%DOCSDIR%%/html/images/directapproach-calculatorform.png +%%DOCSDIR%%/html/images/dirview-example.png +%%DOCSDIR%%/html/images/dockwidget.png +%%DOCSDIR%%/html/images/dockwidgetimage.png +%%DOCSDIR%%/html/images/dockwidgets-example.png +%%DOCSDIR%%/html/images/dombookmarks-example.png +%%DOCSDIR%%/html/images/draganddrop-examples.png +%%DOCSDIR%%/html/images/draganddroppuzzle-example.png +%%DOCSDIR%%/html/images/dragdroprobot-example.png +%%DOCSDIR%%/html/images/draggableicons-example.png +%%DOCSDIR%%/html/images/draggabletext-example.png +%%DOCSDIR%%/html/images/drilldown-example.png +%%DOCSDIR%%/html/images/dropsite-example.png +%%DOCSDIR%%/html/images/dynamiclayouts-example.png +%%DOCSDIR%%/html/images/echopluginexample.png +%%DOCSDIR%%/html/images/effectwidget.png +%%DOCSDIR%%/html/images/elasticnodes-example.png +%%DOCSDIR%%/html/images/embedded-demo-launcher.png +%%DOCSDIR%%/html/images/embeddeddialogs-demo.png +%%DOCSDIR%%/html/images/extension-example.png +%%DOCSDIR%%/html/images/extension_more.png +%%DOCSDIR%%/html/images/findfiles-example.png +%%DOCSDIR%%/html/images/findfiles_progress_dialog.png +%%DOCSDIR%%/html/images/flowlayout-example.png +%%DOCSDIR%%/html/images/fontsampler-example.png +%%DOCSDIR%%/html/images/foreignkeys.png +%%DOCSDIR%%/html/images/fortuneclient-example.png +%%DOCSDIR%%/html/images/fortuneserver-example.png +%%DOCSDIR%%/html/images/framebufferobject-example.png +%%DOCSDIR%%/html/images/framebufferobject2-example.png +%%DOCSDIR%%/html/images/frames.png +%%DOCSDIR%%/html/images/fridgemagnets-example.png +%%DOCSDIR%%/html/images/ftp-example.png +%%DOCSDIR%%/html/images/geometry.png +%%DOCSDIR%%/html/images/grabber-example.png +%%DOCSDIR%%/html/images/gradientText.png +%%DOCSDIR%%/html/images/gradients-demo.png +%%DOCSDIR%%/html/images/graphicsview-ellipseitem-pie.png +%%DOCSDIR%%/html/images/graphicsview-ellipseitem.png +%%DOCSDIR%%/html/images/graphicsview-examples.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/groupbox-example.png +%%DOCSDIR%%/html/images/groupbox.png +%%DOCSDIR%%/html/images/groupboximage.png +%%DOCSDIR%%/html/images/header.png +%%DOCSDIR%%/html/images/headerimage.png +%%DOCSDIR%%/html/images/hellogl-es-example.png +%%DOCSDIR%%/html/images/hellogl-example.png +%%DOCSDIR%%/html/images/http-example.png +%%DOCSDIR%%/html/images/httpstack.png +%%DOCSDIR%%/html/images/i18n-example.png +%%DOCSDIR%%/html/images/icon.png +%%DOCSDIR%%/html/images/icons-example.png +%%DOCSDIR%%/html/images/icons-view-menu.png +%%DOCSDIR%%/html/images/icons_find_normal.png +%%DOCSDIR%%/html/images/icons_find_normal_disabled.png +%%DOCSDIR%%/html/images/icons_images_groupbox.png +%%DOCSDIR%%/html/images/icons_monkey.png +%%DOCSDIR%%/html/images/icons_monkey_active.png +%%DOCSDIR%%/html/images/icons_monkey_mess.png +%%DOCSDIR%%/html/images/icons_preview_area.png +%%DOCSDIR%%/html/images/icons_qtopia_16x16.png +%%DOCSDIR%%/html/images/icons_qtopia_17x17.png +%%DOCSDIR%%/html/images/icons_qtopia_32x32.png +%%DOCSDIR%%/html/images/icons_qtopia_33x33.png +%%DOCSDIR%%/html/images/icons_qtopia_48x48.png +%%DOCSDIR%%/html/images/icons_qtopia_64x64.png +%%DOCSDIR%%/html/images/icons_qtopia_8x8.png +%%DOCSDIR%%/html/images/icons_size_groupbox.png +%%DOCSDIR%%/html/images/icons_size_spinbox.png +%%DOCSDIR%%/html/images/imagecomposition-example.png +%%DOCSDIR%%/html/images/imageviewer-example.png +%%DOCSDIR%%/html/images/imageviewer-fit_to_window_1.png +%%DOCSDIR%%/html/images/imageviewer-fit_to_window_2.png +%%DOCSDIR%%/html/images/imageviewer-original_size.png +%%DOCSDIR%%/html/images/imageviewer-zoom_in_1.png +%%DOCSDIR%%/html/images/imageviewer-zoom_in_2.png +%%DOCSDIR%%/html/images/inputdialogs.png +%%DOCSDIR%%/html/images/insertrowinmodelview.png +%%DOCSDIR%%/html/images/interview-demo.png +%%DOCSDIR%%/html/images/interview-shareddirmodel.png +%%DOCSDIR%%/html/images/itemview-examples.png +%%DOCSDIR%%/html/images/itemviews-editabletreemodel-indexes.png +%%DOCSDIR%%/html/images/itemviews-editabletreemodel-items.png +%%DOCSDIR%%/html/images/itemviews-editabletreemodel-model.png +%%DOCSDIR%%/html/images/itemviews-editabletreemodel-values.png +%%DOCSDIR%%/html/images/itemviews-editabletreemodel.png +%%DOCSDIR%%/html/images/itemviewspuzzle-example.png +%%DOCSDIR%%/html/images/javaiterators1.png +%%DOCSDIR%%/html/images/javaiterators2.png +%%DOCSDIR%%/html/images/layout-examples.png +%%DOCSDIR%%/html/images/layout1.png +%%DOCSDIR%%/html/images/layout2.png +%%DOCSDIR%%/html/images/licensewizard-example.png +%%DOCSDIR%%/html/images/licensewizard-flow.png +%%DOCSDIR%%/html/images/lineedits-example.png +%%DOCSDIR%%/html/images/linguist-arrowpad_en.png +%%DOCSDIR%%/html/images/linguist-arrowpad_fr.png +%%DOCSDIR%%/html/images/linguist-arrowpad_nl.png +%%DOCSDIR%%/html/images/linguist-auxlanguages.png +%%DOCSDIR%%/html/images/linguist-batchtranslation.png +%%DOCSDIR%%/html/images/linguist-check-empty.png +%%DOCSDIR%%/html/images/linguist-check-obsolete.png +%%DOCSDIR%%/html/images/linguist-check-off.png +%%DOCSDIR%%/html/images/linguist-check-on.png +%%DOCSDIR%%/html/images/linguist-check-warning.png +%%DOCSDIR%%/html/images/linguist-danger.png +%%DOCSDIR%%/html/images/linguist-doneandnext.png +%%DOCSDIR%%/html/images/linguist-editcopy.png +%%DOCSDIR%%/html/images/linguist-editcut.png +%%DOCSDIR%%/html/images/linguist-editfind.png +%%DOCSDIR%%/html/images/linguist-editpaste.png +%%DOCSDIR%%/html/images/linguist-editredo.png +%%DOCSDIR%%/html/images/linguist-editundo.png +%%DOCSDIR%%/html/images/linguist-examples.png +%%DOCSDIR%%/html/images/linguist-fileopen.png +%%DOCSDIR%%/html/images/linguist-fileprint.png +%%DOCSDIR%%/html/images/linguist-filesave.png +%%DOCSDIR%%/html/images/linguist-hellotr_en.png +%%DOCSDIR%%/html/images/linguist-hellotr_la.png +%%DOCSDIR%%/html/images/linguist-linguist.png +%%DOCSDIR%%/html/images/linguist-menubar.png +%%DOCSDIR%%/html/images/linguist-next.png +%%DOCSDIR%%/html/images/linguist-nextunfinished.png +%%DOCSDIR%%/html/images/linguist-phrasebookdialog.png +%%DOCSDIR%%/html/images/linguist-phrasebookopen.png +%%DOCSDIR%%/html/images/linguist-prev.png +%%DOCSDIR%%/html/images/linguist-previewtool.png +%%DOCSDIR%%/html/images/linguist-prevunfinished.png +%%DOCSDIR%%/html/images/linguist-toolbar.png +%%DOCSDIR%%/html/images/linguist-translationfilesettings.png +%%DOCSDIR%%/html/images/linguist-trollprint_10_en.png +%%DOCSDIR%%/html/images/linguist-trollprint_10_pt_bad.png +%%DOCSDIR%%/html/images/linguist-trollprint_10_pt_good.png +%%DOCSDIR%%/html/images/linguist-trollprint_11_en.png +%%DOCSDIR%%/html/images/linguist-trollprint_11_pt.png +%%DOCSDIR%%/html/images/linguist-validateaccelerators.png +%%DOCSDIR%%/html/images/linguist-validatephrases.png +%%DOCSDIR%%/html/images/linguist-validateplacemarkers.png +%%DOCSDIR%%/html/images/linguist-validatepunctuation.png +%%DOCSDIR%%/html/images/localfortuneclient-example.png +%%DOCSDIR%%/html/images/localfortuneserver-example.png +%%DOCSDIR%%/html/images/loopback-example.png +%%DOCSDIR%%/html/images/macintosh-calendarwidget.png +%%DOCSDIR%%/html/images/macintosh-checkbox.png +%%DOCSDIR%%/html/images/macintosh-combobox.png +%%DOCSDIR%%/html/images/macintosh-dateedit.png +%%DOCSDIR%%/html/images/macintosh-datetimeedit.png +%%DOCSDIR%%/html/images/macintosh-dial.png +%%DOCSDIR%%/html/images/macintosh-doublespinbox.png +%%DOCSDIR%%/html/images/macintosh-fontcombobox.png +%%DOCSDIR%%/html/images/macintosh-frame.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-textedit.png +%%DOCSDIR%%/html/images/macintosh-timeedit.png +%%DOCSDIR%%/html/images/macintosh-toolbox.png +%%DOCSDIR%%/html/images/macintosh-toolbutton.png +%%DOCSDIR%%/html/images/macintosh-treeview.png +%%DOCSDIR%%/html/images/macmainwindow.png +%%DOCSDIR%%/html/images/mainwindow-demo.png +%%DOCSDIR%%/html/images/mainwindow-docks-example.png +%%DOCSDIR%%/html/images/mainwindow-docks.png +%%DOCSDIR%%/html/images/mainwindow-examples.png +%%DOCSDIR%%/html/images/mainwindowlayout.png +%%DOCSDIR%%/html/images/mandelbrot-example.png +%%DOCSDIR%%/html/images/mandelbrot_scroll1.png +%%DOCSDIR%%/html/images/mandelbrot_scroll2.png +%%DOCSDIR%%/html/images/mandelbrot_scroll3.png +%%DOCSDIR%%/html/images/mandelbrot_zoom1.png +%%DOCSDIR%%/html/images/mandelbrot_zoom2.png +%%DOCSDIR%%/html/images/mandelbrot_zoom3.png +%%DOCSDIR%%/html/images/masterdetail-example.png +%%DOCSDIR%%/html/images/mdi-example.png +%%DOCSDIR%%/html/images/mediaplayer-demo.png +%%DOCSDIR%%/html/images/menu.png +%%DOCSDIR%%/html/images/menubar.png +%%DOCSDIR%%/html/images/menubarimage.png +%%DOCSDIR%%/html/images/menuimage.png +%%DOCSDIR%%/html/images/menus-example.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-models.png +%%DOCSDIR%%/html/images/modelview-overview.png +%%DOCSDIR%%/html/images/modelview-roles.png +%%DOCSDIR%%/html/images/modelview-tablemodel.png +%%DOCSDIR%%/html/images/modelview-treemodel.png +%%DOCSDIR%%/html/images/motif-calendarwidget.png +%%DOCSDIR%%/html/images/motif-checkbox.png +%%DOCSDIR%%/html/images/motif-combobox.png +%%DOCSDIR%%/html/images/motif-dateedit.png +%%DOCSDIR%%/html/images/motif-datetimeedit.png +%%DOCSDIR%%/html/images/motif-dial.png +%%DOCSDIR%%/html/images/motif-doublespinbox.png +%%DOCSDIR%%/html/images/motif-fontcombobox.png +%%DOCSDIR%%/html/images/motif-frame.png +%%DOCSDIR%%/html/images/motif-groupbox.png +%%DOCSDIR%%/html/images/motif-horizontalscrollbar.png +%%DOCSDIR%%/html/images/motif-label.png +%%DOCSDIR%%/html/images/motif-lcdnumber.png +%%DOCSDIR%%/html/images/motif-lineedit.png +%%DOCSDIR%%/html/images/motif-listview.png +%%DOCSDIR%%/html/images/motif-menubar.png +%%DOCSDIR%%/html/images/motif-progressbar.png +%%DOCSDIR%%/html/images/motif-pushbutton.png +%%DOCSDIR%%/html/images/motif-radiobutton.png +%%DOCSDIR%%/html/images/motif-slider.png +%%DOCSDIR%%/html/images/motif-spinbox.png +%%DOCSDIR%%/html/images/motif-tableview.png +%%DOCSDIR%%/html/images/motif-tabwidget.png +%%DOCSDIR%%/html/images/motif-textedit.png +%%DOCSDIR%%/html/images/motif-timeedit.png +%%DOCSDIR%%/html/images/motif-toolbox.png +%%DOCSDIR%%/html/images/motif-toolbutton.png +%%DOCSDIR%%/html/images/motif-treeview.png +%%DOCSDIR%%/html/images/movie-example.png +%%DOCSDIR%%/html/images/multipleinheritance-example.png +%%DOCSDIR%%/html/images/musicplayer.png +%%DOCSDIR%%/html/images/network-examples.png +%%DOCSDIR%%/html/images/noforeignkeys.png +%%DOCSDIR%%/html/images/opengl-examples.png +%%DOCSDIR%%/html/images/orderform-example-detailsdialog.png +%%DOCSDIR%%/html/images/orderform-example.png +%%DOCSDIR%%/html/images/overpainting-example.png +%%DOCSDIR%%/html/images/padnavigator-example.png +%%DOCSDIR%%/html/images/painterpaths-example.png +%%DOCSDIR%%/html/images/painting-examples.png +%%DOCSDIR%%/html/images/paintsystem-antialiasing.png +%%DOCSDIR%%/html/images/paintsystem-core.png +%%DOCSDIR%%/html/images/paintsystem-devices.png +%%DOCSDIR%%/html/images/paintsystem-fancygradient.png +%%DOCSDIR%%/html/images/paintsystem-gradients.png +%%DOCSDIR%%/html/images/paintsystem-icon.png +%%DOCSDIR%%/html/images/paintsystem-movie.png +%%DOCSDIR%%/html/images/paintsystem-painterpath.png +%%DOCSDIR%%/html/images/paintsystem-stylepainter.png +%%DOCSDIR%%/html/images/paintsystem-svg.png +%%DOCSDIR%%/html/images/palette.png +%%DOCSDIR%%/html/images/parent-child-widgets.png +%%DOCSDIR%%/html/images/pathexample.png +%%DOCSDIR%%/html/images/pathstroke-demo.png +%%DOCSDIR%%/html/images/patternist-wordProcessor.png +%%DOCSDIR%%/html/images/pbuffers-example.png +%%DOCSDIR%%/html/images/pbuffers2-example.png +%%DOCSDIR%%/html/images/phonon-examples.png +%%DOCSDIR%%/html/images/pixelator-example.png +%%DOCSDIR%%/html/images/plaintext-layout.png +%%DOCSDIR%%/html/images/plastique-calendarwidget.png +%%DOCSDIR%%/html/images/plastique-checkbox.png +%%DOCSDIR%%/html/images/plastique-colordialog.png +%%DOCSDIR%%/html/images/plastique-combobox.png +%%DOCSDIR%%/html/images/plastique-dateedit.png +%%DOCSDIR%%/html/images/plastique-datetimeedit.png +%%DOCSDIR%%/html/images/plastique-dial.png +%%DOCSDIR%%/html/images/plastique-doublespinbox.png +%%DOCSDIR%%/html/images/plastique-fontcombobox.png +%%DOCSDIR%%/html/images/plastique-fontdialog.png +%%DOCSDIR%%/html/images/plastique-frame.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-textedit.png +%%DOCSDIR%%/html/images/plastique-timeedit.png +%%DOCSDIR%%/html/images/plastique-toolbox.png +%%DOCSDIR%%/html/images/plastique-toolbutton.png +%%DOCSDIR%%/html/images/plastique-treeview.png +%%DOCSDIR%%/html/images/plugandpaint-plugindialog.png +%%DOCSDIR%%/html/images/plugandpaint.png +%%DOCSDIR%%/html/images/portedasteroids-example.png +%%DOCSDIR%%/html/images/portedcanvas-example.png +%%DOCSDIR%%/html/images/previewer-example.png +%%DOCSDIR%%/html/images/previewer-ui.png +%%DOCSDIR%%/html/images/printer-rects.png +%%DOCSDIR%%/html/images/progressBar-stylesheet.png +%%DOCSDIR%%/html/images/progressBar2-stylesheet.png +%%DOCSDIR%%/html/images/progressbar.png +%%DOCSDIR%%/html/images/progressbarimage.png +%%DOCSDIR%%/html/images/propagation-custom.png +%%DOCSDIR%%/html/images/propagation-standard.png +%%DOCSDIR%%/html/images/pushbutton.png +%%DOCSDIR%%/html/images/q3painter_rationale.png +%%DOCSDIR%%/html/images/qactiongroup-align.png +%%DOCSDIR%%/html/images/qcalendarwidget-grid.png +%%DOCSDIR%%/html/images/qcalendarwidget-maximum.png +%%DOCSDIR%%/html/images/qcalendarwidget-minimum.png +%%DOCSDIR%%/html/images/qcanvasellipse.png +%%DOCSDIR%%/html/images/qcdestyle.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/qdatawidgetmapper-simple.png +%%DOCSDIR%%/html/images/qdesktopwidget.png +%%DOCSDIR%%/html/images/qdockwindow.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/qgridlayout-with-5-children.png +%%DOCSDIR%%/html/images/qhbox-m.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-angle-identicaldirection.png +%%DOCSDIR%%/html/images/qlinef-angle-oppositedirection.png +%%DOCSDIR%%/html/images/qlinef-bounded.png +%%DOCSDIR%%/html/images/qlinef-normalvector.png +%%DOCSDIR%%/html/images/qlinef-unbounded.png +%%DOCSDIR%%/html/images/qlistbox-m.png +%%DOCSDIR%%/html/images/qlistbox-w.png +%%DOCSDIR%%/html/images/qlistviewitems.png +%%DOCSDIR%%/html/images/qmainwindow-qdockareas.png +%%DOCSDIR%%/html/images/qmatrix-combinedtransformation.png +%%DOCSDIR%%/html/images/qmatrix-representation.png +%%DOCSDIR%%/html/images/qmatrix-simpletransformation.png +%%DOCSDIR%%/html/images/qmdiarea-arrange.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/qmotifstyle.png +%%DOCSDIR%%/html/images/qobjectxmlmodel-example.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-text.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-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/qplastiquestyle.png +%%DOCSDIR%%/html/images/qprintpreviewdialog.png +%%DOCSDIR%%/html/images/qprogbar-m.png +%%DOCSDIR%%/html/images/qprogbar-w.png +%%DOCSDIR%%/html/images/qprogdlg-m.png +%%DOCSDIR%%/html/images/qprogdlg-w.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/qscrollview-cl.png +%%DOCSDIR%%/html/images/qscrollview-vp.png +%%DOCSDIR%%/html/images/qscrollview-vp2.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-embedded-accelerateddriver.png +%%DOCSDIR%%/html/images/qt-embedded-architecture.png +%%DOCSDIR%%/html/images/qt-embedded-architecture2.png +%%DOCSDIR%%/html/images/qt-embedded-characterinputlayer.png +%%DOCSDIR%%/html/images/qt-embedded-clamshellphone-closed.png +%%DOCSDIR%%/html/images/qt-embedded-clamshellphone-pressed.png +%%DOCSDIR%%/html/images/qt-embedded-clamshellphone.png +%%DOCSDIR%%/html/images/qt-embedded-client.png +%%DOCSDIR%%/html/images/qt-embedded-clientrendering.png +%%DOCSDIR%%/html/images/qt-embedded-clientservercommunication.png +%%DOCSDIR%%/html/images/qt-embedded-drawingonscreen.png +%%DOCSDIR%%/html/images/qt-embedded-examples.png +%%DOCSDIR%%/html/images/qt-embedded-fontfeatures.png +%%DOCSDIR%%/html/images/qt-embedded-opengl1.png +%%DOCSDIR%%/html/images/qt-embedded-opengl2.png +%%DOCSDIR%%/html/images/qt-embedded-opengl3.png +%%DOCSDIR%%/html/images/qt-embedded-pda.png +%%DOCSDIR%%/html/images/qt-embedded-phone.png +%%DOCSDIR%%/html/images/qt-embedded-pointerhandlinglayer.png +%%DOCSDIR%%/html/images/qt-embedded-qconfigtool.png +%%DOCSDIR%%/html/images/qt-embedded-qvfbfilemenu.png +%%DOCSDIR%%/html/images/qt-embedded-qvfbviewmenu.png +%%DOCSDIR%%/html/images/qt-embedded-reserveregion.png +%%DOCSDIR%%/html/images/qt-embedded-runningapplication.png +%%DOCSDIR%%/html/images/qt-embedded-setwindowattribute.png +%%DOCSDIR%%/html/images/qt-embedded-virtualframebuffer.png +%%DOCSDIR%%/html/images/qt-fillrule-oddeven.png +%%DOCSDIR%%/html/images/qt-fillrule-winding.png +%%DOCSDIR%%/html/images/qt-for-wince-landscape.png +%%DOCSDIR%%/html/images/qt-logo.png +%%DOCSDIR%%/html/images/qtableitems.png +%%DOCSDIR%%/html/images/qtabletevent-tilt.png +%%DOCSDIR%%/html/images/qtableview-resized.png +%%DOCSDIR%%/html/images/qtconcurrent-progressdialog.png +%%DOCSDIR%%/html/images/qtconfig-appearance.png +%%DOCSDIR%%/html/images/qtdemo-small.png +%%DOCSDIR%%/html/images/qtdemo.png +%%DOCSDIR%%/html/images/qtdesignerextensions.png +%%DOCSDIR%%/html/images/qtdesignerscreenshot.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-simpletransformation.png +%%DOCSDIR%%/html/images/qtscript-calculator-example.png +%%DOCSDIR%%/html/images/qtscript-examples.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/querymodel-example.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/qvbox-m.png +%%DOCSDIR%%/html/images/qvboxlayout-with-5-children.png +%%DOCSDIR%%/html/images/qwebview-diagram.png +%%DOCSDIR%%/html/images/qwebview-url.png +%%DOCSDIR%%/html/images/qwindowsstyle.png +%%DOCSDIR%%/html/images/qwindowsxpstyle.png +%%DOCSDIR%%/html/images/qworkspace-arrange.png +%%DOCSDIR%%/html/images/radialGradient.png +%%DOCSDIR%%/html/images/recentfiles-example.png +%%DOCSDIR%%/html/images/recipes-example.png +%%DOCSDIR%%/html/images/regexp-example.png +%%DOCSDIR%%/html/images/relationaltable.png +%%DOCSDIR%%/html/images/relationaltablemodel-example.png +%%DOCSDIR%%/html/images/resources.png +%%DOCSDIR%%/html/images/richtext-document.png +%%DOCSDIR%%/html/images/richtext-examples.png +%%DOCSDIR%%/html/images/rintersect.png +%%DOCSDIR%%/html/images/rsslistingexample.png +%%DOCSDIR%%/html/images/rsubtract.png +%%DOCSDIR%%/html/images/rubberband.png +%%DOCSDIR%%/html/images/rubberbandimage.png +%%DOCSDIR%%/html/images/runion.png +%%DOCSDIR%%/html/images/rxor.png +%%DOCSDIR%%/html/images/samplebuffers-example.png +%%DOCSDIR%%/html/images/saxbookmarks-example.png +%%DOCSDIR%%/html/images/screenshot-example.png +%%DOCSDIR%%/html/images/scribble-example.png +%%DOCSDIR%%/html/images/scrollbar.png +%%DOCSDIR%%/html/images/scrollbarimage.png +%%DOCSDIR%%/html/images/sdi-example.png +%%DOCSDIR%%/html/images/securesocketclient.png +%%DOCSDIR%%/html/images/securesocketclient2.png +%%DOCSDIR%%/html/images/selected-items1.png +%%DOCSDIR%%/html/images/selected-items2.png +%%DOCSDIR%%/html/images/selected-items3.png +%%DOCSDIR%%/html/images/selection-extended.png +%%DOCSDIR%%/html/images/selection-multi.png +%%DOCSDIR%%/html/images/selection-single.png +%%DOCSDIR%%/html/images/session.png +%%DOCSDIR%%/html/images/settingseditor-example.png +%%DOCSDIR%%/html/images/shapedclock-dragging.png +%%DOCSDIR%%/html/images/shapedclock-example.png +%%DOCSDIR%%/html/images/shareddirmodel.png +%%DOCSDIR%%/html/images/sharedmemory-example_1.png +%%DOCSDIR%%/html/images/sharedmemory-example_2.png +%%DOCSDIR%%/html/images/sharedmodel-tableviews.png +%%DOCSDIR%%/html/images/sharedselection-tableviews.png +%%DOCSDIR%%/html/images/signals-n-slots-aw-nat.png +%%DOCSDIR%%/html/images/simpledommodel-example.png +%%DOCSDIR%%/html/images/simpletextviewer-example.png +%%DOCSDIR%%/html/images/simpletextviewer-findfiledialog.png +%%DOCSDIR%%/html/images/simpletextviewer-mainwindow.png +%%DOCSDIR%%/html/images/simpletreemodel-example.png +%%DOCSDIR%%/html/images/simplewidgetmapper-example.png +%%DOCSDIR%%/html/images/sipdialog-closed.png +%%DOCSDIR%%/html/images/sipdialog-opened.png +%%DOCSDIR%%/html/images/sizegrip.png +%%DOCSDIR%%/html/images/sizegripimage.png +%%DOCSDIR%%/html/images/slider.png +%%DOCSDIR%%/html/images/sliderimage.png +%%DOCSDIR%%/html/images/sliders-example.png +%%DOCSDIR%%/html/images/spinbox.png +%%DOCSDIR%%/html/images/spinboxdelegate-example.png +%%DOCSDIR%%/html/images/spinboxes-example.png +%%DOCSDIR%%/html/images/spinboximage.png +%%DOCSDIR%%/html/images/spreadsheet-demo.png +%%DOCSDIR%%/html/images/sql-examples.png +%%DOCSDIR%%/html/images/sqlbrowser-demo.png +%%DOCSDIR%%/html/images/standard-views.png +%%DOCSDIR%%/html/images/standarddialogs-example.png +%%DOCSDIR%%/html/images/stardelegate.png +%%DOCSDIR%%/html/images/stliterators1.png +%%DOCSDIR%%/html/images/stringlistmodel.png +%%DOCSDIR%%/html/images/stylepluginexample.png +%%DOCSDIR%%/html/images/styles-3d.png +%%DOCSDIR%%/html/images/styles-aliasing.png +%%DOCSDIR%%/html/images/styles-disabledwood.png +%%DOCSDIR%%/html/images/styles-enabledwood.png +%%DOCSDIR%%/html/images/styles-woodbuttons.png +%%DOCSDIR%%/html/images/stylesheet-border-image-normal.png +%%DOCSDIR%%/html/images/stylesheet-border-image-stretched.png +%%DOCSDIR%%/html/images/stylesheet-border-image-wrong.png +%%DOCSDIR%%/html/images/stylesheet-boxmodel.png +%%DOCSDIR%%/html/images/stylesheet-branch-closed.png +%%DOCSDIR%%/html/images/stylesheet-branch-end.png +%%DOCSDIR%%/html/images/stylesheet-branch-more.png +%%DOCSDIR%%/html/images/stylesheet-branch-open.png +%%DOCSDIR%%/html/images/stylesheet-coffee-plastique.png +%%DOCSDIR%%/html/images/stylesheet-coffee-xp.png +%%DOCSDIR%%/html/images/stylesheet-pagefold.png +%%DOCSDIR%%/html/images/stylesheet-redbutton1.png +%%DOCSDIR%%/html/images/stylesheet-redbutton2.png +%%DOCSDIR%%/html/images/stylesheet-redbutton3.png +%%DOCSDIR%%/html/images/stylesheet-scrollbar1.png +%%DOCSDIR%%/html/images/stylesheet-scrollbar2.png +%%DOCSDIR%%/html/images/stylesheet-treeview.png +%%DOCSDIR%%/html/images/stylesheet-vline.png +%%DOCSDIR%%/html/images/svg-image.png +%%DOCSDIR%%/html/images/svgviewer-example.png +%%DOCSDIR%%/html/images/syntaxhighlighter-example.png +%%DOCSDIR%%/html/images/system-tray.png +%%DOCSDIR%%/html/images/systemtray-editor.png +%%DOCSDIR%%/html/images/systemtray-example.png +%%DOCSDIR%%/html/images/t1.png +%%DOCSDIR%%/html/images/t10.png +%%DOCSDIR%%/html/images/t11.png +%%DOCSDIR%%/html/images/t12.png +%%DOCSDIR%%/html/images/t13.png +%%DOCSDIR%%/html/images/t14.png +%%DOCSDIR%%/html/images/t2.png +%%DOCSDIR%%/html/images/t3.png +%%DOCSDIR%%/html/images/t4.png +%%DOCSDIR%%/html/images/t5.png +%%DOCSDIR%%/html/images/t6.png +%%DOCSDIR%%/html/images/t7.png +%%DOCSDIR%%/html/images/t8.png +%%DOCSDIR%%/html/images/t9.png +%%DOCSDIR%%/html/images/t9_1.png +%%DOCSDIR%%/html/images/t9_2.png +%%DOCSDIR%%/html/images/tab.png +%%DOCSDIR%%/html/images/tabWidget-stylesheet1.png +%%DOCSDIR%%/html/images/tabWidget-stylesheet2.png +%%DOCSDIR%%/html/images/tabWidget-stylesheet3.png +%%DOCSDIR%%/html/images/tabdialog-example.png +%%DOCSDIR%%/html/images/tableWidget-stylesheet.png +%%DOCSDIR%%/html/images/tablemodel-example.png +%%DOCSDIR%%/html/images/tabletexample.png +%%DOCSDIR%%/html/images/tabwidget.png +%%DOCSDIR%%/html/images/taskmenuextension-dialog.png +%%DOCSDIR%%/html/images/taskmenuextension-example-faded.png +%%DOCSDIR%%/html/images/taskmenuextension-example.png +%%DOCSDIR%%/html/images/taskmenuextension-menu.png +%%DOCSDIR%%/html/images/tcpstream.png +%%DOCSDIR%%/html/images/tetrix-example.png +%%DOCSDIR%%/html/images/textedit-demo.png +%%DOCSDIR%%/html/images/textfinder-example-find.png +%%DOCSDIR%%/html/images/textfinder-example-find2.png +%%DOCSDIR%%/html/images/textfinder-example-userinterface.png +%%DOCSDIR%%/html/images/texttable-merge.png +%%DOCSDIR%%/html/images/texttable-split.png +%%DOCSDIR%%/html/images/textures-example.png +%%DOCSDIR%%/html/images/thread-examples.png +%%DOCSDIR%%/html/images/threadedfortuneserver-example.png +%%DOCSDIR%%/html/images/threadsandobjects.png +%%DOCSDIR%%/html/images/titlebar.png +%%DOCSDIR%%/html/images/titlebarimage.png +%%DOCSDIR%%/html/images/tool-examples.png +%%DOCSDIR%%/html/images/toolbar.png +%%DOCSDIR%%/html/images/toolbarimage.png +%%DOCSDIR%%/html/images/toolbox.png +%%DOCSDIR%%/html/images/toolboximage.png +%%DOCSDIR%%/html/images/toolbutton.png +%%DOCSDIR%%/html/images/toolbuttonimage.png +%%DOCSDIR%%/html/images/tooltips-example.png +%%DOCSDIR%%/html/images/torrent-example.png +%%DOCSDIR%%/html/images/transformations-example.png +%%DOCSDIR%%/html/images/treemodel-structure.png +%%DOCSDIR%%/html/images/treemodelcompleter-example.png +%%DOCSDIR%%/html/images/trivialwizard-example-conclusion.png +%%DOCSDIR%%/html/images/trivialwizard-example-flow.png +%%DOCSDIR%%/html/images/trivialwizard-example-introduction.png +%%DOCSDIR%%/html/images/trivialwizard-example-registration.png +%%DOCSDIR%%/html/images/trolltech-logo.png +%%DOCSDIR%%/html/images/tutorial8-layout.png +%%DOCSDIR%%/html/images/tutorial8-reallayout.png +%%DOCSDIR%%/html/images/udppackets.png +%%DOCSDIR%%/html/images/uitools-examples.png +%%DOCSDIR%%/html/images/undodemo.png +%%DOCSDIR%%/html/images/undoframeworkexample.png +%%DOCSDIR%%/html/images/wVista-Cert-border-small.png +%%DOCSDIR%%/html/images/webkit-examples.png +%%DOCSDIR%%/html/images/whatsthis.png +%%DOCSDIR%%/html/images/widget-examples.png +%%DOCSDIR%%/html/images/widgets-tutorial-childwidget.png +%%DOCSDIR%%/html/images/widgets-tutorial-nestedlayouts.png +%%DOCSDIR%%/html/images/widgets-tutorial-toplevel.png +%%DOCSDIR%%/html/images/widgets-tutorial-windowlayout.png +%%DOCSDIR%%/html/images/wiggly-example.png +%%DOCSDIR%%/html/images/windowflags-example.png +%%DOCSDIR%%/html/images/windowflags_controllerwindow.png +%%DOCSDIR%%/html/images/windowflags_previewwindow.png +%%DOCSDIR%%/html/images/windows-calendarwidget.png +%%DOCSDIR%%/html/images/windows-checkbox.png +%%DOCSDIR%%/html/images/windows-combobox.png +%%DOCSDIR%%/html/images/windows-dateedit.png +%%DOCSDIR%%/html/images/windows-datetimeedit.png +%%DOCSDIR%%/html/images/windows-dial.png +%%DOCSDIR%%/html/images/windows-doublespinbox.png +%%DOCSDIR%%/html/images/windows-fontcombobox.png +%%DOCSDIR%%/html/images/windows-frame.png +%%DOCSDIR%%/html/images/windows-groupbox.png +%%DOCSDIR%%/html/images/windows-horizontalscrollbar.png +%%DOCSDIR%%/html/images/windows-label.png +%%DOCSDIR%%/html/images/windows-lcdnumber.png +%%DOCSDIR%%/html/images/windows-lineedit.png +%%DOCSDIR%%/html/images/windows-listview.png +%%DOCSDIR%%/html/images/windows-progressbar.png +%%DOCSDIR%%/html/images/windows-pushbutton.png +%%DOCSDIR%%/html/images/windows-radiobutton.png +%%DOCSDIR%%/html/images/windows-slider.png +%%DOCSDIR%%/html/images/windows-spinbox.png +%%DOCSDIR%%/html/images/windows-tableview.png +%%DOCSDIR%%/html/images/windows-tabwidget.png +%%DOCSDIR%%/html/images/windows-textedit.png +%%DOCSDIR%%/html/images/windows-timeedit.png +%%DOCSDIR%%/html/images/windows-toolbox.png +%%DOCSDIR%%/html/images/windows-toolbutton.png +%%DOCSDIR%%/html/images/windows-treeview.png +%%DOCSDIR%%/html/images/windowstabimage.png +%%DOCSDIR%%/html/images/windowsvista-calendarwidget.png +%%DOCSDIR%%/html/images/windowsvista-checkbox.png +%%DOCSDIR%%/html/images/windowsvista-combobox.png +%%DOCSDIR%%/html/images/windowsvista-dateedit.png +%%DOCSDIR%%/html/images/windowsvista-datetimeedit.png +%%DOCSDIR%%/html/images/windowsvista-dial.png +%%DOCSDIR%%/html/images/windowsvista-doublespinbox.png +%%DOCSDIR%%/html/images/windowsvista-fontcombobox.png +%%DOCSDIR%%/html/images/windowsvista-frame.png +%%DOCSDIR%%/html/images/windowsvista-groupbox.png +%%DOCSDIR%%/html/images/windowsvista-horizontalscrollbar.png +%%DOCSDIR%%/html/images/windowsvista-label.png +%%DOCSDIR%%/html/images/windowsvista-lcdnumber.png +%%DOCSDIR%%/html/images/windowsvista-lineedit.png +%%DOCSDIR%%/html/images/windowsvista-listview.png +%%DOCSDIR%%/html/images/windowsvista-progressbar.png +%%DOCSDIR%%/html/images/windowsvista-pushbutton.png +%%DOCSDIR%%/html/images/windowsvista-radiobutton.png +%%DOCSDIR%%/html/images/windowsvista-slider.png +%%DOCSDIR%%/html/images/windowsvista-spinbox.png +%%DOCSDIR%%/html/images/windowsvista-tableview.png +%%DOCSDIR%%/html/images/windowsvista-tabwidget.png +%%DOCSDIR%%/html/images/windowsvista-textedit.png +%%DOCSDIR%%/html/images/windowsvista-timeedit.png +%%DOCSDIR%%/html/images/windowsvista-toolbox.png +%%DOCSDIR%%/html/images/windowsvista-toolbutton.png +%%DOCSDIR%%/html/images/windowsvista-treeview.png +%%DOCSDIR%%/html/images/windowsxp-calendarwidget.png +%%DOCSDIR%%/html/images/windowsxp-checkbox.png +%%DOCSDIR%%/html/images/windowsxp-combobox.png +%%DOCSDIR%%/html/images/windowsxp-dateedit.png +%%DOCSDIR%%/html/images/windowsxp-datetimeedit.png +%%DOCSDIR%%/html/images/windowsxp-dial.png +%%DOCSDIR%%/html/images/windowsxp-doublespinbox.png +%%DOCSDIR%%/html/images/windowsxp-fontcombobox.png +%%DOCSDIR%%/html/images/windowsxp-frame.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-lineedit.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-radiobutton.png +%%DOCSDIR%%/html/images/windowsxp-slider.png +%%DOCSDIR%%/html/images/windowsxp-spinbox.png +%%DOCSDIR%%/html/images/windowsxp-tableview.png +%%DOCSDIR%%/html/images/windowsxp-tabwidget.png +%%DOCSDIR%%/html/images/windowsxp-textedit.png +%%DOCSDIR%%/html/images/windowsxp-timeedit.png +%%DOCSDIR%%/html/images/windowsxp-toolbox.png +%%DOCSDIR%%/html/images/windowsxp-toolbutton.png +%%DOCSDIR%%/html/images/windowsxp-treeview.png +%%DOCSDIR%%/html/images/woodbackground.png +%%DOCSDIR%%/html/images/woodbutton.png +%%DOCSDIR%%/html/images/worldtimeclock-connection.png +%%DOCSDIR%%/html/images/worldtimeclock-signalandslot.png +%%DOCSDIR%%/html/images/worldtimeclockbuilder-example.png +%%DOCSDIR%%/html/images/worldtimeclockplugin-example.png +%%DOCSDIR%%/html/images/x11_dependencies.png +%%DOCSDIR%%/html/images/xml-examples.png +%%DOCSDIR%%/html/images/xmlstreamexample-filemenu.png +%%DOCSDIR%%/html/images/xmlstreamexample-helpmenu.png +%%DOCSDIR%%/html/images/xmlstreamexample-screenshot.png +%%DOCSDIR%%/html/index.html +%%DOCSDIR%%/html/install-mac.html +%%DOCSDIR%%/html/install-win.html +%%DOCSDIR%%/html/install-wince.html +%%DOCSDIR%%/html/install-x11.html +%%DOCSDIR%%/html/installation.html +%%DOCSDIR%%/html/intro-to-dbus.html +%%DOCSDIR%%/html/io.html +%%DOCSDIR%%/html/ipc-localfortuneclient-client-cpp.html +%%DOCSDIR%%/html/ipc-localfortuneclient-client-h.html +%%DOCSDIR%%/html/ipc-localfortuneclient-localfortuneclient-pro.html +%%DOCSDIR%%/html/ipc-localfortuneclient-main-cpp.html +%%DOCSDIR%%/html/ipc-localfortuneclient.html +%%DOCSDIR%%/html/ipc-localfortuneserver-localfortuneserver-pro.html +%%DOCSDIR%%/html/ipc-localfortuneserver-main-cpp.html +%%DOCSDIR%%/html/ipc-localfortuneserver-server-cpp.html +%%DOCSDIR%%/html/ipc-localfortuneserver-server-h.html +%%DOCSDIR%%/html/ipc-localfortuneserver.html +%%DOCSDIR%%/html/ipc-sharedmemory-dialog-cpp.html +%%DOCSDIR%%/html/ipc-sharedmemory-dialog-h.html +%%DOCSDIR%%/html/ipc-sharedmemory-dialog-ui.html +%%DOCSDIR%%/html/ipc-sharedmemory-main-cpp.html +%%DOCSDIR%%/html/ipc-sharedmemory-sharedmemory-pro.html +%%DOCSDIR%%/html/ipc-sharedmemory.html +%%DOCSDIR%%/html/ipc.html +%%DOCSDIR%%/html/itemviews-addressbook-adddialog-cpp.html +%%DOCSDIR%%/html/itemviews-addressbook-adddialog-h.html +%%DOCSDIR%%/html/itemviews-addressbook-addressbook-pro.html +%%DOCSDIR%%/html/itemviews-addressbook-addresswidget-cpp.html +%%DOCSDIR%%/html/itemviews-addressbook-addresswidget-h.html +%%DOCSDIR%%/html/itemviews-addressbook-main-cpp.html +%%DOCSDIR%%/html/itemviews-addressbook-mainwindow-cpp.html +%%DOCSDIR%%/html/itemviews-addressbook-mainwindow-h.html +%%DOCSDIR%%/html/itemviews-addressbook-newaddresstab-cpp.html +%%DOCSDIR%%/html/itemviews-addressbook-newaddresstab-h.html +%%DOCSDIR%%/html/itemviews-addressbook-tablemodel-cpp.html +%%DOCSDIR%%/html/itemviews-addressbook-tablemodel-h.html +%%DOCSDIR%%/html/itemviews-addressbook.html +%%DOCSDIR%%/html/itemviews-basicsortfiltermodel-basicsortfiltermodel-pro.html +%%DOCSDIR%%/html/itemviews-basicsortfiltermodel-main-cpp.html +%%DOCSDIR%%/html/itemviews-basicsortfiltermodel-window-cpp.html +%%DOCSDIR%%/html/itemviews-basicsortfiltermodel-window-h.html +%%DOCSDIR%%/html/itemviews-basicsortfiltermodel.html +%%DOCSDIR%%/html/itemviews-chart-chart-pro.html +%%DOCSDIR%%/html/itemviews-chart-chart-qrc.html +%%DOCSDIR%%/html/itemviews-chart-main-cpp.html +%%DOCSDIR%%/html/itemviews-chart-mainwindow-cpp.html +%%DOCSDIR%%/html/itemviews-chart-mainwindow-h.html +%%DOCSDIR%%/html/itemviews-chart-pieview-cpp.html +%%DOCSDIR%%/html/itemviews-chart-pieview-h.html +%%DOCSDIR%%/html/itemviews-chart.html +%%DOCSDIR%%/html/itemviews-coloreditorfactory-coloreditorfactory-pro.html +%%DOCSDIR%%/html/itemviews-coloreditorfactory-colorlisteditor-cpp.html +%%DOCSDIR%%/html/itemviews-coloreditorfactory-colorlisteditor-h.html +%%DOCSDIR%%/html/itemviews-coloreditorfactory-main-cpp.html +%%DOCSDIR%%/html/itemviews-coloreditorfactory-window-cpp.html +%%DOCSDIR%%/html/itemviews-coloreditorfactory-window-h.html +%%DOCSDIR%%/html/itemviews-coloreditorfactory.html +%%DOCSDIR%%/html/itemviews-customsortfiltermodel-customsortfiltermodel-pro.html +%%DOCSDIR%%/html/itemviews-customsortfiltermodel-main-cpp.html +%%DOCSDIR%%/html/itemviews-customsortfiltermodel-mysortfilterproxymodel-cpp.html +%%DOCSDIR%%/html/itemviews-customsortfiltermodel-mysortfilterproxymodel-h.html +%%DOCSDIR%%/html/itemviews-customsortfiltermodel-window-cpp.html +%%DOCSDIR%%/html/itemviews-customsortfiltermodel-window-h.html +%%DOCSDIR%%/html/itemviews-customsortfiltermodel.html +%%DOCSDIR%%/html/itemviews-dirview-dirview-pro.html +%%DOCSDIR%%/html/itemviews-dirview-main-cpp.html +%%DOCSDIR%%/html/itemviews-dirview.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-editabletreemodel-pro.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-editabletreemodel-qrc.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-main-cpp.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-mainwindow-cpp.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-mainwindow-h.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-mainwindow-ui.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-treeitem-cpp.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-treeitem-h.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-treemodel-cpp.html +%%DOCSDIR%%/html/itemviews-editabletreemodel-treemodel-h.html +%%DOCSDIR%%/html/itemviews-editabletreemodel.html +%%DOCSDIR%%/html/itemviews-pixelator-imagemodel-cpp.html +%%DOCSDIR%%/html/itemviews-pixelator-imagemodel-h.html +%%DOCSDIR%%/html/itemviews-pixelator-images-qrc.html +%%DOCSDIR%%/html/itemviews-pixelator-main-cpp.html +%%DOCSDIR%%/html/itemviews-pixelator-mainwindow-cpp.html +%%DOCSDIR%%/html/itemviews-pixelator-mainwindow-h.html +%%DOCSDIR%%/html/itemviews-pixelator-pixelator-pro.html +%%DOCSDIR%%/html/itemviews-pixelator-pixeldelegate-cpp.html +%%DOCSDIR%%/html/itemviews-pixelator-pixeldelegate-h.html +%%DOCSDIR%%/html/itemviews-pixelator.html +%%DOCSDIR%%/html/itemviews-puzzle-main-cpp.html +%%DOCSDIR%%/html/itemviews-puzzle-mainwindow-cpp.html +%%DOCSDIR%%/html/itemviews-puzzle-mainwindow-h.html +%%DOCSDIR%%/html/itemviews-puzzle-piecesmodel-cpp.html +%%DOCSDIR%%/html/itemviews-puzzle-piecesmodel-h.html +%%DOCSDIR%%/html/itemviews-puzzle-puzzle-pro.html +%%DOCSDIR%%/html/itemviews-puzzle-puzzle-qrc.html +%%DOCSDIR%%/html/itemviews-puzzle-puzzlewidget-cpp.html +%%DOCSDIR%%/html/itemviews-puzzle-puzzlewidget-h.html +%%DOCSDIR%%/html/itemviews-puzzle.html +%%DOCSDIR%%/html/itemviews-simpledommodel-domitem-cpp.html +%%DOCSDIR%%/html/itemviews-simpledommodel-domitem-h.html +%%DOCSDIR%%/html/itemviews-simpledommodel-dommodel-cpp.html +%%DOCSDIR%%/html/itemviews-simpledommodel-dommodel-h.html +%%DOCSDIR%%/html/itemviews-simpledommodel-main-cpp.html +%%DOCSDIR%%/html/itemviews-simpledommodel-mainwindow-cpp.html +%%DOCSDIR%%/html/itemviews-simpledommodel-mainwindow-h.html +%%DOCSDIR%%/html/itemviews-simpledommodel-simpledommodel-pro.html +%%DOCSDIR%%/html/itemviews-simpledommodel.html +%%DOCSDIR%%/html/itemviews-simpletreemodel-main-cpp.html +%%DOCSDIR%%/html/itemviews-simpletreemodel-simpletreemodel-pro.html +%%DOCSDIR%%/html/itemviews-simpletreemodel-simpletreemodel-qrc.html +%%DOCSDIR%%/html/itemviews-simpletreemodel-treeitem-cpp.html +%%DOCSDIR%%/html/itemviews-simpletreemodel-treeitem-h.html +%%DOCSDIR%%/html/itemviews-simpletreemodel-treemodel-cpp.html +%%DOCSDIR%%/html/itemviews-simpletreemodel-treemodel-h.html +%%DOCSDIR%%/html/itemviews-simpletreemodel.html +%%DOCSDIR%%/html/itemviews-simplewidgetmapper-main-cpp.html +%%DOCSDIR%%/html/itemviews-simplewidgetmapper-simplewidgetmapper-pro.html +%%DOCSDIR%%/html/itemviews-simplewidgetmapper-window-cpp.html +%%DOCSDIR%%/html/itemviews-simplewidgetmapper-window-h.html +%%DOCSDIR%%/html/itemviews-simplewidgetmapper.html +%%DOCSDIR%%/html/itemviews-spinboxdelegate-delegate-cpp.html +%%DOCSDIR%%/html/itemviews-spinboxdelegate-delegate-h.html +%%DOCSDIR%%/html/itemviews-spinboxdelegate-main-cpp.html +%%DOCSDIR%%/html/itemviews-spinboxdelegate-spinboxdelegate-pro.html +%%DOCSDIR%%/html/itemviews-spinboxdelegate.html +%%DOCSDIR%%/html/itemviews-stardelegate-main-cpp.html +%%DOCSDIR%%/html/itemviews-stardelegate-stardelegate-cpp.html +%%DOCSDIR%%/html/itemviews-stardelegate-stardelegate-h.html +%%DOCSDIR%%/html/itemviews-stardelegate-stardelegate-pro.html +%%DOCSDIR%%/html/itemviews-stardelegate-stareditor-cpp.html +%%DOCSDIR%%/html/itemviews-stardelegate-stareditor-h.html +%%DOCSDIR%%/html/itemviews-stardelegate-starrating-cpp.html +%%DOCSDIR%%/html/itemviews-stardelegate-starrating-h.html +%%DOCSDIR%%/html/itemviews-stardelegate.html +%%DOCSDIR%%/html/known-issues.html +%%DOCSDIR%%/html/layout.html +%%DOCSDIR%%/html/layouts-basiclayouts-basiclayouts-pro.html +%%DOCSDIR%%/html/layouts-basiclayouts-dialog-cpp.html +%%DOCSDIR%%/html/layouts-basiclayouts-dialog-h.html +%%DOCSDIR%%/html/layouts-basiclayouts-main-cpp.html +%%DOCSDIR%%/html/layouts-basiclayouts.html +%%DOCSDIR%%/html/layouts-borderlayout-borderlayout-cpp.html +%%DOCSDIR%%/html/layouts-borderlayout-borderlayout-h.html +%%DOCSDIR%%/html/layouts-borderlayout-borderlayout-pro.html +%%DOCSDIR%%/html/layouts-borderlayout-main-cpp.html +%%DOCSDIR%%/html/layouts-borderlayout-window-cpp.html +%%DOCSDIR%%/html/layouts-borderlayout-window-h.html +%%DOCSDIR%%/html/layouts-borderlayout.html +%%DOCSDIR%%/html/layouts-dynamiclayouts-dialog-cpp.html +%%DOCSDIR%%/html/layouts-dynamiclayouts-dialog-h.html +%%DOCSDIR%%/html/layouts-dynamiclayouts-dynamiclayouts-pro.html +%%DOCSDIR%%/html/layouts-dynamiclayouts-main-cpp.html +%%DOCSDIR%%/html/layouts-dynamiclayouts.html +%%DOCSDIR%%/html/layouts-flowlayout-flowlayout-cpp.html +%%DOCSDIR%%/html/layouts-flowlayout-flowlayout-h.html +%%DOCSDIR%%/html/layouts-flowlayout-flowlayout-pro.html +%%DOCSDIR%%/html/layouts-flowlayout-main-cpp.html +%%DOCSDIR%%/html/layouts-flowlayout-window-cpp.html +%%DOCSDIR%%/html/layouts-flowlayout-window-h.html +%%DOCSDIR%%/html/layouts-flowlayout.html +%%DOCSDIR%%/html/license-gpl-exceptions.html +%%DOCSDIR%%/html/licenses-fonts.html +%%DOCSDIR%%/html/licenses-gpl-exceptions-addendum.html +%%DOCSDIR%%/html/licenses.html +%%DOCSDIR%%/html/licensing.html +%%DOCSDIR%%/html/linguist-arrowpad-arrowpad-cpp.html +%%DOCSDIR%%/html/linguist-arrowpad-arrowpad-h.html +%%DOCSDIR%%/html/linguist-arrowpad-arrowpad-pro.html +%%DOCSDIR%%/html/linguist-arrowpad-main-cpp.html +%%DOCSDIR%%/html/linguist-arrowpad-mainwindow-cpp.html +%%DOCSDIR%%/html/linguist-arrowpad-mainwindow-h.html +%%DOCSDIR%%/html/linguist-arrowpad.html +%%DOCSDIR%%/html/linguist-hellotr-hellotr-pro.html +%%DOCSDIR%%/html/linguist-hellotr-main-cpp.html +%%DOCSDIR%%/html/linguist-hellotr.html +%%DOCSDIR%%/html/linguist-manager.html +%%DOCSDIR%%/html/linguist-manual.html +%%DOCSDIR%%/html/linguist-programmers.html +%%DOCSDIR%%/html/linguist-translators.html +%%DOCSDIR%%/html/linguist-trollprint-main-cpp.html +%%DOCSDIR%%/html/linguist-trollprint-mainwindow-cpp.html +%%DOCSDIR%%/html/linguist-trollprint-mainwindow-h.html +%%DOCSDIR%%/html/linguist-trollprint-printpanel-cpp.html +%%DOCSDIR%%/html/linguist-trollprint-printpanel-h.html +%%DOCSDIR%%/html/linguist-trollprint-trollprint-pro.html +%%DOCSDIR%%/html/linguist-trollprint.html +%%DOCSDIR%%/html/linguist-ts-file-format.html +%%DOCSDIR%%/html/linguist.dcf +%%DOCSDIR%%/html/mac-differences.html +%%DOCSDIR%%/html/mainclasses.html +%%DOCSDIR%%/html/mainwindows-application-application-pro.html +%%DOCSDIR%%/html/mainwindows-application-application-qrc.html +%%DOCSDIR%%/html/mainwindows-application-main-cpp.html +%%DOCSDIR%%/html/mainwindows-application-mainwindow-cpp.html +%%DOCSDIR%%/html/mainwindows-application-mainwindow-h.html +%%DOCSDIR%%/html/mainwindows-application.html +%%DOCSDIR%%/html/mainwindows-dockwidgets-dockwidgets-pro.html +%%DOCSDIR%%/html/mainwindows-dockwidgets-dockwidgets-qrc.html +%%DOCSDIR%%/html/mainwindows-dockwidgets-main-cpp.html +%%DOCSDIR%%/html/mainwindows-dockwidgets-mainwindow-cpp.html +%%DOCSDIR%%/html/mainwindows-dockwidgets-mainwindow-h.html +%%DOCSDIR%%/html/mainwindows-dockwidgets.html +%%DOCSDIR%%/html/mainwindows-mdi-main-cpp.html +%%DOCSDIR%%/html/mainwindows-mdi-mainwindow-cpp.html +%%DOCSDIR%%/html/mainwindows-mdi-mainwindow-h.html +%%DOCSDIR%%/html/mainwindows-mdi-mdi-pro.html +%%DOCSDIR%%/html/mainwindows-mdi-mdi-qrc.html +%%DOCSDIR%%/html/mainwindows-mdi-mdichild-cpp.html +%%DOCSDIR%%/html/mainwindows-mdi-mdichild-h.html +%%DOCSDIR%%/html/mainwindows-mdi.html +%%DOCSDIR%%/html/mainwindows-menus-main-cpp.html +%%DOCSDIR%%/html/mainwindows-menus-mainwindow-cpp.html +%%DOCSDIR%%/html/mainwindows-menus-mainwindow-h.html +%%DOCSDIR%%/html/mainwindows-menus-menus-pro.html +%%DOCSDIR%%/html/mainwindows-menus.html +%%DOCSDIR%%/html/mainwindows-recentfiles-main-cpp.html +%%DOCSDIR%%/html/mainwindows-recentfiles-mainwindow-cpp.html +%%DOCSDIR%%/html/mainwindows-recentfiles-mainwindow-h.html +%%DOCSDIR%%/html/mainwindows-recentfiles-recentfiles-pro.html +%%DOCSDIR%%/html/mainwindows-recentfiles.html +%%DOCSDIR%%/html/mainwindows-sdi-main-cpp.html +%%DOCSDIR%%/html/mainwindows-sdi-mainwindow-cpp.html +%%DOCSDIR%%/html/mainwindows-sdi-mainwindow-h.html +%%DOCSDIR%%/html/mainwindows-sdi-sdi-pro.html +%%DOCSDIR%%/html/mainwindows-sdi-sdi-qrc.html +%%DOCSDIR%%/html/mainwindows-sdi.html +%%DOCSDIR%%/html/metaobjects.html +%%DOCSDIR%%/html/misc.html +%%DOCSDIR%%/html/moc.html +%%DOCSDIR%%/html/model-view-convenience.html +%%DOCSDIR%%/html/model-view-creating-models.html +%%DOCSDIR%%/html/model-view-delegate.html +%%DOCSDIR%%/html/model-view-dnd.html +%%DOCSDIR%%/html/model-view-introduction.html +%%DOCSDIR%%/html/model-view-model-subclassing.html +%%DOCSDIR%%/html/model-view-model.html +%%DOCSDIR%%/html/model-view-programming.html +%%DOCSDIR%%/html/model-view-proxy-models.html +%%DOCSDIR%%/html/model-view-selection.html +%%DOCSDIR%%/html/model-view-using.html +%%DOCSDIR%%/html/model-view-view.html +%%DOCSDIR%%/html/model-view.html +%%DOCSDIR%%/html/modules.html +%%DOCSDIR%%/html/multimedia.html +%%DOCSDIR%%/html/namespaces.html +%%DOCSDIR%%/html/network-blockingfortuneclient-blockingclient-cpp.html +%%DOCSDIR%%/html/network-blockingfortuneclient-blockingclient-h.html +%%DOCSDIR%%/html/network-blockingfortuneclient-blockingfortuneclient-pro.html +%%DOCSDIR%%/html/network-blockingfortuneclient-fortunethread-cpp.html +%%DOCSDIR%%/html/network-blockingfortuneclient-fortunethread-h.html +%%DOCSDIR%%/html/network-blockingfortuneclient-main-cpp.html +%%DOCSDIR%%/html/network-blockingfortuneclient.html +%%DOCSDIR%%/html/network-broadcastreceiver-broadcastreceiver-pro.html +%%DOCSDIR%%/html/network-broadcastreceiver-main-cpp.html +%%DOCSDIR%%/html/network-broadcastreceiver-receiver-cpp.html +%%DOCSDIR%%/html/network-broadcastreceiver-receiver-h.html +%%DOCSDIR%%/html/network-broadcastreceiver.html +%%DOCSDIR%%/html/network-broadcastsender-broadcastsender-pro.html +%%DOCSDIR%%/html/network-broadcastsender-main-cpp.html +%%DOCSDIR%%/html/network-broadcastsender-sender-cpp.html +%%DOCSDIR%%/html/network-broadcastsender-sender-h.html +%%DOCSDIR%%/html/network-broadcastsender.html +%%DOCSDIR%%/html/network-chat-chat-pro.html +%%DOCSDIR%%/html/network-chat-chatdialog-cpp.html +%%DOCSDIR%%/html/network-chat-chatdialog-h.html +%%DOCSDIR%%/html/network-chat-chatdialog-ui.html +%%DOCSDIR%%/html/network-chat-client-cpp.html +%%DOCSDIR%%/html/network-chat-client-h.html +%%DOCSDIR%%/html/network-chat-connection-cpp.html +%%DOCSDIR%%/html/network-chat-connection-h.html +%%DOCSDIR%%/html/network-chat-main-cpp.html +%%DOCSDIR%%/html/network-chat-peermanager-cpp.html +%%DOCSDIR%%/html/network-chat-peermanager-h.html +%%DOCSDIR%%/html/network-chat-server-cpp.html +%%DOCSDIR%%/html/network-chat-server-h.html +%%DOCSDIR%%/html/network-chat.html +%%DOCSDIR%%/html/network-fortuneclient-client-cpp.html +%%DOCSDIR%%/html/network-fortuneclient-client-h.html +%%DOCSDIR%%/html/network-fortuneclient-fortuneclient-pro.html +%%DOCSDIR%%/html/network-fortuneclient-main-cpp.html +%%DOCSDIR%%/html/network-fortuneclient.html +%%DOCSDIR%%/html/network-fortuneserver-fortuneserver-pro.html +%%DOCSDIR%%/html/network-fortuneserver-main-cpp.html +%%DOCSDIR%%/html/network-fortuneserver-server-cpp.html +%%DOCSDIR%%/html/network-fortuneserver-server-h.html +%%DOCSDIR%%/html/network-fortuneserver.html +%%DOCSDIR%%/html/network-ftp-ftp-pro.html +%%DOCSDIR%%/html/network-ftp-ftp-qrc.html +%%DOCSDIR%%/html/network-ftp-ftpwindow-cpp.html +%%DOCSDIR%%/html/network-ftp-ftpwindow-h.html +%%DOCSDIR%%/html/network-ftp-main-cpp.html +%%DOCSDIR%%/html/network-ftp.html +%%DOCSDIR%%/html/network-http-authenticationdialog-ui.html +%%DOCSDIR%%/html/network-http-http-pro.html +%%DOCSDIR%%/html/network-http-httpwindow-cpp.html +%%DOCSDIR%%/html/network-http-httpwindow-h.html +%%DOCSDIR%%/html/network-http-main-cpp.html +%%DOCSDIR%%/html/network-http.html +%%DOCSDIR%%/html/network-loopback-dialog-cpp.html +%%DOCSDIR%%/html/network-loopback-dialog-h.html +%%DOCSDIR%%/html/network-loopback-loopback-pro.html +%%DOCSDIR%%/html/network-loopback-main-cpp.html +%%DOCSDIR%%/html/network-loopback.html +%%DOCSDIR%%/html/network-securesocketclient-certificateinfo-cpp.html +%%DOCSDIR%%/html/network-securesocketclient-certificateinfo-h.html +%%DOCSDIR%%/html/network-securesocketclient-certificateinfo-ui.html +%%DOCSDIR%%/html/network-securesocketclient-main-cpp.html +%%DOCSDIR%%/html/network-securesocketclient-securesocketclient-pro.html +%%DOCSDIR%%/html/network-securesocketclient-securesocketclient-qrc.html +%%DOCSDIR%%/html/network-securesocketclient-sslclient-cpp.html +%%DOCSDIR%%/html/network-securesocketclient-sslclient-h.html +%%DOCSDIR%%/html/network-securesocketclient-sslclient-ui.html +%%DOCSDIR%%/html/network-securesocketclient-sslerrors-ui.html +%%DOCSDIR%%/html/network-securesocketclient.html +%%DOCSDIR%%/html/network-threadedfortuneserver-dialog-cpp.html +%%DOCSDIR%%/html/network-threadedfortuneserver-dialog-h.html +%%DOCSDIR%%/html/network-threadedfortuneserver-fortuneserver-cpp.html +%%DOCSDIR%%/html/network-threadedfortuneserver-fortuneserver-h.html +%%DOCSDIR%%/html/network-threadedfortuneserver-fortunethread-cpp.html +%%DOCSDIR%%/html/network-threadedfortuneserver-fortunethread-h.html +%%DOCSDIR%%/html/network-threadedfortuneserver-main-cpp.html +%%DOCSDIR%%/html/network-threadedfortuneserver-threadedfortuneserver-pro.html +%%DOCSDIR%%/html/network-threadedfortuneserver.html +%%DOCSDIR%%/html/network-torrent-3rdparty-sha1-h.html +%%DOCSDIR%%/html/network-torrent-addtorrentdialog-cpp.html +%%DOCSDIR%%/html/network-torrent-addtorrentdialog-h.html +%%DOCSDIR%%/html/network-torrent-bencodeparser-cpp.html +%%DOCSDIR%%/html/network-torrent-bencodeparser-h.html +%%DOCSDIR%%/html/network-torrent-connectionmanager-cpp.html +%%DOCSDIR%%/html/network-torrent-connectionmanager-h.html +%%DOCSDIR%%/html/network-torrent-filemanager-cpp.html +%%DOCSDIR%%/html/network-torrent-filemanager-h.html +%%DOCSDIR%%/html/network-torrent-forms-addtorrentform-ui.html +%%DOCSDIR%%/html/network-torrent-icons-qrc.html +%%DOCSDIR%%/html/network-torrent-main-cpp.html +%%DOCSDIR%%/html/network-torrent-mainwindow-cpp.html +%%DOCSDIR%%/html/network-torrent-mainwindow-h.html +%%DOCSDIR%%/html/network-torrent-metainfo-cpp.html +%%DOCSDIR%%/html/network-torrent-metainfo-h.html +%%DOCSDIR%%/html/network-torrent-peerwireclient-cpp.html +%%DOCSDIR%%/html/network-torrent-peerwireclient-h.html +%%DOCSDIR%%/html/network-torrent-ratecontroller-cpp.html +%%DOCSDIR%%/html/network-torrent-ratecontroller-h.html +%%DOCSDIR%%/html/network-torrent-torrent-pro.html +%%DOCSDIR%%/html/network-torrent-torrentclient-cpp.html +%%DOCSDIR%%/html/network-torrent-torrentclient-h.html +%%DOCSDIR%%/html/network-torrent-torrentserver-cpp.html +%%DOCSDIR%%/html/network-torrent-torrentserver-h.html +%%DOCSDIR%%/html/network-torrent-trackerclient-cpp.html +%%DOCSDIR%%/html/network-torrent-trackerclient-h.html +%%DOCSDIR%%/html/network-torrent.html +%%DOCSDIR%%/html/object.html +%%DOCSDIR%%/html/objectmodel.html +%%DOCSDIR%%/html/objecttrees.html +%%DOCSDIR%%/html/opengl-2dpainting-2dpainting-pro.html +%%DOCSDIR%%/html/opengl-2dpainting-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-2dpainting-glwidget-h.html +%%DOCSDIR%%/html/opengl-2dpainting-helper-cpp.html +%%DOCSDIR%%/html/opengl-2dpainting-helper-h.html +%%DOCSDIR%%/html/opengl-2dpainting-main-cpp.html +%%DOCSDIR%%/html/opengl-2dpainting-widget-cpp.html +%%DOCSDIR%%/html/opengl-2dpainting-widget-h.html +%%DOCSDIR%%/html/opengl-2dpainting-window-cpp.html +%%DOCSDIR%%/html/opengl-2dpainting-window-h.html +%%DOCSDIR%%/html/opengl-2dpainting.html +%%DOCSDIR%%/html/opengl-framebufferobject-bubbles-svg.html +%%DOCSDIR%%/html/opengl-framebufferobject-framebufferobject-pro.html +%%DOCSDIR%%/html/opengl-framebufferobject-framebufferobject-qrc.html +%%DOCSDIR%%/html/opengl-framebufferobject-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-framebufferobject-glwidget-h.html +%%DOCSDIR%%/html/opengl-framebufferobject-main-cpp.html +%%DOCSDIR%%/html/opengl-framebufferobject.html +%%DOCSDIR%%/html/opengl-framebufferobject2-framebufferobject2-pro.html +%%DOCSDIR%%/html/opengl-framebufferobject2-framebufferobject2-qrc.html +%%DOCSDIR%%/html/opengl-framebufferobject2-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-framebufferobject2-glwidget-h.html +%%DOCSDIR%%/html/opengl-framebufferobject2-main-cpp.html +%%DOCSDIR%%/html/opengl-framebufferobject2.html +%%DOCSDIR%%/html/opengl-grabber-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-grabber-glwidget-h.html +%%DOCSDIR%%/html/opengl-grabber-grabber-pro.html +%%DOCSDIR%%/html/opengl-grabber-main-cpp.html +%%DOCSDIR%%/html/opengl-grabber-mainwindow-cpp.html +%%DOCSDIR%%/html/opengl-grabber-mainwindow-h.html +%%DOCSDIR%%/html/opengl-grabber.html +%%DOCSDIR%%/html/opengl-hellogl-es-bubble-cpp.html +%%DOCSDIR%%/html/opengl-hellogl-es-bubble-h.html +%%DOCSDIR%%/html/opengl-hellogl-es-cl-helper-h.html +%%DOCSDIR%%/html/opengl-hellogl-es-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-hellogl-es-glwidget-h.html +%%DOCSDIR%%/html/opengl-hellogl-es-hellogl-es-pro.html +%%DOCSDIR%%/html/opengl-hellogl-es-main-cpp.html +%%DOCSDIR%%/html/opengl-hellogl-es-mainwindow-cpp.html +%%DOCSDIR%%/html/opengl-hellogl-es-mainwindow-h.html +%%DOCSDIR%%/html/opengl-hellogl-es-texture-qrc.html +%%DOCSDIR%%/html/opengl-hellogl-es.html +%%DOCSDIR%%/html/opengl-hellogl-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-hellogl-glwidget-h.html +%%DOCSDIR%%/html/opengl-hellogl-hellogl-pro.html +%%DOCSDIR%%/html/opengl-hellogl-main-cpp.html +%%DOCSDIR%%/html/opengl-hellogl-window-cpp.html +%%DOCSDIR%%/html/opengl-hellogl-window-h.html +%%DOCSDIR%%/html/opengl-hellogl.html +%%DOCSDIR%%/html/opengl-overpainting-bubble-cpp.html +%%DOCSDIR%%/html/opengl-overpainting-bubble-h.html +%%DOCSDIR%%/html/opengl-overpainting-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-overpainting-glwidget-h.html +%%DOCSDIR%%/html/opengl-overpainting-main-cpp.html +%%DOCSDIR%%/html/opengl-overpainting-overpainting-pro.html +%%DOCSDIR%%/html/opengl-overpainting.html +%%DOCSDIR%%/html/opengl-pbuffers-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-pbuffers-glwidget-h.html +%%DOCSDIR%%/html/opengl-pbuffers-main-cpp.html +%%DOCSDIR%%/html/opengl-pbuffers-pbuffers-pro.html +%%DOCSDIR%%/html/opengl-pbuffers-pbuffers-qrc.html +%%DOCSDIR%%/html/opengl-pbuffers.html +%%DOCSDIR%%/html/opengl-pbuffers2-bubbles-svg.html +%%DOCSDIR%%/html/opengl-pbuffers2-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-pbuffers2-glwidget-h.html +%%DOCSDIR%%/html/opengl-pbuffers2-main-cpp.html +%%DOCSDIR%%/html/opengl-pbuffers2-pbuffers2-pro.html +%%DOCSDIR%%/html/opengl-pbuffers2-pbuffers2-qrc.html +%%DOCSDIR%%/html/opengl-pbuffers2.html +%%DOCSDIR%%/html/opengl-samplebuffers-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-samplebuffers-glwidget-h.html +%%DOCSDIR%%/html/opengl-samplebuffers-main-cpp.html +%%DOCSDIR%%/html/opengl-samplebuffers-samplebuffers-pro.html +%%DOCSDIR%%/html/opengl-samplebuffers.html +%%DOCSDIR%%/html/opengl-textures-glwidget-cpp.html +%%DOCSDIR%%/html/opengl-textures-glwidget-h.html +%%DOCSDIR%%/html/opengl-textures-main-cpp.html +%%DOCSDIR%%/html/opengl-textures-textures-pro.html +%%DOCSDIR%%/html/opengl-textures-textures-qrc.html +%%DOCSDIR%%/html/opengl-textures-window-cpp.html +%%DOCSDIR%%/html/opengl-textures-window-h.html +%%DOCSDIR%%/html/opengl-textures.html +%%DOCSDIR%%/html/opensourceedition.html +%%DOCSDIR%%/html/organizers.html +%%DOCSDIR%%/html/overviews.html +%%DOCSDIR%%/html/painting-basicdrawing-basicdrawing-pro.html +%%DOCSDIR%%/html/painting-basicdrawing-basicdrawing-qrc.html +%%DOCSDIR%%/html/painting-basicdrawing-main-cpp.html +%%DOCSDIR%%/html/painting-basicdrawing-renderarea-cpp.html +%%DOCSDIR%%/html/painting-basicdrawing-renderarea-h.html +%%DOCSDIR%%/html/painting-basicdrawing-window-cpp.html +%%DOCSDIR%%/html/painting-basicdrawing-window-h.html +%%DOCSDIR%%/html/painting-basicdrawing.html +%%DOCSDIR%%/html/painting-concentriccircles-circlewidget-cpp.html +%%DOCSDIR%%/html/painting-concentriccircles-circlewidget-h.html +%%DOCSDIR%%/html/painting-concentriccircles-concentriccircles-pro.html +%%DOCSDIR%%/html/painting-concentriccircles-main-cpp.html +%%DOCSDIR%%/html/painting-concentriccircles-window-cpp.html +%%DOCSDIR%%/html/painting-concentriccircles-window-h.html +%%DOCSDIR%%/html/painting-concentriccircles.html +%%DOCSDIR%%/html/painting-fontsampler-fontsampler-pro.html +%%DOCSDIR%%/html/painting-fontsampler-main-cpp.html +%%DOCSDIR%%/html/painting-fontsampler-mainwindow-cpp.html +%%DOCSDIR%%/html/painting-fontsampler-mainwindow-h.html +%%DOCSDIR%%/html/painting-fontsampler-mainwindowbase-ui.html +%%DOCSDIR%%/html/painting-fontsampler.html +%%DOCSDIR%%/html/painting-imagecomposition-imagecomposer-cpp.html +%%DOCSDIR%%/html/painting-imagecomposition-imagecomposer-h.html +%%DOCSDIR%%/html/painting-imagecomposition-imagecomposition-pro.html +%%DOCSDIR%%/html/painting-imagecomposition-imagecomposition-qrc.html +%%DOCSDIR%%/html/painting-imagecomposition-main-cpp.html +%%DOCSDIR%%/html/painting-imagecomposition.html +%%DOCSDIR%%/html/painting-painterpaths-main-cpp.html +%%DOCSDIR%%/html/painting-painterpaths-painterpaths-pro.html +%%DOCSDIR%%/html/painting-painterpaths-renderarea-cpp.html +%%DOCSDIR%%/html/painting-painterpaths-renderarea-h.html +%%DOCSDIR%%/html/painting-painterpaths-window-cpp.html +%%DOCSDIR%%/html/painting-painterpaths-window-h.html +%%DOCSDIR%%/html/painting-painterpaths.html +%%DOCSDIR%%/html/painting-svgviewer-files-bubbles-svg.html +%%DOCSDIR%%/html/painting-svgviewer-files-cubic-svg.html +%%DOCSDIR%%/html/painting-svgviewer-files-spheres-svg.html +%%DOCSDIR%%/html/painting-svgviewer-main-cpp.html +%%DOCSDIR%%/html/painting-svgviewer-mainwindow-cpp.html +%%DOCSDIR%%/html/painting-svgviewer-mainwindow-h.html +%%DOCSDIR%%/html/painting-svgviewer-svgview-cpp.html +%%DOCSDIR%%/html/painting-svgviewer-svgview-h.html +%%DOCSDIR%%/html/painting-svgviewer-svgviewer-pro.html +%%DOCSDIR%%/html/painting-svgviewer-svgviewer-qrc.html +%%DOCSDIR%%/html/painting-svgviewer-svgwindow-cpp.html +%%DOCSDIR%%/html/painting-svgviewer-svgwindow-h.html +%%DOCSDIR%%/html/painting-svgviewer.html +%%DOCSDIR%%/html/painting-transformations-main-cpp.html +%%DOCSDIR%%/html/painting-transformations-renderarea-cpp.html +%%DOCSDIR%%/html/painting-transformations-renderarea-h.html +%%DOCSDIR%%/html/painting-transformations-transformations-pro.html +%%DOCSDIR%%/html/painting-transformations-window-cpp.html +%%DOCSDIR%%/html/painting-transformations-window-h.html +%%DOCSDIR%%/html/painting-transformations.html +%%DOCSDIR%%/html/paintsystem.html +%%DOCSDIR%%/html/pdf-licensing.html +%%DOCSDIR%%/html/phonon-audiooutput-members.html +%%DOCSDIR%%/html/phonon-audiooutput.html +%%DOCSDIR%%/html/phonon-backendcapabilities-notifier-members.html +%%DOCSDIR%%/html/phonon-backendcapabilities-notifier.html +%%DOCSDIR%%/html/phonon-backendcapabilities.html +%%DOCSDIR%%/html/phonon-capabilities-capabilities-pro.html +%%DOCSDIR%%/html/phonon-capabilities-main-cpp.html +%%DOCSDIR%%/html/phonon-capabilities-window-cpp.html +%%DOCSDIR%%/html/phonon-capabilities-window-h.html +%%DOCSDIR%%/html/phonon-capabilities.html +%%DOCSDIR%%/html/phonon-effect-members.html +%%DOCSDIR%%/html/phonon-effect.html +%%DOCSDIR%%/html/phonon-effectparameter-members.html +%%DOCSDIR%%/html/phonon-effectparameter.html +%%DOCSDIR%%/html/phonon-effectwidget-members.html +%%DOCSDIR%%/html/phonon-effectwidget.html +%%DOCSDIR%%/html/phonon-globalconfig-members.html +%%DOCSDIR%%/html/phonon-globalconfig.html +%%DOCSDIR%%/html/phonon-mediacontroller-members.html +%%DOCSDIR%%/html/phonon-mediacontroller.html +%%DOCSDIR%%/html/phonon-medianode-members.html +%%DOCSDIR%%/html/phonon-medianode.html +%%DOCSDIR%%/html/phonon-mediaobject-members.html +%%DOCSDIR%%/html/phonon-mediaobject.html +%%DOCSDIR%%/html/phonon-mediasource-members.html +%%DOCSDIR%%/html/phonon-mediasource.html +%%DOCSDIR%%/html/phonon-module.html +%%DOCSDIR%%/html/phonon-musicplayer-main-cpp.html +%%DOCSDIR%%/html/phonon-musicplayer-mainwindow-cpp.html +%%DOCSDIR%%/html/phonon-musicplayer-mainwindow-h.html +%%DOCSDIR%%/html/phonon-musicplayer-musicplayer-pro.html +%%DOCSDIR%%/html/phonon-musicplayer.html +%%DOCSDIR%%/html/phonon-objectdescription-members.html +%%DOCSDIR%%/html/phonon-objectdescription.html +%%DOCSDIR%%/html/phonon-overview.html +%%DOCSDIR%%/html/phonon-path-members.html +%%DOCSDIR%%/html/phonon-path.html +%%DOCSDIR%%/html/phonon-seekslider-members.html +%%DOCSDIR%%/html/phonon-seekslider.html +%%DOCSDIR%%/html/phonon-videoplayer-members.html +%%DOCSDIR%%/html/phonon-videoplayer.html +%%DOCSDIR%%/html/phonon-videowidget-members.html +%%DOCSDIR%%/html/phonon-videowidget.html +%%DOCSDIR%%/html/phonon-volumeslider-members.html +%%DOCSDIR%%/html/phonon-volumeslider.html +%%DOCSDIR%%/html/phonon.html +%%DOCSDIR%%/html/platform-notes-embedded-linux.html +%%DOCSDIR%%/html/platform-notes-mac.html +%%DOCSDIR%%/html/platform-notes-platforms.html +%%DOCSDIR%%/html/platform-notes-windows-ce.html +%%DOCSDIR%%/html/platform-notes-windows.html +%%DOCSDIR%%/html/platform-notes-x11.html +%%DOCSDIR%%/html/platform-notes.html +%%DOCSDIR%%/html/plugins-howto.html +%%DOCSDIR%%/html/plugins.html +%%DOCSDIR%%/html/porting-qsa.html +%%DOCSDIR%%/html/porting.html +%%DOCSDIR%%/html/porting4-designer.html +%%DOCSDIR%%/html/porting4-dnd.html +%%DOCSDIR%%/html/porting4-overview.html +%%DOCSDIR%%/html/porting4-virtual-functions.html +%%DOCSDIR%%/html/porting4.html +%%DOCSDIR%%/html/printing.html +%%DOCSDIR%%/html/properties.html +%%DOCSDIR%%/html/q3accel-members.html +%%DOCSDIR%%/html/q3accel-obsolete.html +%%DOCSDIR%%/html/q3accel.html +%%DOCSDIR%%/html/q3action-members.html +%%DOCSDIR%%/html/q3action.html +%%DOCSDIR%%/html/q3actiongroup-members.html +%%DOCSDIR%%/html/q3actiongroup.html +%%DOCSDIR%%/html/q3asciicache-members.html +%%DOCSDIR%%/html/q3asciicache.html +%%DOCSDIR%%/html/q3asciicacheiterator-members.html +%%DOCSDIR%%/html/q3asciicacheiterator.html +%%DOCSDIR%%/html/q3asciidict-members.html +%%DOCSDIR%%/html/q3asciidict.html +%%DOCSDIR%%/html/q3asciidictiterator-members.html +%%DOCSDIR%%/html/q3asciidictiterator.html +%%DOCSDIR%%/html/q3button-members.html +%%DOCSDIR%%/html/q3button.html +%%DOCSDIR%%/html/q3buttongroup-members.html +%%DOCSDIR%%/html/q3buttongroup.html +%%DOCSDIR%%/html/q3cache-members.html +%%DOCSDIR%%/html/q3cache.html +%%DOCSDIR%%/html/q3cacheiterator-members.html +%%DOCSDIR%%/html/q3cacheiterator.html +%%DOCSDIR%%/html/q3canvas-members.html +%%DOCSDIR%%/html/q3canvas.html +%%DOCSDIR%%/html/q3canvasellipse-members.html +%%DOCSDIR%%/html/q3canvasellipse.html +%%DOCSDIR%%/html/q3canvasitem-members.html +%%DOCSDIR%%/html/q3canvasitem-obsolete.html +%%DOCSDIR%%/html/q3canvasitem.html +%%DOCSDIR%%/html/q3canvasitemlist-members.html +%%DOCSDIR%%/html/q3canvasitemlist.html +%%DOCSDIR%%/html/q3canvasline-members.html +%%DOCSDIR%%/html/q3canvasline.html +%%DOCSDIR%%/html/q3canvaspixmap-members.html +%%DOCSDIR%%/html/q3canvaspixmap.html +%%DOCSDIR%%/html/q3canvaspixmaparray-members.html +%%DOCSDIR%%/html/q3canvaspixmaparray-obsolete.html +%%DOCSDIR%%/html/q3canvaspixmaparray.html +%%DOCSDIR%%/html/q3canvaspolygon-members.html +%%DOCSDIR%%/html/q3canvaspolygon.html +%%DOCSDIR%%/html/q3canvaspolygonalitem-members.html +%%DOCSDIR%%/html/q3canvaspolygonalitem.html +%%DOCSDIR%%/html/q3canvasrectangle-members.html +%%DOCSDIR%%/html/q3canvasrectangle.html +%%DOCSDIR%%/html/q3canvasspline-members.html +%%DOCSDIR%%/html/q3canvasspline.html +%%DOCSDIR%%/html/q3canvassprite-members.html +%%DOCSDIR%%/html/q3canvassprite.html +%%DOCSDIR%%/html/q3canvastext-members.html +%%DOCSDIR%%/html/q3canvastext.html +%%DOCSDIR%%/html/q3canvasview-members.html +%%DOCSDIR%%/html/q3canvasview.html +%%DOCSDIR%%/html/q3checklistitem-members.html +%%DOCSDIR%%/html/q3checklistitem.html +%%DOCSDIR%%/html/q3checktableitem-members.html +%%DOCSDIR%%/html/q3checktableitem.html +%%DOCSDIR%%/html/q3colordrag-members.html +%%DOCSDIR%%/html/q3colordrag.html +%%DOCSDIR%%/html/q3combobox-members.html +%%DOCSDIR%%/html/q3combobox-obsolete.html +%%DOCSDIR%%/html/q3combobox.html +%%DOCSDIR%%/html/q3combotableitem-members.html +%%DOCSDIR%%/html/q3combotableitem.html +%%DOCSDIR%%/html/q3cstring-members.html +%%DOCSDIR%%/html/q3cstring.html +%%DOCSDIR%%/html/q3databrowser-members.html +%%DOCSDIR%%/html/q3databrowser.html +%%DOCSDIR%%/html/q3datatable-members.html +%%DOCSDIR%%/html/q3datatable.html +%%DOCSDIR%%/html/q3dataview-members.html +%%DOCSDIR%%/html/q3dataview.html +%%DOCSDIR%%/html/q3dateedit-members.html +%%DOCSDIR%%/html/q3dateedit.html +%%DOCSDIR%%/html/q3datetimeedit-members.html +%%DOCSDIR%%/html/q3datetimeedit.html +%%DOCSDIR%%/html/q3datetimeeditbase-members.html +%%DOCSDIR%%/html/q3datetimeeditbase.html +%%DOCSDIR%%/html/q3deepcopy-members.html +%%DOCSDIR%%/html/q3deepcopy.html +%%DOCSDIR%%/html/q3dict-members.html +%%DOCSDIR%%/html/q3dict.html +%%DOCSDIR%%/html/q3dictiterator-members.html +%%DOCSDIR%%/html/q3dictiterator.html +%%DOCSDIR%%/html/q3dns-members.html +%%DOCSDIR%%/html/q3dns.html +%%DOCSDIR%%/html/q3dockarea-members.html +%%DOCSDIR%%/html/q3dockarea.html +%%DOCSDIR%%/html/q3dockwindow-members.html +%%DOCSDIR%%/html/q3dockwindow.html +%%DOCSDIR%%/html/q3dragobject-members.html +%%DOCSDIR%%/html/q3dragobject.html +%%DOCSDIR%%/html/q3dropsite-members.html +%%DOCSDIR%%/html/q3dropsite.html +%%DOCSDIR%%/html/q3editorfactory-members.html +%%DOCSDIR%%/html/q3editorfactory.html +%%DOCSDIR%%/html/q3filedialog-members.html +%%DOCSDIR%%/html/q3filedialog.html +%%DOCSDIR%%/html/q3fileiconprovider-members.html +%%DOCSDIR%%/html/q3fileiconprovider.html +%%DOCSDIR%%/html/q3filepreview-members.html +%%DOCSDIR%%/html/q3filepreview.html +%%DOCSDIR%%/html/q3frame-members.html +%%DOCSDIR%%/html/q3frame.html +%%DOCSDIR%%/html/q3ftp-members.html +%%DOCSDIR%%/html/q3ftp.html +%%DOCSDIR%%/html/q3grid-members.html +%%DOCSDIR%%/html/q3grid.html +%%DOCSDIR%%/html/q3gridview-members.html +%%DOCSDIR%%/html/q3gridview.html +%%DOCSDIR%%/html/q3groupbox-members.html +%%DOCSDIR%%/html/q3groupbox.html +%%DOCSDIR%%/html/q3hbox-members.html +%%DOCSDIR%%/html/q3hbox.html +%%DOCSDIR%%/html/q3hboxlayout-members.html +%%DOCSDIR%%/html/q3hboxlayout.html +%%DOCSDIR%%/html/q3hbuttongroup-members.html +%%DOCSDIR%%/html/q3hbuttongroup.html +%%DOCSDIR%%/html/q3header-members.html +%%DOCSDIR%%/html/q3header.html +%%DOCSDIR%%/html/q3hgroupbox-members.html +%%DOCSDIR%%/html/q3hgroupbox.html +%%DOCSDIR%%/html/q3http-members.html +%%DOCSDIR%%/html/q3http.html +%%DOCSDIR%%/html/q3httpheader-members.html +%%DOCSDIR%%/html/q3httpheader.html +%%DOCSDIR%%/html/q3httprequestheader-members.html +%%DOCSDIR%%/html/q3httprequestheader.html +%%DOCSDIR%%/html/q3httpresponseheader-members.html +%%DOCSDIR%%/html/q3httpresponseheader.html +%%DOCSDIR%%/html/q3icondrag-members.html +%%DOCSDIR%%/html/q3icondrag.html +%%DOCSDIR%%/html/q3icondragitem-members.html +%%DOCSDIR%%/html/q3icondragitem.html +%%DOCSDIR%%/html/q3iconview-members.html +%%DOCSDIR%%/html/q3iconview.html +%%DOCSDIR%%/html/q3iconviewitem-members.html +%%DOCSDIR%%/html/q3iconviewitem.html +%%DOCSDIR%%/html/q3imagedrag-members.html +%%DOCSDIR%%/html/q3imagedrag.html +%%DOCSDIR%%/html/q3intcache-members.html +%%DOCSDIR%%/html/q3intcache.html +%%DOCSDIR%%/html/q3intcacheiterator-members.html +%%DOCSDIR%%/html/q3intcacheiterator.html +%%DOCSDIR%%/html/q3intdict-members.html +%%DOCSDIR%%/html/q3intdict.html +%%DOCSDIR%%/html/q3intdictiterator-members.html +%%DOCSDIR%%/html/q3intdictiterator.html +%%DOCSDIR%%/html/q3listbox-members.html +%%DOCSDIR%%/html/q3listbox.html +%%DOCSDIR%%/html/q3listboxitem-members.html +%%DOCSDIR%%/html/q3listboxitem.html +%%DOCSDIR%%/html/q3listboxpixmap-members.html +%%DOCSDIR%%/html/q3listboxpixmap.html +%%DOCSDIR%%/html/q3listboxtext-members.html +%%DOCSDIR%%/html/q3listboxtext.html +%%DOCSDIR%%/html/q3listview-members.html +%%DOCSDIR%%/html/q3listview.html +%%DOCSDIR%%/html/q3listviewitem-members.html +%%DOCSDIR%%/html/q3listviewitem.html +%%DOCSDIR%%/html/q3listviewitemiterator-members.html +%%DOCSDIR%%/html/q3listviewitemiterator.html +%%DOCSDIR%%/html/q3localfs-members.html +%%DOCSDIR%%/html/q3localfs.html +%%DOCSDIR%%/html/q3mainwindow-members.html +%%DOCSDIR%%/html/q3mainwindow.html +%%DOCSDIR%%/html/q3memarray-members.html +%%DOCSDIR%%/html/q3memarray.html +%%DOCSDIR%%/html/q3mimesourcefactory-members.html +%%DOCSDIR%%/html/q3mimesourcefactory.html +%%DOCSDIR%%/html/q3multilineedit-members.html +%%DOCSDIR%%/html/q3multilineedit.html +%%DOCSDIR%%/html/q3networkoperation-members.html +%%DOCSDIR%%/html/q3networkoperation.html +%%DOCSDIR%%/html/q3networkprotocol-members.html +%%DOCSDIR%%/html/q3networkprotocol.html +%%DOCSDIR%%/html/q3paintdevicemetrics-members.html +%%DOCSDIR%%/html/q3paintdevicemetrics.html +%%DOCSDIR%%/html/q3painter-members.html +%%DOCSDIR%%/html/q3painter.html +%%DOCSDIR%%/html/q3picture-members.html +%%DOCSDIR%%/html/q3picture.html +%%DOCSDIR%%/html/q3pointarray-members.html +%%DOCSDIR%%/html/q3pointarray.html +%%DOCSDIR%%/html/q3popupmenu-members.html +%%DOCSDIR%%/html/q3popupmenu.html +%%DOCSDIR%%/html/q3process-members.html +%%DOCSDIR%%/html/q3process.html +%%DOCSDIR%%/html/q3progressbar-members.html +%%DOCSDIR%%/html/q3progressbar-obsolete.html +%%DOCSDIR%%/html/q3progressbar.html +%%DOCSDIR%%/html/q3progressdialog-members.html +%%DOCSDIR%%/html/q3progressdialog.html +%%DOCSDIR%%/html/q3ptrcollection-members.html +%%DOCSDIR%%/html/q3ptrcollection.html +%%DOCSDIR%%/html/q3ptrdict-members.html +%%DOCSDIR%%/html/q3ptrdict.html +%%DOCSDIR%%/html/q3ptrdictiterator-members.html +%%DOCSDIR%%/html/q3ptrdictiterator.html +%%DOCSDIR%%/html/q3ptrlist-members.html +%%DOCSDIR%%/html/q3ptrlist.html +%%DOCSDIR%%/html/q3ptrlistiterator-members.html +%%DOCSDIR%%/html/q3ptrlistiterator.html +%%DOCSDIR%%/html/q3ptrqueue-members.html +%%DOCSDIR%%/html/q3ptrqueue.html +%%DOCSDIR%%/html/q3ptrstack-members.html +%%DOCSDIR%%/html/q3ptrstack.html +%%DOCSDIR%%/html/q3ptrvector-members.html +%%DOCSDIR%%/html/q3ptrvector.html +%%DOCSDIR%%/html/q3rangecontrol-members.html +%%DOCSDIR%%/html/q3rangecontrol.html +%%DOCSDIR%%/html/q3scrollview-members.html +%%DOCSDIR%%/html/q3scrollview-obsolete.html +%%DOCSDIR%%/html/q3scrollview.html +%%DOCSDIR%%/html/q3semaphore-members.html +%%DOCSDIR%%/html/q3semaphore.html +%%DOCSDIR%%/html/q3serversocket-members.html +%%DOCSDIR%%/html/q3serversocket.html +%%DOCSDIR%%/html/q3shared-members.html +%%DOCSDIR%%/html/q3shared.html +%%DOCSDIR%%/html/q3signal-members.html +%%DOCSDIR%%/html/q3signal-obsolete.html +%%DOCSDIR%%/html/q3signal.html +%%DOCSDIR%%/html/q3simplerichtext-members.html +%%DOCSDIR%%/html/q3simplerichtext.html +%%DOCSDIR%%/html/q3socket-members.html +%%DOCSDIR%%/html/q3socket.html +%%DOCSDIR%%/html/q3socketdevice-members.html +%%DOCSDIR%%/html/q3socketdevice.html +%%DOCSDIR%%/html/q3sqlcursor-members.html +%%DOCSDIR%%/html/q3sqlcursor.html +%%DOCSDIR%%/html/q3sqleditorfactory-members.html +%%DOCSDIR%%/html/q3sqleditorfactory.html +%%DOCSDIR%%/html/q3sqlfieldinfo-members.html +%%DOCSDIR%%/html/q3sqlfieldinfo.html +%%DOCSDIR%%/html/q3sqlform-members.html +%%DOCSDIR%%/html/q3sqlform.html +%%DOCSDIR%%/html/q3sqlpropertymap-members.html +%%DOCSDIR%%/html/q3sqlpropertymap.html +%%DOCSDIR%%/html/q3sqlrecordinfo-members.html +%%DOCSDIR%%/html/q3sqlrecordinfo.html +%%DOCSDIR%%/html/q3sqlselectcursor-members.html +%%DOCSDIR%%/html/q3sqlselectcursor.html +%%DOCSDIR%%/html/q3storeddrag-members.html +%%DOCSDIR%%/html/q3storeddrag.html +%%DOCSDIR%%/html/q3strilist-members.html +%%DOCSDIR%%/html/q3strilist.html +%%DOCSDIR%%/html/q3strlist-members.html +%%DOCSDIR%%/html/q3strlist.html +%%DOCSDIR%%/html/q3strlistiterator-members.html +%%DOCSDIR%%/html/q3strlistiterator.html +%%DOCSDIR%%/html/q3stylesheet-members.html +%%DOCSDIR%%/html/q3stylesheet.html +%%DOCSDIR%%/html/q3stylesheetitem-members.html +%%DOCSDIR%%/html/q3stylesheetitem.html +%%DOCSDIR%%/html/q3syntaxhighlighter-members.html +%%DOCSDIR%%/html/q3syntaxhighlighter.html +%%DOCSDIR%%/html/q3tabdialog-members.html +%%DOCSDIR%%/html/q3tabdialog-obsolete.html +%%DOCSDIR%%/html/q3tabdialog.html +%%DOCSDIR%%/html/q3table-members.html +%%DOCSDIR%%/html/q3table.html +%%DOCSDIR%%/html/q3tableitem-members.html +%%DOCSDIR%%/html/q3tableitem.html +%%DOCSDIR%%/html/q3tableselection-members.html +%%DOCSDIR%%/html/q3tableselection.html +%%DOCSDIR%%/html/q3textbrowser-members.html +%%DOCSDIR%%/html/q3textbrowser.html +%%DOCSDIR%%/html/q3textdrag-members.html +%%DOCSDIR%%/html/q3textdrag.html +%%DOCSDIR%%/html/q3textedit-members.html +%%DOCSDIR%%/html/q3textedit.html +%%DOCSDIR%%/html/q3textstream-members.html +%%DOCSDIR%%/html/q3textstream-obsolete.html +%%DOCSDIR%%/html/q3textstream.html +%%DOCSDIR%%/html/q3textview-members.html +%%DOCSDIR%%/html/q3textview.html +%%DOCSDIR%%/html/q3timeedit-members.html +%%DOCSDIR%%/html/q3timeedit.html +%%DOCSDIR%%/html/q3toolbar-members.html +%%DOCSDIR%%/html/q3toolbar.html +%%DOCSDIR%%/html/q3uridrag-members.html +%%DOCSDIR%%/html/q3uridrag-obsolete.html +%%DOCSDIR%%/html/q3uridrag.html +%%DOCSDIR%%/html/q3url-members.html +%%DOCSDIR%%/html/q3url.html +%%DOCSDIR%%/html/q3urloperator-members.html +%%DOCSDIR%%/html/q3urloperator.html +%%DOCSDIR%%/html/q3valuelist-members.html +%%DOCSDIR%%/html/q3valuelist.html +%%DOCSDIR%%/html/q3valuelistconstiterator-members.html +%%DOCSDIR%%/html/q3valuelistconstiterator.html +%%DOCSDIR%%/html/q3valuelistiterator-members.html +%%DOCSDIR%%/html/q3valuelistiterator.html +%%DOCSDIR%%/html/q3valuestack-members.html +%%DOCSDIR%%/html/q3valuestack.html +%%DOCSDIR%%/html/q3valuevector-members.html +%%DOCSDIR%%/html/q3valuevector.html +%%DOCSDIR%%/html/q3vbox-members.html +%%DOCSDIR%%/html/q3vbox.html +%%DOCSDIR%%/html/q3vboxlayout-members.html +%%DOCSDIR%%/html/q3vboxlayout.html +%%DOCSDIR%%/html/q3vbuttongroup-members.html +%%DOCSDIR%%/html/q3vbuttongroup.html +%%DOCSDIR%%/html/q3vgroupbox-members.html +%%DOCSDIR%%/html/q3vgroupbox.html +%%DOCSDIR%%/html/q3whatsthis-members.html +%%DOCSDIR%%/html/q3whatsthis.html +%%DOCSDIR%%/html/q3widgetstack-members.html +%%DOCSDIR%%/html/q3widgetstack.html +%%DOCSDIR%%/html/q3wizard-members.html +%%DOCSDIR%%/html/q3wizard-obsolete.html +%%DOCSDIR%%/html/q3wizard.html +%%DOCSDIR%%/html/qabstractbutton-members.html +%%DOCSDIR%%/html/qabstractbutton-qt3.html +%%DOCSDIR%%/html/qabstractbutton.html +%%DOCSDIR%%/html/qabstracteventdispatcher-members.html +%%DOCSDIR%%/html/qabstracteventdispatcher.html +%%DOCSDIR%%/html/qabstractextensionfactory-members.html +%%DOCSDIR%%/html/qabstractextensionfactory.html +%%DOCSDIR%%/html/qabstractextensionmanager-members.html +%%DOCSDIR%%/html/qabstractextensionmanager.html +%%DOCSDIR%%/html/qabstractfileengine-extensionoption.html +%%DOCSDIR%%/html/qabstractfileengine-extensionreturn.html +%%DOCSDIR%%/html/qabstractfileengine-mapextensionoption-members.html +%%DOCSDIR%%/html/qabstractfileengine-mapextensionoption.html +%%DOCSDIR%%/html/qabstractfileengine-mapextensionreturn-members.html +%%DOCSDIR%%/html/qabstractfileengine-mapextensionreturn.html +%%DOCSDIR%%/html/qabstractfileengine-members.html +%%DOCSDIR%%/html/qabstractfileengine-unmapextensionoption-members.html +%%DOCSDIR%%/html/qabstractfileengine-unmapextensionoption.html +%%DOCSDIR%%/html/qabstractfileengine.html +%%DOCSDIR%%/html/qabstractfileenginehandler-members.html +%%DOCSDIR%%/html/qabstractfileenginehandler.html +%%DOCSDIR%%/html/qabstractfileengineiterator-members.html +%%DOCSDIR%%/html/qabstractfileengineiterator.html +%%DOCSDIR%%/html/qabstractformbuilder-members.html +%%DOCSDIR%%/html/qabstractformbuilder.html +%%DOCSDIR%%/html/qabstractgraphicsshapeitem-members.html +%%DOCSDIR%%/html/qabstractgraphicsshapeitem.html +%%DOCSDIR%%/html/qabstractitemdelegate-members.html +%%DOCSDIR%%/html/qabstractitemdelegate-obsolete.html +%%DOCSDIR%%/html/qabstractitemdelegate.html +%%DOCSDIR%%/html/qabstractitemmodel-members.html +%%DOCSDIR%%/html/qabstractitemmodel-obsolete.html +%%DOCSDIR%%/html/qabstractitemmodel.html +%%DOCSDIR%%/html/qabstractitemview-members.html +%%DOCSDIR%%/html/qabstractitemview-obsolete.html +%%DOCSDIR%%/html/qabstractitemview.html +%%DOCSDIR%%/html/qabstractlistmodel-members.html +%%DOCSDIR%%/html/qabstractlistmodel.html +%%DOCSDIR%%/html/qabstractmessagehandler-members.html +%%DOCSDIR%%/html/qabstractmessagehandler.html +%%DOCSDIR%%/html/qabstractprintdialog-members.html +%%DOCSDIR%%/html/qabstractprintdialog.html +%%DOCSDIR%%/html/qabstractproxymodel-members.html +%%DOCSDIR%%/html/qabstractproxymodel.html +%%DOCSDIR%%/html/qabstractscrollarea-members.html +%%DOCSDIR%%/html/qabstractscrollarea.html +%%DOCSDIR%%/html/qabstractslider-members.html +%%DOCSDIR%%/html/qabstractslider-qt3.html +%%DOCSDIR%%/html/qabstractslider.html +%%DOCSDIR%%/html/qabstractsocket-members.html +%%DOCSDIR%%/html/qabstractsocket-qt3.html +%%DOCSDIR%%/html/qabstractsocket.html +%%DOCSDIR%%/html/qabstractspinbox-members.html +%%DOCSDIR%%/html/qabstractspinbox.html +%%DOCSDIR%%/html/qabstracttablemodel-members.html +%%DOCSDIR%%/html/qabstracttablemodel.html +%%DOCSDIR%%/html/qabstracttextdocumentlayout-members.html +%%DOCSDIR%%/html/qabstracttextdocumentlayout-paintcontext-members.html +%%DOCSDIR%%/html/qabstracttextdocumentlayout-paintcontext.html +%%DOCSDIR%%/html/qabstracttextdocumentlayout-selection-members.html +%%DOCSDIR%%/html/qabstracttextdocumentlayout-selection.html +%%DOCSDIR%%/html/qabstracttextdocumentlayout.html +%%DOCSDIR%%/html/qabstracturiresolver-members.html +%%DOCSDIR%%/html/qabstracturiresolver.html +%%DOCSDIR%%/html/qabstractxmlnodemodel-members.html +%%DOCSDIR%%/html/qabstractxmlnodemodel.html +%%DOCSDIR%%/html/qabstractxmlreceiver-members.html +%%DOCSDIR%%/html/qabstractxmlreceiver.html +%%DOCSDIR%%/html/qaccessible-members.html +%%DOCSDIR%%/html/qaccessible.html +%%DOCSDIR%%/html/qaccessiblebridge-members.html +%%DOCSDIR%%/html/qaccessiblebridge.html +%%DOCSDIR%%/html/qaccessiblebridgeplugin-members.html +%%DOCSDIR%%/html/qaccessiblebridgeplugin.html +%%DOCSDIR%%/html/qaccessibleevent-members.html +%%DOCSDIR%%/html/qaccessibleevent.html +%%DOCSDIR%%/html/qaccessibleinterface-members.html +%%DOCSDIR%%/html/qaccessibleinterface.html +%%DOCSDIR%%/html/qaccessibleobject-members.html +%%DOCSDIR%%/html/qaccessibleobject.html +%%DOCSDIR%%/html/qaccessibleplugin-members.html +%%DOCSDIR%%/html/qaccessibleplugin.html +%%DOCSDIR%%/html/qaccessiblewidget-members.html +%%DOCSDIR%%/html/qaccessiblewidget.html +%%DOCSDIR%%/html/qaction-members.html +%%DOCSDIR%%/html/qaction-qt3.html +%%DOCSDIR%%/html/qaction.html +%%DOCSDIR%%/html/qactionevent-members.html +%%DOCSDIR%%/html/qactionevent.html +%%DOCSDIR%%/html/qactiongroup-members.html +%%DOCSDIR%%/html/qactiongroup-qt3.html +%%DOCSDIR%%/html/qactiongroup.html +%%DOCSDIR%%/html/qapplication-members.html +%%DOCSDIR%%/html/qapplication-qt3.html +%%DOCSDIR%%/html/qapplication.html +%%DOCSDIR%%/html/qassistantclient-members.html +%%DOCSDIR%%/html/qassistantclient.html +%%DOCSDIR%%/html/qatomicint-members.html +%%DOCSDIR%%/html/qatomicint.html +%%DOCSDIR%%/html/qatomicpointer-members.html +%%DOCSDIR%%/html/qatomicpointer.html +%%DOCSDIR%%/html/qauthenticator-members.html +%%DOCSDIR%%/html/qauthenticator.html +%%DOCSDIR%%/html/qaxcontainer.html +%%DOCSDIR%%/html/qaxserver.html +%%DOCSDIR%%/html/qbasictimer-members.html +%%DOCSDIR%%/html/qbasictimer.html +%%DOCSDIR%%/html/qbitarray-members.html +%%DOCSDIR%%/html/qbitarray.html +%%DOCSDIR%%/html/qbitmap-members.html +%%DOCSDIR%%/html/qbitmap-qt3.html +%%DOCSDIR%%/html/qbitmap.html +%%DOCSDIR%%/html/qboxlayout-members.html +%%DOCSDIR%%/html/qboxlayout-qt3.html +%%DOCSDIR%%/html/qboxlayout.html +%%DOCSDIR%%/html/qbrush-members.html +%%DOCSDIR%%/html/qbrush-qt3.html +%%DOCSDIR%%/html/qbrush.html +%%DOCSDIR%%/html/qbuffer-members.html +%%DOCSDIR%%/html/qbuffer.html +%%DOCSDIR%%/html/qbuttongroup-members.html +%%DOCSDIR%%/html/qbuttongroup-qt3.html +%%DOCSDIR%%/html/qbuttongroup.html +%%DOCSDIR%%/html/qbytearray-members.html +%%DOCSDIR%%/html/qbytearray-qt3.html +%%DOCSDIR%%/html/qbytearray.html +%%DOCSDIR%%/html/qbytearraymatcher-members.html +%%DOCSDIR%%/html/qbytearraymatcher.html +%%DOCSDIR%%/html/qcache-members.html +%%DOCSDIR%%/html/qcache-qt3.html +%%DOCSDIR%%/html/qcache.html +%%DOCSDIR%%/html/qcalendarwidget-members.html +%%DOCSDIR%%/html/qcalendarwidget-obsolete.html +%%DOCSDIR%%/html/qcalendarwidget.html +%%DOCSDIR%%/html/qcdestyle-members.html +%%DOCSDIR%%/html/qcdestyle.html +%%DOCSDIR%%/html/qchar-members.html +%%DOCSDIR%%/html/qchar-qt3.html +%%DOCSDIR%%/html/qchar.html +%%DOCSDIR%%/html/qcheckbox-members.html +%%DOCSDIR%%/html/qcheckbox-qt3.html +%%DOCSDIR%%/html/qcheckbox.html +%%DOCSDIR%%/html/qchildevent-members.html +%%DOCSDIR%%/html/qchildevent-qt3.html +%%DOCSDIR%%/html/qchildevent.html +%%DOCSDIR%%/html/qcleanlooksstyle-members.html +%%DOCSDIR%%/html/qcleanlooksstyle.html +%%DOCSDIR%%/html/qclipboard-members.html +%%DOCSDIR%%/html/qclipboard-qt3.html +%%DOCSDIR%%/html/qclipboard.html +%%DOCSDIR%%/html/qcloseevent-members.html +%%DOCSDIR%%/html/qcloseevent.html +%%DOCSDIR%%/html/qcolor-members.html +%%DOCSDIR%%/html/qcolor-obsolete.html +%%DOCSDIR%%/html/qcolor-qt3.html +%%DOCSDIR%%/html/qcolor.html +%%DOCSDIR%%/html/qcolordialog-members.html +%%DOCSDIR%%/html/qcolordialog-qt3.html +%%DOCSDIR%%/html/qcolordialog.html +%%DOCSDIR%%/html/qcolorgroup-members.html +%%DOCSDIR%%/html/qcolorgroup-qt3.html +%%DOCSDIR%%/html/qcolorgroup.html +%%DOCSDIR%%/html/qcolormap-members.html +%%DOCSDIR%%/html/qcolormap.html +%%DOCSDIR%%/html/qcolumnview-members.html +%%DOCSDIR%%/html/qcolumnview.html +%%DOCSDIR%%/html/qcombobox-members.html +%%DOCSDIR%%/html/qcombobox-obsolete.html +%%DOCSDIR%%/html/qcombobox-qt3.html +%%DOCSDIR%%/html/qcombobox.html +%%DOCSDIR%%/html/qcommandlinkbutton-members.html +%%DOCSDIR%%/html/qcommandlinkbutton.html +%%DOCSDIR%%/html/qcommonstyle-members.html +%%DOCSDIR%%/html/qcommonstyle.html +%%DOCSDIR%%/html/qcompleter-members.html +%%DOCSDIR%%/html/qcompleter.html +%%DOCSDIR%%/html/qconicalgradient-members.html +%%DOCSDIR%%/html/qconicalgradient.html +%%DOCSDIR%%/html/qconststring-members.html +%%DOCSDIR%%/html/qconststring-qt3.html +%%DOCSDIR%%/html/qconststring.html +%%DOCSDIR%%/html/qcontextmenuevent-members.html +%%DOCSDIR%%/html/qcontextmenuevent-qt3.html +%%DOCSDIR%%/html/qcontextmenuevent.html +%%DOCSDIR%%/html/qcoreapplication-members.html +%%DOCSDIR%%/html/qcoreapplication-qt3.html +%%DOCSDIR%%/html/qcoreapplication.html +%%DOCSDIR%%/html/qcryptographichash-members.html +%%DOCSDIR%%/html/qcryptographichash.html +%%DOCSDIR%%/html/qcursor-members.html +%%DOCSDIR%%/html/qcursor.html +%%DOCSDIR%%/html/qcustomevent-members.html +%%DOCSDIR%%/html/qcustomevent-qt3.html +%%DOCSDIR%%/html/qcustomevent.html +%%DOCSDIR%%/html/qcustomrasterpaintdevice-members.html +%%DOCSDIR%%/html/qcustomrasterpaintdevice.html +%%DOCSDIR%%/html/qdatastream-members.html +%%DOCSDIR%%/html/qdatastream-obsolete.html +%%DOCSDIR%%/html/qdatastream-qt3.html +%%DOCSDIR%%/html/qdatastream.html +%%DOCSDIR%%/html/qdatawidgetmapper-members.html +%%DOCSDIR%%/html/qdatawidgetmapper.html +%%DOCSDIR%%/html/qdate-members.html +%%DOCSDIR%%/html/qdate-obsolete.html +%%DOCSDIR%%/html/qdate-qt3.html +%%DOCSDIR%%/html/qdate.html +%%DOCSDIR%%/html/qdateedit-members.html +%%DOCSDIR%%/html/qdateedit.html +%%DOCSDIR%%/html/qdatetime-members.html +%%DOCSDIR%%/html/qdatetime-qt3.html +%%DOCSDIR%%/html/qdatetime.html +%%DOCSDIR%%/html/qdatetimeedit-members.html +%%DOCSDIR%%/html/qdatetimeedit.html +%%DOCSDIR%%/html/qdbus.html +%%DOCSDIR%%/html/qdbusabstractadaptor-members.html +%%DOCSDIR%%/html/qdbusabstractadaptor.html +%%DOCSDIR%%/html/qdbusabstractinterface-members.html +%%DOCSDIR%%/html/qdbusabstractinterface.html +%%DOCSDIR%%/html/qdbusadaptorexample.html +%%DOCSDIR%%/html/qdbusargument-members.html +%%DOCSDIR%%/html/qdbusargument.html +%%DOCSDIR%%/html/qdbusconnection-members.html +%%DOCSDIR%%/html/qdbusconnection.html +%%DOCSDIR%%/html/qdbusconnectioninterface-members.html +%%DOCSDIR%%/html/qdbusconnectioninterface.html +%%DOCSDIR%%/html/qdbuscontext-members.html +%%DOCSDIR%%/html/qdbuscontext.html +%%DOCSDIR%%/html/qdbusdeclaringsignals.html +%%DOCSDIR%%/html/qdbusdeclaringslots.html +%%DOCSDIR%%/html/qdbuserror-members.html +%%DOCSDIR%%/html/qdbuserror.html +%%DOCSDIR%%/html/qdbusinterface-members.html +%%DOCSDIR%%/html/qdbusinterface.html +%%DOCSDIR%%/html/qdbusmessage-members.html +%%DOCSDIR%%/html/qdbusmessage.html +%%DOCSDIR%%/html/qdbusobjectpath-members.html +%%DOCSDIR%%/html/qdbusobjectpath.html +%%DOCSDIR%%/html/qdbusreply-members.html +%%DOCSDIR%%/html/qdbusreply.html +%%DOCSDIR%%/html/qdbusserver-members.html +%%DOCSDIR%%/html/qdbusserver.html +%%DOCSDIR%%/html/qdbussignature-members.html +%%DOCSDIR%%/html/qdbussignature.html +%%DOCSDIR%%/html/qdbustypesystem.html +%%DOCSDIR%%/html/qdbusvariant-members.html +%%DOCSDIR%%/html/qdbusvariant.html +%%DOCSDIR%%/html/qdbusviewer.html +%%DOCSDIR%%/html/qdbusxml2cpp.html +%%DOCSDIR%%/html/qdesigneractioneditorinterface-members.html +%%DOCSDIR%%/html/qdesigneractioneditorinterface.html +%%DOCSDIR%%/html/qdesignercontainerextension-members.html +%%DOCSDIR%%/html/qdesignercontainerextension.html +%%DOCSDIR%%/html/qdesignercustomwidgetcollectioninterface-members.html +%%DOCSDIR%%/html/qdesignercustomwidgetcollectioninterface.html +%%DOCSDIR%%/html/qdesignercustomwidgetinterface-members.html +%%DOCSDIR%%/html/qdesignercustomwidgetinterface.html +%%DOCSDIR%%/html/qdesignerdynamicpropertysheetextension-members.html +%%DOCSDIR%%/html/qdesignerdynamicpropertysheetextension.html +%%DOCSDIR%%/html/qdesignerformeditorinterface-members.html +%%DOCSDIR%%/html/qdesignerformeditorinterface.html +%%DOCSDIR%%/html/qdesignerformwindowcursorinterface-members.html +%%DOCSDIR%%/html/qdesignerformwindowcursorinterface.html +%%DOCSDIR%%/html/qdesignerformwindowinterface-members.html +%%DOCSDIR%%/html/qdesignerformwindowinterface.html +%%DOCSDIR%%/html/qdesignerformwindowmanagerinterface-members.html +%%DOCSDIR%%/html/qdesignerformwindowmanagerinterface.html +%%DOCSDIR%%/html/qdesignermembersheetextension-members.html +%%DOCSDIR%%/html/qdesignermembersheetextension.html +%%DOCSDIR%%/html/qdesignerobjectinspectorinterface-members.html +%%DOCSDIR%%/html/qdesignerobjectinspectorinterface.html +%%DOCSDIR%%/html/qdesignerpropertyeditorinterface-members.html +%%DOCSDIR%%/html/qdesignerpropertyeditorinterface.html +%%DOCSDIR%%/html/qdesignerpropertysheetextension-members.html +%%DOCSDIR%%/html/qdesignerpropertysheetextension.html +%%DOCSDIR%%/html/qdesignertaskmenuextension-members.html +%%DOCSDIR%%/html/qdesignertaskmenuextension.html +%%DOCSDIR%%/html/qdesignerwidgetboxinterface-members.html +%%DOCSDIR%%/html/qdesignerwidgetboxinterface.html +%%DOCSDIR%%/html/qdesktopservices-members.html +%%DOCSDIR%%/html/qdesktopservices.html +%%DOCSDIR%%/html/qdesktopwidget-members.html +%%DOCSDIR%%/html/qdesktopwidget.html +%%DOCSDIR%%/html/qdial-members.html +%%DOCSDIR%%/html/qdial-qt3.html +%%DOCSDIR%%/html/qdial.html +%%DOCSDIR%%/html/qdialog-members.html +%%DOCSDIR%%/html/qdialog-obsolete.html +%%DOCSDIR%%/html/qdialog-qt3.html +%%DOCSDIR%%/html/qdialog.html +%%DOCSDIR%%/html/qdialogbuttonbox-members.html +%%DOCSDIR%%/html/qdialogbuttonbox.html +%%DOCSDIR%%/html/qdir-members.html +%%DOCSDIR%%/html/qdir-obsolete.html +%%DOCSDIR%%/html/qdir-qt3.html +%%DOCSDIR%%/html/qdir.html +%%DOCSDIR%%/html/qdiriterator-members.html +%%DOCSDIR%%/html/qdiriterator.html +%%DOCSDIR%%/html/qdirmodel-members.html +%%DOCSDIR%%/html/qdirmodel.html +%%DOCSDIR%%/html/qdockwidget-members.html +%%DOCSDIR%%/html/qdockwidget.html +%%DOCSDIR%%/html/qdomattr-members.html +%%DOCSDIR%%/html/qdomattr.html +%%DOCSDIR%%/html/qdomcdatasection-members.html +%%DOCSDIR%%/html/qdomcdatasection.html +%%DOCSDIR%%/html/qdomcharacterdata-members.html +%%DOCSDIR%%/html/qdomcharacterdata.html +%%DOCSDIR%%/html/qdomcomment-members.html +%%DOCSDIR%%/html/qdomcomment.html +%%DOCSDIR%%/html/qdomdocument-members.html +%%DOCSDIR%%/html/qdomdocument.html +%%DOCSDIR%%/html/qdomdocumentfragment-members.html +%%DOCSDIR%%/html/qdomdocumentfragment.html +%%DOCSDIR%%/html/qdomdocumenttype-members.html +%%DOCSDIR%%/html/qdomdocumenttype.html +%%DOCSDIR%%/html/qdomelement-members.html +%%DOCSDIR%%/html/qdomelement.html +%%DOCSDIR%%/html/qdomentity-members.html +%%DOCSDIR%%/html/qdomentity.html +%%DOCSDIR%%/html/qdomentityreference-members.html +%%DOCSDIR%%/html/qdomentityreference.html +%%DOCSDIR%%/html/qdomimplementation-members.html +%%DOCSDIR%%/html/qdomimplementation.html +%%DOCSDIR%%/html/qdomnamednodemap-members.html +%%DOCSDIR%%/html/qdomnamednodemap.html +%%DOCSDIR%%/html/qdomnode-members.html +%%DOCSDIR%%/html/qdomnode.html +%%DOCSDIR%%/html/qdomnodelist-members.html +%%DOCSDIR%%/html/qdomnodelist.html +%%DOCSDIR%%/html/qdomnotation-members.html +%%DOCSDIR%%/html/qdomnotation.html +%%DOCSDIR%%/html/qdomprocessinginstruction-members.html +%%DOCSDIR%%/html/qdomprocessinginstruction.html +%%DOCSDIR%%/html/qdomtext-members.html +%%DOCSDIR%%/html/qdomtext.html +%%DOCSDIR%%/html/qdoublespinbox-members.html +%%DOCSDIR%%/html/qdoublespinbox.html +%%DOCSDIR%%/html/qdoublevalidator-members.html +%%DOCSDIR%%/html/qdoublevalidator-qt3.html +%%DOCSDIR%%/html/qdoublevalidator.html +%%DOCSDIR%%/html/qdrag-members.html +%%DOCSDIR%%/html/qdrag-obsolete.html +%%DOCSDIR%%/html/qdrag.html +%%DOCSDIR%%/html/qdragenterevent-members.html +%%DOCSDIR%%/html/qdragenterevent.html +%%DOCSDIR%%/html/qdragleaveevent-members.html +%%DOCSDIR%%/html/qdragleaveevent.html +%%DOCSDIR%%/html/qdragmoveevent-members.html +%%DOCSDIR%%/html/qdragmoveevent-qt3.html +%%DOCSDIR%%/html/qdragmoveevent.html +%%DOCSDIR%%/html/qdropevent-members.html +%%DOCSDIR%%/html/qdropevent-qt3.html +%%DOCSDIR%%/html/qdropevent.html +%%DOCSDIR%%/html/qdynamicpropertychangeevent-members.html +%%DOCSDIR%%/html/qdynamicpropertychangeevent.html +%%DOCSDIR%%/html/qerrormessage-members.html +%%DOCSDIR%%/html/qerrormessage-qt3.html +%%DOCSDIR%%/html/qerrormessage.html +%%DOCSDIR%%/html/qevent-members.html +%%DOCSDIR%%/html/qevent.html +%%DOCSDIR%%/html/qeventloop-members.html +%%DOCSDIR%%/html/qeventloop.html +%%DOCSDIR%%/html/qexplicitlyshareddatapointer-members.html +%%DOCSDIR%%/html/qexplicitlyshareddatapointer.html +%%DOCSDIR%%/html/qextensionfactory-members.html +%%DOCSDIR%%/html/qextensionfactory.html +%%DOCSDIR%%/html/qextensionmanager-members.html +%%DOCSDIR%%/html/qextensionmanager.html +%%DOCSDIR%%/html/qfile-members.html +%%DOCSDIR%%/html/qfile-obsolete.html +%%DOCSDIR%%/html/qfile-qt3.html +%%DOCSDIR%%/html/qfile.html +%%DOCSDIR%%/html/qfiledialog-members.html +%%DOCSDIR%%/html/qfiledialog-qt3.html +%%DOCSDIR%%/html/qfiledialog.html +%%DOCSDIR%%/html/qfileiconprovider-members.html +%%DOCSDIR%%/html/qfileiconprovider.html +%%DOCSDIR%%/html/qfileinfo-members.html +%%DOCSDIR%%/html/qfileinfo-obsolete.html +%%DOCSDIR%%/html/qfileinfo-qt3.html +%%DOCSDIR%%/html/qfileinfo.html +%%DOCSDIR%%/html/qfileopenevent-members.html +%%DOCSDIR%%/html/qfileopenevent.html +%%DOCSDIR%%/html/qfilesystemmodel-members.html +%%DOCSDIR%%/html/qfilesystemmodel.html +%%DOCSDIR%%/html/qfilesystemwatcher-members.html +%%DOCSDIR%%/html/qfilesystemwatcher.html +%%DOCSDIR%%/html/qflag-members.html +%%DOCSDIR%%/html/qflag.html +%%DOCSDIR%%/html/qflags-members.html +%%DOCSDIR%%/html/qflags.html +%%DOCSDIR%%/html/qfocusevent-members.html +%%DOCSDIR%%/html/qfocusevent-qt3.html +%%DOCSDIR%%/html/qfocusevent.html +%%DOCSDIR%%/html/qfocusframe-members.html +%%DOCSDIR%%/html/qfocusframe.html +%%DOCSDIR%%/html/qfont-members.html +%%DOCSDIR%%/html/qfont-qt3.html +%%DOCSDIR%%/html/qfont.html +%%DOCSDIR%%/html/qfontcombobox-members.html +%%DOCSDIR%%/html/qfontcombobox.html +%%DOCSDIR%%/html/qfontdatabase-members.html +%%DOCSDIR%%/html/qfontdatabase.html +%%DOCSDIR%%/html/qfontdialog-members.html +%%DOCSDIR%%/html/qfontdialog.html +%%DOCSDIR%%/html/qfontinfo-members.html +%%DOCSDIR%%/html/qfontinfo.html +%%DOCSDIR%%/html/qfontmetrics-members.html +%%DOCSDIR%%/html/qfontmetrics-obsolete.html +%%DOCSDIR%%/html/qfontmetrics-qt3.html +%%DOCSDIR%%/html/qfontmetrics.html +%%DOCSDIR%%/html/qfontmetricsf-members.html +%%DOCSDIR%%/html/qfontmetricsf.html +%%DOCSDIR%%/html/qformbuilder-members.html +%%DOCSDIR%%/html/qformbuilder.html +%%DOCSDIR%%/html/qformlayout-members.html +%%DOCSDIR%%/html/qformlayout.html +%%DOCSDIR%%/html/qframe-members.html +%%DOCSDIR%%/html/qframe-qt3.html +%%DOCSDIR%%/html/qframe.html +%%DOCSDIR%%/html/qfsfileengine-members.html +%%DOCSDIR%%/html/qfsfileengine.html +%%DOCSDIR%%/html/qftp-members.html +%%DOCSDIR%%/html/qftp-qt3.html +%%DOCSDIR%%/html/qftp.html +%%DOCSDIR%%/html/qfuture-const-iterator-members.html +%%DOCSDIR%%/html/qfuture-const-iterator.html +%%DOCSDIR%%/html/qfuture-members.html +%%DOCSDIR%%/html/qfuture.html +%%DOCSDIR%%/html/qfutureiterator-members.html +%%DOCSDIR%%/html/qfutureiterator.html +%%DOCSDIR%%/html/qfuturesynchronizer-members.html +%%DOCSDIR%%/html/qfuturesynchronizer.html +%%DOCSDIR%%/html/qfuturewatcher-members.html +%%DOCSDIR%%/html/qfuturewatcher.html +%%DOCSDIR%%/html/qgenericargument-members.html +%%DOCSDIR%%/html/qgenericargument.html +%%DOCSDIR%%/html/qgenericreturnargument-members.html +%%DOCSDIR%%/html/qgenericreturnargument.html +%%DOCSDIR%%/html/qgl.html +%%DOCSDIR%%/html/qglcolormap-members.html +%%DOCSDIR%%/html/qglcolormap.html +%%DOCSDIR%%/html/qglcontext-members.html +%%DOCSDIR%%/html/qglcontext-obsolete.html +%%DOCSDIR%%/html/qglcontext.html +%%DOCSDIR%%/html/qglformat-members.html +%%DOCSDIR%%/html/qglformat.html +%%DOCSDIR%%/html/qglframebufferobject-members.html +%%DOCSDIR%%/html/qglframebufferobject.html +%%DOCSDIR%%/html/qglpixelbuffer-members.html +%%DOCSDIR%%/html/qglpixelbuffer.html +%%DOCSDIR%%/html/qglwidget-members.html +%%DOCSDIR%%/html/qglwidget-obsolete.html +%%DOCSDIR%%/html/qglwidget-qt3.html +%%DOCSDIR%%/html/qglwidget.html +%%DOCSDIR%%/html/qgradient-members.html +%%DOCSDIR%%/html/qgradient.html +%%DOCSDIR%%/html/qgraphicsellipseitem-members.html +%%DOCSDIR%%/html/qgraphicsellipseitem.html +%%DOCSDIR%%/html/qgraphicsgridlayout-members.html +%%DOCSDIR%%/html/qgraphicsgridlayout.html +%%DOCSDIR%%/html/qgraphicsitem-members.html +%%DOCSDIR%%/html/qgraphicsitem-obsolete.html +%%DOCSDIR%%/html/qgraphicsitem.html +%%DOCSDIR%%/html/qgraphicsitemanimation-members.html +%%DOCSDIR%%/html/qgraphicsitemanimation-obsolete.html +%%DOCSDIR%%/html/qgraphicsitemanimation.html +%%DOCSDIR%%/html/qgraphicsitemgroup-members.html +%%DOCSDIR%%/html/qgraphicsitemgroup.html +%%DOCSDIR%%/html/qgraphicslayout-members.html +%%DOCSDIR%%/html/qgraphicslayout.html +%%DOCSDIR%%/html/qgraphicslayoutitem-members.html +%%DOCSDIR%%/html/qgraphicslayoutitem.html +%%DOCSDIR%%/html/qgraphicslinearlayout-members.html +%%DOCSDIR%%/html/qgraphicslinearlayout.html +%%DOCSDIR%%/html/qgraphicslineitem-members.html +%%DOCSDIR%%/html/qgraphicslineitem.html +%%DOCSDIR%%/html/qgraphicspathitem-members.html +%%DOCSDIR%%/html/qgraphicspathitem.html +%%DOCSDIR%%/html/qgraphicspixmapitem-members.html +%%DOCSDIR%%/html/qgraphicspixmapitem.html +%%DOCSDIR%%/html/qgraphicspolygonitem-members.html +%%DOCSDIR%%/html/qgraphicspolygonitem.html +%%DOCSDIR%%/html/qgraphicsproxywidget-members.html +%%DOCSDIR%%/html/qgraphicsproxywidget.html +%%DOCSDIR%%/html/qgraphicsrectitem-members.html +%%DOCSDIR%%/html/qgraphicsrectitem.html +%%DOCSDIR%%/html/qgraphicsscene-members.html +%%DOCSDIR%%/html/qgraphicsscene.html +%%DOCSDIR%%/html/qgraphicsscenecontextmenuevent-members.html +%%DOCSDIR%%/html/qgraphicsscenecontextmenuevent.html +%%DOCSDIR%%/html/qgraphicsscenedragdropevent-members.html +%%DOCSDIR%%/html/qgraphicsscenedragdropevent.html +%%DOCSDIR%%/html/qgraphicssceneevent-members.html +%%DOCSDIR%%/html/qgraphicssceneevent.html +%%DOCSDIR%%/html/qgraphicsscenehelpevent-members.html +%%DOCSDIR%%/html/qgraphicsscenehelpevent.html +%%DOCSDIR%%/html/qgraphicsscenehoverevent-members.html +%%DOCSDIR%%/html/qgraphicsscenehoverevent.html +%%DOCSDIR%%/html/qgraphicsscenemouseevent-members.html +%%DOCSDIR%%/html/qgraphicsscenemouseevent.html +%%DOCSDIR%%/html/qgraphicsscenemoveevent-members.html +%%DOCSDIR%%/html/qgraphicsscenemoveevent.html +%%DOCSDIR%%/html/qgraphicssceneresizeevent-members.html +%%DOCSDIR%%/html/qgraphicssceneresizeevent.html +%%DOCSDIR%%/html/qgraphicsscenewheelevent-members.html +%%DOCSDIR%%/html/qgraphicsscenewheelevent.html +%%DOCSDIR%%/html/qgraphicssimpletextitem-members.html +%%DOCSDIR%%/html/qgraphicssimpletextitem.html +%%DOCSDIR%%/html/qgraphicssvgitem-members.html +%%DOCSDIR%%/html/qgraphicssvgitem-obsolete.html +%%DOCSDIR%%/html/qgraphicssvgitem.html +%%DOCSDIR%%/html/qgraphicstextitem-members.html +%%DOCSDIR%%/html/qgraphicstextitem.html +%%DOCSDIR%%/html/qgraphicsview-members.html +%%DOCSDIR%%/html/qgraphicsview.html +%%DOCSDIR%%/html/qgraphicswidget-members.html +%%DOCSDIR%%/html/qgraphicswidget.html +%%DOCSDIR%%/html/qgridlayout-members.html +%%DOCSDIR%%/html/qgridlayout-qt3.html +%%DOCSDIR%%/html/qgridlayout.html +%%DOCSDIR%%/html/qgroupbox-members.html +%%DOCSDIR%%/html/qgroupbox-qt3.html +%%DOCSDIR%%/html/qgroupbox.html +%%DOCSDIR%%/html/qhash-const-iterator-members.html +%%DOCSDIR%%/html/qhash-const-iterator.html +%%DOCSDIR%%/html/qhash-iterator-members.html +%%DOCSDIR%%/html/qhash-iterator.html +%%DOCSDIR%%/html/qhash-members.html +%%DOCSDIR%%/html/qhash.html +%%DOCSDIR%%/html/qhashiterator-members.html +%%DOCSDIR%%/html/qhashiterator.html +%%DOCSDIR%%/html/qhboxlayout-members.html +%%DOCSDIR%%/html/qhboxlayout-qt3.html +%%DOCSDIR%%/html/qhboxlayout.html +%%DOCSDIR%%/html/qheaderview-members.html +%%DOCSDIR%%/html/qheaderview.html +%%DOCSDIR%%/html/qhelpcontentitem-members.html +%%DOCSDIR%%/html/qhelpcontentitem.html +%%DOCSDIR%%/html/qhelpcontentmodel-members.html +%%DOCSDIR%%/html/qhelpcontentmodel.html +%%DOCSDIR%%/html/qhelpcontentwidget-members.html +%%DOCSDIR%%/html/qhelpcontentwidget.html +%%DOCSDIR%%/html/qhelpengine-members.html +%%DOCSDIR%%/html/qhelpengine.html +%%DOCSDIR%%/html/qhelpenginecore-members.html +%%DOCSDIR%%/html/qhelpenginecore.html +%%DOCSDIR%%/html/qhelpevent-members.html +%%DOCSDIR%%/html/qhelpevent.html +%%DOCSDIR%%/html/qhelpindexmodel-members.html +%%DOCSDIR%%/html/qhelpindexmodel.html +%%DOCSDIR%%/html/qhelpindexwidget-members.html +%%DOCSDIR%%/html/qhelpindexwidget.html +%%DOCSDIR%%/html/qhelpsearchengine-members.html +%%DOCSDIR%%/html/qhelpsearchengine.html +%%DOCSDIR%%/html/qhelpsearchquery-members.html +%%DOCSDIR%%/html/qhelpsearchquery.html +%%DOCSDIR%%/html/qhelpsearchquerywidget-members.html +%%DOCSDIR%%/html/qhelpsearchquerywidget.html +%%DOCSDIR%%/html/qhelpsearchresultwidget-members.html +%%DOCSDIR%%/html/qhelpsearchresultwidget.html +%%DOCSDIR%%/html/qhideevent-members.html +%%DOCSDIR%%/html/qhideevent.html +%%DOCSDIR%%/html/qhostaddress-members.html +%%DOCSDIR%%/html/qhostaddress-qt3.html +%%DOCSDIR%%/html/qhostaddress.html +%%DOCSDIR%%/html/qhostinfo-members.html +%%DOCSDIR%%/html/qhostinfo.html +%%DOCSDIR%%/html/qhoverevent-members.html +%%DOCSDIR%%/html/qhoverevent.html +%%DOCSDIR%%/html/qhttp-members.html +%%DOCSDIR%%/html/qhttp-obsolete.html +%%DOCSDIR%%/html/qhttp-qt3.html +%%DOCSDIR%%/html/qhttp.html +%%DOCSDIR%%/html/qhttpheader-members.html +%%DOCSDIR%%/html/qhttpheader.html +%%DOCSDIR%%/html/qhttprequestheader-members.html +%%DOCSDIR%%/html/qhttprequestheader.html +%%DOCSDIR%%/html/qhttpresponseheader-members.html +%%DOCSDIR%%/html/qhttpresponseheader.html +%%DOCSDIR%%/html/qicon-members.html +%%DOCSDIR%%/html/qicon-obsolete.html +%%DOCSDIR%%/html/qicon-qt3.html +%%DOCSDIR%%/html/qicon.html +%%DOCSDIR%%/html/qicondragevent-members.html +%%DOCSDIR%%/html/qicondragevent.html +%%DOCSDIR%%/html/qiconengine-members.html +%%DOCSDIR%%/html/qiconengine.html +%%DOCSDIR%%/html/qiconengineplugin-members.html +%%DOCSDIR%%/html/qiconengineplugin.html +%%DOCSDIR%%/html/qiconenginepluginv2-members.html +%%DOCSDIR%%/html/qiconenginepluginv2.html +%%DOCSDIR%%/html/qiconenginev2-members.html +%%DOCSDIR%%/html/qiconenginev2.html +%%DOCSDIR%%/html/qimage-members.html +%%DOCSDIR%%/html/qimage-obsolete.html +%%DOCSDIR%%/html/qimage-qt3.html +%%DOCSDIR%%/html/qimage.html +%%DOCSDIR%%/html/qimageiohandler-members.html +%%DOCSDIR%%/html/qimageiohandler-obsolete.html +%%DOCSDIR%%/html/qimageiohandler.html +%%DOCSDIR%%/html/qimageioplugin-members.html +%%DOCSDIR%%/html/qimageioplugin.html +%%DOCSDIR%%/html/qimagereader-members.html +%%DOCSDIR%%/html/qimagereader.html +%%DOCSDIR%%/html/qimagewriter-members.html +%%DOCSDIR%%/html/qimagewriter-obsolete.html +%%DOCSDIR%%/html/qimagewriter.html +%%DOCSDIR%%/html/qinputcontext-members.html +%%DOCSDIR%%/html/qinputcontext.html +%%DOCSDIR%%/html/qinputcontextfactory-members.html +%%DOCSDIR%%/html/qinputcontextfactory.html +%%DOCSDIR%%/html/qinputcontextplugin-members.html +%%DOCSDIR%%/html/qinputcontextplugin.html +%%DOCSDIR%%/html/qinputdialog-members.html +%%DOCSDIR%%/html/qinputdialog-qt3.html +%%DOCSDIR%%/html/qinputdialog.html +%%DOCSDIR%%/html/qinputevent-members.html +%%DOCSDIR%%/html/qinputevent.html +%%DOCSDIR%%/html/qinputmethodevent-attribute-members.html +%%DOCSDIR%%/html/qinputmethodevent-attribute.html +%%DOCSDIR%%/html/qinputmethodevent-members.html +%%DOCSDIR%%/html/qinputmethodevent.html +%%DOCSDIR%%/html/qintvalidator-members.html +%%DOCSDIR%%/html/qintvalidator-qt3.html +%%DOCSDIR%%/html/qintvalidator.html +%%DOCSDIR%%/html/qiodevice-members.html +%%DOCSDIR%%/html/qiodevice-qt3.html +%%DOCSDIR%%/html/qiodevice.html +%%DOCSDIR%%/html/qitemdelegate-members.html +%%DOCSDIR%%/html/qitemdelegate.html +%%DOCSDIR%%/html/qitemeditorcreator-members.html +%%DOCSDIR%%/html/qitemeditorcreator.html +%%DOCSDIR%%/html/qitemeditorcreatorbase-members.html +%%DOCSDIR%%/html/qitemeditorcreatorbase.html +%%DOCSDIR%%/html/qitemeditorfactory-members.html +%%DOCSDIR%%/html/qitemeditorfactory.html +%%DOCSDIR%%/html/qitemselection-members.html +%%DOCSDIR%%/html/qitemselection.html +%%DOCSDIR%%/html/qitemselectionmodel-members.html +%%DOCSDIR%%/html/qitemselectionmodel.html +%%DOCSDIR%%/html/qitemselectionrange-members.html +%%DOCSDIR%%/html/qitemselectionrange-obsolete.html +%%DOCSDIR%%/html/qitemselectionrange.html +%%DOCSDIR%%/html/qkeyevent-members.html +%%DOCSDIR%%/html/qkeyevent-qt3.html +%%DOCSDIR%%/html/qkeyevent.html +%%DOCSDIR%%/html/qkeysequence-members.html +%%DOCSDIR%%/html/qkeysequence-obsolete.html +%%DOCSDIR%%/html/qkeysequence.html +%%DOCSDIR%%/html/qlabel-members.html +%%DOCSDIR%%/html/qlabel-qt3.html +%%DOCSDIR%%/html/qlabel.html +%%DOCSDIR%%/html/qlatin1char-members.html +%%DOCSDIR%%/html/qlatin1char.html +%%DOCSDIR%%/html/qlatin1string-members.html +%%DOCSDIR%%/html/qlatin1string.html +%%DOCSDIR%%/html/qlayout-members.html +%%DOCSDIR%%/html/qlayout-obsolete.html +%%DOCSDIR%%/html/qlayout-qt3.html +%%DOCSDIR%%/html/qlayout.html +%%DOCSDIR%%/html/qlayoutitem-members.html +%%DOCSDIR%%/html/qlayoutitem.html +%%DOCSDIR%%/html/qlcdnumber-members.html +%%DOCSDIR%%/html/qlcdnumber-qt3.html +%%DOCSDIR%%/html/qlcdnumber.html +%%DOCSDIR%%/html/qlibrary-members.html +%%DOCSDIR%%/html/qlibrary-qt3.html +%%DOCSDIR%%/html/qlibrary.html +%%DOCSDIR%%/html/qlibraryinfo-members.html +%%DOCSDIR%%/html/qlibraryinfo.html +%%DOCSDIR%%/html/qline-members.html +%%DOCSDIR%%/html/qline.html +%%DOCSDIR%%/html/qlineargradient-members.html +%%DOCSDIR%%/html/qlineargradient.html +%%DOCSDIR%%/html/qlineedit-members.html +%%DOCSDIR%%/html/qlineedit-qt3.html +%%DOCSDIR%%/html/qlineedit.html +%%DOCSDIR%%/html/qlinef-members.html +%%DOCSDIR%%/html/qlinef-obsolete.html +%%DOCSDIR%%/html/qlinef.html +%%DOCSDIR%%/html/qlinkedlist-const-iterator-members.html +%%DOCSDIR%%/html/qlinkedlist-const-iterator.html +%%DOCSDIR%%/html/qlinkedlist-iterator-members.html +%%DOCSDIR%%/html/qlinkedlist-iterator.html +%%DOCSDIR%%/html/qlinkedlist-members.html +%%DOCSDIR%%/html/qlinkedlist-qt3.html +%%DOCSDIR%%/html/qlinkedlist.html +%%DOCSDIR%%/html/qlinkedlistiterator-members.html +%%DOCSDIR%%/html/qlinkedlistiterator.html +%%DOCSDIR%%/html/qlist-const-iterator-members.html +%%DOCSDIR%%/html/qlist-const-iterator.html +%%DOCSDIR%%/html/qlist-iterator-members.html +%%DOCSDIR%%/html/qlist-iterator.html +%%DOCSDIR%%/html/qlist-members.html +%%DOCSDIR%%/html/qlist-qt3.html +%%DOCSDIR%%/html/qlist.html +%%DOCSDIR%%/html/qlistiterator-members.html +%%DOCSDIR%%/html/qlistiterator.html +%%DOCSDIR%%/html/qlistview-members.html +%%DOCSDIR%%/html/qlistview.html +%%DOCSDIR%%/html/qlistwidget-members.html +%%DOCSDIR%%/html/qlistwidget-obsolete.html +%%DOCSDIR%%/html/qlistwidget.html +%%DOCSDIR%%/html/qlistwidgetitem-members.html +%%DOCSDIR%%/html/qlistwidgetitem-obsolete.html +%%DOCSDIR%%/html/qlistwidgetitem.html +%%DOCSDIR%%/html/qlocale-data-members.html +%%DOCSDIR%%/html/qlocale-data.html +%%DOCSDIR%%/html/qlocale-members.html +%%DOCSDIR%%/html/qlocale.html +%%DOCSDIR%%/html/qlocalserver-members.html +%%DOCSDIR%%/html/qlocalserver.html +%%DOCSDIR%%/html/qlocalsocket-members.html +%%DOCSDIR%%/html/qlocalsocket.html +%%DOCSDIR%%/html/qmainwindow-members.html +%%DOCSDIR%%/html/qmainwindow-qt3.html +%%DOCSDIR%%/html/qmainwindow.html +%%DOCSDIR%%/html/qmake-advanced-usage.html +%%DOCSDIR%%/html/qmake-common-projects.html +%%DOCSDIR%%/html/qmake-environment-reference.html +%%DOCSDIR%%/html/qmake-function-reference.html +%%DOCSDIR%%/html/qmake-manual.html +%%DOCSDIR%%/html/qmake-platform-notes.html +%%DOCSDIR%%/html/qmake-precompiledheaders.html +%%DOCSDIR%%/html/qmake-project-files.html +%%DOCSDIR%%/html/qmake-reference.html +%%DOCSDIR%%/html/qmake-running.html +%%DOCSDIR%%/html/qmake-tutorial.html +%%DOCSDIR%%/html/qmake-using.html +%%DOCSDIR%%/html/qmake-variable-reference.html +%%DOCSDIR%%/html/qmake.dcf +%%DOCSDIR%%/html/qmap-const-iterator-members.html +%%DOCSDIR%%/html/qmap-const-iterator-qt3.html +%%DOCSDIR%%/html/qmap-const-iterator.html +%%DOCSDIR%%/html/qmap-iterator-members.html +%%DOCSDIR%%/html/qmap-iterator-qt3.html +%%DOCSDIR%%/html/qmap-iterator.html +%%DOCSDIR%%/html/qmap-members.html +%%DOCSDIR%%/html/qmap-qt3.html +%%DOCSDIR%%/html/qmap.html +%%DOCSDIR%%/html/qmapiterator-members.html +%%DOCSDIR%%/html/qmapiterator.html +%%DOCSDIR%%/html/qmatrix-members.html +%%DOCSDIR%%/html/qmatrix-qt3.html +%%DOCSDIR%%/html/qmatrix.html +%%DOCSDIR%%/html/qmdiarea-members.html +%%DOCSDIR%%/html/qmdiarea.html +%%DOCSDIR%%/html/qmdisubwindow-members.html +%%DOCSDIR%%/html/qmdisubwindow.html +%%DOCSDIR%%/html/qmenu-members.html +%%DOCSDIR%%/html/qmenu-qt3.html +%%DOCSDIR%%/html/qmenu.html +%%DOCSDIR%%/html/qmenubar-members.html +%%DOCSDIR%%/html/qmenubar-qt3.html +%%DOCSDIR%%/html/qmenubar.html +%%DOCSDIR%%/html/qmenuitem-members.html +%%DOCSDIR%%/html/qmenuitem-qt3.html +%%DOCSDIR%%/html/qmenuitem.html +%%DOCSDIR%%/html/qmessagebox-members.html +%%DOCSDIR%%/html/qmessagebox-obsolete.html +%%DOCSDIR%%/html/qmessagebox-qt3.html +%%DOCSDIR%%/html/qmessagebox.html +%%DOCSDIR%%/html/qmetaclassinfo-members.html +%%DOCSDIR%%/html/qmetaclassinfo.html +%%DOCSDIR%%/html/qmetaenum-members.html +%%DOCSDIR%%/html/qmetaenum.html +%%DOCSDIR%%/html/qmetamethod-members.html +%%DOCSDIR%%/html/qmetamethod.html +%%DOCSDIR%%/html/qmetaobject-members.html +%%DOCSDIR%%/html/qmetaobject.html +%%DOCSDIR%%/html/qmetaproperty-members.html +%%DOCSDIR%%/html/qmetaproperty-obsolete.html +%%DOCSDIR%%/html/qmetaproperty.html +%%DOCSDIR%%/html/qmetatype-members.html +%%DOCSDIR%%/html/qmetatype.html +%%DOCSDIR%%/html/qmimedata-members.html +%%DOCSDIR%%/html/qmimedata.html +%%DOCSDIR%%/html/qmimesource-members.html +%%DOCSDIR%%/html/qmimesource.html +%%DOCSDIR%%/html/qmodelindex-members.html +%%DOCSDIR%%/html/qmodelindex.html +%%DOCSDIR%%/html/qmotifstyle-members.html +%%DOCSDIR%%/html/qmotifstyle.html +%%DOCSDIR%%/html/qmouseevent-members.html +%%DOCSDIR%%/html/qmouseevent-qt3.html +%%DOCSDIR%%/html/qmouseevent.html +%%DOCSDIR%%/html/qmoveevent-members.html +%%DOCSDIR%%/html/qmoveevent.html +%%DOCSDIR%%/html/qmovie-members.html +%%DOCSDIR%%/html/qmovie-qt3.html +%%DOCSDIR%%/html/qmovie.html +%%DOCSDIR%%/html/qmultihash-members.html +%%DOCSDIR%%/html/qmultihash.html +%%DOCSDIR%%/html/qmultimap-members.html +%%DOCSDIR%%/html/qmultimap.html +%%DOCSDIR%%/html/qmutablehashiterator-members.html +%%DOCSDIR%%/html/qmutablehashiterator.html +%%DOCSDIR%%/html/qmutablelinkedlistiterator-members.html +%%DOCSDIR%%/html/qmutablelinkedlistiterator.html +%%DOCSDIR%%/html/qmutablelistiterator-members.html +%%DOCSDIR%%/html/qmutablelistiterator.html +%%DOCSDIR%%/html/qmutablemapiterator-members.html +%%DOCSDIR%%/html/qmutablemapiterator.html +%%DOCSDIR%%/html/qmutablesetiterator-members.html +%%DOCSDIR%%/html/qmutablesetiterator.html +%%DOCSDIR%%/html/qmutablevectoriterator-members.html +%%DOCSDIR%%/html/qmutablevectoriterator.html +%%DOCSDIR%%/html/qmutex-members.html +%%DOCSDIR%%/html/qmutex-qt3.html +%%DOCSDIR%%/html/qmutex.html +%%DOCSDIR%%/html/qmutexlocker-members.html +%%DOCSDIR%%/html/qmutexlocker.html +%%DOCSDIR%%/html/qnetworkaccessmanager-members.html +%%DOCSDIR%%/html/qnetworkaccessmanager.html +%%DOCSDIR%%/html/qnetworkaddressentry-members.html +%%DOCSDIR%%/html/qnetworkaddressentry.html +%%DOCSDIR%%/html/qnetworkcookie-members.html +%%DOCSDIR%%/html/qnetworkcookie.html +%%DOCSDIR%%/html/qnetworkcookiejar-members.html +%%DOCSDIR%%/html/qnetworkcookiejar.html +%%DOCSDIR%%/html/qnetworkinterface-members.html +%%DOCSDIR%%/html/qnetworkinterface.html +%%DOCSDIR%%/html/qnetworkproxy-members.html +%%DOCSDIR%%/html/qnetworkproxy.html +%%DOCSDIR%%/html/qnetworkreply-members.html +%%DOCSDIR%%/html/qnetworkreply.html +%%DOCSDIR%%/html/qnetworkrequest-members.html +%%DOCSDIR%%/html/qnetworkrequest.html +%%DOCSDIR%%/html/qobject-members.html +%%DOCSDIR%%/html/qobject-qt3.html +%%DOCSDIR%%/html/qobject.html +%%DOCSDIR%%/html/qobjectcleanuphandler-members.html +%%DOCSDIR%%/html/qobjectcleanuphandler.html +%%DOCSDIR%%/html/qpagesetupdialog-members.html +%%DOCSDIR%%/html/qpagesetupdialog.html +%%DOCSDIR%%/html/qpaintdevice-members.html +%%DOCSDIR%%/html/qpaintdevice-qt3.html +%%DOCSDIR%%/html/qpaintdevice.html +%%DOCSDIR%%/html/qpaintengine-members.html +%%DOCSDIR%%/html/qpaintengine.html +%%DOCSDIR%%/html/qpaintenginestate-members.html +%%DOCSDIR%%/html/qpaintenginestate.html +%%DOCSDIR%%/html/qpainter-members.html +%%DOCSDIR%%/html/qpainter-obsolete.html +%%DOCSDIR%%/html/qpainter-qt3.html +%%DOCSDIR%%/html/qpainter.html +%%DOCSDIR%%/html/qpainterpath-element-members.html +%%DOCSDIR%%/html/qpainterpath-element.html +%%DOCSDIR%%/html/qpainterpath-members.html +%%DOCSDIR%%/html/qpainterpath-obsolete.html +%%DOCSDIR%%/html/qpainterpath.html +%%DOCSDIR%%/html/qpainterpathstroker-members.html +%%DOCSDIR%%/html/qpainterpathstroker.html +%%DOCSDIR%%/html/qpaintevent-members.html +%%DOCSDIR%%/html/qpaintevent-qt3.html +%%DOCSDIR%%/html/qpaintevent.html +%%DOCSDIR%%/html/qpair-members.html +%%DOCSDIR%%/html/qpair.html +%%DOCSDIR%%/html/qpalette-members.html +%%DOCSDIR%%/html/qpalette-obsolete.html +%%DOCSDIR%%/html/qpalette-qt3.html +%%DOCSDIR%%/html/qpalette.html +%%DOCSDIR%%/html/qpen-members.html +%%DOCSDIR%%/html/qpen.html +%%DOCSDIR%%/html/qpersistentmodelindex-members.html +%%DOCSDIR%%/html/qpersistentmodelindex.html +%%DOCSDIR%%/html/qpicture-members.html +%%DOCSDIR%%/html/qpicture-obsolete.html +%%DOCSDIR%%/html/qpicture-qt3.html +%%DOCSDIR%%/html/qpicture.html +%%DOCSDIR%%/html/qpictureformatplugin-members.html +%%DOCSDIR%%/html/qpictureformatplugin.html +%%DOCSDIR%%/html/qpictureio-members.html +%%DOCSDIR%%/html/qpictureio.html +%%DOCSDIR%%/html/qpixmap-members.html +%%DOCSDIR%%/html/qpixmap-obsolete.html +%%DOCSDIR%%/html/qpixmap-qt3.html +%%DOCSDIR%%/html/qpixmap.html +%%DOCSDIR%%/html/qpixmapcache-members.html +%%DOCSDIR%%/html/qpixmapcache-obsolete.html +%%DOCSDIR%%/html/qpixmapcache.html +%%DOCSDIR%%/html/qplaintextdocumentlayout-members.html +%%DOCSDIR%%/html/qplaintextdocumentlayout.html +%%DOCSDIR%%/html/qplaintextedit-members.html +%%DOCSDIR%%/html/qplaintextedit.html +%%DOCSDIR%%/html/qplastiquestyle-members.html +%%DOCSDIR%%/html/qplastiquestyle.html +%%DOCSDIR%%/html/qpluginloader-members.html +%%DOCSDIR%%/html/qpluginloader.html +%%DOCSDIR%%/html/qpoint-members.html +%%DOCSDIR%%/html/qpoint.html +%%DOCSDIR%%/html/qpointer-members.html +%%DOCSDIR%%/html/qpointer.html +%%DOCSDIR%%/html/qpointf-members.html +%%DOCSDIR%%/html/qpointf.html +%%DOCSDIR%%/html/qpolygon-members.html +%%DOCSDIR%%/html/qpolygon.html +%%DOCSDIR%%/html/qpolygonf-members.html +%%DOCSDIR%%/html/qpolygonf.html +%%DOCSDIR%%/html/qprintdialog-members.html +%%DOCSDIR%%/html/qprintdialog.html +%%DOCSDIR%%/html/qprintengine-members.html +%%DOCSDIR%%/html/qprintengine.html +%%DOCSDIR%%/html/qprinter-members.html +%%DOCSDIR%%/html/qprinter-obsolete.html +%%DOCSDIR%%/html/qprinter-qt3.html +%%DOCSDIR%%/html/qprinter.html +%%DOCSDIR%%/html/qprinterinfo-members.html +%%DOCSDIR%%/html/qprinterinfo.html +%%DOCSDIR%%/html/qprintpreviewdialog-members.html +%%DOCSDIR%%/html/qprintpreviewdialog.html +%%DOCSDIR%%/html/qprintpreviewwidget-members.html +%%DOCSDIR%%/html/qprintpreviewwidget.html +%%DOCSDIR%%/html/qprocess-members.html +%%DOCSDIR%%/html/qprocess-obsolete.html +%%DOCSDIR%%/html/qprocess.html +%%DOCSDIR%%/html/qprogressbar-members.html +%%DOCSDIR%%/html/qprogressbar.html +%%DOCSDIR%%/html/qprogressdialog-members.html +%%DOCSDIR%%/html/qprogressdialog.html +%%DOCSDIR%%/html/qproxymodel-members.html +%%DOCSDIR%%/html/qproxymodel.html +%%DOCSDIR%%/html/qpushbutton-members.html +%%DOCSDIR%%/html/qpushbutton-qt3.html +%%DOCSDIR%%/html/qpushbutton.html +%%DOCSDIR%%/html/qqueue-members.html +%%DOCSDIR%%/html/qqueue.html +%%DOCSDIR%%/html/qradialgradient-members.html +%%DOCSDIR%%/html/qradialgradient.html +%%DOCSDIR%%/html/qradiobutton-members.html +%%DOCSDIR%%/html/qradiobutton-qt3.html +%%DOCSDIR%%/html/qradiobutton.html +%%DOCSDIR%%/html/qrasterpaintengine-members.html +%%DOCSDIR%%/html/qrasterpaintengine.html +%%DOCSDIR%%/html/qreadlocker-members.html +%%DOCSDIR%%/html/qreadlocker.html +%%DOCSDIR%%/html/qreadwritelock-members.html +%%DOCSDIR%%/html/qreadwritelock.html +%%DOCSDIR%%/html/qrect-members.html +%%DOCSDIR%%/html/qrect-obsolete.html +%%DOCSDIR%%/html/qrect-qt3.html +%%DOCSDIR%%/html/qrect.html +%%DOCSDIR%%/html/qrectf-members.html +%%DOCSDIR%%/html/qrectf-obsolete.html +%%DOCSDIR%%/html/qrectf.html +%%DOCSDIR%%/html/qregexp-members.html +%%DOCSDIR%%/html/qregexp-qt3.html +%%DOCSDIR%%/html/qregexp.html +%%DOCSDIR%%/html/qregexpvalidator-members.html +%%DOCSDIR%%/html/qregexpvalidator-qt3.html +%%DOCSDIR%%/html/qregexpvalidator.html +%%DOCSDIR%%/html/qregion-members.html +%%DOCSDIR%%/html/qregion-obsolete.html +%%DOCSDIR%%/html/qregion-qt3.html +%%DOCSDIR%%/html/qregion.html +%%DOCSDIR%%/html/qresizeevent-members.html +%%DOCSDIR%%/html/qresizeevent.html +%%DOCSDIR%%/html/qresource-members.html +%%DOCSDIR%%/html/qresource-obsolete.html +%%DOCSDIR%%/html/qresource.html +%%DOCSDIR%%/html/qrubberband-members.html +%%DOCSDIR%%/html/qrubberband.html +%%DOCSDIR%%/html/qrunnable-members.html +%%DOCSDIR%%/html/qrunnable.html +%%DOCSDIR%%/html/qscriptable-members.html +%%DOCSDIR%%/html/qscriptable.html +%%DOCSDIR%%/html/qscriptclass-members.html +%%DOCSDIR%%/html/qscriptclass.html +%%DOCSDIR%%/html/qscriptclasspropertyiterator-members.html +%%DOCSDIR%%/html/qscriptclasspropertyiterator.html +%%DOCSDIR%%/html/qscriptcontext-members.html +%%DOCSDIR%%/html/qscriptcontext.html +%%DOCSDIR%%/html/qscriptcontextinfo-members.html +%%DOCSDIR%%/html/qscriptcontextinfo.html +%%DOCSDIR%%/html/qscriptengine-members.html +%%DOCSDIR%%/html/qscriptengine.html +%%DOCSDIR%%/html/qscriptengineagent-members.html +%%DOCSDIR%%/html/qscriptengineagent.html +%%DOCSDIR%%/html/qscriptextensionplugin-members.html +%%DOCSDIR%%/html/qscriptextensionplugin.html +%%DOCSDIR%%/html/qscriptstring-members.html +%%DOCSDIR%%/html/qscriptstring.html +%%DOCSDIR%%/html/qscriptvalue-members.html +%%DOCSDIR%%/html/qscriptvalue.html +%%DOCSDIR%%/html/qscriptvalueiterator-members.html +%%DOCSDIR%%/html/qscriptvalueiterator.html +%%DOCSDIR%%/html/qscrollarea-members.html +%%DOCSDIR%%/html/qscrollarea.html +%%DOCSDIR%%/html/qscrollbar-members.html +%%DOCSDIR%%/html/qscrollbar-qt3.html +%%DOCSDIR%%/html/qscrollbar.html +%%DOCSDIR%%/html/qsemaphore-members.html +%%DOCSDIR%%/html/qsemaphore.html +%%DOCSDIR%%/html/qsessionmanager-members.html +%%DOCSDIR%%/html/qsessionmanager.html +%%DOCSDIR%%/html/qset-const-iterator-members.html +%%DOCSDIR%%/html/qset-const-iterator.html +%%DOCSDIR%%/html/qset-iterator-members.html +%%DOCSDIR%%/html/qset-iterator.html +%%DOCSDIR%%/html/qset-members.html +%%DOCSDIR%%/html/qset.html +%%DOCSDIR%%/html/qsetiterator-members.html +%%DOCSDIR%%/html/qsetiterator.html +%%DOCSDIR%%/html/qsettings-members.html +%%DOCSDIR%%/html/qsettings-obsolete.html +%%DOCSDIR%%/html/qsettings-qt3.html +%%DOCSDIR%%/html/qsettings.html +%%DOCSDIR%%/html/qshareddata-members.html +%%DOCSDIR%%/html/qshareddata.html +%%DOCSDIR%%/html/qshareddatapointer-members.html +%%DOCSDIR%%/html/qshareddatapointer.html +%%DOCSDIR%%/html/qsharedmemory-members.html +%%DOCSDIR%%/html/qsharedmemory.html +%%DOCSDIR%%/html/qshortcut-members.html +%%DOCSDIR%%/html/qshortcut.html +%%DOCSDIR%%/html/qshortcutevent-members.html +%%DOCSDIR%%/html/qshortcutevent.html +%%DOCSDIR%%/html/qshowevent-members.html +%%DOCSDIR%%/html/qshowevent.html +%%DOCSDIR%%/html/qsignalmapper-members.html +%%DOCSDIR%%/html/qsignalmapper-qt3.html +%%DOCSDIR%%/html/qsignalmapper.html +%%DOCSDIR%%/html/qsignalspy-members.html +%%DOCSDIR%%/html/qsignalspy.html +%%DOCSDIR%%/html/qsimplexmlnodemodel-members.html +%%DOCSDIR%%/html/qsimplexmlnodemodel.html +%%DOCSDIR%%/html/qsize-members.html +%%DOCSDIR%%/html/qsize.html +%%DOCSDIR%%/html/qsizef-members.html +%%DOCSDIR%%/html/qsizef.html +%%DOCSDIR%%/html/qsizegrip-members.html +%%DOCSDIR%%/html/qsizegrip-qt3.html +%%DOCSDIR%%/html/qsizegrip.html +%%DOCSDIR%%/html/qsizepolicy-members.html +%%DOCSDIR%%/html/qsizepolicy-qt3.html +%%DOCSDIR%%/html/qsizepolicy.html +%%DOCSDIR%%/html/qslider-members.html +%%DOCSDIR%%/html/qslider-qt3.html +%%DOCSDIR%%/html/qslider.html +%%DOCSDIR%%/html/qsocketnotifier-members.html +%%DOCSDIR%%/html/qsocketnotifier-qt3.html +%%DOCSDIR%%/html/qsocketnotifier.html +%%DOCSDIR%%/html/qsortfilterproxymodel-members.html +%%DOCSDIR%%/html/qsortfilterproxymodel-obsolete.html +%%DOCSDIR%%/html/qsortfilterproxymodel.html +%%DOCSDIR%%/html/qsound-members.html +%%DOCSDIR%%/html/qsound-qt3.html +%%DOCSDIR%%/html/qsound.html +%%DOCSDIR%%/html/qsourcelocation-members.html +%%DOCSDIR%%/html/qsourcelocation.html +%%DOCSDIR%%/html/qspaceritem-members.html +%%DOCSDIR%%/html/qspaceritem.html +%%DOCSDIR%%/html/qspinbox-members.html +%%DOCSDIR%%/html/qspinbox-qt3.html +%%DOCSDIR%%/html/qspinbox.html +%%DOCSDIR%%/html/qsplashscreen-members.html +%%DOCSDIR%%/html/qsplashscreen-qt3.html +%%DOCSDIR%%/html/qsplashscreen.html +%%DOCSDIR%%/html/qsplitter-members.html +%%DOCSDIR%%/html/qsplitter-obsolete.html +%%DOCSDIR%%/html/qsplitter-qt3.html +%%DOCSDIR%%/html/qsplitter.html +%%DOCSDIR%%/html/qsplitterhandle-members.html +%%DOCSDIR%%/html/qsplitterhandle.html +%%DOCSDIR%%/html/qsql-qt3.html +%%DOCSDIR%%/html/qsql.html +%%DOCSDIR%%/html/qsqldatabase-members.html +%%DOCSDIR%%/html/qsqldatabase-qt3.html +%%DOCSDIR%%/html/qsqldatabase.html +%%DOCSDIR%%/html/qsqldriver-members.html +%%DOCSDIR%%/html/qsqldriver-qt3.html +%%DOCSDIR%%/html/qsqldriver.html +%%DOCSDIR%%/html/qsqldrivercreator-members.html +%%DOCSDIR%%/html/qsqldrivercreator.html +%%DOCSDIR%%/html/qsqldrivercreatorbase-members.html +%%DOCSDIR%%/html/qsqldrivercreatorbase.html +%%DOCSDIR%%/html/qsqldriverplugin-members.html +%%DOCSDIR%%/html/qsqldriverplugin.html +%%DOCSDIR%%/html/qsqlerror-members.html +%%DOCSDIR%%/html/qsqlerror.html +%%DOCSDIR%%/html/qsqlfield-members.html +%%DOCSDIR%%/html/qsqlfield-qt3.html +%%DOCSDIR%%/html/qsqlfield.html +%%DOCSDIR%%/html/qsqlindex-members.html +%%DOCSDIR%%/html/qsqlindex-qt3.html +%%DOCSDIR%%/html/qsqlindex.html +%%DOCSDIR%%/html/qsqlquery-members.html +%%DOCSDIR%%/html/qsqlquery-qt3.html +%%DOCSDIR%%/html/qsqlquery.html +%%DOCSDIR%%/html/qsqlquerymodel-members.html +%%DOCSDIR%%/html/qsqlquerymodel.html +%%DOCSDIR%%/html/qsqlrecord-members.html +%%DOCSDIR%%/html/qsqlrecord-qt3.html +%%DOCSDIR%%/html/qsqlrecord.html +%%DOCSDIR%%/html/qsqlrelation-members.html +%%DOCSDIR%%/html/qsqlrelation.html +%%DOCSDIR%%/html/qsqlrelationaldelegate-members.html +%%DOCSDIR%%/html/qsqlrelationaldelegate.html +%%DOCSDIR%%/html/qsqlrelationaltablemodel-members.html +%%DOCSDIR%%/html/qsqlrelationaltablemodel.html +%%DOCSDIR%%/html/qsqlresult-members.html +%%DOCSDIR%%/html/qsqlresult.html +%%DOCSDIR%%/html/qsqltablemodel-members.html +%%DOCSDIR%%/html/qsqltablemodel.html +%%DOCSDIR%%/html/qssl.html +%%DOCSDIR%%/html/qsslcertificate-members.html +%%DOCSDIR%%/html/qsslcertificate.html +%%DOCSDIR%%/html/qsslcipher-members.html +%%DOCSDIR%%/html/qsslcipher.html +%%DOCSDIR%%/html/qsslconfiguration-members.html +%%DOCSDIR%%/html/qsslconfiguration.html +%%DOCSDIR%%/html/qsslerror-members.html +%%DOCSDIR%%/html/qsslerror.html +%%DOCSDIR%%/html/qsslkey-members.html +%%DOCSDIR%%/html/qsslkey.html +%%DOCSDIR%%/html/qsslsocket-members.html +%%DOCSDIR%%/html/qsslsocket.html +%%DOCSDIR%%/html/qstack-members.html +%%DOCSDIR%%/html/qstack.html +%%DOCSDIR%%/html/qstackedlayout-members.html +%%DOCSDIR%%/html/qstackedlayout.html +%%DOCSDIR%%/html/qstackedwidget-members.html +%%DOCSDIR%%/html/qstackedwidget.html +%%DOCSDIR%%/html/qstandarditem-members.html +%%DOCSDIR%%/html/qstandarditem.html +%%DOCSDIR%%/html/qstandarditemeditorcreator-members.html +%%DOCSDIR%%/html/qstandarditemeditorcreator.html +%%DOCSDIR%%/html/qstandarditemmodel-members.html +%%DOCSDIR%%/html/qstandarditemmodel.html +%%DOCSDIR%%/html/qstatusbar-members.html +%%DOCSDIR%%/html/qstatusbar-qt3.html +%%DOCSDIR%%/html/qstatusbar.html +%%DOCSDIR%%/html/qstatustipevent-members.html +%%DOCSDIR%%/html/qstatustipevent.html +%%DOCSDIR%%/html/qstring-members.html +%%DOCSDIR%%/html/qstring-null.html +%%DOCSDIR%%/html/qstring-qt3.html +%%DOCSDIR%%/html/qstring.html +%%DOCSDIR%%/html/qstringlist-members.html +%%DOCSDIR%%/html/qstringlist-qt3.html +%%DOCSDIR%%/html/qstringlist.html +%%DOCSDIR%%/html/qstringlistmodel-members.html +%%DOCSDIR%%/html/qstringlistmodel.html +%%DOCSDIR%%/html/qstringmatcher-members.html +%%DOCSDIR%%/html/qstringmatcher.html +%%DOCSDIR%%/html/qstringref-members.html +%%DOCSDIR%%/html/qstringref.html +%%DOCSDIR%%/html/qstyle-members.html +%%DOCSDIR%%/html/qstyle-obsolete.html +%%DOCSDIR%%/html/qstyle.html +%%DOCSDIR%%/html/qstyleditemdelegate-members.html +%%DOCSDIR%%/html/qstyleditemdelegate.html +%%DOCSDIR%%/html/qstylefactory-members.html +%%DOCSDIR%%/html/qstylefactory.html +%%DOCSDIR%%/html/qstylehintreturn-members.html +%%DOCSDIR%%/html/qstylehintreturn.html +%%DOCSDIR%%/html/qstylehintreturnmask-members.html +%%DOCSDIR%%/html/qstylehintreturnmask.html +%%DOCSDIR%%/html/qstylehintreturnvariant-members.html +%%DOCSDIR%%/html/qstylehintreturnvariant.html +%%DOCSDIR%%/html/qstyleoption-members.html +%%DOCSDIR%%/html/qstyleoption-obsolete.html +%%DOCSDIR%%/html/qstyleoption.html +%%DOCSDIR%%/html/qstyleoptionbutton-members.html +%%DOCSDIR%%/html/qstyleoptionbutton.html +%%DOCSDIR%%/html/qstyleoptioncombobox-members.html +%%DOCSDIR%%/html/qstyleoptioncombobox.html +%%DOCSDIR%%/html/qstyleoptioncomplex-members.html +%%DOCSDIR%%/html/qstyleoptioncomplex.html +%%DOCSDIR%%/html/qstyleoptiondockwidget-members.html +%%DOCSDIR%%/html/qstyleoptiondockwidget.html +%%DOCSDIR%%/html/qstyleoptionfocusrect-members.html +%%DOCSDIR%%/html/qstyleoptionfocusrect.html +%%DOCSDIR%%/html/qstyleoptionframe-members.html +%%DOCSDIR%%/html/qstyleoptionframe.html +%%DOCSDIR%%/html/qstyleoptionframev2-members.html +%%DOCSDIR%%/html/qstyleoptionframev2.html +%%DOCSDIR%%/html/qstyleoptiongraphicsitem-members.html +%%DOCSDIR%%/html/qstyleoptiongraphicsitem.html +%%DOCSDIR%%/html/qstyleoptiongroupbox-members.html +%%DOCSDIR%%/html/qstyleoptiongroupbox.html +%%DOCSDIR%%/html/qstyleoptionheader-members.html +%%DOCSDIR%%/html/qstyleoptionheader.html +%%DOCSDIR%%/html/qstyleoptionmenuitem-members.html +%%DOCSDIR%%/html/qstyleoptionmenuitem.html +%%DOCSDIR%%/html/qstyleoptionprogressbar-members.html +%%DOCSDIR%%/html/qstyleoptionprogressbar.html +%%DOCSDIR%%/html/qstyleoptionprogressbarv2-members.html +%%DOCSDIR%%/html/qstyleoptionprogressbarv2.html +%%DOCSDIR%%/html/qstyleoptionq3dockwindow-members.html +%%DOCSDIR%%/html/qstyleoptionq3dockwindow.html +%%DOCSDIR%%/html/qstyleoptionq3listview-members.html +%%DOCSDIR%%/html/qstyleoptionq3listview.html +%%DOCSDIR%%/html/qstyleoptionq3listviewitem-members.html +%%DOCSDIR%%/html/qstyleoptionq3listviewitem.html +%%DOCSDIR%%/html/qstyleoptionrubberband-members.html +%%DOCSDIR%%/html/qstyleoptionrubberband.html +%%DOCSDIR%%/html/qstyleoptionsizegrip-members.html +%%DOCSDIR%%/html/qstyleoptionsizegrip.html +%%DOCSDIR%%/html/qstyleoptionslider-members.html +%%DOCSDIR%%/html/qstyleoptionslider.html +%%DOCSDIR%%/html/qstyleoptionspinbox-members.html +%%DOCSDIR%%/html/qstyleoptionspinbox.html +%%DOCSDIR%%/html/qstyleoptiontab-members.html +%%DOCSDIR%%/html/qstyleoptiontab.html +%%DOCSDIR%%/html/qstyleoptiontabbarbase-members.html +%%DOCSDIR%%/html/qstyleoptiontabbarbase.html +%%DOCSDIR%%/html/qstyleoptiontabv2-members.html +%%DOCSDIR%%/html/qstyleoptiontabv2.html +%%DOCSDIR%%/html/qstyleoptiontabwidgetframe-members.html +%%DOCSDIR%%/html/qstyleoptiontabwidgetframe.html +%%DOCSDIR%%/html/qstyleoptiontitlebar-members.html +%%DOCSDIR%%/html/qstyleoptiontitlebar.html +%%DOCSDIR%%/html/qstyleoptiontoolbar-members.html +%%DOCSDIR%%/html/qstyleoptiontoolbar.html +%%DOCSDIR%%/html/qstyleoptiontoolbox-members.html +%%DOCSDIR%%/html/qstyleoptiontoolbox.html +%%DOCSDIR%%/html/qstyleoptiontoolboxv2-members.html +%%DOCSDIR%%/html/qstyleoptiontoolboxv2.html +%%DOCSDIR%%/html/qstyleoptiontoolbutton-members.html +%%DOCSDIR%%/html/qstyleoptiontoolbutton.html +%%DOCSDIR%%/html/qstyleoptionviewitem-members.html +%%DOCSDIR%%/html/qstyleoptionviewitem.html +%%DOCSDIR%%/html/qstyleoptionviewitemv2-members.html +%%DOCSDIR%%/html/qstyleoptionviewitemv2.html +%%DOCSDIR%%/html/qstyleoptionviewitemv4-members.html +%%DOCSDIR%%/html/qstyleoptionviewitemv4.html +%%DOCSDIR%%/html/qstylepainter-members.html +%%DOCSDIR%%/html/qstylepainter.html +%%DOCSDIR%%/html/qstyleplugin-members.html +%%DOCSDIR%%/html/qstyleplugin.html +%%DOCSDIR%%/html/qsvggenerator-members.html +%%DOCSDIR%%/html/qsvggenerator.html +%%DOCSDIR%%/html/qsvgrenderer-members.html +%%DOCSDIR%%/html/qsvgrenderer.html +%%DOCSDIR%%/html/qsvgwidget-members.html +%%DOCSDIR%%/html/qsvgwidget.html +%%DOCSDIR%%/html/qsyntaxhighlighter-members.html +%%DOCSDIR%%/html/qsyntaxhighlighter.html +%%DOCSDIR%%/html/qsysinfo-members.html +%%DOCSDIR%%/html/qsysinfo.html +%%DOCSDIR%%/html/qsystemlocale-members.html +%%DOCSDIR%%/html/qsystemlocale.html +%%DOCSDIR%%/html/qsystemsemaphore-members.html +%%DOCSDIR%%/html/qsystemsemaphore.html +%%DOCSDIR%%/html/qsystemtrayicon-members.html +%%DOCSDIR%%/html/qsystemtrayicon.html +%%DOCSDIR%%/html/qt-conf.html +%%DOCSDIR%%/html/qt-embedded-accel.html +%%DOCSDIR%%/html/qt-embedded-architecture.html +%%DOCSDIR%%/html/qt-embedded-charinput.html +%%DOCSDIR%%/html/qt-embedded-crosscompiling.html +%%DOCSDIR%%/html/qt-embedded-deployment.html +%%DOCSDIR%%/html/qt-embedded-differences.html +%%DOCSDIR%%/html/qt-embedded-displaymanagement.html +%%DOCSDIR%%/html/qt-embedded-envvars.html +%%DOCSDIR%%/html/qt-embedded-features.html +%%DOCSDIR%%/html/qt-embedded-fonts.html +%%DOCSDIR%%/html/qt-embedded-install.html +%%DOCSDIR%%/html/qt-embedded-makeqpf.html +%%DOCSDIR%%/html/qt-embedded-opengl.html +%%DOCSDIR%%/html/qt-embedded-performance.html +%%DOCSDIR%%/html/qt-embedded-pointer.html +%%DOCSDIR%%/html/qt-embedded-porting-device.html +%%DOCSDIR%%/html/qt-embedded-porting-operatingsystem.html +%%DOCSDIR%%/html/qt-embedded-running.html +%%DOCSDIR%%/html/qt-embedded-testingframebuffer.html +%%DOCSDIR%%/html/qt-embedded-vnc.html +%%DOCSDIR%%/html/qt-embedded.html +%%DOCSDIR%%/html/qt-qt3.html +%%DOCSDIR%%/html/qt.dcf +%%DOCSDIR%%/html/qt.html +%%DOCSDIR%%/html/qt3support.html +%%DOCSDIR%%/html/qt3to4-treewalker.html +%%DOCSDIR%%/html/qt3to4.html +%%DOCSDIR%%/html/qt4-4-intro.html +%%DOCSDIR%%/html/qt4-accessibility.html +%%DOCSDIR%%/html/qt4-arthur.html +%%DOCSDIR%%/html/qt4-designer.html +%%DOCSDIR%%/html/qt4-interview.html +%%DOCSDIR%%/html/qt4-intro.html +%%DOCSDIR%%/html/qt4-mainwindow.html +%%DOCSDIR%%/html/qt4-network.html +%%DOCSDIR%%/html/qt4-scribe.html +%%DOCSDIR%%/html/qt4-sql.html +%%DOCSDIR%%/html/qt4-styles.html +%%DOCSDIR%%/html/qt4-threads.html +%%DOCSDIR%%/html/qt4-tulip.html +%%DOCSDIR%%/html/qtabbar-members.html +%%DOCSDIR%%/html/qtabbar-qt3.html +%%DOCSDIR%%/html/qtabbar.html +%%DOCSDIR%%/html/qtabletevent-members.html +%%DOCSDIR%%/html/qtabletevent.html +%%DOCSDIR%%/html/qtableview-members.html +%%DOCSDIR%%/html/qtableview-obsolete.html +%%DOCSDIR%%/html/qtableview.html +%%DOCSDIR%%/html/qtablewidget-members.html +%%DOCSDIR%%/html/qtablewidget-obsolete.html +%%DOCSDIR%%/html/qtablewidget.html +%%DOCSDIR%%/html/qtablewidgetitem-members.html +%%DOCSDIR%%/html/qtablewidgetitem-obsolete.html +%%DOCSDIR%%/html/qtablewidgetitem.html +%%DOCSDIR%%/html/qtablewidgetselectionrange-members.html +%%DOCSDIR%%/html/qtablewidgetselectionrange.html +%%DOCSDIR%%/html/qtabwidget-members.html +%%DOCSDIR%%/html/qtabwidget-qt3.html +%%DOCSDIR%%/html/qtabwidget.html +%%DOCSDIR%%/html/qtalgorithms.html +%%DOCSDIR%%/html/qtassistant.html +%%DOCSDIR%%/html/qtce.html +%%DOCSDIR%%/html/qtconcurrent-exception-members.html +%%DOCSDIR%%/html/qtconcurrent-exception.html +%%DOCSDIR%%/html/qtconcurrent-imagescaling-imagescaling-cpp.html +%%DOCSDIR%%/html/qtconcurrent-imagescaling-imagescaling-h.html +%%DOCSDIR%%/html/qtconcurrent-imagescaling-imagescaling-pro.html +%%DOCSDIR%%/html/qtconcurrent-imagescaling-main-cpp.html +%%DOCSDIR%%/html/qtconcurrent-imagescaling.html +%%DOCSDIR%%/html/qtconcurrent-map-main-cpp.html +%%DOCSDIR%%/html/qtconcurrent-map-map-pro.html +%%DOCSDIR%%/html/qtconcurrent-map.html +%%DOCSDIR%%/html/qtconcurrent-progressdialog-main-cpp.html +%%DOCSDIR%%/html/qtconcurrent-progressdialog-progressdialog-pro.html +%%DOCSDIR%%/html/qtconcurrent-progressdialog.html +%%DOCSDIR%%/html/qtconcurrent-runfunction-main-cpp.html +%%DOCSDIR%%/html/qtconcurrent-runfunction-runfunction-pro.html +%%DOCSDIR%%/html/qtconcurrent-runfunction.html +%%DOCSDIR%%/html/qtconcurrent-unhandledexception-members.html +%%DOCSDIR%%/html/qtconcurrent-unhandledexception.html +%%DOCSDIR%%/html/qtconcurrent-wordcount-main-cpp.html +%%DOCSDIR%%/html/qtconcurrent-wordcount-wordcount-pro.html +%%DOCSDIR%%/html/qtconcurrent-wordcount.html +%%DOCSDIR%%/html/qtconcurrent.html +%%DOCSDIR%%/html/qtconcurrentfilter.html +%%DOCSDIR%%/html/qtconcurrentmap.html +%%DOCSDIR%%/html/qtconcurrentrun.html +%%DOCSDIR%%/html/qtconfig.html +%%DOCSDIR%%/html/qtcore.html +%%DOCSDIR%%/html/qtcpserver-members.html +%%DOCSDIR%%/html/qtcpserver.html +%%DOCSDIR%%/html/qtcpsocket-members.html +%%DOCSDIR%%/html/qtcpsocket.html +%%DOCSDIR%%/html/qtdbus.html +%%DOCSDIR%%/html/qtdemo.html +%%DOCSDIR%%/html/qtdesigner.html +%%DOCSDIR%%/html/qtemporaryfile-members.html +%%DOCSDIR%%/html/qtemporaryfile.html +%%DOCSDIR%%/html/qtest.html +%%DOCSDIR%%/html/qtesteventlist-members.html +%%DOCSDIR%%/html/qtesteventlist.html +%%DOCSDIR%%/html/qtestlib-manual.html +%%DOCSDIR%%/html/qtestlib-tutorial.html +%%DOCSDIR%%/html/qtestlib-tutorial1-testqstring-cpp.html +%%DOCSDIR%%/html/qtestlib-tutorial1-tutorial1-pro.html +%%DOCSDIR%%/html/qtestlib-tutorial1.html +%%DOCSDIR%%/html/qtestlib-tutorial2-testqstring-cpp.html +%%DOCSDIR%%/html/qtestlib-tutorial2-tutorial2-pro.html +%%DOCSDIR%%/html/qtestlib-tutorial2.html +%%DOCSDIR%%/html/qtestlib-tutorial3-testgui-cpp.html +%%DOCSDIR%%/html/qtestlib-tutorial3-tutorial3-pro.html +%%DOCSDIR%%/html/qtestlib-tutorial3.html +%%DOCSDIR%%/html/qtestlib-tutorial4-testgui-cpp.html +%%DOCSDIR%%/html/qtestlib-tutorial4-tutorial4-pro.html +%%DOCSDIR%%/html/qtestlib-tutorial4.html +%%DOCSDIR%%/html/qtextblock-iterator-members.html +%%DOCSDIR%%/html/qtextblock-iterator.html +%%DOCSDIR%%/html/qtextblock-members.html +%%DOCSDIR%%/html/qtextblock.html +%%DOCSDIR%%/html/qtextblockformat-members.html +%%DOCSDIR%%/html/qtextblockformat.html +%%DOCSDIR%%/html/qtextblockgroup-members.html +%%DOCSDIR%%/html/qtextblockgroup.html +%%DOCSDIR%%/html/qtextblockuserdata-members.html +%%DOCSDIR%%/html/qtextblockuserdata.html +%%DOCSDIR%%/html/qtextboundaryfinder-members.html +%%DOCSDIR%%/html/qtextboundaryfinder.html +%%DOCSDIR%%/html/qtextbrowser-members.html +%%DOCSDIR%%/html/qtextbrowser-qt3.html +%%DOCSDIR%%/html/qtextbrowser.html +%%DOCSDIR%%/html/qtextcharformat-members.html +%%DOCSDIR%%/html/qtextcharformat-obsolete.html +%%DOCSDIR%%/html/qtextcharformat.html +%%DOCSDIR%%/html/qtextcodec-converterstate-members.html +%%DOCSDIR%%/html/qtextcodec-converterstate.html +%%DOCSDIR%%/html/qtextcodec-members.html +%%DOCSDIR%%/html/qtextcodec-qt3.html +%%DOCSDIR%%/html/qtextcodec.html +%%DOCSDIR%%/html/qtextcodecplugin-members.html +%%DOCSDIR%%/html/qtextcodecplugin.html +%%DOCSDIR%%/html/qtextcursor-members.html +%%DOCSDIR%%/html/qtextcursor.html +%%DOCSDIR%%/html/qtextdecoder-members.html +%%DOCSDIR%%/html/qtextdecoder.html +%%DOCSDIR%%/html/qtextdocument-members.html +%%DOCSDIR%%/html/qtextdocument.html +%%DOCSDIR%%/html/qtextdocumentfragment-members.html +%%DOCSDIR%%/html/qtextdocumentfragment.html +%%DOCSDIR%%/html/qtextedit-extraselection-members.html +%%DOCSDIR%%/html/qtextedit-extraselection.html +%%DOCSDIR%%/html/qtextedit-members.html +%%DOCSDIR%%/html/qtextedit-qt3.html +%%DOCSDIR%%/html/qtextedit.html +%%DOCSDIR%%/html/qtextencoder-members.html +%%DOCSDIR%%/html/qtextencoder.html +%%DOCSDIR%%/html/qtextformat-members.html +%%DOCSDIR%%/html/qtextformat.html +%%DOCSDIR%%/html/qtextfragment-members.html +%%DOCSDIR%%/html/qtextfragment.html +%%DOCSDIR%%/html/qtextframe-iterator-members.html +%%DOCSDIR%%/html/qtextframe-iterator.html +%%DOCSDIR%%/html/qtextframe-members.html +%%DOCSDIR%%/html/qtextframe.html +%%DOCSDIR%%/html/qtextframeformat-members.html +%%DOCSDIR%%/html/qtextframeformat.html +%%DOCSDIR%%/html/qtextimageformat-members.html +%%DOCSDIR%%/html/qtextimageformat.html +%%DOCSDIR%%/html/qtextinlineobject-members.html +%%DOCSDIR%%/html/qtextinlineobject.html +%%DOCSDIR%%/html/qtextistream-members.html +%%DOCSDIR%%/html/qtextistream.html +%%DOCSDIR%%/html/qtextitem-members.html +%%DOCSDIR%%/html/qtextitem.html +%%DOCSDIR%%/html/qtextlayout-formatrange-members.html +%%DOCSDIR%%/html/qtextlayout-formatrange.html +%%DOCSDIR%%/html/qtextlayout-members.html +%%DOCSDIR%%/html/qtextlayout.html +%%DOCSDIR%%/html/qtextlength-members.html +%%DOCSDIR%%/html/qtextlength.html +%%DOCSDIR%%/html/qtextline-members.html +%%DOCSDIR%%/html/qtextline.html +%%DOCSDIR%%/html/qtextlist-members.html +%%DOCSDIR%%/html/qtextlist-obsolete.html +%%DOCSDIR%%/html/qtextlist.html +%%DOCSDIR%%/html/qtextlistformat-members.html +%%DOCSDIR%%/html/qtextlistformat.html +%%DOCSDIR%%/html/qtextobject-members.html +%%DOCSDIR%%/html/qtextobject.html +%%DOCSDIR%%/html/qtextoption-members.html +%%DOCSDIR%%/html/qtextoption-tab-members.html +%%DOCSDIR%%/html/qtextoption-tab.html +%%DOCSDIR%%/html/qtextoption.html +%%DOCSDIR%%/html/qtextostream-members.html +%%DOCSDIR%%/html/qtextostream.html +%%DOCSDIR%%/html/qtextstream-members.html +%%DOCSDIR%%/html/qtextstream-qt3.html +%%DOCSDIR%%/html/qtextstream.html +%%DOCSDIR%%/html/qtexttable-members.html +%%DOCSDIR%%/html/qtexttable.html +%%DOCSDIR%%/html/qtexttablecell-members.html +%%DOCSDIR%%/html/qtexttablecell.html +%%DOCSDIR%%/html/qtexttablecellformat-members.html +%%DOCSDIR%%/html/qtexttablecellformat.html +%%DOCSDIR%%/html/qtexttableformat-members.html +%%DOCSDIR%%/html/qtexttableformat.html +%%DOCSDIR%%/html/qtglobal-obsolete.html +%%DOCSDIR%%/html/qtglobal-qt3.html +%%DOCSDIR%%/html/qtglobal.html +%%DOCSDIR%%/html/qtgui.html +%%DOCSDIR%%/html/qthelp.html +%%DOCSDIR%%/html/qthelpproject.html +%%DOCSDIR%%/html/qthread-members.html +%%DOCSDIR%%/html/qthread-qt3.html +%%DOCSDIR%%/html/qthread.html +%%DOCSDIR%%/html/qthreadpool-members.html +%%DOCSDIR%%/html/qthreadpool.html +%%DOCSDIR%%/html/qthreadstorage-members.html +%%DOCSDIR%%/html/qthreadstorage.html +%%DOCSDIR%%/html/qtime-members.html +%%DOCSDIR%%/html/qtime-qt3.html +%%DOCSDIR%%/html/qtime.html +%%DOCSDIR%%/html/qtimeedit-members.html +%%DOCSDIR%%/html/qtimeedit.html +%%DOCSDIR%%/html/qtimeline-members.html +%%DOCSDIR%%/html/qtimeline.html +%%DOCSDIR%%/html/qtimer-members.html +%%DOCSDIR%%/html/qtimer-qt3.html +%%DOCSDIR%%/html/qtimer.html +%%DOCSDIR%%/html/qtimerevent-members.html +%%DOCSDIR%%/html/qtimerevent.html +%%DOCSDIR%%/html/qtmac-as-native.html +%%DOCSDIR%%/html/qtnetwork.html +%%DOCSDIR%%/html/qtoolbar-members.html +%%DOCSDIR%%/html/qtoolbar-qt3.html +%%DOCSDIR%%/html/qtoolbar.html +%%DOCSDIR%%/html/qtoolbox-members.html +%%DOCSDIR%%/html/qtoolbox-qt3.html +%%DOCSDIR%%/html/qtoolbox.html +%%DOCSDIR%%/html/qtoolbutton-members.html +%%DOCSDIR%%/html/qtoolbutton-qt3.html +%%DOCSDIR%%/html/qtoolbutton.html +%%DOCSDIR%%/html/qtooltip-members.html +%%DOCSDIR%%/html/qtooltip-qt3.html +%%DOCSDIR%%/html/qtooltip.html +%%DOCSDIR%%/html/qtopengl.html +%%DOCSDIR%%/html/qtplugin-obsolete.html +%%DOCSDIR%%/html/qtplugin.html +%%DOCSDIR%%/html/qtransform-members.html +%%DOCSDIR%%/html/qtransform.html +%%DOCSDIR%%/html/qtranslator-members.html +%%DOCSDIR%%/html/qtranslator-qt3.html +%%DOCSDIR%%/html/qtranslator.html +%%DOCSDIR%%/html/qtreeview-members.html +%%DOCSDIR%%/html/qtreeview-obsolete.html +%%DOCSDIR%%/html/qtreeview.html +%%DOCSDIR%%/html/qtreewidget-members.html +%%DOCSDIR%%/html/qtreewidget-obsolete.html +%%DOCSDIR%%/html/qtreewidget.html +%%DOCSDIR%%/html/qtreewidgetitem-members.html +%%DOCSDIR%%/html/qtreewidgetitem-obsolete.html +%%DOCSDIR%%/html/qtreewidgetitem.html +%%DOCSDIR%%/html/qtreewidgetitemiterator-members.html +%%DOCSDIR%%/html/qtreewidgetitemiterator.html +%%DOCSDIR%%/html/qtscript.html +%%DOCSDIR%%/html/qtscriptextensions.html +%%DOCSDIR%%/html/qtsql.html +%%DOCSDIR%%/html/qtsvg.html +%%DOCSDIR%%/html/qttest.html +%%DOCSDIR%%/html/qttools.html +%%DOCSDIR%%/html/qtuitools.html +%%DOCSDIR%%/html/qtwebkit.html +%%DOCSDIR%%/html/qtxml.html +%%DOCSDIR%%/html/qtxmlpatterns.html +%%DOCSDIR%%/html/qudpsocket-members.html +%%DOCSDIR%%/html/qudpsocket.html +%%DOCSDIR%%/html/quiloader-members.html +%%DOCSDIR%%/html/quiloader.html +%%DOCSDIR%%/html/qundo.html +%%DOCSDIR%%/html/qundocommand-members.html +%%DOCSDIR%%/html/qundocommand.html +%%DOCSDIR%%/html/qundogroup-members.html +%%DOCSDIR%%/html/qundogroup.html +%%DOCSDIR%%/html/qundostack-members.html +%%DOCSDIR%%/html/qundostack.html +%%DOCSDIR%%/html/qundoview-members.html +%%DOCSDIR%%/html/qundoview.html +%%DOCSDIR%%/html/qurl-members.html +%%DOCSDIR%%/html/qurl-obsolete.html +%%DOCSDIR%%/html/qurl-qt3.html +%%DOCSDIR%%/html/qurl.html +%%DOCSDIR%%/html/qurlinfo-members.html +%%DOCSDIR%%/html/qurlinfo.html +%%DOCSDIR%%/html/quuid-members.html +%%DOCSDIR%%/html/quuid.html +%%DOCSDIR%%/html/qvalidator-members.html +%%DOCSDIR%%/html/qvalidator-qt3.html +%%DOCSDIR%%/html/qvalidator.html +%%DOCSDIR%%/html/qvariant-members.html +%%DOCSDIR%%/html/qvariant-qt3.html +%%DOCSDIR%%/html/qvariant.html +%%DOCSDIR%%/html/qvarlengtharray-members.html +%%DOCSDIR%%/html/qvarlengtharray.html +%%DOCSDIR%%/html/qvboxlayout-members.html +%%DOCSDIR%%/html/qvboxlayout-qt3.html +%%DOCSDIR%%/html/qvboxlayout.html +%%DOCSDIR%%/html/qvector-members.html +%%DOCSDIR%%/html/qvector.html +%%DOCSDIR%%/html/qvectoriterator-members.html +%%DOCSDIR%%/html/qvectoriterator.html +%%DOCSDIR%%/html/qvfb.html +%%DOCSDIR%%/html/qwaitcondition-members.html +%%DOCSDIR%%/html/qwaitcondition.html +%%DOCSDIR%%/html/qwebframe-members.html +%%DOCSDIR%%/html/qwebframe.html +%%DOCSDIR%%/html/qwebhistory-members.html +%%DOCSDIR%%/html/qwebhistory.html +%%DOCSDIR%%/html/qwebhistoryinterface-members.html +%%DOCSDIR%%/html/qwebhistoryinterface.html +%%DOCSDIR%%/html/qwebhistoryitem-members.html +%%DOCSDIR%%/html/qwebhistoryitem.html +%%DOCSDIR%%/html/qwebhittestresult-members.html +%%DOCSDIR%%/html/qwebhittestresult.html +%%DOCSDIR%%/html/qwebpage-extensionoption.html +%%DOCSDIR%%/html/qwebpage-extensionreturn.html +%%DOCSDIR%%/html/qwebpage-members.html +%%DOCSDIR%%/html/qwebpage.html +%%DOCSDIR%%/html/qwebpluginfactory-extensionoption.html +%%DOCSDIR%%/html/qwebpluginfactory-extensionreturn.html +%%DOCSDIR%%/html/qwebpluginfactory-members.html +%%DOCSDIR%%/html/qwebpluginfactory-mimetype-members.html +%%DOCSDIR%%/html/qwebpluginfactory-mimetype.html +%%DOCSDIR%%/html/qwebpluginfactory-plugin-members.html +%%DOCSDIR%%/html/qwebpluginfactory-plugin.html +%%DOCSDIR%%/html/qwebpluginfactory.html +%%DOCSDIR%%/html/qwebsettings-members.html +%%DOCSDIR%%/html/qwebsettings.html +%%DOCSDIR%%/html/qwebview-members.html +%%DOCSDIR%%/html/qwebview.html +%%DOCSDIR%%/html/qwhatsthis-members.html +%%DOCSDIR%%/html/qwhatsthis-qt3.html +%%DOCSDIR%%/html/qwhatsthis.html +%%DOCSDIR%%/html/qwhatsthisclickedevent-members.html +%%DOCSDIR%%/html/qwhatsthisclickedevent.html +%%DOCSDIR%%/html/qwheelevent-members.html +%%DOCSDIR%%/html/qwheelevent-qt3.html +%%DOCSDIR%%/html/qwheelevent.html +%%DOCSDIR%%/html/qwidget-members.html +%%DOCSDIR%%/html/qwidget-obsolete.html +%%DOCSDIR%%/html/qwidget-qt3.html +%%DOCSDIR%%/html/qwidget.html +%%DOCSDIR%%/html/qwidgetaction-members.html +%%DOCSDIR%%/html/qwidgetaction.html +%%DOCSDIR%%/html/qwidgetitem-members.html +%%DOCSDIR%%/html/qwidgetitem.html +%%DOCSDIR%%/html/qwindowsstyle-members.html +%%DOCSDIR%%/html/qwindowsstyle.html +%%DOCSDIR%%/html/qwindowstatechangeevent-members.html +%%DOCSDIR%%/html/qwindowstatechangeevent.html +%%DOCSDIR%%/html/qwindowsvistastyle-members.html +%%DOCSDIR%%/html/qwindowsvistastyle.html +%%DOCSDIR%%/html/qwindowsxpstyle-members.html +%%DOCSDIR%%/html/qwindowsxpstyle.html +%%DOCSDIR%%/html/qwizard-members.html +%%DOCSDIR%%/html/qwizard.html +%%DOCSDIR%%/html/qwizardpage-members.html +%%DOCSDIR%%/html/qwizardpage.html +%%DOCSDIR%%/html/qworkspace-members.html +%%DOCSDIR%%/html/qworkspace-qt3.html +%%DOCSDIR%%/html/qworkspace.html +%%DOCSDIR%%/html/qwritelocker-members.html +%%DOCSDIR%%/html/qwritelocker.html +%%DOCSDIR%%/html/qws-ahigl.html +%%DOCSDIR%%/html/qws-dbscreen.html +%%DOCSDIR%%/html/qws-mousecalibration.html +%%DOCSDIR%%/html/qws-svgalib.html +%%DOCSDIR%%/html/qws.html +%%DOCSDIR%%/html/qx11embedcontainer-members.html +%%DOCSDIR%%/html/qx11embedcontainer.html +%%DOCSDIR%%/html/qx11embedwidget-members.html +%%DOCSDIR%%/html/qx11embedwidget.html +%%DOCSDIR%%/html/qx11info-members.html +%%DOCSDIR%%/html/qx11info.html +%%DOCSDIR%%/html/qxmlattributes-members.html +%%DOCSDIR%%/html/qxmlattributes.html +%%DOCSDIR%%/html/qxmlcontenthandler-members.html +%%DOCSDIR%%/html/qxmlcontenthandler.html +%%DOCSDIR%%/html/qxmldeclhandler-members.html +%%DOCSDIR%%/html/qxmldeclhandler.html +%%DOCSDIR%%/html/qxmldefaulthandler-members.html +%%DOCSDIR%%/html/qxmldefaulthandler.html +%%DOCSDIR%%/html/qxmldtdhandler-members.html +%%DOCSDIR%%/html/qxmldtdhandler.html +%%DOCSDIR%%/html/qxmlentityresolver-members.html +%%DOCSDIR%%/html/qxmlentityresolver.html +%%DOCSDIR%%/html/qxmlerrorhandler-members.html +%%DOCSDIR%%/html/qxmlerrorhandler.html +%%DOCSDIR%%/html/qxmlformatter-members.html +%%DOCSDIR%%/html/qxmlformatter.html +%%DOCSDIR%%/html/qxmlinputsource-members.html +%%DOCSDIR%%/html/qxmlinputsource-qt3.html +%%DOCSDIR%%/html/qxmlinputsource.html +%%DOCSDIR%%/html/qxmlitem-members.html +%%DOCSDIR%%/html/qxmlitem.html +%%DOCSDIR%%/html/qxmllexicalhandler-members.html +%%DOCSDIR%%/html/qxmllexicalhandler.html +%%DOCSDIR%%/html/qxmllocator-members.html +%%DOCSDIR%%/html/qxmllocator.html +%%DOCSDIR%%/html/qxmlname-members.html +%%DOCSDIR%%/html/qxmlname.html +%%DOCSDIR%%/html/qxmlnamepool-members.html +%%DOCSDIR%%/html/qxmlnamepool.html +%%DOCSDIR%%/html/qxmlnamespacesupport-members.html +%%DOCSDIR%%/html/qxmlnamespacesupport.html +%%DOCSDIR%%/html/qxmlnodemodelindex-members.html +%%DOCSDIR%%/html/qxmlnodemodelindex.html +%%DOCSDIR%%/html/qxmlparseexception-members.html +%%DOCSDIR%%/html/qxmlparseexception.html +%%DOCSDIR%%/html/qxmlquery-members.html +%%DOCSDIR%%/html/qxmlquery.html +%%DOCSDIR%%/html/qxmlreader-members.html +%%DOCSDIR%%/html/qxmlreader-obsolete.html +%%DOCSDIR%%/html/qxmlreader.html +%%DOCSDIR%%/html/qxmlresultitems-members.html +%%DOCSDIR%%/html/qxmlresultitems.html +%%DOCSDIR%%/html/qxmlserializer-members.html +%%DOCSDIR%%/html/qxmlserializer.html +%%DOCSDIR%%/html/qxmlsimplereader-members.html +%%DOCSDIR%%/html/qxmlsimplereader.html +%%DOCSDIR%%/html/qxmlstreamattribute-members.html +%%DOCSDIR%%/html/qxmlstreamattribute.html +%%DOCSDIR%%/html/qxmlstreamattributes-members.html +%%DOCSDIR%%/html/qxmlstreamattributes.html +%%DOCSDIR%%/html/qxmlstreamentitydeclaration-members.html +%%DOCSDIR%%/html/qxmlstreamentitydeclaration.html +%%DOCSDIR%%/html/qxmlstreamentityresolver-members.html +%%DOCSDIR%%/html/qxmlstreamentityresolver.html +%%DOCSDIR%%/html/qxmlstreamnamespacedeclaration-members.html +%%DOCSDIR%%/html/qxmlstreamnamespacedeclaration.html +%%DOCSDIR%%/html/qxmlstreamnotationdeclaration-members.html +%%DOCSDIR%%/html/qxmlstreamnotationdeclaration.html +%%DOCSDIR%%/html/qxmlstreamreader-members.html +%%DOCSDIR%%/html/qxmlstreamreader.html +%%DOCSDIR%%/html/qxmlstreamwriter-members.html +%%DOCSDIR%%/html/qxmlstreamwriter.html +%%DOCSDIR%%/html/rcc.html +%%DOCSDIR%%/html/requirements-embedded-linux.html +%%DOCSDIR%%/html/requirements-mac.html +%%DOCSDIR%%/html/requirements-win.html +%%DOCSDIR%%/html/requirements-wince.html +%%DOCSDIR%%/html/requirements-x11.html +%%DOCSDIR%%/html/requirements.html +%%DOCSDIR%%/html/resources.html +%%DOCSDIR%%/html/richtext-advanced-processing.html +%%DOCSDIR%%/html/richtext-calendar-calendar-pro.html +%%DOCSDIR%%/html/richtext-calendar-main-cpp.html +%%DOCSDIR%%/html/richtext-calendar-mainwindow-cpp.html +%%DOCSDIR%%/html/richtext-calendar-mainwindow-h.html +%%DOCSDIR%%/html/richtext-calendar.html +%%DOCSDIR%%/html/richtext-common-tasks.html +%%DOCSDIR%%/html/richtext-cursor.html +%%DOCSDIR%%/html/richtext-html-subset.html +%%DOCSDIR%%/html/richtext-orderform-detailsdialog-cpp.html +%%DOCSDIR%%/html/richtext-orderform-detailsdialog-h.html +%%DOCSDIR%%/html/richtext-orderform-main-cpp.html +%%DOCSDIR%%/html/richtext-orderform-mainwindow-cpp.html +%%DOCSDIR%%/html/richtext-orderform-mainwindow-h.html +%%DOCSDIR%%/html/richtext-orderform-orderform-pro.html +%%DOCSDIR%%/html/richtext-orderform.html +%%DOCSDIR%%/html/richtext-structure.html +%%DOCSDIR%%/html/richtext-syntaxhighlighter-highlighter-cpp.html +%%DOCSDIR%%/html/richtext-syntaxhighlighter-highlighter-h.html +%%DOCSDIR%%/html/richtext-syntaxhighlighter-main-cpp.html +%%DOCSDIR%%/html/richtext-syntaxhighlighter-mainwindow-cpp.html +%%DOCSDIR%%/html/richtext-syntaxhighlighter-mainwindow-h.html +%%DOCSDIR%%/html/richtext-syntaxhighlighter-syntaxhighlighter-pro.html +%%DOCSDIR%%/html/richtext-syntaxhighlighter.html +%%DOCSDIR%%/html/richtext.html +%%DOCSDIR%%/html/script-calculator-calculator-js.html +%%DOCSDIR%%/html/script-calculator-calculator-pro.html +%%DOCSDIR%%/html/script-calculator-calculator-qrc.html +%%DOCSDIR%%/html/script-calculator-calculator-ui.html +%%DOCSDIR%%/html/script-calculator-main-cpp.html +%%DOCSDIR%%/html/script-calculator.html +%%DOCSDIR%%/html/script-context2d-context2d-cpp.html +%%DOCSDIR%%/html/script-context2d-context2d-h.html +%%DOCSDIR%%/html/script-context2d-context2d-pro.html +%%DOCSDIR%%/html/script-context2d-context2d-qrc.html +%%DOCSDIR%%/html/script-context2d-domimage-cpp.html +%%DOCSDIR%%/html/script-context2d-domimage-h.html +%%DOCSDIR%%/html/script-context2d-main-cpp.html +%%DOCSDIR%%/html/script-context2d-qcontext2dcanvas-cpp.html +%%DOCSDIR%%/html/script-context2d-qcontext2dcanvas-h.html +%%DOCSDIR%%/html/script-context2d-scripts-alpha-js.html +%%DOCSDIR%%/html/script-context2d-scripts-arc-js.html +%%DOCSDIR%%/html/script-context2d-scripts-bezier-js.html +%%DOCSDIR%%/html/script-context2d-scripts-clock-js.html +%%DOCSDIR%%/html/script-context2d-scripts-fill1-js.html +%%DOCSDIR%%/html/script-context2d-scripts-grad-js.html +%%DOCSDIR%%/html/script-context2d-scripts-linecap-js.html +%%DOCSDIR%%/html/script-context2d-scripts-linestye-js.html +%%DOCSDIR%%/html/script-context2d-scripts-moveto-js.html +%%DOCSDIR%%/html/script-context2d-scripts-moveto2-js.html +%%DOCSDIR%%/html/script-context2d-scripts-pacman-js.html +%%DOCSDIR%%/html/script-context2d-scripts-plasma-js.html +%%DOCSDIR%%/html/script-context2d-scripts-pong-js.html +%%DOCSDIR%%/html/script-context2d-scripts-quad-js.html +%%DOCSDIR%%/html/script-context2d-scripts-rgba-js.html +%%DOCSDIR%%/html/script-context2d-scripts-rotate-js.html +%%DOCSDIR%%/html/script-context2d-scripts-scale-js.html +%%DOCSDIR%%/html/script-context2d-scripts-stroke1-js.html +%%DOCSDIR%%/html/script-context2d-scripts-translate-js.html +%%DOCSDIR%%/html/script-context2d-window-cpp.html +%%DOCSDIR%%/html/script-context2d-window-h.html +%%DOCSDIR%%/html/script-context2d.html +%%DOCSDIR%%/html/script-customclass-bytearrayclass-cpp.html +%%DOCSDIR%%/html/script-customclass-bytearrayclass-h.html +%%DOCSDIR%%/html/script-customclass-bytearrayprototype-cpp.html +%%DOCSDIR%%/html/script-customclass-bytearrayprototype-h.html +%%DOCSDIR%%/html/script-customclass-customclass-pro.html +%%DOCSDIR%%/html/script-customclass-main-cpp.html +%%DOCSDIR%%/html/script-customclass.html +%%DOCSDIR%%/html/script-defaultprototypes-code-js.html +%%DOCSDIR%%/html/script-defaultprototypes-defaultprototypes-pro.html +%%DOCSDIR%%/html/script-defaultprototypes-defaultprototypes-qrc.html +%%DOCSDIR%%/html/script-defaultprototypes-main-cpp.html +%%DOCSDIR%%/html/script-defaultprototypes-prototypes-cpp.html +%%DOCSDIR%%/html/script-defaultprototypes-prototypes-h.html +%%DOCSDIR%%/html/script-defaultprototypes.html +%%DOCSDIR%%/html/script-helloscript-helloscript-pro.html +%%DOCSDIR%%/html/script-helloscript-main-cpp.html +%%DOCSDIR%%/html/script-helloscript.html +%%DOCSDIR%%/html/script-tetrix-main-cpp.html +%%DOCSDIR%%/html/script-tetrix-tetrix-pro.html +%%DOCSDIR%%/html/script-tetrix-tetrix-qrc.html +%%DOCSDIR%%/html/script-tetrix-tetrixboard-cpp.html +%%DOCSDIR%%/html/script-tetrix-tetrixboard-h.html +%%DOCSDIR%%/html/script-tetrix-tetrixboard-js.html +%%DOCSDIR%%/html/script-tetrix-tetrixpiece-js.html +%%DOCSDIR%%/html/script-tetrix-tetrixwindow-js.html +%%DOCSDIR%%/html/script-tetrix-tetrixwindow-ui.html +%%DOCSDIR%%/html/script-tetrix.html +%%DOCSDIR%%/html/script.html +%%DOCSDIR%%/html/scripting.html +%%DOCSDIR%%/html/session.html +%%DOCSDIR%%/html/shadow-builds-wince.html +%%DOCSDIR%%/html/shared.html +%%DOCSDIR%%/html/signalsandslots.html +%%DOCSDIR%%/html/sql-cachedtable-cachedtable-pro.html +%%DOCSDIR%%/html/sql-cachedtable-main-cpp.html +%%DOCSDIR%%/html/sql-cachedtable-tableeditor-cpp.html +%%DOCSDIR%%/html/sql-cachedtable-tableeditor-h.html +%%DOCSDIR%%/html/sql-cachedtable.html +%%DOCSDIR%%/html/sql-drilldown-drilldown-pro.html +%%DOCSDIR%%/html/sql-drilldown-drilldown-qrc.html +%%DOCSDIR%%/html/sql-drilldown-imageitem-cpp.html +%%DOCSDIR%%/html/sql-drilldown-imageitem-h.html +%%DOCSDIR%%/html/sql-drilldown-informationwindow-cpp.html +%%DOCSDIR%%/html/sql-drilldown-informationwindow-h.html +%%DOCSDIR%%/html/sql-drilldown-main-cpp.html +%%DOCSDIR%%/html/sql-drilldown-view-cpp.html +%%DOCSDIR%%/html/sql-drilldown-view-h.html +%%DOCSDIR%%/html/sql-drilldown.html +%%DOCSDIR%%/html/sql-driver.html +%%DOCSDIR%%/html/sql-masterdetail-albumdetails-xml.html +%%DOCSDIR%%/html/sql-masterdetail-database-h.html +%%DOCSDIR%%/html/sql-masterdetail-dialog-cpp.html +%%DOCSDIR%%/html/sql-masterdetail-dialog-h.html +%%DOCSDIR%%/html/sql-masterdetail-main-cpp.html +%%DOCSDIR%%/html/sql-masterdetail-mainwindow-cpp.html +%%DOCSDIR%%/html/sql-masterdetail-mainwindow-h.html +%%DOCSDIR%%/html/sql-masterdetail-masterdetail-pro.html +%%DOCSDIR%%/html/sql-masterdetail-masterdetail-qrc.html +%%DOCSDIR%%/html/sql-masterdetail.html +%%DOCSDIR%%/html/sql-querymodel-customsqlmodel-cpp.html +%%DOCSDIR%%/html/sql-querymodel-customsqlmodel-h.html +%%DOCSDIR%%/html/sql-querymodel-editablesqlmodel-cpp.html +%%DOCSDIR%%/html/sql-querymodel-editablesqlmodel-h.html +%%DOCSDIR%%/html/sql-querymodel-main-cpp.html +%%DOCSDIR%%/html/sql-querymodel-querymodel-pro.html +%%DOCSDIR%%/html/sql-querymodel.html +%%DOCSDIR%%/html/sql-relationaltablemodel-relationaltablemodel-cpp.html +%%DOCSDIR%%/html/sql-relationaltablemodel-relationaltablemodel-pro.html +%%DOCSDIR%%/html/sql-relationaltablemodel.html +%%DOCSDIR%%/html/sql-tablemodel-tablemodel-cpp.html +%%DOCSDIR%%/html/sql-tablemodel-tablemodel-pro.html +%%DOCSDIR%%/html/sql-tablemodel.html +%%DOCSDIR%%/html/ssl.html +%%DOCSDIR%%/html/style-reference.html +%%DOCSDIR%%/html/stylesheet-customizing.html +%%DOCSDIR%%/html/stylesheet-designer.html +%%DOCSDIR%%/html/stylesheet-examples.html +%%DOCSDIR%%/html/stylesheet-reference.html +%%DOCSDIR%%/html/stylesheet-syntax.html +%%DOCSDIR%%/html/stylesheet.html +%%DOCSDIR%%/html/supported-platforms.html +%%DOCSDIR%%/html/templates.html +%%DOCSDIR%%/html/text-processing.html +%%DOCSDIR%%/html/text.html +%%DOCSDIR%%/html/thread.html +%%DOCSDIR%%/html/threading.html +%%DOCSDIR%%/html/threads-mandelbrot-main-cpp.html +%%DOCSDIR%%/html/threads-mandelbrot-mandelbrot-pro.html +%%DOCSDIR%%/html/threads-mandelbrot-mandelbrotwidget-cpp.html +%%DOCSDIR%%/html/threads-mandelbrot-mandelbrotwidget-h.html +%%DOCSDIR%%/html/threads-mandelbrot-renderthread-cpp.html +%%DOCSDIR%%/html/threads-mandelbrot-renderthread-h.html +%%DOCSDIR%%/html/threads-mandelbrot.html +%%DOCSDIR%%/html/threads-semaphores-semaphores-cpp.html +%%DOCSDIR%%/html/threads-semaphores-semaphores-pro.html +%%DOCSDIR%%/html/threads-semaphores.html +%%DOCSDIR%%/html/threads-waitconditions-waitconditions-cpp.html +%%DOCSDIR%%/html/threads-waitconditions-waitconditions-pro.html +%%DOCSDIR%%/html/threads-waitconditions.html +%%DOCSDIR%%/html/threads.html +%%DOCSDIR%%/html/time.html +%%DOCSDIR%%/html/timers.html +%%DOCSDIR%%/html/tools-codecs-codecs-pro.html +%%DOCSDIR%%/html/tools-codecs-main-cpp.html +%%DOCSDIR%%/html/tools-codecs-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-codecs-mainwindow-h.html +%%DOCSDIR%%/html/tools-codecs-previewform-cpp.html +%%DOCSDIR%%/html/tools-codecs-previewform-h.html +%%DOCSDIR%%/html/tools-codecs.html +%%DOCSDIR%%/html/tools-completer-completer-pro.html +%%DOCSDIR%%/html/tools-completer-completer-qrc.html +%%DOCSDIR%%/html/tools-completer-dirmodel-cpp.html +%%DOCSDIR%%/html/tools-completer-dirmodel-h.html +%%DOCSDIR%%/html/tools-completer-main-cpp.html +%%DOCSDIR%%/html/tools-completer-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-completer-mainwindow-h.html +%%DOCSDIR%%/html/tools-completer.html +%%DOCSDIR%%/html/tools-customcompleter-customcompleter-pro.html +%%DOCSDIR%%/html/tools-customcompleter-customcompleter-qrc.html +%%DOCSDIR%%/html/tools-customcompleter-main-cpp.html +%%DOCSDIR%%/html/tools-customcompleter-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-customcompleter-mainwindow-h.html +%%DOCSDIR%%/html/tools-customcompleter-textedit-cpp.html +%%DOCSDIR%%/html/tools-customcompleter-textedit-h.html +%%DOCSDIR%%/html/tools-customcompleter.html +%%DOCSDIR%%/html/tools-echoplugin-echoplugin-pro.html +%%DOCSDIR%%/html/tools-echoplugin-echowindow-echointerface-h.html +%%DOCSDIR%%/html/tools-echoplugin-echowindow-echowindow-cpp.html +%%DOCSDIR%%/html/tools-echoplugin-echowindow-echowindow-h.html +%%DOCSDIR%%/html/tools-echoplugin-echowindow-echowindow-pro.html +%%DOCSDIR%%/html/tools-echoplugin-echowindow-main-cpp.html +%%DOCSDIR%%/html/tools-echoplugin-plugin-echoplugin-cpp.html +%%DOCSDIR%%/html/tools-echoplugin-plugin-echoplugin-h.html +%%DOCSDIR%%/html/tools-echoplugin-plugin-plugin-pro.html +%%DOCSDIR%%/html/tools-echoplugin.html +%%DOCSDIR%%/html/tools-i18n-i18n-pro.html +%%DOCSDIR%%/html/tools-i18n-i18n-qrc.html +%%DOCSDIR%%/html/tools-i18n-languagechooser-cpp.html +%%DOCSDIR%%/html/tools-i18n-languagechooser-h.html +%%DOCSDIR%%/html/tools-i18n-main-cpp.html +%%DOCSDIR%%/html/tools-i18n-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-i18n-mainwindow-h.html +%%DOCSDIR%%/html/tools-i18n.html +%%DOCSDIR%%/html/tools-plugandpaint-interfaces-h.html +%%DOCSDIR%%/html/tools-plugandpaint-main-cpp.html +%%DOCSDIR%%/html/tools-plugandpaint-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-plugandpaint-mainwindow-h.html +%%DOCSDIR%%/html/tools-plugandpaint-paintarea-cpp.html +%%DOCSDIR%%/html/tools-plugandpaint-paintarea-h.html +%%DOCSDIR%%/html/tools-plugandpaint-plugandpaint-pro.html +%%DOCSDIR%%/html/tools-plugandpaint-plugindialog-cpp.html +%%DOCSDIR%%/html/tools-plugandpaint-plugindialog-h.html +%%DOCSDIR%%/html/tools-plugandpaint.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-basictools-basictools-pro.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-basictools-basictoolsplugin-cpp.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-basictools-basictoolsplugin-h.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-basictools.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-extrafilters-extrafilters-pro.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-extrafilters-extrafiltersplugin-cpp.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-extrafilters-extrafiltersplugin-h.html +%%DOCSDIR%%/html/tools-plugandpaintplugins-extrafilters.html +%%DOCSDIR%%/html/tools-regexp-main-cpp.html +%%DOCSDIR%%/html/tools-regexp-regexp-pro.html +%%DOCSDIR%%/html/tools-regexp-regexpdialog-cpp.html +%%DOCSDIR%%/html/tools-regexp-regexpdialog-h.html +%%DOCSDIR%%/html/tools-regexp.html +%%DOCSDIR%%/html/tools-settingseditor-locationdialog-cpp.html +%%DOCSDIR%%/html/tools-settingseditor-locationdialog-h.html +%%DOCSDIR%%/html/tools-settingseditor-main-cpp.html +%%DOCSDIR%%/html/tools-settingseditor-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-settingseditor-mainwindow-h.html +%%DOCSDIR%%/html/tools-settingseditor-settingseditor-pro.html +%%DOCSDIR%%/html/tools-settingseditor-settingstree-cpp.html +%%DOCSDIR%%/html/tools-settingseditor-settingstree-h.html +%%DOCSDIR%%/html/tools-settingseditor-variantdelegate-cpp.html +%%DOCSDIR%%/html/tools-settingseditor-variantdelegate-h.html +%%DOCSDIR%%/html/tools-settingseditor.html +%%DOCSDIR%%/html/tools-styleplugin-plugin-plugin-pro.html +%%DOCSDIR%%/html/tools-styleplugin-plugin-simplestyle-cpp.html +%%DOCSDIR%%/html/tools-styleplugin-plugin-simplestyle-h.html +%%DOCSDIR%%/html/tools-styleplugin-plugin-simplestyleplugin-cpp.html +%%DOCSDIR%%/html/tools-styleplugin-plugin-simplestyleplugin-h.html +%%DOCSDIR%%/html/tools-styleplugin-styleplugin-pro.html +%%DOCSDIR%%/html/tools-styleplugin-stylewindow-main-cpp.html +%%DOCSDIR%%/html/tools-styleplugin-stylewindow-stylewindow-cpp.html +%%DOCSDIR%%/html/tools-styleplugin-stylewindow-stylewindow-h.html +%%DOCSDIR%%/html/tools-styleplugin-stylewindow-stylewindow-pro.html +%%DOCSDIR%%/html/tools-styleplugin.html +%%DOCSDIR%%/html/tools-treemodelcompleter-main-cpp.html +%%DOCSDIR%%/html/tools-treemodelcompleter-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-treemodelcompleter-mainwindow-h.html +%%DOCSDIR%%/html/tools-treemodelcompleter-treemodelcompleter-cpp.html +%%DOCSDIR%%/html/tools-treemodelcompleter-treemodelcompleter-h.html +%%DOCSDIR%%/html/tools-treemodelcompleter-treemodelcompleter-pro.html +%%DOCSDIR%%/html/tools-treemodelcompleter-treemodelcompleter-qrc.html +%%DOCSDIR%%/html/tools-treemodelcompleter.html +%%DOCSDIR%%/html/tools-undoframework-commands-cpp.html +%%DOCSDIR%%/html/tools-undoframework-commands-h.html +%%DOCSDIR%%/html/tools-undoframework-diagramitem-cpp.html +%%DOCSDIR%%/html/tools-undoframework-diagramitem-h.html +%%DOCSDIR%%/html/tools-undoframework-diagramscene-cpp.html +%%DOCSDIR%%/html/tools-undoframework-diagramscene-h.html +%%DOCSDIR%%/html/tools-undoframework-main-cpp.html +%%DOCSDIR%%/html/tools-undoframework-mainwindow-cpp.html +%%DOCSDIR%%/html/tools-undoframework-mainwindow-h.html +%%DOCSDIR%%/html/tools-undoframework-undoframework-pro.html +%%DOCSDIR%%/html/tools-undoframework-undoframework-qrc.html +%%DOCSDIR%%/html/tools-undoframework.html +%%DOCSDIR%%/html/tools.html +%%DOCSDIR%%/html/topics.html +%%DOCSDIR%%/html/trademarks.html +%%DOCSDIR%%/html/trolltech.html +%%DOCSDIR%%/html/tutorials-addressbook-part1-addressbook-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part1-addressbook-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part1-main-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part1-part1-pro.html +%%DOCSDIR%%/html/tutorials-addressbook-part1.html +%%DOCSDIR%%/html/tutorials-addressbook-part2-addressbook-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part2-addressbook-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part2-main-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part2-part2-pro.html +%%DOCSDIR%%/html/tutorials-addressbook-part2.html +%%DOCSDIR%%/html/tutorials-addressbook-part3-addressbook-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part3-addressbook-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part3-main-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part3-part3-pro.html +%%DOCSDIR%%/html/tutorials-addressbook-part3.html +%%DOCSDIR%%/html/tutorials-addressbook-part4-addressbook-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part4-addressbook-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part4-main-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part4-part4-pro.html +%%DOCSDIR%%/html/tutorials-addressbook-part4.html +%%DOCSDIR%%/html/tutorials-addressbook-part5-addressbook-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part5-addressbook-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part5-finddialog-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part5-finddialog-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part5-main-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part5-part5-pro.html +%%DOCSDIR%%/html/tutorials-addressbook-part5.html +%%DOCSDIR%%/html/tutorials-addressbook-part6-addressbook-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part6-addressbook-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part6-finddialog-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part6-finddialog-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part6-main-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part6-part6-pro.html +%%DOCSDIR%%/html/tutorials-addressbook-part6.html +%%DOCSDIR%%/html/tutorials-addressbook-part7-addressbook-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part7-addressbook-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part7-finddialog-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part7-finddialog-h.html +%%DOCSDIR%%/html/tutorials-addressbook-part7-main-cpp.html +%%DOCSDIR%%/html/tutorials-addressbook-part7-part7-pro.html +%%DOCSDIR%%/html/tutorials-addressbook-part7.html +%%DOCSDIR%%/html/tutorials-addressbook.html +%%DOCSDIR%%/html/tutorials-tutorial-t1-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t1-t1-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t1.html +%%DOCSDIR%%/html/tutorials-tutorial-t10-cannonfield-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t10-cannonfield-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t10-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t10-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t10-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t10-t10-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t10.html +%%DOCSDIR%%/html/tutorials-tutorial-t11-cannonfield-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t11-cannonfield-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t11-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t11-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t11-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t11-t11-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t11.html +%%DOCSDIR%%/html/tutorials-tutorial-t12-cannonfield-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t12-cannonfield-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t12-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t12-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t12-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t12-t12-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t12.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-cannonfield-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-cannonfield-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-gameboard-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-gameboard-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t13-t13-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t13.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-cannonfield-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-cannonfield-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-gameboard-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-gameboard-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t14-t14-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t14.html +%%DOCSDIR%%/html/tutorials-tutorial-t2-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t2-t2-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t2.html +%%DOCSDIR%%/html/tutorials-tutorial-t3-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t3-t3-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t3.html +%%DOCSDIR%%/html/tutorials-tutorial-t4-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t4-t4-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t4.html +%%DOCSDIR%%/html/tutorials-tutorial-t5-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t5-t5-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t5.html +%%DOCSDIR%%/html/tutorials-tutorial-t6-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t6-t6-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t6.html +%%DOCSDIR%%/html/tutorials-tutorial-t7-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t7-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t7-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t7-t7-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t7.html +%%DOCSDIR%%/html/tutorials-tutorial-t8-cannonfield-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t8-cannonfield-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t8-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t8-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t8-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t8-t8-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t8.html +%%DOCSDIR%%/html/tutorials-tutorial-t9-cannonfield-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t9-cannonfield-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t9-lcdrange-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t9-lcdrange-h.html +%%DOCSDIR%%/html/tutorials-tutorial-t9-main-cpp.html +%%DOCSDIR%%/html/tutorials-tutorial-t9-t9-pro.html +%%DOCSDIR%%/html/tutorials-tutorial-t9.html +%%DOCSDIR%%/html/tutorials-tutorial.html +%%DOCSDIR%%/html/tutorials.html +%%DOCSDIR%%/html/uic.html +%%DOCSDIR%%/html/uitools-multipleinheritance-calculatorform-cpp.html +%%DOCSDIR%%/html/uitools-multipleinheritance-calculatorform-h.html +%%DOCSDIR%%/html/uitools-multipleinheritance-calculatorform-ui.html +%%DOCSDIR%%/html/uitools-multipleinheritance-main-cpp.html +%%DOCSDIR%%/html/uitools-multipleinheritance-multipleinheritance-pro.html +%%DOCSDIR%%/html/uitools-multipleinheritance.html +%%DOCSDIR%%/html/uitools-textfinder-forms-textfinder-ui.html +%%DOCSDIR%%/html/uitools-textfinder-main-cpp.html +%%DOCSDIR%%/html/uitools-textfinder-textfinder-cpp.html +%%DOCSDIR%%/html/uitools-textfinder-textfinder-h.html +%%DOCSDIR%%/html/uitools-textfinder-textfinder-pro.html +%%DOCSDIR%%/html/uitools-textfinder-textfinder-qrc.html +%%DOCSDIR%%/html/uitools-textfinder.html +%%DOCSDIR%%/html/unicode.html +%%DOCSDIR%%/html/unix-signals.html +%%DOCSDIR%%/html/usingadaptors.html +%%DOCSDIR%%/html/webkit-previewer-main-cpp.html +%%DOCSDIR%%/html/webkit-previewer-mainwindow-cpp.html +%%DOCSDIR%%/html/webkit-previewer-mainwindow-h.html +%%DOCSDIR%%/html/webkit-previewer-previewer-cpp.html +%%DOCSDIR%%/html/webkit-previewer-previewer-h.html +%%DOCSDIR%%/html/webkit-previewer-previewer-pro.html +%%DOCSDIR%%/html/webkit-previewer-previewer-ui.html +%%DOCSDIR%%/html/webkit-previewer.html +%%DOCSDIR%%/html/widgets-analogclock-analogclock-cpp.html +%%DOCSDIR%%/html/widgets-analogclock-analogclock-h.html +%%DOCSDIR%%/html/widgets-analogclock-analogclock-pro.html +%%DOCSDIR%%/html/widgets-analogclock-main-cpp.html +%%DOCSDIR%%/html/widgets-analogclock.html +%%DOCSDIR%%/html/widgets-calculator-button-cpp.html +%%DOCSDIR%%/html/widgets-calculator-button-h.html +%%DOCSDIR%%/html/widgets-calculator-calculator-cpp.html +%%DOCSDIR%%/html/widgets-calculator-calculator-h.html +%%DOCSDIR%%/html/widgets-calculator-calculator-pro.html +%%DOCSDIR%%/html/widgets-calculator-main-cpp.html +%%DOCSDIR%%/html/widgets-calculator.html +%%DOCSDIR%%/html/widgets-calendarwidget-calendarwidget-pro.html +%%DOCSDIR%%/html/widgets-calendarwidget-main-cpp.html +%%DOCSDIR%%/html/widgets-calendarwidget-window-cpp.html +%%DOCSDIR%%/html/widgets-calendarwidget-window-h.html +%%DOCSDIR%%/html/widgets-calendarwidget.html +%%DOCSDIR%%/html/widgets-charactermap-charactermap-pro.html +%%DOCSDIR%%/html/widgets-charactermap-characterwidget-cpp.html +%%DOCSDIR%%/html/widgets-charactermap-characterwidget-h.html +%%DOCSDIR%%/html/widgets-charactermap-main-cpp.html +%%DOCSDIR%%/html/widgets-charactermap-mainwindow-cpp.html +%%DOCSDIR%%/html/widgets-charactermap-mainwindow-h.html +%%DOCSDIR%%/html/widgets-charactermap.html +%%DOCSDIR%%/html/widgets-digitalclock-digitalclock-cpp.html +%%DOCSDIR%%/html/widgets-digitalclock-digitalclock-h.html +%%DOCSDIR%%/html/widgets-digitalclock-digitalclock-pro.html +%%DOCSDIR%%/html/widgets-digitalclock-main-cpp.html +%%DOCSDIR%%/html/widgets-digitalclock.html +%%DOCSDIR%%/html/widgets-groupbox-groupbox-pro.html +%%DOCSDIR%%/html/widgets-groupbox-main-cpp.html +%%DOCSDIR%%/html/widgets-groupbox-window-cpp.html +%%DOCSDIR%%/html/widgets-groupbox-window-h.html +%%DOCSDIR%%/html/widgets-groupbox.html +%%DOCSDIR%%/html/widgets-icons-iconpreviewarea-cpp.html +%%DOCSDIR%%/html/widgets-icons-iconpreviewarea-h.html +%%DOCSDIR%%/html/widgets-icons-icons-pro.html +%%DOCSDIR%%/html/widgets-icons-iconsizespinbox-cpp.html +%%DOCSDIR%%/html/widgets-icons-iconsizespinbox-h.html +%%DOCSDIR%%/html/widgets-icons-imagedelegate-cpp.html +%%DOCSDIR%%/html/widgets-icons-imagedelegate-h.html +%%DOCSDIR%%/html/widgets-icons-main-cpp.html +%%DOCSDIR%%/html/widgets-icons-mainwindow-cpp.html +%%DOCSDIR%%/html/widgets-icons-mainwindow-h.html +%%DOCSDIR%%/html/widgets-icons.html +%%DOCSDIR%%/html/widgets-imageviewer-imageviewer-cpp.html +%%DOCSDIR%%/html/widgets-imageviewer-imageviewer-h.html +%%DOCSDIR%%/html/widgets-imageviewer-imageviewer-pro.html +%%DOCSDIR%%/html/widgets-imageviewer-main-cpp.html +%%DOCSDIR%%/html/widgets-imageviewer.html +%%DOCSDIR%%/html/widgets-lineedits-lineedits-pro.html +%%DOCSDIR%%/html/widgets-lineedits-main-cpp.html +%%DOCSDIR%%/html/widgets-lineedits-window-cpp.html +%%DOCSDIR%%/html/widgets-lineedits-window-h.html +%%DOCSDIR%%/html/widgets-lineedits.html +%%DOCSDIR%%/html/widgets-movie-main-cpp.html +%%DOCSDIR%%/html/widgets-movie-movie-pro.html +%%DOCSDIR%%/html/widgets-movie-movie-qrc.html +%%DOCSDIR%%/html/widgets-movie-movieplayer-cpp.html +%%DOCSDIR%%/html/widgets-movie-movieplayer-h.html +%%DOCSDIR%%/html/widgets-movie.html +%%DOCSDIR%%/html/widgets-scribble-main-cpp.html +%%DOCSDIR%%/html/widgets-scribble-mainwindow-cpp.html +%%DOCSDIR%%/html/widgets-scribble-mainwindow-h.html +%%DOCSDIR%%/html/widgets-scribble-scribble-pro.html +%%DOCSDIR%%/html/widgets-scribble-scribblearea-cpp.html +%%DOCSDIR%%/html/widgets-scribble-scribblearea-h.html +%%DOCSDIR%%/html/widgets-scribble.html +%%DOCSDIR%%/html/widgets-shapedclock-main-cpp.html +%%DOCSDIR%%/html/widgets-shapedclock-shapedclock-cpp.html +%%DOCSDIR%%/html/widgets-shapedclock-shapedclock-h.html +%%DOCSDIR%%/html/widgets-shapedclock-shapedclock-pro.html +%%DOCSDIR%%/html/widgets-shapedclock.html +%%DOCSDIR%%/html/widgets-sliders-main-cpp.html +%%DOCSDIR%%/html/widgets-sliders-sliders-pro.html +%%DOCSDIR%%/html/widgets-sliders-slidersgroup-cpp.html +%%DOCSDIR%%/html/widgets-sliders-slidersgroup-h.html +%%DOCSDIR%%/html/widgets-sliders-window-cpp.html +%%DOCSDIR%%/html/widgets-sliders-window-h.html +%%DOCSDIR%%/html/widgets-sliders.html +%%DOCSDIR%%/html/widgets-spinboxes-main-cpp.html +%%DOCSDIR%%/html/widgets-spinboxes-spinboxes-pro.html +%%DOCSDIR%%/html/widgets-spinboxes-window-cpp.html +%%DOCSDIR%%/html/widgets-spinboxes-window-h.html +%%DOCSDIR%%/html/widgets-spinboxes.html +%%DOCSDIR%%/html/widgets-styles-main-cpp.html +%%DOCSDIR%%/html/widgets-styles-norwegianwoodstyle-cpp.html +%%DOCSDIR%%/html/widgets-styles-norwegianwoodstyle-h.html +%%DOCSDIR%%/html/widgets-styles-styles-pro.html +%%DOCSDIR%%/html/widgets-styles-styles-qrc.html +%%DOCSDIR%%/html/widgets-styles-widgetgallery-cpp.html +%%DOCSDIR%%/html/widgets-styles-widgetgallery-h.html +%%DOCSDIR%%/html/widgets-styles.html +%%DOCSDIR%%/html/widgets-stylesheet-layouts-default-ui.html +%%DOCSDIR%%/html/widgets-stylesheet-layouts-pagefold-ui.html +%%DOCSDIR%%/html/widgets-stylesheet-main-cpp.html +%%DOCSDIR%%/html/widgets-stylesheet-mainwindow-cpp.html +%%DOCSDIR%%/html/widgets-stylesheet-mainwindow-h.html +%%DOCSDIR%%/html/widgets-stylesheet-mainwindow-ui.html +%%DOCSDIR%%/html/widgets-stylesheet-stylesheet-pro.html +%%DOCSDIR%%/html/widgets-stylesheet-stylesheet-qrc.html +%%DOCSDIR%%/html/widgets-stylesheet-stylesheeteditor-cpp.html +%%DOCSDIR%%/html/widgets-stylesheet-stylesheeteditor-h.html +%%DOCSDIR%%/html/widgets-stylesheet-stylesheeteditor-ui.html +%%DOCSDIR%%/html/widgets-stylesheet.html +%%DOCSDIR%%/html/widgets-tablet-main-cpp.html +%%DOCSDIR%%/html/widgets-tablet-mainwindow-cpp.html +%%DOCSDIR%%/html/widgets-tablet-mainwindow-h.html +%%DOCSDIR%%/html/widgets-tablet-tablet-pro.html +%%DOCSDIR%%/html/widgets-tablet-tabletapplication-cpp.html +%%DOCSDIR%%/html/widgets-tablet-tabletapplication-h.html +%%DOCSDIR%%/html/widgets-tablet-tabletcanvas-cpp.html +%%DOCSDIR%%/html/widgets-tablet-tabletcanvas-h.html +%%DOCSDIR%%/html/widgets-tablet.html +%%DOCSDIR%%/html/widgets-tetrix-main-cpp.html +%%DOCSDIR%%/html/widgets-tetrix-tetrix-pro.html +%%DOCSDIR%%/html/widgets-tetrix-tetrixboard-cpp.html +%%DOCSDIR%%/html/widgets-tetrix-tetrixboard-h.html +%%DOCSDIR%%/html/widgets-tetrix-tetrixpiece-cpp.html +%%DOCSDIR%%/html/widgets-tetrix-tetrixpiece-h.html +%%DOCSDIR%%/html/widgets-tetrix-tetrixwindow-cpp.html +%%DOCSDIR%%/html/widgets-tetrix-tetrixwindow-h.html +%%DOCSDIR%%/html/widgets-tetrix.html +%%DOCSDIR%%/html/widgets-tooltips-main-cpp.html +%%DOCSDIR%%/html/widgets-tooltips-shapeitem-cpp.html +%%DOCSDIR%%/html/widgets-tooltips-shapeitem-h.html +%%DOCSDIR%%/html/widgets-tooltips-sortingbox-cpp.html +%%DOCSDIR%%/html/widgets-tooltips-sortingbox-h.html +%%DOCSDIR%%/html/widgets-tooltips-tooltips-pro.html +%%DOCSDIR%%/html/widgets-tooltips-tooltips-qrc.html +%%DOCSDIR%%/html/widgets-tooltips.html +%%DOCSDIR%%/html/widgets-tutorial.html +%%DOCSDIR%%/html/widgets-wiggly-dialog-cpp.html +%%DOCSDIR%%/html/widgets-wiggly-dialog-h.html +%%DOCSDIR%%/html/widgets-wiggly-main-cpp.html +%%DOCSDIR%%/html/widgets-wiggly-wiggly-pro.html +%%DOCSDIR%%/html/widgets-wiggly-wigglywidget-cpp.html +%%DOCSDIR%%/html/widgets-wiggly-wigglywidget-h.html +%%DOCSDIR%%/html/widgets-wiggly.html +%%DOCSDIR%%/html/widgets-windowflags-controllerwindow-cpp.html +%%DOCSDIR%%/html/widgets-windowflags-controllerwindow-h.html +%%DOCSDIR%%/html/widgets-windowflags-main-cpp.html +%%DOCSDIR%%/html/widgets-windowflags-previewwindow-cpp.html +%%DOCSDIR%%/html/widgets-windowflags-previewwindow-h.html +%%DOCSDIR%%/html/widgets-windowflags-windowflags-pro.html +%%DOCSDIR%%/html/widgets-windowflags.html +%%DOCSDIR%%/html/wince-with-qt-introduction.html +%%DOCSDIR%%/html/windowsce-customization.html +%%DOCSDIR%%/html/windowsce-opengl.html +%%DOCSDIR%%/html/winsystem.html +%%DOCSDIR%%/html/xml-dombookmarks-dombookmarks-pro.html +%%DOCSDIR%%/html/xml-dombookmarks-main-cpp.html +%%DOCSDIR%%/html/xml-dombookmarks-mainwindow-cpp.html +%%DOCSDIR%%/html/xml-dombookmarks-mainwindow-h.html +%%DOCSDIR%%/html/xml-dombookmarks-xbeltree-cpp.html +%%DOCSDIR%%/html/xml-dombookmarks-xbeltree-h.html +%%DOCSDIR%%/html/xml-dombookmarks.html +%%DOCSDIR%%/html/xml-rsslisting-main-cpp.html +%%DOCSDIR%%/html/xml-rsslisting-rsslisting-cpp.html +%%DOCSDIR%%/html/xml-rsslisting-rsslisting-h.html +%%DOCSDIR%%/html/xml-rsslisting-rsslisting-pro.html +%%DOCSDIR%%/html/xml-rsslisting.html +%%DOCSDIR%%/html/xml-saxbookmarks-main-cpp.html +%%DOCSDIR%%/html/xml-saxbookmarks-mainwindow-cpp.html +%%DOCSDIR%%/html/xml-saxbookmarks-mainwindow-h.html +%%DOCSDIR%%/html/xml-saxbookmarks-saxbookmarks-pro.html +%%DOCSDIR%%/html/xml-saxbookmarks-xbelgenerator-cpp.html +%%DOCSDIR%%/html/xml-saxbookmarks-xbelgenerator-h.html +%%DOCSDIR%%/html/xml-saxbookmarks-xbelhandler-cpp.html +%%DOCSDIR%%/html/xml-saxbookmarks-xbelhandler-h.html +%%DOCSDIR%%/html/xml-saxbookmarks.html +%%DOCSDIR%%/html/xml-streambookmarks-main-cpp.html +%%DOCSDIR%%/html/xml-streambookmarks-mainwindow-cpp.html +%%DOCSDIR%%/html/xml-streambookmarks-mainwindow-h.html +%%DOCSDIR%%/html/xml-streambookmarks-streambookmarks-pro.html +%%DOCSDIR%%/html/xml-streambookmarks-xbelreader-cpp.html +%%DOCSDIR%%/html/xml-streambookmarks-xbelreader-h.html +%%DOCSDIR%%/html/xml-streambookmarks-xbelwriter-cpp.html +%%DOCSDIR%%/html/xml-streambookmarks-xbelwriter-h.html +%%DOCSDIR%%/html/xml-streambookmarks.html +%%DOCSDIR%%/html/xml-tools.html +%%DOCSDIR%%/html/xml-xmlstreamlint-main-cpp.html +%%DOCSDIR%%/html/xml-xmlstreamlint-xmlstreamlint-pro.html +%%DOCSDIR%%/html/xml-xmlstreamlint.html +%%DOCSDIR%%/html/xmlpatterns-filetree-filetree-cpp.html +%%DOCSDIR%%/html/xmlpatterns-filetree-filetree-h.html +%%DOCSDIR%%/html/xmlpatterns-filetree-filetree-pro.html +%%DOCSDIR%%/html/xmlpatterns-filetree-forms-mainwindow-ui.html +%%DOCSDIR%%/html/xmlpatterns-filetree-main-cpp.html +%%DOCSDIR%%/html/xmlpatterns-filetree-mainwindow-cpp.html +%%DOCSDIR%%/html/xmlpatterns-filetree-mainwindow-h.html +%%DOCSDIR%%/html/xmlpatterns-filetree-queries-listcppfiles-xq.html +%%DOCSDIR%%/html/xmlpatterns-filetree-queries-qrc.html +%%DOCSDIR%%/html/xmlpatterns-filetree-queries-wholetree-xq.html +%%DOCSDIR%%/html/xmlpatterns-filetree.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-forms-mainwindow-ui.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-main-cpp.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-mainwindow-cpp.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-mainwindow-h.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-qobjectxmlmodel-cpp.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-qobjectxmlmodel-h.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-qobjectxmlmodel-pro.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-queries-qrc.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-queries-statisticsinhtml-xq.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel-queries-wholetree-xq.html +%%DOCSDIR%%/html/xmlpatterns-qobjectxmlmodel.html +%%DOCSDIR%%/html/xmlpatterns-recipes-files-allrecipes-xq.html +%%DOCSDIR%%/html/xmlpatterns-recipes-files-cookbook-xml.html +%%DOCSDIR%%/html/xmlpatterns-recipes-files-liquidingredientsinsoup-xq.html +%%DOCSDIR%%/html/xmlpatterns-recipes-files-mushroomsoup-xq.html +%%DOCSDIR%%/html/xmlpatterns-recipes-files-preparationlessthan30-xq.html +%%DOCSDIR%%/html/xmlpatterns-recipes-files-preparationtimes-xq.html +%%DOCSDIR%%/html/xmlpatterns-recipes-forms-querywidget-ui.html +%%DOCSDIR%%/html/xmlpatterns-recipes-main-cpp.html +%%DOCSDIR%%/html/xmlpatterns-recipes-querymainwindow-cpp.html +%%DOCSDIR%%/html/xmlpatterns-recipes-querymainwindow-h.html +%%DOCSDIR%%/html/xmlpatterns-recipes-recipes-pro.html +%%DOCSDIR%%/html/xmlpatterns-recipes-recipes-qrc.html +%%DOCSDIR%%/html/xmlpatterns-recipes.html +%%DOCSDIR%%/html/xmlpatterns-xquery-globalvariables-globals-cpp.html +%%DOCSDIR%%/html/xmlpatterns-xquery-globalvariables-globalvariables-pro.html +%%DOCSDIR%%/html/xmlpatterns-xquery-globalvariables-reportglobals-xq.html +%%DOCSDIR%%/html/xmlpatterns-xquery-globalvariables.html +%%DOCSDIR%%/html/xquery-introduction.html +%%DOCSDIR%%/qch/assistant.qch +%%DOCSDIR%%/qch/designer.qch +%%DOCSDIR%%/qch/linguist.qch +%%DOCSDIR%%/qch/qmake.qch +%%DOCSDIR%%/qch/qt.qch +@dirrm %%DOCSDIR%%/qch +@dirrm %%DOCSDIR%%/html/images +@dirrm %%DOCSDIR%%/html +@dirrm %%DOCSDIR%% diff --git a/misc/qt4-qtconfig/Makefile b/misc/qt4-qtconfig/Makefile index e21af2aa5b35..56c6a8b64ce8 100644 --- a/misc/qt4-qtconfig/Makefile +++ b/misc/qt4-qtconfig/Makefile @@ -1,4 +1,3 @@ -# -*-mode: makefile-*- # New ports collection makefile for: qt40 # Date created: Wed Jun 29 11:49:42 CEST 2005 # Whom: lofi@freebsd.org @@ -8,7 +7,6 @@ PORTNAME= qtconfig PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES?= misc MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -19,36 +17,38 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt graphical configuration utility USE_QT_VER= 4 -QT_COMPONENTS= qmake_build moc_build rcc_build uic_build qt3support corelib +QT_COMPONENTS= qmake_build moc_build rcc_build uic_build qt3support corelib \ + gui sql xml phonon phonon-gst QT_NONSTANDARD= yes QT_DIST= yes +USE_GSTREAMER= yes + HAS_CONFIGURE= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/designer' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/network src/opengl \ + src/script src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/bin|g' \ - -e 's|^TARGET.*|TARGET=qtconfig-qt4|g' \ + ${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=qtconfig-qt4|g' \ ${WRKSRC}/${PORTNAME}.pro + ${ECHO_CMD} "INCLUDEPATH+=${EXTRA_INCL}" >> ${WRKSRC}/${PORTNAME}.pro ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc diff --git a/misc/qt4-qtconfig/distinfo b/misc/qt4-qtconfig/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/misc/qt4-qtconfig/distinfo +++ b/misc/qt4-qtconfig/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/misc/qt4-qtdemo/Makefile b/misc/qt4-qtdemo/Makefile index 749f3815125a..256c8914c19a 100644 --- a/misc/qt4-qtdemo/Makefile +++ b/misc/qt4-qtdemo/Makefile @@ -8,7 +8,7 @@ PORTNAME= qtdemo PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= misc MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -21,7 +21,8 @@ COMMENT= Qt demonstration and example programs USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build rcc_build uic_build assistantclient \ corelib designer gui network opengl sql svg qtestlib xml \ - imageformats_run dbus script + imageformats_run dbus script webkit phonon help assistant_run \ + phonon-gst QT_NONSTANDARD= yes QT_DIST= yes @@ -31,8 +32,22 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= doc mkspecs qmake translations +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/demos CONFIGURE_WRKSRC=${WRKSRC}/../ +PATCH_WRKSRC= ${CONFIGURE_WRKSRC} + +post-patch: + ${REINPLACE_CMD} -e '/app +=/s|"assistant"|"assistant-qt4"|' \ + ${PATCH_WRKSRC}/demos/qtdemo/menumanager.cpp \ + ${PATCH_WRKSRC}/examples/help/remotecontrol/remotecontrol.cpp \ + ${PATCH_WRKSRC}/examples/help/simpletextviewer/assistant.cpp pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} diff --git a/misc/qt4-qtdemo/distinfo b/misc/qt4-qtdemo/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/misc/qt4-qtdemo/distinfo +++ b/misc/qt4-qtdemo/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/misc/qt4-qtdemo/pkg-plist b/misc/qt4-qtdemo/pkg-plist index b70885d3bd5b..2bcde8962f9f 100644 --- a/misc/qt4-qtdemo/pkg-plist +++ b/misc/qt4-qtdemo/pkg-plist @@ -10,2260 +10,2769 @@ lib/qt4/plugins/designer/libtaskmenuextension.so %%DEBUG%%lib/qt4/plugins/designer/libtaskmenuextension.so.debug lib/qt4/plugins/designer/libworldtimeclockplugin.so %%DEBUG%%lib/qt4/plugins/designer/libworldtimeclockplugin.so.debug -share/qt4/demos/README -share/qt4/demos/affine/affine -%%DEBUG%%share/qt4/demos/affine/affine.debug -share/qt4/demos/affine/affine.pro -share/qt4/demos/affine/affine.qrc -share/qt4/demos/affine/bg1.jpg -share/qt4/demos/affine/main.cpp -share/qt4/demos/affine/xform.cpp -share/qt4/demos/affine/xform.h -share/qt4/demos/affine/xform.html -share/qt4/demos/arthurplugin/arthur_plugin.qrc -share/qt4/demos/arthurplugin/arthurplugin.pro -share/qt4/demos/arthurplugin/bg1.jpg -share/qt4/demos/arthurplugin/composition.cpp -share/qt4/demos/arthurplugin/composition.h -share/qt4/demos/arthurplugin/flower_2.png -share/qt4/demos/arthurplugin/gradients.cpp -share/qt4/demos/arthurplugin/gradients.h -share/qt4/demos/arthurplugin/pathdeform.cpp -share/qt4/demos/arthurplugin/pathdeform.h -share/qt4/demos/arthurplugin/pathstroke.cpp -share/qt4/demos/arthurplugin/pathstroke.h -share/qt4/demos/arthurplugin/plugin.cpp -share/qt4/demos/arthurplugin/xform.cpp -share/qt4/demos/arthurplugin/xform.h -share/qt4/demos/books/bookdelegate.cpp -share/qt4/demos/books/bookdelegate.h -share/qt4/demos/books/books -%%DEBUG%%share/qt4/demos/books/books.debug -share/qt4/demos/books/books.pro -share/qt4/demos/books/books.qrc -share/qt4/demos/books/bookwindow.cpp -share/qt4/demos/books/bookwindow.h -share/qt4/demos/books/bookwindow.ui -share/qt4/demos/books/images/star.png -share/qt4/demos/books/initdb.h -share/qt4/demos/books/main.cpp -share/qt4/demos/chip/chip -share/qt4/demos/chip/chip.cpp -%%DEBUG%%share/qt4/demos/chip/chip.debug -share/qt4/demos/chip/chip.h -share/qt4/demos/chip/chip.pro -share/qt4/demos/chip/fileprint.png -share/qt4/demos/chip/images.qrc -share/qt4/demos/chip/main.cpp -share/qt4/demos/chip/mainwindow.cpp -share/qt4/demos/chip/mainwindow.h -share/qt4/demos/chip/qt4logo.png -share/qt4/demos/chip/rotateleft.png -share/qt4/demos/chip/rotateright.png -share/qt4/demos/chip/view.cpp -share/qt4/demos/chip/view.h -share/qt4/demos/chip/zoomin.png -share/qt4/demos/chip/zoomout.png -share/qt4/demos/composition/composition -share/qt4/demos/composition/composition.cpp -%%DEBUG%%share/qt4/demos/composition/composition.debug -share/qt4/demos/composition/composition.h -share/qt4/demos/composition/composition.html -share/qt4/demos/composition/composition.pro -share/qt4/demos/composition/composition.qrc -share/qt4/demos/composition/flower_2.png -share/qt4/demos/composition/main.cpp -share/qt4/demos/deform/deform -%%DEBUG%%share/qt4/demos/deform/deform.debug -share/qt4/demos/deform/deform.pro -share/qt4/demos/deform/deform.qrc -share/qt4/demos/deform/main.cpp -share/qt4/demos/deform/pathdeform.cpp -share/qt4/demos/deform/pathdeform.h -share/qt4/demos/deform/pathdeform.html -share/qt4/demos/demos.pro -share/qt4/demos/gradients/gradients -share/qt4/demos/gradients/gradients.cpp -%%DEBUG%%share/qt4/demos/gradients/gradients.debug -share/qt4/demos/gradients/gradients.h -share/qt4/demos/gradients/gradients.html -share/qt4/demos/gradients/gradients.pro -share/qt4/demos/gradients/gradients.qrc -share/qt4/demos/gradients/main.cpp -share/qt4/demos/interview/README -share/qt4/demos/interview/images/folder.png -share/qt4/demos/interview/images/interview.png -share/qt4/demos/interview/images/services.png -share/qt4/demos/interview/interview -%%DEBUG%%share/qt4/demos/interview/interview.debug -share/qt4/demos/interview/interview.pro -share/qt4/demos/interview/interview.qrc -share/qt4/demos/interview/main.cpp -share/qt4/demos/interview/model.cpp -share/qt4/demos/interview/model.h -share/qt4/demos/mainwindow/colorswatch.cpp -share/qt4/demos/mainwindow/colorswatch.h -share/qt4/demos/mainwindow/main.cpp -share/qt4/demos/mainwindow/mainwindow -share/qt4/demos/mainwindow/mainwindow.cpp -%%DEBUG%%share/qt4/demos/mainwindow/mainwindow.debug -share/qt4/demos/mainwindow/mainwindow.h -share/qt4/demos/mainwindow/mainwindow.pro -share/qt4/demos/mainwindow/mainwindow.qrc -share/qt4/demos/mainwindow/qt.png -share/qt4/demos/mainwindow/toolbar.cpp -share/qt4/demos/mainwindow/toolbar.h -share/qt4/demos/pathstroke/main.cpp -share/qt4/demos/pathstroke/pathstroke -share/qt4/demos/pathstroke/pathstroke.cpp -%%DEBUG%%share/qt4/demos/pathstroke/pathstroke.debug -share/qt4/demos/pathstroke/pathstroke.h -share/qt4/demos/pathstroke/pathstroke.html -share/qt4/demos/pathstroke/pathstroke.pro -share/qt4/demos/pathstroke/pathstroke.qrc -share/qt4/demos/qtdemo/colors.cpp -share/qt4/demos/qtdemo/colors.h -share/qt4/demos/qtdemo/demoitem.cpp -share/qt4/demos/qtdemo/demoitem.h -share/qt4/demos/qtdemo/demoitemanimation.cpp -share/qt4/demos/qtdemo/demoitemanimation.h -share/qt4/demos/qtdemo/demoscene.cpp -share/qt4/demos/qtdemo/demoscene.h -share/qt4/demos/qtdemo/demotextitem.cpp -share/qt4/demos/qtdemo/demotextitem.h -share/qt4/demos/qtdemo/dockitem.cpp -share/qt4/demos/qtdemo/dockitem.h -share/qt4/demos/qtdemo/examplecontent.cpp -share/qt4/demos/qtdemo/examplecontent.h -share/qt4/demos/qtdemo/guide.cpp -share/qt4/demos/qtdemo/guide.h -share/qt4/demos/qtdemo/guidecircle.cpp -share/qt4/demos/qtdemo/guidecircle.h -share/qt4/demos/qtdemo/guideline.cpp -share/qt4/demos/qtdemo/guideline.h -share/qt4/demos/qtdemo/headingitem.cpp -share/qt4/demos/qtdemo/headingitem.h -share/qt4/demos/qtdemo/imageitem.cpp -share/qt4/demos/qtdemo/imageitem.h -share/qt4/demos/qtdemo/images/demobg.png -share/qt4/demos/qtdemo/images/qtlogo_small.png -share/qt4/demos/qtdemo/images/trolltech-logo.png -share/qt4/demos/qtdemo/itemcircleanimation.cpp -share/qt4/demos/qtdemo/itemcircleanimation.h -share/qt4/demos/qtdemo/letteritem.cpp -share/qt4/demos/qtdemo/letteritem.h -share/qt4/demos/qtdemo/main.cpp -share/qt4/demos/qtdemo/mainwindow.cpp -share/qt4/demos/qtdemo/mainwindow.h -share/qt4/demos/qtdemo/menucontent.cpp -share/qt4/demos/qtdemo/menucontent.h -share/qt4/demos/qtdemo/menumanager.cpp -share/qt4/demos/qtdemo/menumanager.h -share/qt4/demos/qtdemo/qtdemo.icns -share/qt4/demos/qtdemo/qtdemo.ico -share/qt4/demos/qtdemo/qtdemo.pro -share/qt4/demos/qtdemo/qtdemo.qrc -share/qt4/demos/qtdemo/qtdemo.rc -share/qt4/demos/qtdemo/scanitem.cpp -share/qt4/demos/qtdemo/scanitem.h -share/qt4/demos/qtdemo/score.cpp -share/qt4/demos/qtdemo/score.h -share/qt4/demos/qtdemo/textbutton.cpp -share/qt4/demos/qtdemo/textbutton.h -share/qt4/demos/qtdemo/xml/examples.xml -share/qt4/demos/shared/arthurstyle.cpp -share/qt4/demos/shared/arthurstyle.h -share/qt4/demos/shared/arthurwidgets.cpp -share/qt4/demos/shared/arthurwidgets.h -share/qt4/demos/shared/hoverpoints.cpp -share/qt4/demos/shared/hoverpoints.h -share/qt4/demos/shared/images/bg_pattern.png -share/qt4/demos/shared/images/button_normal_cap_left.png -share/qt4/demos/shared/images/button_normal_cap_right.png -share/qt4/demos/shared/images/button_normal_stretch.png -share/qt4/demos/shared/images/button_pressed_cap_left.png -share/qt4/demos/shared/images/button_pressed_cap_right.png -share/qt4/demos/shared/images/button_pressed_stretch.png -share/qt4/demos/shared/images/curve_thing_edit-6.png -share/qt4/demos/shared/images/frame_bottom.png -share/qt4/demos/shared/images/frame_bottomleft.png -share/qt4/demos/shared/images/frame_bottomright.png -share/qt4/demos/shared/images/frame_left.png -share/qt4/demos/shared/images/frame_right.png -share/qt4/demos/shared/images/frame_top.png -share/qt4/demos/shared/images/frame_topleft.png -share/qt4/demos/shared/images/frame_topright.png -share/qt4/demos/shared/images/groupframe_bottom_left.png -share/qt4/demos/shared/images/groupframe_bottom_right.png -share/qt4/demos/shared/images/groupframe_bottom_stretch.png -share/qt4/demos/shared/images/groupframe_left_stretch.png -share/qt4/demos/shared/images/groupframe_right_stretch.png -share/qt4/demos/shared/images/groupframe_top_stretch.png -share/qt4/demos/shared/images/groupframe_topleft.png -share/qt4/demos/shared/images/groupframe_topright.png -share/qt4/demos/shared/images/line_dash_dot.png -share/qt4/demos/shared/images/line_dash_dot_dot.png -share/qt4/demos/shared/images/line_dashed.png -share/qt4/demos/shared/images/line_dotted.png -share/qt4/demos/shared/images/line_solid.png -share/qt4/demos/shared/images/radiobutton-off.png -share/qt4/demos/shared/images/radiobutton-on.png -share/qt4/demos/shared/images/radiobutton_off.png -share/qt4/demos/shared/images/radiobutton_on.png -share/qt4/demos/shared/images/slider_bar.png -share/qt4/demos/shared/images/slider_thumb_off.png -share/qt4/demos/shared/images/slider_thumb_on.png -share/qt4/demos/shared/images/title_cap_left.png -share/qt4/demos/shared/images/title_cap_right.png -share/qt4/demos/shared/images/title_stretch.png -share/qt4/demos/shared/libdemo_shared.a -share/qt4/demos/shared/libdemo_shared.prl -share/qt4/demos/shared/shared.pri -share/qt4/demos/shared/shared.pro -share/qt4/demos/shared/shared.qrc -share/qt4/demos/spreadsheet/images/interview.png -share/qt4/demos/spreadsheet/main.cpp -share/qt4/demos/spreadsheet/spreadsheet -%%DEBUG%%share/qt4/demos/spreadsheet/spreadsheet.debug -share/qt4/demos/spreadsheet/spreadsheet.pro -share/qt4/demos/spreadsheet/spreadsheet.qrc -share/qt4/demos/sqlbrowser/browser.cpp -share/qt4/demos/sqlbrowser/browser.h -share/qt4/demos/sqlbrowser/browserwidget.ui -share/qt4/demos/sqlbrowser/connectionwidget.cpp -share/qt4/demos/sqlbrowser/connectionwidget.h -share/qt4/demos/sqlbrowser/main.cpp -share/qt4/demos/sqlbrowser/qsqlconnectiondialog.cpp -share/qt4/demos/sqlbrowser/qsqlconnectiondialog.h -share/qt4/demos/sqlbrowser/qsqlconnectiondialog.ui -share/qt4/demos/sqlbrowser/sqlbrowser -%%DEBUG%%share/qt4/demos/sqlbrowser/sqlbrowser.debug -share/qt4/demos/sqlbrowser/sqlbrowser.pro -share/qt4/demos/textedit/example.html -share/qt4/demos/textedit/images/logo32.png -share/qt4/demos/textedit/images/mac/editcopy.png -share/qt4/demos/textedit/images/mac/editcut.png -share/qt4/demos/textedit/images/mac/editpaste.png -share/qt4/demos/textedit/images/mac/editredo.png -share/qt4/demos/textedit/images/mac/editundo.png -share/qt4/demos/textedit/images/mac/exportpdf.png -share/qt4/demos/textedit/images/mac/filenew.png -share/qt4/demos/textedit/images/mac/fileopen.png -share/qt4/demos/textedit/images/mac/fileprint.png -share/qt4/demos/textedit/images/mac/filesave.png -share/qt4/demos/textedit/images/mac/textbold.png -share/qt4/demos/textedit/images/mac/textcenter.png -share/qt4/demos/textedit/images/mac/textitalic.png -share/qt4/demos/textedit/images/mac/textjustify.png -share/qt4/demos/textedit/images/mac/textleft.png -share/qt4/demos/textedit/images/mac/textright.png -share/qt4/demos/textedit/images/mac/textunder.png -share/qt4/demos/textedit/images/mac/zoomin.png -share/qt4/demos/textedit/images/mac/zoomout.png -share/qt4/demos/textedit/images/win/editcopy.png -share/qt4/demos/textedit/images/win/editcut.png -share/qt4/demos/textedit/images/win/editpaste.png -share/qt4/demos/textedit/images/win/editredo.png -share/qt4/demos/textedit/images/win/editundo.png -share/qt4/demos/textedit/images/win/exportpdf.png -share/qt4/demos/textedit/images/win/filenew.png -share/qt4/demos/textedit/images/win/fileopen.png -share/qt4/demos/textedit/images/win/fileprint.png -share/qt4/demos/textedit/images/win/filesave.png -share/qt4/demos/textedit/images/win/textbold.png -share/qt4/demos/textedit/images/win/textcenter.png -share/qt4/demos/textedit/images/win/textitalic.png -share/qt4/demos/textedit/images/win/textjustify.png -share/qt4/demos/textedit/images/win/textleft.png -share/qt4/demos/textedit/images/win/textright.png -share/qt4/demos/textedit/images/win/textunder.png -share/qt4/demos/textedit/images/win/zoomin.png -share/qt4/demos/textedit/images/win/zoomout.png -share/qt4/demos/textedit/main.cpp -share/qt4/demos/textedit/printpreview.cpp -share/qt4/demos/textedit/printpreview.h -share/qt4/demos/textedit/textedit -share/qt4/demos/textedit/textedit.cpp -%%DEBUG%%share/qt4/demos/textedit/textedit.debug -share/qt4/demos/textedit/textedit.doc -share/qt4/demos/textedit/textedit.h -share/qt4/demos/textedit/textedit.pro -share/qt4/demos/textedit/textedit.qrc -share/qt4/demos/undo/commands.cpp -share/qt4/demos/undo/commands.h -share/qt4/demos/undo/document.cpp -share/qt4/demos/undo/document.h -share/qt4/demos/undo/main.cpp -share/qt4/demos/undo/mainwindow.cpp -share/qt4/demos/undo/mainwindow.h -share/qt4/demos/undo/undo -%%DEBUG%%share/qt4/demos/undo/undo.debug -share/qt4/demos/undo/undo.pro -share/qt4/demos/undo/undo.qrc -share/qt4/examples/README -share/qt4/examples/assistant/README -share/qt4/examples/assistant/assistant.pro -share/qt4/examples/assistant/simpletextviewer/documentation/about.txt -share/qt4/examples/assistant/simpletextviewer/documentation/browse.html -share/qt4/examples/assistant/simpletextviewer/documentation/filedialog.html -share/qt4/examples/assistant/simpletextviewer/documentation/findfile.html -share/qt4/examples/assistant/simpletextviewer/documentation/images/browse.png -share/qt4/examples/assistant/simpletextviewer/documentation/images/fadedfilemenu.png -share/qt4/examples/assistant/simpletextviewer/documentation/images/filedialog.png -share/qt4/examples/assistant/simpletextviewer/documentation/images/handbook.png -share/qt4/examples/assistant/simpletextviewer/documentation/images/mainwindow.png -share/qt4/examples/assistant/simpletextviewer/documentation/images/open.png -share/qt4/examples/assistant/simpletextviewer/documentation/images/wildcard.png -share/qt4/examples/assistant/simpletextviewer/documentation/index.html -share/qt4/examples/assistant/simpletextviewer/documentation/intro.html -share/qt4/examples/assistant/simpletextviewer/documentation/openfile.html -share/qt4/examples/assistant/simpletextviewer/documentation/simpletextviewer.adp -share/qt4/examples/assistant/simpletextviewer/documentation/wildcardmatching.html -share/qt4/examples/assistant/simpletextviewer/findfiledialog.cpp -share/qt4/examples/assistant/simpletextviewer/findfiledialog.h -share/qt4/examples/assistant/simpletextviewer/main.cpp -share/qt4/examples/assistant/simpletextviewer/mainwindow.cpp -share/qt4/examples/assistant/simpletextviewer/mainwindow.h -share/qt4/examples/assistant/simpletextviewer/simpletextviewer -%%DEBUG%%share/qt4/examples/assistant/simpletextviewer/simpletextviewer.debug -share/qt4/examples/assistant/simpletextviewer/simpletextviewer.pro -share/qt4/examples/designer/README -share/qt4/examples/designer/calculatorbuilder/calculatorbuilder -%%DEBUG%%share/qt4/examples/designer/calculatorbuilder/calculatorbuilder.debug -share/qt4/examples/designer/calculatorbuilder/calculatorbuilder.pro -share/qt4/examples/designer/calculatorbuilder/calculatorbuilder.qrc -share/qt4/examples/designer/calculatorbuilder/calculatorform.cpp -share/qt4/examples/designer/calculatorbuilder/calculatorform.h -share/qt4/examples/designer/calculatorbuilder/calculatorform.ui -share/qt4/examples/designer/calculatorbuilder/main.cpp -share/qt4/examples/designer/calculatorform/calculatorform -share/qt4/examples/designer/calculatorform/calculatorform.cpp -%%DEBUG%%share/qt4/examples/designer/calculatorform/calculatorform.debug -share/qt4/examples/designer/calculatorform/calculatorform.h -share/qt4/examples/designer/calculatorform/calculatorform.pro -share/qt4/examples/designer/calculatorform/calculatorform.ui -share/qt4/examples/designer/calculatorform/main.cpp -share/qt4/examples/designer/containerextension/containerextension.pro -share/qt4/examples/designer/containerextension/multipagewidget.cpp -share/qt4/examples/designer/containerextension/multipagewidget.h -share/qt4/examples/designer/containerextension/multipagewidgetcontainerextension.cpp -share/qt4/examples/designer/containerextension/multipagewidgetcontainerextension.h -share/qt4/examples/designer/containerextension/multipagewidgetextensionfactory.cpp -share/qt4/examples/designer/containerextension/multipagewidgetextensionfactory.h -share/qt4/examples/designer/containerextension/multipagewidgetplugin.cpp -share/qt4/examples/designer/containerextension/multipagewidgetplugin.h -share/qt4/examples/designer/customwidgetplugin/analogclock.cpp -share/qt4/examples/designer/customwidgetplugin/analogclock.h -share/qt4/examples/designer/customwidgetplugin/customwidgetplugin.cpp -share/qt4/examples/designer/customwidgetplugin/customwidgetplugin.h -share/qt4/examples/designer/customwidgetplugin/customwidgetplugin.pro -share/qt4/examples/designer/designer.pro -share/qt4/examples/designer/taskmenuextension/taskmenuextension.pro -share/qt4/examples/designer/taskmenuextension/tictactoe.cpp -share/qt4/examples/designer/taskmenuextension/tictactoe.h -share/qt4/examples/designer/taskmenuextension/tictactoedialog.cpp -share/qt4/examples/designer/taskmenuextension/tictactoedialog.h -share/qt4/examples/designer/taskmenuextension/tictactoeplugin.cpp -share/qt4/examples/designer/taskmenuextension/tictactoeplugin.h -share/qt4/examples/designer/taskmenuextension/tictactoetaskmenu.cpp -share/qt4/examples/designer/taskmenuextension/tictactoetaskmenu.h -share/qt4/examples/designer/worldtimeclockbuilder/form.ui -share/qt4/examples/designer/worldtimeclockbuilder/main.cpp -share/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder -%%DEBUG%%share/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder.debug -share/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder.pro -share/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder.qrc -share/qt4/examples/designer/worldtimeclockplugin/worldtimeclock.cpp -share/qt4/examples/designer/worldtimeclockplugin/worldtimeclock.h -share/qt4/examples/designer/worldtimeclockplugin/worldtimeclockplugin.cpp -share/qt4/examples/designer/worldtimeclockplugin/worldtimeclockplugin.h -share/qt4/examples/designer/worldtimeclockplugin/worldtimeclockplugin.pro -share/qt4/examples/desktop/README -share/qt4/examples/desktop/desktop.pro -share/qt4/examples/desktop/screenshot/main.cpp -share/qt4/examples/desktop/screenshot/screenshot -share/qt4/examples/desktop/screenshot/screenshot.cpp -%%DEBUG%%share/qt4/examples/desktop/screenshot/screenshot.debug -share/qt4/examples/desktop/screenshot/screenshot.h -share/qt4/examples/desktop/screenshot/screenshot.pro -share/qt4/examples/desktop/systray/main.cpp -share/qt4/examples/desktop/systray/systray -%%DEBUG%%share/qt4/examples/desktop/systray/systray.debug -share/qt4/examples/desktop/systray/systray.pro -share/qt4/examples/desktop/systray/systray.qrc -share/qt4/examples/desktop/systray/window.cpp -share/qt4/examples/desktop/systray/window.h -share/qt4/examples/dialogs/README -share/qt4/examples/dialogs/classwizard/classwizard -share/qt4/examples/dialogs/classwizard/classwizard.cpp -%%DEBUG%%share/qt4/examples/dialogs/classwizard/classwizard.debug -share/qt4/examples/dialogs/classwizard/classwizard.h -share/qt4/examples/dialogs/classwizard/classwizard.pro -share/qt4/examples/dialogs/classwizard/main.cpp -share/qt4/examples/dialogs/configdialog/configdialog -share/qt4/examples/dialogs/configdialog/configdialog.cpp -%%DEBUG%%share/qt4/examples/dialogs/configdialog/configdialog.debug -share/qt4/examples/dialogs/configdialog/configdialog.h -share/qt4/examples/dialogs/configdialog/configdialog.pro -share/qt4/examples/dialogs/configdialog/configdialog.qrc -share/qt4/examples/dialogs/configdialog/images/config.png -share/qt4/examples/dialogs/configdialog/images/query.png -share/qt4/examples/dialogs/configdialog/images/update.png -share/qt4/examples/dialogs/configdialog/main.cpp -share/qt4/examples/dialogs/configdialog/pages.cpp -share/qt4/examples/dialogs/configdialog/pages.h -share/qt4/examples/dialogs/dialogs.pro -share/qt4/examples/dialogs/extension/extension -%%DEBUG%%share/qt4/examples/dialogs/extension/extension.debug -share/qt4/examples/dialogs/extension/extension.pro -share/qt4/examples/dialogs/extension/finddialog.cpp -share/qt4/examples/dialogs/extension/finddialog.h -share/qt4/examples/dialogs/extension/main.cpp -share/qt4/examples/dialogs/findfiles/findfiles -%%DEBUG%%share/qt4/examples/dialogs/findfiles/findfiles.debug -share/qt4/examples/dialogs/findfiles/findfiles.pro -share/qt4/examples/dialogs/findfiles/main.cpp -share/qt4/examples/dialogs/findfiles/window.cpp -share/qt4/examples/dialogs/findfiles/window.h -share/qt4/examples/dialogs/licensewizard/licensewizard -share/qt4/examples/dialogs/licensewizard/licensewizard.cpp -%%DEBUG%%share/qt4/examples/dialogs/licensewizard/licensewizard.debug -share/qt4/examples/dialogs/licensewizard/licensewizard.h -share/qt4/examples/dialogs/licensewizard/licensewizard.pro -share/qt4/examples/dialogs/licensewizard/main.cpp -share/qt4/examples/dialogs/standarddialogs/dialog.cpp -share/qt4/examples/dialogs/standarddialogs/dialog.h -share/qt4/examples/dialogs/standarddialogs/main.cpp -share/qt4/examples/dialogs/standarddialogs/standarddialogs -%%DEBUG%%share/qt4/examples/dialogs/standarddialogs/standarddialogs.debug -share/qt4/examples/dialogs/standarddialogs/standarddialogs.pro -share/qt4/examples/dialogs/tabdialog/main.cpp -share/qt4/examples/dialogs/tabdialog/tabdialog -share/qt4/examples/dialogs/tabdialog/tabdialog.cpp -%%DEBUG%%share/qt4/examples/dialogs/tabdialog/tabdialog.debug -share/qt4/examples/dialogs/tabdialog/tabdialog.h -share/qt4/examples/dialogs/tabdialog/tabdialog.pro -share/qt4/examples/dialogs/trivialwizard/trivialwizard -share/qt4/examples/dialogs/trivialwizard/trivialwizard.cpp -%%DEBUG%%share/qt4/examples/dialogs/trivialwizard/trivialwizard.debug -share/qt4/examples/dialogs/trivialwizard/trivialwizard.pro -share/qt4/examples/draganddrop/README -share/qt4/examples/draganddrop/draganddrop.pro -share/qt4/examples/draganddrop/draggableicons/draggableicons -%%DEBUG%%share/qt4/examples/draganddrop/draggableicons/draggableicons.debug -share/qt4/examples/draganddrop/draggableicons/draggableicons.pro -share/qt4/examples/draganddrop/draggableicons/draggableicons.qrc -share/qt4/examples/draganddrop/draggableicons/dragwidget.cpp -share/qt4/examples/draganddrop/draggableicons/dragwidget.h -share/qt4/examples/draganddrop/draggableicons/images/boat.png -share/qt4/examples/draganddrop/draggableicons/images/car.png -share/qt4/examples/draganddrop/draggableicons/images/house.png -share/qt4/examples/draganddrop/draggableicons/main.cpp -share/qt4/examples/draganddrop/draggabletext/draggabletext -%%DEBUG%%share/qt4/examples/draganddrop/draggabletext/draggabletext.debug -share/qt4/examples/draganddrop/draggabletext/draggabletext.pro -share/qt4/examples/draganddrop/draggabletext/draggabletext.qrc -share/qt4/examples/draganddrop/draggabletext/draglabel.cpp -share/qt4/examples/draganddrop/draggabletext/draglabel.h -share/qt4/examples/draganddrop/draggabletext/dragwidget.cpp -share/qt4/examples/draganddrop/draggabletext/dragwidget.h -share/qt4/examples/draganddrop/draggabletext/main.cpp -share/qt4/examples/draganddrop/draggabletext/words.txt -share/qt4/examples/draganddrop/dropsite/droparea.cpp -share/qt4/examples/draganddrop/dropsite/droparea.h -share/qt4/examples/draganddrop/dropsite/dropsite -%%DEBUG%%share/qt4/examples/draganddrop/dropsite/dropsite.debug -share/qt4/examples/draganddrop/dropsite/dropsite.pro -share/qt4/examples/draganddrop/dropsite/dropsitewindow.cpp -share/qt4/examples/draganddrop/dropsite/dropsitewindow.h -share/qt4/examples/draganddrop/dropsite/main.cpp -share/qt4/examples/draganddrop/fridgemagnets/draglabel.cpp -share/qt4/examples/draganddrop/fridgemagnets/draglabel.h -share/qt4/examples/draganddrop/fridgemagnets/dragwidget.cpp -share/qt4/examples/draganddrop/fridgemagnets/dragwidget.h -share/qt4/examples/draganddrop/fridgemagnets/fridgemagnets -%%DEBUG%%share/qt4/examples/draganddrop/fridgemagnets/fridgemagnets.debug -share/qt4/examples/draganddrop/fridgemagnets/fridgemagnets.pro -share/qt4/examples/draganddrop/fridgemagnets/fridgemagnets.qrc -share/qt4/examples/draganddrop/fridgemagnets/main.cpp -share/qt4/examples/draganddrop/fridgemagnets/words.txt -share/qt4/examples/draganddrop/puzzle/example.jpg -share/qt4/examples/draganddrop/puzzle/main.cpp -share/qt4/examples/draganddrop/puzzle/mainwindow.cpp -share/qt4/examples/draganddrop/puzzle/mainwindow.h -share/qt4/examples/draganddrop/puzzle/pieceslist.cpp -share/qt4/examples/draganddrop/puzzle/pieceslist.h -share/qt4/examples/draganddrop/puzzle/puzzle -%%DEBUG%%share/qt4/examples/draganddrop/puzzle/puzzle.debug -share/qt4/examples/draganddrop/puzzle/puzzle.pro -share/qt4/examples/draganddrop/puzzle/puzzle.qrc -share/qt4/examples/draganddrop/puzzle/puzzlewidget.cpp -share/qt4/examples/draganddrop/puzzle/puzzlewidget.h -share/qt4/examples/examples.pro -share/qt4/examples/graphicsview/README -share/qt4/examples/graphicsview/collidingmice/collidingmice -%%DEBUG%%share/qt4/examples/graphicsview/collidingmice/collidingmice.debug -share/qt4/examples/graphicsview/collidingmice/collidingmice.pro -share/qt4/examples/graphicsview/collidingmice/images/cheese.jpg -share/qt4/examples/graphicsview/collidingmice/main.cpp -share/qt4/examples/graphicsview/collidingmice/mice.qrc -share/qt4/examples/graphicsview/collidingmice/mouse.cpp -share/qt4/examples/graphicsview/collidingmice/mouse.h -share/qt4/examples/graphicsview/diagramscene/arrow.cpp -share/qt4/examples/graphicsview/diagramscene/arrow.h -share/qt4/examples/graphicsview/diagramscene/diagramitem.cpp -share/qt4/examples/graphicsview/diagramscene/diagramitem.h -share/qt4/examples/graphicsview/diagramscene/diagramscene -share/qt4/examples/graphicsview/diagramscene/diagramscene.cpp -%%DEBUG%%share/qt4/examples/graphicsview/diagramscene/diagramscene.debug -share/qt4/examples/graphicsview/diagramscene/diagramscene.h -share/qt4/examples/graphicsview/diagramscene/diagramscene.pro -share/qt4/examples/graphicsview/diagramscene/diagramscene.qrc -share/qt4/examples/graphicsview/diagramscene/diagramtextitem.cpp -share/qt4/examples/graphicsview/diagramscene/diagramtextitem.h -share/qt4/examples/graphicsview/diagramscene/images/background1.png -share/qt4/examples/graphicsview/diagramscene/images/background2.png -share/qt4/examples/graphicsview/diagramscene/images/background3.png -share/qt4/examples/graphicsview/diagramscene/images/background4.png -share/qt4/examples/graphicsview/diagramscene/images/bold.png -share/qt4/examples/graphicsview/diagramscene/images/bringtofront.png -share/qt4/examples/graphicsview/diagramscene/images/delete.png -share/qt4/examples/graphicsview/diagramscene/images/floodfill.png -share/qt4/examples/graphicsview/diagramscene/images/italic.png -share/qt4/examples/graphicsview/diagramscene/images/linecolor.png -share/qt4/examples/graphicsview/diagramscene/images/linepointer.png -share/qt4/examples/graphicsview/diagramscene/images/pointer.png -share/qt4/examples/graphicsview/diagramscene/images/sendtoback.png -share/qt4/examples/graphicsview/diagramscene/images/textpointer.png -share/qt4/examples/graphicsview/diagramscene/images/underline.png -share/qt4/examples/graphicsview/diagramscene/main.cpp -share/qt4/examples/graphicsview/diagramscene/mainwindow.cpp -share/qt4/examples/graphicsview/diagramscene/mainwindow.h -share/qt4/examples/graphicsview/dragdroprobot/coloritem.cpp -share/qt4/examples/graphicsview/dragdroprobot/coloritem.h -share/qt4/examples/graphicsview/dragdroprobot/dragdroprobot -%%DEBUG%%share/qt4/examples/graphicsview/dragdroprobot/dragdroprobot.debug -share/qt4/examples/graphicsview/dragdroprobot/dragdroprobot.pro -share/qt4/examples/graphicsview/dragdroprobot/images/head.png -share/qt4/examples/graphicsview/dragdroprobot/main.cpp -share/qt4/examples/graphicsview/dragdroprobot/robot.cpp -share/qt4/examples/graphicsview/dragdroprobot/robot.h -share/qt4/examples/graphicsview/dragdroprobot/robot.qrc -share/qt4/examples/graphicsview/elasticnodes/edge.cpp -share/qt4/examples/graphicsview/elasticnodes/edge.h -share/qt4/examples/graphicsview/elasticnodes/elasticnodes -%%DEBUG%%share/qt4/examples/graphicsview/elasticnodes/elasticnodes.debug -share/qt4/examples/graphicsview/elasticnodes/elasticnodes.pro -share/qt4/examples/graphicsview/elasticnodes/graphwidget.cpp -share/qt4/examples/graphicsview/elasticnodes/graphwidget.h -share/qt4/examples/graphicsview/elasticnodes/main.cpp -share/qt4/examples/graphicsview/elasticnodes/node.cpp -share/qt4/examples/graphicsview/elasticnodes/node.h -share/qt4/examples/graphicsview/graphicsview.pro -share/qt4/examples/graphicsview/portedasteroids/animateditem.cpp -share/qt4/examples/graphicsview/portedasteroids/animateditem.h -share/qt4/examples/graphicsview/portedasteroids/bg.png -share/qt4/examples/graphicsview/portedasteroids/ledmeter.cpp -share/qt4/examples/graphicsview/portedasteroids/ledmeter.h -share/qt4/examples/graphicsview/portedasteroids/main.cpp -share/qt4/examples/graphicsview/portedasteroids/portedasteroids -%%DEBUG%%share/qt4/examples/graphicsview/portedasteroids/portedasteroids.debug -share/qt4/examples/graphicsview/portedasteroids/portedasteroids.pro -share/qt4/examples/graphicsview/portedasteroids/portedasteroids.qrc -share/qt4/examples/graphicsview/portedasteroids/sounds/Explosion.wav -share/qt4/examples/graphicsview/portedasteroids/sprites.h -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits.ini -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits.pov -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0000.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0001.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0002.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0003.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0004.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0005.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0006.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0007.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0008.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0009.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0010.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0011.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0012.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0013.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0014.png -share/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0015.png -share/qt4/examples/graphicsview/portedasteroids/sprites/exhaust/exhaust.png -share/qt4/examples/graphicsview/portedasteroids/sprites/missile/missile.png -share/qt4/examples/graphicsview/portedasteroids/sprites/powerups/brake.png -share/qt4/examples/graphicsview/portedasteroids/sprites/powerups/energy.png -share/qt4/examples/graphicsview/portedasteroids/sprites/powerups/shield.png -share/qt4/examples/graphicsview/portedasteroids/sprites/powerups/shoot.png -share/qt4/examples/graphicsview/portedasteroids/sprites/powerups/teleport.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock1.ini -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock1.pov -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10000.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10001.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10002.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10003.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10004.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10005.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10006.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10007.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10008.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10009.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10010.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10011.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10012.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10013.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10014.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10015.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10016.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10017.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10018.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10019.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10020.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10021.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10022.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10023.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10024.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10025.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10026.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10027.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10028.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10029.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10030.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10031.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock2.ini -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock2.pov -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20000.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20001.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20002.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20003.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20004.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20005.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20006.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20007.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20008.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20009.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20010.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20011.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20012.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20013.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20014.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20015.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20016.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20017.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20018.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20019.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20020.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20021.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20022.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20023.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20024.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20025.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20026.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20027.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20028.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20029.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20030.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20031.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock3.ini -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock3.pov -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30000.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30001.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30002.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30003.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30004.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30005.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30006.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30007.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30008.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30009.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30010.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30011.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30012.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30013.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30014.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30015.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30016.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30017.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30018.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30019.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30020.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30021.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30022.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30023.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30024.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30025.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30026.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30027.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30028.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30029.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30030.png -share/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30031.png -share/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0000.png -share/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0001.png -share/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0002.png -share/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0003.png -share/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0004.png -share/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0005.png -share/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0006.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship.ini -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship.pov -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0000.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0001.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0002.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0003.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0004.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0005.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0006.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0007.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0008.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0009.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0010.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0011.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0012.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0013.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0014.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0015.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0016.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0017.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0018.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0019.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0020.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0021.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0022.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0023.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0024.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0025.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0026.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0027.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0028.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0029.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0030.png -share/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0031.png -share/qt4/examples/graphicsview/portedasteroids/toplevel.cpp -share/qt4/examples/graphicsview/portedasteroids/toplevel.h -share/qt4/examples/graphicsview/portedasteroids/view.cpp -share/qt4/examples/graphicsview/portedasteroids/view.h -share/qt4/examples/graphicsview/portedcanvas/butterfly.png -share/qt4/examples/graphicsview/portedcanvas/canvas.cpp -share/qt4/examples/graphicsview/portedcanvas/canvas.h -share/qt4/examples/graphicsview/portedcanvas/main.cpp -share/qt4/examples/graphicsview/portedcanvas/portedcanvas -%%DEBUG%%share/qt4/examples/graphicsview/portedcanvas/portedcanvas.debug -share/qt4/examples/graphicsview/portedcanvas/portedcanvas.pro -share/qt4/examples/graphicsview/portedcanvas/portedcanvas.qrc -share/qt4/examples/graphicsview/portedcanvas/qt-trans.xpm -share/qt4/examples/graphicsview/portedcanvas/qtlogo.png -share/qt4/examples/itemviews/README -share/qt4/examples/itemviews/basicsortfiltermodel/basicsortfiltermodel -%%DEBUG%%share/qt4/examples/itemviews/basicsortfiltermodel/basicsortfiltermodel.debug -share/qt4/examples/itemviews/basicsortfiltermodel/basicsortfiltermodel.pro -share/qt4/examples/itemviews/basicsortfiltermodel/main.cpp -share/qt4/examples/itemviews/basicsortfiltermodel/window.cpp -share/qt4/examples/itemviews/basicsortfiltermodel/window.h -share/qt4/examples/itemviews/chart/chart -%%DEBUG%%share/qt4/examples/itemviews/chart/chart.debug -share/qt4/examples/itemviews/chart/chart.pro -share/qt4/examples/itemviews/chart/chart.qrc -share/qt4/examples/itemviews/chart/main.cpp -share/qt4/examples/itemviews/chart/mainwindow.cpp -share/qt4/examples/itemviews/chart/mainwindow.h -share/qt4/examples/itemviews/chart/mydata.cht -share/qt4/examples/itemviews/chart/pieview.cpp -share/qt4/examples/itemviews/chart/pieview.h -share/qt4/examples/itemviews/chart/qtdata.cht -share/qt4/examples/itemviews/coloreditorfactory/coloreditorfactory -%%DEBUG%%share/qt4/examples/itemviews/coloreditorfactory/coloreditorfactory.debug -share/qt4/examples/itemviews/coloreditorfactory/coloreditorfactory.pro -share/qt4/examples/itemviews/coloreditorfactory/colorlisteditor.cpp -share/qt4/examples/itemviews/coloreditorfactory/colorlisteditor.h -share/qt4/examples/itemviews/coloreditorfactory/main.cpp -share/qt4/examples/itemviews/coloreditorfactory/window.cpp -share/qt4/examples/itemviews/coloreditorfactory/window.h -share/qt4/examples/itemviews/customsortfiltermodel/customsortfiltermodel -%%DEBUG%%share/qt4/examples/itemviews/customsortfiltermodel/customsortfiltermodel.debug -share/qt4/examples/itemviews/customsortfiltermodel/customsortfiltermodel.pro -share/qt4/examples/itemviews/customsortfiltermodel/main.cpp -share/qt4/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp -share/qt4/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.h -share/qt4/examples/itemviews/customsortfiltermodel/window.cpp -share/qt4/examples/itemviews/customsortfiltermodel/window.h -share/qt4/examples/itemviews/dirview/dirview -%%DEBUG%%share/qt4/examples/itemviews/dirview/dirview.debug -share/qt4/examples/itemviews/dirview/dirview.pro -share/qt4/examples/itemviews/dirview/main.cpp -share/qt4/examples/itemviews/itemviews.pro -share/qt4/examples/itemviews/pixelator/imagemodel.cpp -share/qt4/examples/itemviews/pixelator/imagemodel.h -share/qt4/examples/itemviews/pixelator/images.qrc -share/qt4/examples/itemviews/pixelator/images/qt.png -share/qt4/examples/itemviews/pixelator/main.cpp -share/qt4/examples/itemviews/pixelator/mainwindow.cpp -share/qt4/examples/itemviews/pixelator/mainwindow.h -share/qt4/examples/itemviews/pixelator/pixelator -%%DEBUG%%share/qt4/examples/itemviews/pixelator/pixelator.debug -share/qt4/examples/itemviews/pixelator/pixelator.pro -share/qt4/examples/itemviews/pixelator/pixeldelegate.cpp -share/qt4/examples/itemviews/pixelator/pixeldelegate.h -share/qt4/examples/itemviews/puzzle/example.jpg -share/qt4/examples/itemviews/puzzle/main.cpp -share/qt4/examples/itemviews/puzzle/mainwindow.cpp -share/qt4/examples/itemviews/puzzle/mainwindow.h -share/qt4/examples/itemviews/puzzle/piecesmodel.cpp -share/qt4/examples/itemviews/puzzle/piecesmodel.h -share/qt4/examples/itemviews/puzzle/puzzle -%%DEBUG%%share/qt4/examples/itemviews/puzzle/puzzle.debug -share/qt4/examples/itemviews/puzzle/puzzle.pro -share/qt4/examples/itemviews/puzzle/puzzle.qrc -share/qt4/examples/itemviews/puzzle/puzzlewidget.cpp -share/qt4/examples/itemviews/puzzle/puzzlewidget.h -share/qt4/examples/itemviews/simpledommodel/domitem.cpp -share/qt4/examples/itemviews/simpledommodel/domitem.h -share/qt4/examples/itemviews/simpledommodel/dommodel.cpp -share/qt4/examples/itemviews/simpledommodel/dommodel.h -share/qt4/examples/itemviews/simpledommodel/main.cpp -share/qt4/examples/itemviews/simpledommodel/mainwindow.cpp -share/qt4/examples/itemviews/simpledommodel/mainwindow.h -share/qt4/examples/itemviews/simpledommodel/simpledommodel -%%DEBUG%%share/qt4/examples/itemviews/simpledommodel/simpledommodel.debug -share/qt4/examples/itemviews/simpledommodel/simpledommodel.pro -share/qt4/examples/itemviews/simpletreemodel/default.txt -share/qt4/examples/itemviews/simpletreemodel/main.cpp -share/qt4/examples/itemviews/simpletreemodel/simpletreemodel -%%DEBUG%%share/qt4/examples/itemviews/simpletreemodel/simpletreemodel.debug -share/qt4/examples/itemviews/simpletreemodel/simpletreemodel.pro -share/qt4/examples/itemviews/simpletreemodel/simpletreemodel.qrc -share/qt4/examples/itemviews/simpletreemodel/treeitem.cpp -share/qt4/examples/itemviews/simpletreemodel/treeitem.h -share/qt4/examples/itemviews/simpletreemodel/treemodel.cpp -share/qt4/examples/itemviews/simpletreemodel/treemodel.h -share/qt4/examples/itemviews/simplewidgetmapper/main.cpp -share/qt4/examples/itemviews/simplewidgetmapper/simplewidgetmapper -%%DEBUG%%share/qt4/examples/itemviews/simplewidgetmapper/simplewidgetmapper.debug -share/qt4/examples/itemviews/simplewidgetmapper/simplewidgetmapper.pro -share/qt4/examples/itemviews/simplewidgetmapper/window.cpp -share/qt4/examples/itemviews/simplewidgetmapper/window.h -share/qt4/examples/itemviews/spinboxdelegate/delegate.cpp -share/qt4/examples/itemviews/spinboxdelegate/delegate.h -share/qt4/examples/itemviews/spinboxdelegate/main.cpp -share/qt4/examples/itemviews/spinboxdelegate/spinboxdelegate -%%DEBUG%%share/qt4/examples/itemviews/spinboxdelegate/spinboxdelegate.debug -share/qt4/examples/itemviews/spinboxdelegate/spinboxdelegate.pro -share/qt4/examples/itemviews/stardelegate/main.cpp -share/qt4/examples/itemviews/stardelegate/stardelegate -share/qt4/examples/itemviews/stardelegate/stardelegate.cpp -%%DEBUG%%share/qt4/examples/itemviews/stardelegate/stardelegate.debug -share/qt4/examples/itemviews/stardelegate/stardelegate.h -share/qt4/examples/itemviews/stardelegate/stardelegate.pro -share/qt4/examples/itemviews/stardelegate/stareditor.cpp -share/qt4/examples/itemviews/stardelegate/stareditor.h -share/qt4/examples/itemviews/stardelegate/starrating.cpp -share/qt4/examples/itemviews/stardelegate/starrating.h -share/qt4/examples/layouts/README -share/qt4/examples/layouts/basiclayouts/basiclayouts -%%DEBUG%%share/qt4/examples/layouts/basiclayouts/basiclayouts.debug -share/qt4/examples/layouts/basiclayouts/basiclayouts.pro -share/qt4/examples/layouts/basiclayouts/dialog.cpp -share/qt4/examples/layouts/basiclayouts/dialog.h -share/qt4/examples/layouts/basiclayouts/main.cpp -share/qt4/examples/layouts/borderlayout/borderlayout -share/qt4/examples/layouts/borderlayout/borderlayout.cpp -%%DEBUG%%share/qt4/examples/layouts/borderlayout/borderlayout.debug -share/qt4/examples/layouts/borderlayout/borderlayout.h -share/qt4/examples/layouts/borderlayout/borderlayout.pro -share/qt4/examples/layouts/borderlayout/main.cpp -share/qt4/examples/layouts/borderlayout/window.cpp -share/qt4/examples/layouts/borderlayout/window.h -share/qt4/examples/layouts/dynamiclayouts/dialog.cpp -share/qt4/examples/layouts/dynamiclayouts/dialog.h -share/qt4/examples/layouts/dynamiclayouts/dynamiclayouts -%%DEBUG%%share/qt4/examples/layouts/dynamiclayouts/dynamiclayouts.debug -share/qt4/examples/layouts/dynamiclayouts/dynamiclayouts.pro -share/qt4/examples/layouts/dynamiclayouts/main.cpp -share/qt4/examples/layouts/flowlayout/flowlayout -share/qt4/examples/layouts/flowlayout/flowlayout.cpp -%%DEBUG%%share/qt4/examples/layouts/flowlayout/flowlayout.debug -share/qt4/examples/layouts/flowlayout/flowlayout.h -share/qt4/examples/layouts/flowlayout/flowlayout.pro -share/qt4/examples/layouts/flowlayout/main.cpp -share/qt4/examples/layouts/flowlayout/window.cpp -share/qt4/examples/layouts/flowlayout/window.h -share/qt4/examples/layouts/layouts.pro -share/qt4/examples/linguist/README -share/qt4/examples/linguist/arrowpad/arrowpad -share/qt4/examples/linguist/arrowpad/arrowpad.cpp -%%DEBUG%%share/qt4/examples/linguist/arrowpad/arrowpad.debug -share/qt4/examples/linguist/arrowpad/arrowpad.h -share/qt4/examples/linguist/arrowpad/arrowpad.pro -share/qt4/examples/linguist/arrowpad/main.cpp -share/qt4/examples/linguist/arrowpad/mainwindow.cpp -share/qt4/examples/linguist/arrowpad/mainwindow.h -share/qt4/examples/linguist/hellotr/hellotr -%%DEBUG%%share/qt4/examples/linguist/hellotr/hellotr.debug -share/qt4/examples/linguist/hellotr/hellotr.pro -share/qt4/examples/linguist/hellotr/main.cpp -share/qt4/examples/linguist/linguist.pro -share/qt4/examples/linguist/trollprint/main.cpp -share/qt4/examples/linguist/trollprint/mainwindow.cpp -share/qt4/examples/linguist/trollprint/mainwindow.h -share/qt4/examples/linguist/trollprint/printpanel.cpp -share/qt4/examples/linguist/trollprint/printpanel.h -share/qt4/examples/linguist/trollprint/trollprint -%%DEBUG%%share/qt4/examples/linguist/trollprint/trollprint.debug -share/qt4/examples/linguist/trollprint/trollprint.pro -share/qt4/examples/linguist/trollprint/trollprint_pt.ts -share/qt4/examples/mainwindows/README -share/qt4/examples/mainwindows/application/application -%%DEBUG%%share/qt4/examples/mainwindows/application/application.debug -share/qt4/examples/mainwindows/application/application.pro -share/qt4/examples/mainwindows/application/application.qrc -share/qt4/examples/mainwindows/application/images/copy.png -share/qt4/examples/mainwindows/application/images/cut.png -share/qt4/examples/mainwindows/application/images/new.png -share/qt4/examples/mainwindows/application/images/open.png -share/qt4/examples/mainwindows/application/images/paste.png -share/qt4/examples/mainwindows/application/images/save.png -share/qt4/examples/mainwindows/application/main.cpp -share/qt4/examples/mainwindows/application/mainwindow.cpp -share/qt4/examples/mainwindows/application/mainwindow.h -share/qt4/examples/mainwindows/dockwidgets/dockwidgets -%%DEBUG%%share/qt4/examples/mainwindows/dockwidgets/dockwidgets.debug -share/qt4/examples/mainwindows/dockwidgets/dockwidgets.pro -share/qt4/examples/mainwindows/dockwidgets/dockwidgets.qrc -share/qt4/examples/mainwindows/dockwidgets/images/new.png -share/qt4/examples/mainwindows/dockwidgets/images/print.png -share/qt4/examples/mainwindows/dockwidgets/images/save.png -share/qt4/examples/mainwindows/dockwidgets/images/undo.png -share/qt4/examples/mainwindows/dockwidgets/main.cpp -share/qt4/examples/mainwindows/dockwidgets/mainwindow.cpp -share/qt4/examples/mainwindows/dockwidgets/mainwindow.h -share/qt4/examples/mainwindows/mainwindows.pro -share/qt4/examples/mainwindows/mdi/images/copy.png -share/qt4/examples/mainwindows/mdi/images/cut.png -share/qt4/examples/mainwindows/mdi/images/new.png -share/qt4/examples/mainwindows/mdi/images/open.png -share/qt4/examples/mainwindows/mdi/images/paste.png -share/qt4/examples/mainwindows/mdi/images/save.png -share/qt4/examples/mainwindows/mdi/main.cpp -share/qt4/examples/mainwindows/mdi/mainwindow.cpp -share/qt4/examples/mainwindows/mdi/mainwindow.h -share/qt4/examples/mainwindows/mdi/mdi -%%DEBUG%%share/qt4/examples/mainwindows/mdi/mdi.debug -share/qt4/examples/mainwindows/mdi/mdi.pro -share/qt4/examples/mainwindows/mdi/mdi.qrc -share/qt4/examples/mainwindows/mdi/mdichild.cpp -share/qt4/examples/mainwindows/mdi/mdichild.h -share/qt4/examples/mainwindows/menus/main.cpp -share/qt4/examples/mainwindows/menus/mainwindow.cpp -share/qt4/examples/mainwindows/menus/mainwindow.h -share/qt4/examples/mainwindows/menus/menus -%%DEBUG%%share/qt4/examples/mainwindows/menus/menus.debug -share/qt4/examples/mainwindows/menus/menus.pro -share/qt4/examples/mainwindows/recentfiles/main.cpp -share/qt4/examples/mainwindows/recentfiles/mainwindow.cpp -share/qt4/examples/mainwindows/recentfiles/mainwindow.h -share/qt4/examples/mainwindows/recentfiles/recentfiles -%%DEBUG%%share/qt4/examples/mainwindows/recentfiles/recentfiles.debug -share/qt4/examples/mainwindows/recentfiles/recentfiles.pro -share/qt4/examples/mainwindows/sdi/images/copy.png -share/qt4/examples/mainwindows/sdi/images/cut.png -share/qt4/examples/mainwindows/sdi/images/new.png -share/qt4/examples/mainwindows/sdi/images/open.png -share/qt4/examples/mainwindows/sdi/images/paste.png -share/qt4/examples/mainwindows/sdi/images/save.png -share/qt4/examples/mainwindows/sdi/main.cpp -share/qt4/examples/mainwindows/sdi/mainwindow.cpp -share/qt4/examples/mainwindows/sdi/mainwindow.h -share/qt4/examples/mainwindows/sdi/sdi -%%DEBUG%%share/qt4/examples/mainwindows/sdi/sdi.debug -share/qt4/examples/mainwindows/sdi/sdi.pro -share/qt4/examples/mainwindows/sdi/sdi.qrc -share/qt4/examples/network/README -share/qt4/examples/network/blockingfortuneclient/blockingclient.cpp -share/qt4/examples/network/blockingfortuneclient/blockingclient.h -share/qt4/examples/network/blockingfortuneclient/blockingfortuneclient -%%DEBUG%%share/qt4/examples/network/blockingfortuneclient/blockingfortuneclient.debug -share/qt4/examples/network/blockingfortuneclient/blockingfortuneclient.pro -share/qt4/examples/network/blockingfortuneclient/fortunethread.cpp -share/qt4/examples/network/blockingfortuneclient/fortunethread.h -share/qt4/examples/network/blockingfortuneclient/main.cpp -share/qt4/examples/network/broadcastreceiver/broadcastreceiver -%%DEBUG%%share/qt4/examples/network/broadcastreceiver/broadcastreceiver.debug -share/qt4/examples/network/broadcastreceiver/broadcastreceiver.pro -share/qt4/examples/network/broadcastreceiver/main.cpp -share/qt4/examples/network/broadcastreceiver/receiver.cpp -share/qt4/examples/network/broadcastreceiver/receiver.h -share/qt4/examples/network/broadcastsender/broadcastsender -%%DEBUG%%share/qt4/examples/network/broadcastsender/broadcastsender.debug -share/qt4/examples/network/broadcastsender/broadcastsender.pro -share/qt4/examples/network/broadcastsender/main.cpp -share/qt4/examples/network/broadcastsender/sender.cpp -share/qt4/examples/network/broadcastsender/sender.h -share/qt4/examples/network/chat/chat -%%DEBUG%%share/qt4/examples/network/chat/chat.debug -share/qt4/examples/network/chat/chat.pro -share/qt4/examples/network/chat/chatdialog.cpp -share/qt4/examples/network/chat/chatdialog.h -share/qt4/examples/network/chat/chatdialog.ui -share/qt4/examples/network/chat/client.cpp -share/qt4/examples/network/chat/client.h -share/qt4/examples/network/chat/connection.cpp -share/qt4/examples/network/chat/connection.h -share/qt4/examples/network/chat/main.cpp -share/qt4/examples/network/chat/peermanager.cpp -share/qt4/examples/network/chat/peermanager.h -share/qt4/examples/network/chat/server.cpp -share/qt4/examples/network/chat/server.h -share/qt4/examples/network/fortuneclient/client.cpp -share/qt4/examples/network/fortuneclient/client.h -share/qt4/examples/network/fortuneclient/fortuneclient -%%DEBUG%%share/qt4/examples/network/fortuneclient/fortuneclient.debug -share/qt4/examples/network/fortuneclient/fortuneclient.pro -share/qt4/examples/network/fortuneclient/main.cpp -share/qt4/examples/network/fortuneserver/fortuneserver -%%DEBUG%%share/qt4/examples/network/fortuneserver/fortuneserver.debug -share/qt4/examples/network/fortuneserver/fortuneserver.pro -share/qt4/examples/network/fortuneserver/main.cpp -share/qt4/examples/network/fortuneserver/server.cpp -share/qt4/examples/network/fortuneserver/server.h -share/qt4/examples/network/ftp/ftp -%%DEBUG%%share/qt4/examples/network/ftp/ftp.debug -share/qt4/examples/network/ftp/ftp.pro -share/qt4/examples/network/ftp/ftp.qrc -share/qt4/examples/network/ftp/ftpwindow.cpp -share/qt4/examples/network/ftp/ftpwindow.h -share/qt4/examples/network/ftp/images/cdtoparent.png -share/qt4/examples/network/ftp/images/dir.png -share/qt4/examples/network/ftp/images/file.png -share/qt4/examples/network/ftp/main.cpp -share/qt4/examples/network/http/authenticationdialog.ui -share/qt4/examples/network/http/http -%%DEBUG%%share/qt4/examples/network/http/http.debug -share/qt4/examples/network/http/http.pro -share/qt4/examples/network/http/httpwindow.cpp -share/qt4/examples/network/http/httpwindow.h -share/qt4/examples/network/http/main.cpp -share/qt4/examples/network/loopback/dialog.cpp -share/qt4/examples/network/loopback/dialog.h -share/qt4/examples/network/loopback/loopback -%%DEBUG%%share/qt4/examples/network/loopback/loopback.debug -share/qt4/examples/network/loopback/loopback.pro -share/qt4/examples/network/loopback/main.cpp -share/qt4/examples/network/network.pro -share/qt4/examples/network/securesocketclient/certificateinfo.cpp -share/qt4/examples/network/securesocketclient/certificateinfo.h -share/qt4/examples/network/securesocketclient/certificateinfo.ui -share/qt4/examples/network/securesocketclient/main.cpp -share/qt4/examples/network/securesocketclient/securesocketclient -%%DEBUG%%share/qt4/examples/network/securesocketclient/securesocketclient.debug -share/qt4/examples/network/securesocketclient/securesocketclient.pro -share/qt4/examples/network/securesocketclient/securesocketclient.qrc -share/qt4/examples/network/securesocketclient/sslclient.cpp -share/qt4/examples/network/securesocketclient/sslclient.h -share/qt4/examples/network/securesocketclient/sslclient.ui -share/qt4/examples/network/securesocketclient/sslerrors.ui -share/qt4/examples/network/threadedfortuneserver/dialog.cpp -share/qt4/examples/network/threadedfortuneserver/dialog.h -share/qt4/examples/network/threadedfortuneserver/fortuneserver.cpp -share/qt4/examples/network/threadedfortuneserver/fortuneserver.h -share/qt4/examples/network/threadedfortuneserver/fortunethread.cpp -share/qt4/examples/network/threadedfortuneserver/fortunethread.h -share/qt4/examples/network/threadedfortuneserver/main.cpp -share/qt4/examples/network/threadedfortuneserver/threadedfortuneserver -%%DEBUG%%share/qt4/examples/network/threadedfortuneserver/threadedfortuneserver.debug -share/qt4/examples/network/threadedfortuneserver/threadedfortuneserver.pro -share/qt4/examples/network/torrent/3rdparty/sha1.c -share/qt4/examples/network/torrent/3rdparty/sha1.h -share/qt4/examples/network/torrent/addtorrentdialog.cpp -share/qt4/examples/network/torrent/addtorrentdialog.h -share/qt4/examples/network/torrent/bencodeparser.cpp -share/qt4/examples/network/torrent/bencodeparser.h -share/qt4/examples/network/torrent/connectionmanager.cpp -share/qt4/examples/network/torrent/connectionmanager.h -share/qt4/examples/network/torrent/filemanager.cpp -share/qt4/examples/network/torrent/filemanager.h -share/qt4/examples/network/torrent/forms/addtorrentform.ui -share/qt4/examples/network/torrent/icons.qrc -share/qt4/examples/network/torrent/icons/1downarrow.png -share/qt4/examples/network/torrent/icons/1uparrow.png -share/qt4/examples/network/torrent/icons/bottom.png -share/qt4/examples/network/torrent/icons/edit_add.png -share/qt4/examples/network/torrent/icons/edit_remove.png -share/qt4/examples/network/torrent/icons/exit.png -share/qt4/examples/network/torrent/icons/peertopeer.png -share/qt4/examples/network/torrent/icons/player_pause.png -share/qt4/examples/network/torrent/icons/player_play.png -share/qt4/examples/network/torrent/icons/player_stop.png -share/qt4/examples/network/torrent/icons/stop.png -share/qt4/examples/network/torrent/main.cpp -share/qt4/examples/network/torrent/mainwindow.cpp -share/qt4/examples/network/torrent/mainwindow.h -share/qt4/examples/network/torrent/metainfo.cpp -share/qt4/examples/network/torrent/metainfo.h -share/qt4/examples/network/torrent/peerwireclient.cpp -share/qt4/examples/network/torrent/peerwireclient.h -share/qt4/examples/network/torrent/ratecontroller.cpp -share/qt4/examples/network/torrent/ratecontroller.h -share/qt4/examples/network/torrent/torrent -%%DEBUG%%share/qt4/examples/network/torrent/torrent.debug -share/qt4/examples/network/torrent/torrent.pro -share/qt4/examples/network/torrent/torrentclient.cpp -share/qt4/examples/network/torrent/torrentclient.h -share/qt4/examples/network/torrent/torrentserver.cpp -share/qt4/examples/network/torrent/torrentserver.h -share/qt4/examples/network/torrent/trackerclient.cpp -share/qt4/examples/network/torrent/trackerclient.h -share/qt4/examples/opengl/2dpainting/2dpainting -%%DEBUG%%share/qt4/examples/opengl/2dpainting/2dpainting.debug -share/qt4/examples/opengl/2dpainting/2dpainting.pro -share/qt4/examples/opengl/2dpainting/glwidget.cpp -share/qt4/examples/opengl/2dpainting/glwidget.h -share/qt4/examples/opengl/2dpainting/helper.cpp -share/qt4/examples/opengl/2dpainting/helper.h -share/qt4/examples/opengl/2dpainting/main.cpp -share/qt4/examples/opengl/2dpainting/widget.cpp -share/qt4/examples/opengl/2dpainting/widget.h -share/qt4/examples/opengl/2dpainting/window.cpp -share/qt4/examples/opengl/2dpainting/window.h -share/qt4/examples/opengl/README -share/qt4/examples/opengl/framebufferobject/bubbles.svg -share/qt4/examples/opengl/framebufferobject/framebufferobject -%%DEBUG%%share/qt4/examples/opengl/framebufferobject/framebufferobject.debug -share/qt4/examples/opengl/framebufferobject/framebufferobject.pro -share/qt4/examples/opengl/framebufferobject/framebufferobject.qrc -share/qt4/examples/opengl/framebufferobject/glwidget.cpp -share/qt4/examples/opengl/framebufferobject/glwidget.h -share/qt4/examples/opengl/framebufferobject/main.cpp -share/qt4/examples/opengl/framebufferobject/qt4-logo.png -share/qt4/examples/opengl/framebufferobject2/cubelogo.png -share/qt4/examples/opengl/framebufferobject2/framebufferobject2 -%%DEBUG%%share/qt4/examples/opengl/framebufferobject2/framebufferobject2.debug -share/qt4/examples/opengl/framebufferobject2/framebufferobject2.pro -share/qt4/examples/opengl/framebufferobject2/framebufferobject2.qrc -share/qt4/examples/opengl/framebufferobject2/glwidget.cpp -share/qt4/examples/opengl/framebufferobject2/glwidget.h -share/qt4/examples/opengl/framebufferobject2/main.cpp -share/qt4/examples/opengl/grabber/glwidget.cpp -share/qt4/examples/opengl/grabber/glwidget.h -share/qt4/examples/opengl/grabber/grabber -%%DEBUG%%share/qt4/examples/opengl/grabber/grabber.debug -share/qt4/examples/opengl/grabber/grabber.pro -share/qt4/examples/opengl/grabber/main.cpp -share/qt4/examples/opengl/grabber/mainwindow.cpp -share/qt4/examples/opengl/grabber/mainwindow.h -share/qt4/examples/opengl/hellogl/glwidget.cpp -share/qt4/examples/opengl/hellogl/glwidget.h -share/qt4/examples/opengl/hellogl/hellogl -%%DEBUG%%share/qt4/examples/opengl/hellogl/hellogl.debug -share/qt4/examples/opengl/hellogl/hellogl.pro -share/qt4/examples/opengl/hellogl/main.cpp -share/qt4/examples/opengl/hellogl/window.cpp -share/qt4/examples/opengl/hellogl/window.h -share/qt4/examples/opengl/opengl.pro -share/qt4/examples/opengl/overpainting/bubble.cpp -share/qt4/examples/opengl/overpainting/bubble.h -share/qt4/examples/opengl/overpainting/glwidget.cpp -share/qt4/examples/opengl/overpainting/glwidget.h -share/qt4/examples/opengl/overpainting/main.cpp -share/qt4/examples/opengl/overpainting/overpainting -%%DEBUG%%share/qt4/examples/opengl/overpainting/overpainting.debug -share/qt4/examples/opengl/overpainting/overpainting.pro -share/qt4/examples/opengl/pbuffers/cubelogo.png -share/qt4/examples/opengl/pbuffers/glwidget.cpp -share/qt4/examples/opengl/pbuffers/glwidget.h -share/qt4/examples/opengl/pbuffers/main.cpp -share/qt4/examples/opengl/pbuffers/pbuffers -%%DEBUG%%share/qt4/examples/opengl/pbuffers/pbuffers.debug -share/qt4/examples/opengl/pbuffers/pbuffers.pro -share/qt4/examples/opengl/pbuffers/pbuffers.qrc -share/qt4/examples/opengl/pbuffers2/bubbles.svg -share/qt4/examples/opengl/pbuffers2/glwidget.cpp -share/qt4/examples/opengl/pbuffers2/glwidget.h -share/qt4/examples/opengl/pbuffers2/main.cpp -share/qt4/examples/opengl/pbuffers2/pbuffers2 -%%DEBUG%%share/qt4/examples/opengl/pbuffers2/pbuffers2.debug -share/qt4/examples/opengl/pbuffers2/pbuffers2.pro -share/qt4/examples/opengl/pbuffers2/pbuffers2.qrc -share/qt4/examples/opengl/pbuffers2/qt4-logo.png -share/qt4/examples/opengl/samplebuffers/glwidget.cpp -share/qt4/examples/opengl/samplebuffers/glwidget.h -share/qt4/examples/opengl/samplebuffers/main.cpp -share/qt4/examples/opengl/samplebuffers/samplebuffers -%%DEBUG%%share/qt4/examples/opengl/samplebuffers/samplebuffers.debug -share/qt4/examples/opengl/samplebuffers/samplebuffers.pro -share/qt4/examples/opengl/textures/glwidget.cpp -share/qt4/examples/opengl/textures/glwidget.h -share/qt4/examples/opengl/textures/images/side1.png -share/qt4/examples/opengl/textures/images/side2.png -share/qt4/examples/opengl/textures/images/side3.png -share/qt4/examples/opengl/textures/images/side4.png -share/qt4/examples/opengl/textures/images/side5.png -share/qt4/examples/opengl/textures/images/side6.png -share/qt4/examples/opengl/textures/main.cpp -share/qt4/examples/opengl/textures/textures -%%DEBUG%%share/qt4/examples/opengl/textures/textures.debug -share/qt4/examples/opengl/textures/textures.pro -share/qt4/examples/opengl/textures/textures.qrc -share/qt4/examples/opengl/textures/window.cpp -share/qt4/examples/opengl/textures/window.h -share/qt4/examples/painting/README -share/qt4/examples/painting/basicdrawing/basicdrawing -%%DEBUG%%share/qt4/examples/painting/basicdrawing/basicdrawing.debug -share/qt4/examples/painting/basicdrawing/basicdrawing.pro -share/qt4/examples/painting/basicdrawing/basicdrawing.qrc -share/qt4/examples/painting/basicdrawing/images/brick.png -share/qt4/examples/painting/basicdrawing/images/qt-logo.png -share/qt4/examples/painting/basicdrawing/main.cpp -share/qt4/examples/painting/basicdrawing/renderarea.cpp -share/qt4/examples/painting/basicdrawing/renderarea.h -share/qt4/examples/painting/basicdrawing/window.cpp -share/qt4/examples/painting/basicdrawing/window.h -share/qt4/examples/painting/concentriccircles/circlewidget.cpp -share/qt4/examples/painting/concentriccircles/circlewidget.h -share/qt4/examples/painting/concentriccircles/concentriccircles -%%DEBUG%%share/qt4/examples/painting/concentriccircles/concentriccircles.debug -share/qt4/examples/painting/concentriccircles/concentriccircles.pro -share/qt4/examples/painting/concentriccircles/main.cpp -share/qt4/examples/painting/concentriccircles/window.cpp -share/qt4/examples/painting/concentriccircles/window.h -share/qt4/examples/painting/fontsampler/fontsampler -%%DEBUG%%share/qt4/examples/painting/fontsampler/fontsampler.debug -share/qt4/examples/painting/fontsampler/fontsampler.pro -share/qt4/examples/painting/fontsampler/main.cpp -share/qt4/examples/painting/fontsampler/mainwindow.cpp -share/qt4/examples/painting/fontsampler/mainwindow.h -share/qt4/examples/painting/fontsampler/mainwindowbase.ui -share/qt4/examples/painting/fontsampler/previewdialog.cpp -share/qt4/examples/painting/fontsampler/previewdialog.h -share/qt4/examples/painting/fontsampler/previewdialogbase.ui -share/qt4/examples/painting/fontsampler/previewlabel.cpp -share/qt4/examples/painting/fontsampler/previewlabel.h -share/qt4/examples/painting/imagecomposition/imagecomposer.cpp -share/qt4/examples/painting/imagecomposition/imagecomposer.h -share/qt4/examples/painting/imagecomposition/imagecomposition -%%DEBUG%%share/qt4/examples/painting/imagecomposition/imagecomposition.debug -share/qt4/examples/painting/imagecomposition/imagecomposition.pro -share/qt4/examples/painting/imagecomposition/imagecomposition.qrc -share/qt4/examples/painting/imagecomposition/images/background.png -share/qt4/examples/painting/imagecomposition/images/blackrectangle.png -share/qt4/examples/painting/imagecomposition/images/butterfly.png -share/qt4/examples/painting/imagecomposition/images/checker.png -share/qt4/examples/painting/imagecomposition/main.cpp -share/qt4/examples/painting/painterpaths/main.cpp -share/qt4/examples/painting/painterpaths/painterpaths -%%DEBUG%%share/qt4/examples/painting/painterpaths/painterpaths.debug -share/qt4/examples/painting/painterpaths/painterpaths.pro -share/qt4/examples/painting/painterpaths/renderarea.cpp -share/qt4/examples/painting/painterpaths/renderarea.h -share/qt4/examples/painting/painterpaths/window.cpp -share/qt4/examples/painting/painterpaths/window.h -share/qt4/examples/painting/painting.pro -share/qt4/examples/painting/svgviewer/files/bubbles.svg -share/qt4/examples/painting/svgviewer/files/cubic.svg -share/qt4/examples/painting/svgviewer/files/spheres.svg -share/qt4/examples/painting/svgviewer/main.cpp -share/qt4/examples/painting/svgviewer/mainwindow.cpp -share/qt4/examples/painting/svgviewer/mainwindow.h -share/qt4/examples/painting/svgviewer/svgview.cpp -share/qt4/examples/painting/svgviewer/svgview.h -share/qt4/examples/painting/svgviewer/svgviewer -%%DEBUG%%share/qt4/examples/painting/svgviewer/svgviewer.debug -share/qt4/examples/painting/svgviewer/svgviewer.pro -share/qt4/examples/painting/svgviewer/svgviewer.qrc -share/qt4/examples/painting/svgviewer/svgwindow.cpp -share/qt4/examples/painting/svgviewer/svgwindow.h -share/qt4/examples/painting/transformations/main.cpp -share/qt4/examples/painting/transformations/renderarea.cpp -share/qt4/examples/painting/transformations/renderarea.h -share/qt4/examples/painting/transformations/transformations -%%DEBUG%%share/qt4/examples/painting/transformations/transformations.debug -share/qt4/examples/painting/transformations/transformations.pro -share/qt4/examples/painting/transformations/window.cpp -share/qt4/examples/painting/transformations/window.h -share/qt4/examples/qdbus/chat/chat -share/qt4/examples/qdbus/chat/chat.cpp -%%DEBUG%%share/qt4/examples/qdbus/chat/chat.debug -share/qt4/examples/qdbus/chat/chat.h -share/qt4/examples/qdbus/chat/chat.pro -share/qt4/examples/qdbus/chat/chat_adaptor.cpp -share/qt4/examples/qdbus/chat/chat_adaptor.h -share/qt4/examples/qdbus/chat/chat_interface.cpp -share/qt4/examples/qdbus/chat/chat_interface.h -share/qt4/examples/qdbus/chat/chatmainwindow.ui -share/qt4/examples/qdbus/chat/chatsetnickname.ui -share/qt4/examples/qdbus/chat/com.trolltech.chat.xml -share/qt4/examples/qdbus/complexpingpong/complexping -share/qt4/examples/qdbus/complexpingpong/complexping.cpp -%%DEBUG%%share/qt4/examples/qdbus/complexpingpong/complexping.debug -share/qt4/examples/qdbus/complexpingpong/complexping.h -share/qt4/examples/qdbus/complexpingpong/complexping.pro -share/qt4/examples/qdbus/complexpingpong/complexpingpong.pro -share/qt4/examples/qdbus/complexpingpong/complexpong -share/qt4/examples/qdbus/complexpingpong/complexpong.cpp -%%DEBUG%%share/qt4/examples/qdbus/complexpingpong/complexpong.debug -share/qt4/examples/qdbus/complexpingpong/complexpong.h -share/qt4/examples/qdbus/complexpingpong/complexpong.pro -share/qt4/examples/qdbus/complexpingpong/ping-common.h -share/qt4/examples/qdbus/listnames/listnames -share/qt4/examples/qdbus/listnames/listnames.cpp -%%DEBUG%%share/qt4/examples/qdbus/listnames/listnames.debug -share/qt4/examples/qdbus/listnames/listnames.pro -share/qt4/examples/qdbus/pingpong/ping -share/qt4/examples/qdbus/pingpong/ping-common.h -share/qt4/examples/qdbus/pingpong/ping.cpp -%%DEBUG%%share/qt4/examples/qdbus/pingpong/ping.debug -share/qt4/examples/qdbus/pingpong/ping.pro -share/qt4/examples/qdbus/pingpong/pingpong.pro -share/qt4/examples/qdbus/pingpong/pong -share/qt4/examples/qdbus/pingpong/pong.cpp -%%DEBUG%%share/qt4/examples/qdbus/pingpong/pong.debug -share/qt4/examples/qdbus/pingpong/pong.h -share/qt4/examples/qdbus/pingpong/pong.pro -share/qt4/examples/qdbus/qdbus.pro -share/qt4/examples/qdbus/remotecontrolledcar/car/car -share/qt4/examples/qdbus/remotecontrolledcar/car/car.cpp -%%DEBUG%%share/qt4/examples/qdbus/remotecontrolledcar/car/car.debug -share/qt4/examples/qdbus/remotecontrolledcar/car/car.h -share/qt4/examples/qdbus/remotecontrolledcar/car/car.pro -share/qt4/examples/qdbus/remotecontrolledcar/car/car.xml -share/qt4/examples/qdbus/remotecontrolledcar/car/car_adaptor.cpp -share/qt4/examples/qdbus/remotecontrolledcar/car/car_adaptor_p.h -share/qt4/examples/qdbus/remotecontrolledcar/car/main.cpp -share/qt4/examples/qdbus/remotecontrolledcar/controller/car.xml -share/qt4/examples/qdbus/remotecontrolledcar/controller/car_interface.cpp -share/qt4/examples/qdbus/remotecontrolledcar/controller/car_interface_p.h -share/qt4/examples/qdbus/remotecontrolledcar/controller/controller -share/qt4/examples/qdbus/remotecontrolledcar/controller/controller.cpp -%%DEBUG%%share/qt4/examples/qdbus/remotecontrolledcar/controller/controller.debug -share/qt4/examples/qdbus/remotecontrolledcar/controller/controller.h -share/qt4/examples/qdbus/remotecontrolledcar/controller/controller.pro -share/qt4/examples/qdbus/remotecontrolledcar/controller/controller.ui -share/qt4/examples/qdbus/remotecontrolledcar/controller/main.cpp -share/qt4/examples/qdbus/remotecontrolledcar/remotecontrolledcar.pro -share/qt4/examples/qtestlib/README -share/qt4/examples/qtestlib/qtestlib.pro -share/qt4/examples/qtestlib/tutorial1/testqstring.cpp -share/qt4/examples/qtestlib/tutorial1/tutorial1 -%%DEBUG%%share/qt4/examples/qtestlib/tutorial1/tutorial1.debug -share/qt4/examples/qtestlib/tutorial1/tutorial1.pro -share/qt4/examples/qtestlib/tutorial2/testqstring.cpp -share/qt4/examples/qtestlib/tutorial2/tutorial2 -%%DEBUG%%share/qt4/examples/qtestlib/tutorial2/tutorial2.debug -share/qt4/examples/qtestlib/tutorial2/tutorial2.pro -share/qt4/examples/qtestlib/tutorial3/testgui.cpp -share/qt4/examples/qtestlib/tutorial3/tutorial3 -%%DEBUG%%share/qt4/examples/qtestlib/tutorial3/tutorial3.debug -share/qt4/examples/qtestlib/tutorial3/tutorial3.pro -share/qt4/examples/qtestlib/tutorial4/testgui.cpp -share/qt4/examples/qtestlib/tutorial4/tutorial4 -%%DEBUG%%share/qt4/examples/qtestlib/tutorial4/tutorial4.debug -share/qt4/examples/qtestlib/tutorial4/tutorial4.pro -share/qt4/examples/richtext/README -share/qt4/examples/richtext/calendar/calendar -%%DEBUG%%share/qt4/examples/richtext/calendar/calendar.debug -share/qt4/examples/richtext/calendar/calendar.pro -share/qt4/examples/richtext/calendar/main.cpp -share/qt4/examples/richtext/calendar/mainwindow.cpp -share/qt4/examples/richtext/calendar/mainwindow.h -share/qt4/examples/richtext/orderform/detailsdialog.cpp -share/qt4/examples/richtext/orderform/detailsdialog.h -share/qt4/examples/richtext/orderform/main.cpp -share/qt4/examples/richtext/orderform/mainwindow.cpp -share/qt4/examples/richtext/orderform/mainwindow.h -share/qt4/examples/richtext/orderform/orderform -%%DEBUG%%share/qt4/examples/richtext/orderform/orderform.debug -share/qt4/examples/richtext/orderform/orderform.pro -share/qt4/examples/richtext/richtext.pro -share/qt4/examples/richtext/syntaxhighlighter/highlighter.cpp -share/qt4/examples/richtext/syntaxhighlighter/highlighter.h -share/qt4/examples/richtext/syntaxhighlighter/main.cpp -share/qt4/examples/richtext/syntaxhighlighter/mainwindow.cpp -share/qt4/examples/richtext/syntaxhighlighter/mainwindow.h -share/qt4/examples/richtext/syntaxhighlighter/syntaxhighlighter -%%DEBUG%%share/qt4/examples/richtext/syntaxhighlighter/syntaxhighlighter.debug -share/qt4/examples/richtext/syntaxhighlighter/syntaxhighlighter.pro -share/qt4/examples/script/README -share/qt4/examples/script/calculator/calculator -%%DEBUG%%share/qt4/examples/script/calculator/calculator.debug -share/qt4/examples/script/calculator/calculator.pro -share/qt4/examples/script/calculator/calculator.qrc -share/qt4/examples/script/calculator/main.cpp -share/qt4/examples/script/context2d/context2d -share/qt4/examples/script/context2d/context2d.cpp -%%DEBUG%%share/qt4/examples/script/context2d/context2d.debug -share/qt4/examples/script/context2d/context2d.h -share/qt4/examples/script/context2d/context2d.pro -share/qt4/examples/script/context2d/context2d.qrc -share/qt4/examples/script/context2d/domimage.cpp -share/qt4/examples/script/context2d/domimage.h -share/qt4/examples/script/context2d/main.cpp -share/qt4/examples/script/context2d/qcontext2dcanvas.cpp -share/qt4/examples/script/context2d/qcontext2dcanvas.h -share/qt4/examples/script/context2d/scripts/alpha.js -share/qt4/examples/script/context2d/scripts/arc.js -share/qt4/examples/script/context2d/scripts/bezier.js -share/qt4/examples/script/context2d/scripts/clock.js -share/qt4/examples/script/context2d/scripts/fill1.js -share/qt4/examples/script/context2d/scripts/grad.js -share/qt4/examples/script/context2d/scripts/linecap.js -share/qt4/examples/script/context2d/scripts/linestye.js -share/qt4/examples/script/context2d/scripts/moveto.js -share/qt4/examples/script/context2d/scripts/moveto2.js -share/qt4/examples/script/context2d/scripts/pacman.js -share/qt4/examples/script/context2d/scripts/plasma.js -share/qt4/examples/script/context2d/scripts/pong.js -share/qt4/examples/script/context2d/scripts/quad.js -share/qt4/examples/script/context2d/scripts/rgba.js -share/qt4/examples/script/context2d/scripts/rotate.js -share/qt4/examples/script/context2d/scripts/scale.js -share/qt4/examples/script/context2d/scripts/stroke1.js -share/qt4/examples/script/context2d/scripts/translate.js -share/qt4/examples/script/context2d/window.cpp -share/qt4/examples/script/context2d/window.h -share/qt4/examples/script/defaultprototypes/defaultprototypes -%%DEBUG%%share/qt4/examples/script/defaultprototypes/defaultprototypes.debug -share/qt4/examples/script/defaultprototypes/defaultprototypes.pro -share/qt4/examples/script/defaultprototypes/defaultprototypes.qrc -share/qt4/examples/script/defaultprototypes/main.cpp -share/qt4/examples/script/defaultprototypes/prototypes.cpp -share/qt4/examples/script/defaultprototypes/prototypes.h -share/qt4/examples/script/helloscript/helloscript -%%DEBUG%%share/qt4/examples/script/helloscript/helloscript.debug -share/qt4/examples/script/helloscript/helloscript.pro -share/qt4/examples/script/helloscript/main.cpp -share/qt4/examples/script/qscript/main.cpp -share/qt4/examples/script/qscript/qscript -%%DEBUG%%share/qt4/examples/script/qscript/qscript.debug -share/qt4/examples/script/qscript/qscript.pro -share/qt4/examples/script/script.pro -share/qt4/examples/script/tetrix/main.cpp -share/qt4/examples/script/tetrix/tetrix -%%DEBUG%%share/qt4/examples/script/tetrix/tetrix.debug -share/qt4/examples/script/tetrix/tetrix.pro -share/qt4/examples/script/tetrix/tetrix.qrc -share/qt4/examples/script/tetrix/tetrixboard.cpp -share/qt4/examples/script/tetrix/tetrixboard.h -share/qt4/examples/script/tetrix/tetrixwindow.ui -share/qt4/examples/sql/README -share/qt4/examples/sql/cachedtable/cachedtable -%%DEBUG%%share/qt4/examples/sql/cachedtable/cachedtable.debug -share/qt4/examples/sql/cachedtable/cachedtable.pro -share/qt4/examples/sql/cachedtable/main.cpp -share/qt4/examples/sql/cachedtable/tableeditor.cpp -share/qt4/examples/sql/cachedtable/tableeditor.h -share/qt4/examples/sql/connection.h -share/qt4/examples/sql/drilldown/drilldown -%%DEBUG%%share/qt4/examples/sql/drilldown/drilldown.debug -share/qt4/examples/sql/drilldown/drilldown.pro -share/qt4/examples/sql/drilldown/drilldown.qrc -share/qt4/examples/sql/drilldown/imageitem.cpp -share/qt4/examples/sql/drilldown/imageitem.h -share/qt4/examples/sql/drilldown/informationwindow.cpp -share/qt4/examples/sql/drilldown/informationwindow.h -share/qt4/examples/sql/drilldown/main.cpp -share/qt4/examples/sql/drilldown/view.cpp -share/qt4/examples/sql/drilldown/view.h -share/qt4/examples/sql/masterdetail/database.h -share/qt4/examples/sql/masterdetail/dialog.cpp -share/qt4/examples/sql/masterdetail/dialog.h -share/qt4/examples/sql/masterdetail/main.cpp -share/qt4/examples/sql/masterdetail/mainwindow.cpp -share/qt4/examples/sql/masterdetail/mainwindow.h -share/qt4/examples/sql/masterdetail/masterdetail -%%DEBUG%%share/qt4/examples/sql/masterdetail/masterdetail.debug -share/qt4/examples/sql/masterdetail/masterdetail.pro -share/qt4/examples/sql/masterdetail/masterdetail.qrc -share/qt4/examples/sql/querymodel/customsqlmodel.cpp -share/qt4/examples/sql/querymodel/customsqlmodel.h -share/qt4/examples/sql/querymodel/editablesqlmodel.cpp -share/qt4/examples/sql/querymodel/editablesqlmodel.h -share/qt4/examples/sql/querymodel/main.cpp -share/qt4/examples/sql/querymodel/querymodel -%%DEBUG%%share/qt4/examples/sql/querymodel/querymodel.debug -share/qt4/examples/sql/querymodel/querymodel.pro -share/qt4/examples/sql/relationaltablemodel/relationaltablemodel -share/qt4/examples/sql/relationaltablemodel/relationaltablemodel.cpp -%%DEBUG%%share/qt4/examples/sql/relationaltablemodel/relationaltablemodel.debug -share/qt4/examples/sql/relationaltablemodel/relationaltablemodel.pro -share/qt4/examples/sql/sql.pro -share/qt4/examples/sql/tablemodel/tablemodel -share/qt4/examples/sql/tablemodel/tablemodel.cpp -%%DEBUG%%share/qt4/examples/sql/tablemodel/tablemodel.debug -share/qt4/examples/sql/tablemodel/tablemodel.pro -share/qt4/examples/threads/README -share/qt4/examples/threads/mandelbrot/main.cpp -share/qt4/examples/threads/mandelbrot/mandelbrot -%%DEBUG%%share/qt4/examples/threads/mandelbrot/mandelbrot.debug -share/qt4/examples/threads/mandelbrot/mandelbrot.pro -share/qt4/examples/threads/mandelbrot/mandelbrotwidget.cpp -share/qt4/examples/threads/mandelbrot/mandelbrotwidget.h -share/qt4/examples/threads/mandelbrot/renderthread.cpp -share/qt4/examples/threads/mandelbrot/renderthread.h -share/qt4/examples/threads/semaphores/semaphores -share/qt4/examples/threads/semaphores/semaphores.cpp -%%DEBUG%%share/qt4/examples/threads/semaphores/semaphores.debug -share/qt4/examples/threads/semaphores/semaphores.pro -share/qt4/examples/threads/threads.pro -share/qt4/examples/threads/waitconditions/waitconditions -share/qt4/examples/threads/waitconditions/waitconditions.cpp -%%DEBUG%%share/qt4/examples/threads/waitconditions/waitconditions.debug -share/qt4/examples/threads/waitconditions/waitconditions.pro -share/qt4/examples/tools/README -share/qt4/examples/tools/codecs/codecs -%%DEBUG%%share/qt4/examples/tools/codecs/codecs.debug -share/qt4/examples/tools/codecs/codecs.pro -share/qt4/examples/tools/codecs/encodedfiles/iso-8859-1.txt -share/qt4/examples/tools/codecs/encodedfiles/iso-8859-15.txt -share/qt4/examples/tools/codecs/encodedfiles/utf-16.txt -share/qt4/examples/tools/codecs/encodedfiles/utf-16be.txt -share/qt4/examples/tools/codecs/encodedfiles/utf-16le.txt -share/qt4/examples/tools/codecs/encodedfiles/utf-8.txt -share/qt4/examples/tools/codecs/main.cpp -share/qt4/examples/tools/codecs/mainwindow.cpp -share/qt4/examples/tools/codecs/mainwindow.h -share/qt4/examples/tools/codecs/previewform.cpp -share/qt4/examples/tools/codecs/previewform.h -share/qt4/examples/tools/completer/completer -%%DEBUG%%share/qt4/examples/tools/completer/completer.debug -share/qt4/examples/tools/completer/completer.pro -share/qt4/examples/tools/completer/completer.qrc -share/qt4/examples/tools/completer/dirmodel.cpp -share/qt4/examples/tools/completer/dirmodel.h -share/qt4/examples/tools/completer/main.cpp -share/qt4/examples/tools/completer/mainwindow.cpp -share/qt4/examples/tools/completer/mainwindow.h -share/qt4/examples/tools/completer/resources/countries.txt -share/qt4/examples/tools/completer/resources/wordlist.txt -share/qt4/examples/tools/customcompleter/customcompleter -%%DEBUG%%share/qt4/examples/tools/customcompleter/customcompleter.debug -share/qt4/examples/tools/customcompleter/customcompleter.pro -share/qt4/examples/tools/customcompleter/customcompleter.qrc -share/qt4/examples/tools/customcompleter/main.cpp -share/qt4/examples/tools/customcompleter/mainwindow.cpp -share/qt4/examples/tools/customcompleter/mainwindow.h -share/qt4/examples/tools/customcompleter/resources/wordlist.txt -share/qt4/examples/tools/customcompleter/textedit.cpp -share/qt4/examples/tools/customcompleter/textedit.h -share/qt4/examples/tools/echoplugin/echoplugin -%%DEBUG%%share/qt4/examples/tools/echoplugin/echoplugin.debug -share/qt4/examples/tools/echoplugin/echoplugin.pro -share/qt4/examples/tools/echoplugin/echowindow/echointerface.h -share/qt4/examples/tools/echoplugin/echowindow/echowindow.cpp -share/qt4/examples/tools/echoplugin/echowindow/echowindow.h -share/qt4/examples/tools/echoplugin/echowindow/echowindow.pro -share/qt4/examples/tools/echoplugin/echowindow/main.cpp -share/qt4/examples/tools/echoplugin/plugin/echoplugin.cpp -share/qt4/examples/tools/echoplugin/plugin/echoplugin.h -share/qt4/examples/tools/echoplugin/plugin/libechoplugin.so -%%DEBUG%%share/qt4/examples/tools/echoplugin/plugin/libechoplugin.so.debug -share/qt4/examples/tools/echoplugin/plugin/plugin.pro -share/qt4/examples/tools/i18n/i18n -%%DEBUG%%share/qt4/examples/tools/i18n/i18n.debug -share/qt4/examples/tools/i18n/i18n.pro -share/qt4/examples/tools/i18n/i18n.qrc -share/qt4/examples/tools/i18n/languagechooser.cpp -share/qt4/examples/tools/i18n/languagechooser.h -share/qt4/examples/tools/i18n/main.cpp -share/qt4/examples/tools/i18n/mainwindow.cpp -share/qt4/examples/tools/i18n/mainwindow.h -share/qt4/examples/tools/i18n/translations/i18n_ar.qm -share/qt4/examples/tools/i18n/translations/i18n_ar.ts -share/qt4/examples/tools/i18n/translations/i18n_cs.qm -share/qt4/examples/tools/i18n/translations/i18n_cs.ts -share/qt4/examples/tools/i18n/translations/i18n_de.qm -share/qt4/examples/tools/i18n/translations/i18n_de.ts -share/qt4/examples/tools/i18n/translations/i18n_el.qm -share/qt4/examples/tools/i18n/translations/i18n_el.ts -share/qt4/examples/tools/i18n/translations/i18n_en.qm -share/qt4/examples/tools/i18n/translations/i18n_en.ts -share/qt4/examples/tools/i18n/translations/i18n_eo.qm -share/qt4/examples/tools/i18n/translations/i18n_eo.ts -share/qt4/examples/tools/i18n/translations/i18n_fr.qm -share/qt4/examples/tools/i18n/translations/i18n_fr.ts -share/qt4/examples/tools/i18n/translations/i18n_it.qm -share/qt4/examples/tools/i18n/translations/i18n_it.ts -share/qt4/examples/tools/i18n/translations/i18n_jp.qm -share/qt4/examples/tools/i18n/translations/i18n_jp.ts -share/qt4/examples/tools/i18n/translations/i18n_ko.qm -share/qt4/examples/tools/i18n/translations/i18n_ko.ts -share/qt4/examples/tools/i18n/translations/i18n_no.qm -share/qt4/examples/tools/i18n/translations/i18n_no.ts -share/qt4/examples/tools/i18n/translations/i18n_ru.qm -share/qt4/examples/tools/i18n/translations/i18n_ru.ts -share/qt4/examples/tools/i18n/translations/i18n_sv.qm -share/qt4/examples/tools/i18n/translations/i18n_sv.ts -share/qt4/examples/tools/i18n/translations/i18n_zh.qm -share/qt4/examples/tools/i18n/translations/i18n_zh.ts -share/qt4/examples/tools/plugandpaint/interfaces.h -share/qt4/examples/tools/plugandpaint/main.cpp -share/qt4/examples/tools/plugandpaint/mainwindow.cpp -share/qt4/examples/tools/plugandpaint/mainwindow.h -share/qt4/examples/tools/plugandpaint/paintarea.cpp -share/qt4/examples/tools/plugandpaint/paintarea.h -share/qt4/examples/tools/plugandpaint/plugandpaint -%%DEBUG%%share/qt4/examples/tools/plugandpaint/plugandpaint.debug -share/qt4/examples/tools/plugandpaint/plugandpaint.pro -share/qt4/examples/tools/plugandpaint/plugindialog.cpp -share/qt4/examples/tools/plugandpaint/plugindialog.h -share/qt4/examples/tools/plugandpaint/plugins/libpnp_basictools.a -share/qt4/examples/tools/plugandpaint/plugins/libpnp_extrafilters.so -%%DEBUG%%share/qt4/examples/tools/plugandpaint/plugins/libpnp_extrafilters.so.debug -share/qt4/examples/tools/plugandpaintplugins/basictools/basictools.pro -share/qt4/examples/tools/plugandpaintplugins/basictools/basictoolsplugin.cpp -share/qt4/examples/tools/plugandpaintplugins/basictools/basictoolsplugin.h -share/qt4/examples/tools/plugandpaintplugins/extrafilters/extrafilters.pro -share/qt4/examples/tools/plugandpaintplugins/extrafilters/extrafiltersplugin.cpp -share/qt4/examples/tools/plugandpaintplugins/extrafilters/extrafiltersplugin.h -share/qt4/examples/tools/plugandpaintplugins/plugandpaintplugins.pro -share/qt4/examples/tools/regexp/main.cpp -share/qt4/examples/tools/regexp/regexp -%%DEBUG%%share/qt4/examples/tools/regexp/regexp.debug -share/qt4/examples/tools/regexp/regexp.pro -share/qt4/examples/tools/regexp/regexpdialog.cpp -share/qt4/examples/tools/regexp/regexpdialog.h -share/qt4/examples/tools/settingseditor/inifiles/licensepage.ini -share/qt4/examples/tools/settingseditor/inifiles/qsa.ini -share/qt4/examples/tools/settingseditor/locationdialog.cpp -share/qt4/examples/tools/settingseditor/locationdialog.h -share/qt4/examples/tools/settingseditor/main.cpp -share/qt4/examples/tools/settingseditor/mainwindow.cpp -share/qt4/examples/tools/settingseditor/mainwindow.h -share/qt4/examples/tools/settingseditor/settingseditor -%%DEBUG%%share/qt4/examples/tools/settingseditor/settingseditor.debug -share/qt4/examples/tools/settingseditor/settingseditor.pro -share/qt4/examples/tools/settingseditor/settingstree.cpp -share/qt4/examples/tools/settingseditor/settingstree.h -share/qt4/examples/tools/settingseditor/variantdelegate.cpp -share/qt4/examples/tools/settingseditor/variantdelegate.h -share/qt4/examples/tools/styleplugin/plugin/plugin.pro -share/qt4/examples/tools/styleplugin/plugin/simplestyle.cpp -share/qt4/examples/tools/styleplugin/plugin/simplestyle.h -share/qt4/examples/tools/styleplugin/plugin/simplestyleplugin.cpp -share/qt4/examples/tools/styleplugin/plugin/simplestyleplugin.h -share/qt4/examples/tools/styleplugin/styleplugin -%%DEBUG%%share/qt4/examples/tools/styleplugin/styleplugin.debug -share/qt4/examples/tools/styleplugin/styleplugin.pro -share/qt4/examples/tools/styleplugin/styles/libsimplestyleplugin.so -%%DEBUG%%share/qt4/examples/tools/styleplugin/styles/libsimplestyleplugin.so.debug -share/qt4/examples/tools/styleplugin/stylewindow/main.cpp -share/qt4/examples/tools/styleplugin/stylewindow/stylewindow.cpp -share/qt4/examples/tools/styleplugin/stylewindow/stylewindow.h -share/qt4/examples/tools/styleplugin/stylewindow/stylewindow.pro -share/qt4/examples/tools/tools.pro -share/qt4/examples/tools/treemodelcompleter/main.cpp -share/qt4/examples/tools/treemodelcompleter/mainwindow.cpp -share/qt4/examples/tools/treemodelcompleter/mainwindow.h -share/qt4/examples/tools/treemodelcompleter/resources/treemodel.txt -share/qt4/examples/tools/treemodelcompleter/treemodelcompleter -share/qt4/examples/tools/treemodelcompleter/treemodelcompleter.cpp -%%DEBUG%%share/qt4/examples/tools/treemodelcompleter/treemodelcompleter.debug -share/qt4/examples/tools/treemodelcompleter/treemodelcompleter.h -share/qt4/examples/tools/treemodelcompleter/treemodelcompleter.pro -share/qt4/examples/tools/treemodelcompleter/treemodelcompleter.qrc -share/qt4/examples/tools/undoframework/commands.cpp -share/qt4/examples/tools/undoframework/commands.h -share/qt4/examples/tools/undoframework/diagramitem.cpp -share/qt4/examples/tools/undoframework/diagramitem.h -share/qt4/examples/tools/undoframework/diagramscene.cpp -share/qt4/examples/tools/undoframework/diagramscene.h -share/qt4/examples/tools/undoframework/main.cpp -share/qt4/examples/tools/undoframework/mainwindow.cpp -share/qt4/examples/tools/undoframework/mainwindow.h -share/qt4/examples/tools/undoframework/undoframework -%%DEBUG%%share/qt4/examples/tools/undoframework/undoframework.debug -share/qt4/examples/tools/undoframework/undoframework.pro -share/qt4/examples/tools/undoframework/undoframework.qrc -share/qt4/examples/tutorial/README -share/qt4/examples/tutorial/t1/main.cpp -share/qt4/examples/tutorial/t1/t1 -%%DEBUG%%share/qt4/examples/tutorial/t1/t1.debug -share/qt4/examples/tutorial/t1/t1.pro -share/qt4/examples/tutorial/t10/cannonfield.cpp -share/qt4/examples/tutorial/t10/cannonfield.h -share/qt4/examples/tutorial/t10/lcdrange.cpp -share/qt4/examples/tutorial/t10/lcdrange.h -share/qt4/examples/tutorial/t10/main.cpp -share/qt4/examples/tutorial/t10/t10 -%%DEBUG%%share/qt4/examples/tutorial/t10/t10.debug -share/qt4/examples/tutorial/t10/t10.pro -share/qt4/examples/tutorial/t11/cannonfield.cpp -share/qt4/examples/tutorial/t11/cannonfield.h -share/qt4/examples/tutorial/t11/lcdrange.cpp -share/qt4/examples/tutorial/t11/lcdrange.h -share/qt4/examples/tutorial/t11/main.cpp -share/qt4/examples/tutorial/t11/t11 -%%DEBUG%%share/qt4/examples/tutorial/t11/t11.debug -share/qt4/examples/tutorial/t11/t11.pro -share/qt4/examples/tutorial/t12/cannonfield.cpp -share/qt4/examples/tutorial/t12/cannonfield.h -share/qt4/examples/tutorial/t12/lcdrange.cpp -share/qt4/examples/tutorial/t12/lcdrange.h -share/qt4/examples/tutorial/t12/main.cpp -share/qt4/examples/tutorial/t12/t12 -%%DEBUG%%share/qt4/examples/tutorial/t12/t12.debug -share/qt4/examples/tutorial/t12/t12.pro -share/qt4/examples/tutorial/t13/cannonfield.cpp -share/qt4/examples/tutorial/t13/cannonfield.h -share/qt4/examples/tutorial/t13/gameboard.cpp -share/qt4/examples/tutorial/t13/gameboard.h -share/qt4/examples/tutorial/t13/lcdrange.cpp -share/qt4/examples/tutorial/t13/lcdrange.h -share/qt4/examples/tutorial/t13/main.cpp -share/qt4/examples/tutorial/t13/t13 -%%DEBUG%%share/qt4/examples/tutorial/t13/t13.debug -share/qt4/examples/tutorial/t13/t13.pro -share/qt4/examples/tutorial/t14/cannonfield.cpp -share/qt4/examples/tutorial/t14/cannonfield.h -share/qt4/examples/tutorial/t14/gameboard.cpp -share/qt4/examples/tutorial/t14/gameboard.h -share/qt4/examples/tutorial/t14/lcdrange.cpp -share/qt4/examples/tutorial/t14/lcdrange.h -share/qt4/examples/tutorial/t14/main.cpp -share/qt4/examples/tutorial/t14/t14 -%%DEBUG%%share/qt4/examples/tutorial/t14/t14.debug -share/qt4/examples/tutorial/t14/t14.pro -share/qt4/examples/tutorial/t2/main.cpp -share/qt4/examples/tutorial/t2/t2 -%%DEBUG%%share/qt4/examples/tutorial/t2/t2.debug -share/qt4/examples/tutorial/t2/t2.pro -share/qt4/examples/tutorial/t3/main.cpp -share/qt4/examples/tutorial/t3/t3 -%%DEBUG%%share/qt4/examples/tutorial/t3/t3.debug -share/qt4/examples/tutorial/t3/t3.pro -share/qt4/examples/tutorial/t4/main.cpp -share/qt4/examples/tutorial/t4/t4 -%%DEBUG%%share/qt4/examples/tutorial/t4/t4.debug -share/qt4/examples/tutorial/t4/t4.pro -share/qt4/examples/tutorial/t5/main.cpp -share/qt4/examples/tutorial/t5/t5 -%%DEBUG%%share/qt4/examples/tutorial/t5/t5.debug -share/qt4/examples/tutorial/t5/t5.pro -share/qt4/examples/tutorial/t6/main.cpp -share/qt4/examples/tutorial/t6/t6 -%%DEBUG%%share/qt4/examples/tutorial/t6/t6.debug -share/qt4/examples/tutorial/t6/t6.pro -share/qt4/examples/tutorial/t7/lcdrange.cpp -share/qt4/examples/tutorial/t7/lcdrange.h -share/qt4/examples/tutorial/t7/main.cpp -share/qt4/examples/tutorial/t7/t7 -%%DEBUG%%share/qt4/examples/tutorial/t7/t7.debug -share/qt4/examples/tutorial/t7/t7.pro -share/qt4/examples/tutorial/t8/cannonfield.cpp -share/qt4/examples/tutorial/t8/cannonfield.h -share/qt4/examples/tutorial/t8/lcdrange.cpp -share/qt4/examples/tutorial/t8/lcdrange.h -share/qt4/examples/tutorial/t8/main.cpp -share/qt4/examples/tutorial/t8/t8 -%%DEBUG%%share/qt4/examples/tutorial/t8/t8.debug -share/qt4/examples/tutorial/t8/t8.pro -share/qt4/examples/tutorial/t9/cannonfield.cpp -share/qt4/examples/tutorial/t9/cannonfield.h -share/qt4/examples/tutorial/t9/lcdrange.cpp -share/qt4/examples/tutorial/t9/lcdrange.h -share/qt4/examples/tutorial/t9/main.cpp -share/qt4/examples/tutorial/t9/t9 -%%DEBUG%%share/qt4/examples/tutorial/t9/t9.debug -share/qt4/examples/tutorial/t9/t9.pro -share/qt4/examples/tutorial/tutorial.pro -share/qt4/examples/uitools/uitools.pro -share/qt4/examples/widgets/README -share/qt4/examples/widgets/analogclock/analogclock -share/qt4/examples/widgets/analogclock/analogclock.cpp -%%DEBUG%%share/qt4/examples/widgets/analogclock/analogclock.debug -share/qt4/examples/widgets/analogclock/analogclock.h -share/qt4/examples/widgets/analogclock/analogclock.pro -share/qt4/examples/widgets/analogclock/main.cpp -share/qt4/examples/widgets/calculator/button.cpp -share/qt4/examples/widgets/calculator/button.h -share/qt4/examples/widgets/calculator/calculator -share/qt4/examples/widgets/calculator/calculator.cpp -%%DEBUG%%share/qt4/examples/widgets/calculator/calculator.debug -share/qt4/examples/widgets/calculator/calculator.h -share/qt4/examples/widgets/calculator/calculator.pro -share/qt4/examples/widgets/calculator/main.cpp -share/qt4/examples/widgets/calendarwidget/calendarwidget -%%DEBUG%%share/qt4/examples/widgets/calendarwidget/calendarwidget.debug -share/qt4/examples/widgets/calendarwidget/calendarwidget.pro -share/qt4/examples/widgets/calendarwidget/main.cpp -share/qt4/examples/widgets/calendarwidget/window.cpp -share/qt4/examples/widgets/calendarwidget/window.h -share/qt4/examples/widgets/charactermap/charactermap -%%DEBUG%%share/qt4/examples/widgets/charactermap/charactermap.debug -share/qt4/examples/widgets/charactermap/charactermap.pro -share/qt4/examples/widgets/charactermap/characterwidget.cpp -share/qt4/examples/widgets/charactermap/characterwidget.h -share/qt4/examples/widgets/charactermap/main.cpp -share/qt4/examples/widgets/charactermap/mainwindow.cpp -share/qt4/examples/widgets/charactermap/mainwindow.h -share/qt4/examples/widgets/digitalclock/digitalclock -share/qt4/examples/widgets/digitalclock/digitalclock.cpp -%%DEBUG%%share/qt4/examples/widgets/digitalclock/digitalclock.debug -share/qt4/examples/widgets/digitalclock/digitalclock.h -share/qt4/examples/widgets/digitalclock/digitalclock.pro -share/qt4/examples/widgets/digitalclock/main.cpp -share/qt4/examples/widgets/groupbox/groupbox -%%DEBUG%%share/qt4/examples/widgets/groupbox/groupbox.debug -share/qt4/examples/widgets/groupbox/groupbox.pro -share/qt4/examples/widgets/groupbox/main.cpp -share/qt4/examples/widgets/groupbox/window.cpp -share/qt4/examples/widgets/groupbox/window.h -share/qt4/examples/widgets/icons/iconpreviewarea.cpp -share/qt4/examples/widgets/icons/iconpreviewarea.h -share/qt4/examples/widgets/icons/icons -%%DEBUG%%share/qt4/examples/widgets/icons/icons.debug -share/qt4/examples/widgets/icons/icons.pro -share/qt4/examples/widgets/icons/iconsizespinbox.cpp -share/qt4/examples/widgets/icons/iconsizespinbox.h -share/qt4/examples/widgets/icons/imagedelegate.cpp -share/qt4/examples/widgets/icons/imagedelegate.h -share/qt4/examples/widgets/icons/images/designer.png -share/qt4/examples/widgets/icons/images/find_disabled.png -share/qt4/examples/widgets/icons/images/find_normal.png -share/qt4/examples/widgets/icons/images/monkey_off_128x128.png -share/qt4/examples/widgets/icons/images/monkey_off_16x16.png -share/qt4/examples/widgets/icons/images/monkey_off_32x32.png -share/qt4/examples/widgets/icons/images/monkey_off_64x64.png -share/qt4/examples/widgets/icons/images/monkey_on_128x128.png -share/qt4/examples/widgets/icons/images/monkey_on_16x16.png -share/qt4/examples/widgets/icons/images/monkey_on_32x32.png -share/qt4/examples/widgets/icons/images/monkey_on_64x64.png -share/qt4/examples/widgets/icons/images/qtopia_16x16.png -share/qt4/examples/widgets/icons/images/qtopia_32x32.png -share/qt4/examples/widgets/icons/images/qtopia_48x48.png -share/qt4/examples/widgets/icons/main.cpp -share/qt4/examples/widgets/icons/mainwindow.cpp -share/qt4/examples/widgets/icons/mainwindow.h -share/qt4/examples/widgets/imageviewer/imageviewer -share/qt4/examples/widgets/imageviewer/imageviewer.cpp -%%DEBUG%%share/qt4/examples/widgets/imageviewer/imageviewer.debug -share/qt4/examples/widgets/imageviewer/imageviewer.h -share/qt4/examples/widgets/imageviewer/imageviewer.pro -share/qt4/examples/widgets/imageviewer/main.cpp -share/qt4/examples/widgets/lineedits/lineedits -%%DEBUG%%share/qt4/examples/widgets/lineedits/lineedits.debug -share/qt4/examples/widgets/lineedits/lineedits.pro -share/qt4/examples/widgets/lineedits/main.cpp -share/qt4/examples/widgets/lineedits/window.cpp -share/qt4/examples/widgets/lineedits/window.h -share/qt4/examples/widgets/movie/images/open.png -share/qt4/examples/widgets/movie/images/pause.png -share/qt4/examples/widgets/movie/images/play.png -share/qt4/examples/widgets/movie/images/quit.png -share/qt4/examples/widgets/movie/images/stop.png -share/qt4/examples/widgets/movie/main.cpp -share/qt4/examples/widgets/movie/movie -%%DEBUG%%share/qt4/examples/widgets/movie/movie.debug -share/qt4/examples/widgets/movie/movie.pro -share/qt4/examples/widgets/movie/movie.qrc -share/qt4/examples/widgets/movie/movieplayer.cpp -share/qt4/examples/widgets/movie/movieplayer.h -share/qt4/examples/widgets/scribble/main.cpp -share/qt4/examples/widgets/scribble/mainwindow.cpp -share/qt4/examples/widgets/scribble/mainwindow.h -share/qt4/examples/widgets/scribble/scribble -%%DEBUG%%share/qt4/examples/widgets/scribble/scribble.debug -share/qt4/examples/widgets/scribble/scribble.pro -share/qt4/examples/widgets/scribble/scribblearea.cpp -share/qt4/examples/widgets/scribble/scribblearea.h -share/qt4/examples/widgets/shapedclock/main.cpp -share/qt4/examples/widgets/shapedclock/shapedclock -share/qt4/examples/widgets/shapedclock/shapedclock.cpp -%%DEBUG%%share/qt4/examples/widgets/shapedclock/shapedclock.debug -share/qt4/examples/widgets/shapedclock/shapedclock.h -share/qt4/examples/widgets/shapedclock/shapedclock.pro -share/qt4/examples/widgets/sliders/main.cpp -share/qt4/examples/widgets/sliders/sliders -%%DEBUG%%share/qt4/examples/widgets/sliders/sliders.debug -share/qt4/examples/widgets/sliders/sliders.pro -share/qt4/examples/widgets/sliders/slidersgroup.cpp -share/qt4/examples/widgets/sliders/slidersgroup.h -share/qt4/examples/widgets/sliders/window.cpp -share/qt4/examples/widgets/sliders/window.h -share/qt4/examples/widgets/spinboxes/main.cpp -share/qt4/examples/widgets/spinboxes/spinboxes -%%DEBUG%%share/qt4/examples/widgets/spinboxes/spinboxes.debug -share/qt4/examples/widgets/spinboxes/spinboxes.pro -share/qt4/examples/widgets/spinboxes/window.cpp -share/qt4/examples/widgets/spinboxes/window.h -share/qt4/examples/widgets/styles/images/woodbackground.png -share/qt4/examples/widgets/styles/images/woodbutton.png -share/qt4/examples/widgets/styles/main.cpp -share/qt4/examples/widgets/styles/norwegianwoodstyle.cpp -share/qt4/examples/widgets/styles/norwegianwoodstyle.h -share/qt4/examples/widgets/styles/styles -%%DEBUG%%share/qt4/examples/widgets/styles/styles.debug -share/qt4/examples/widgets/styles/styles.pro -share/qt4/examples/widgets/styles/styles.qrc -share/qt4/examples/widgets/styles/widgetgallery.cpp -share/qt4/examples/widgets/styles/widgetgallery.h -share/qt4/examples/widgets/stylesheet/main.cpp -share/qt4/examples/widgets/stylesheet/mainwindow.cpp -share/qt4/examples/widgets/stylesheet/mainwindow.h -share/qt4/examples/widgets/stylesheet/mainwindow.ui -share/qt4/examples/widgets/stylesheet/stylesheet -%%DEBUG%%share/qt4/examples/widgets/stylesheet/stylesheet.debug -share/qt4/examples/widgets/stylesheet/stylesheet.pro -share/qt4/examples/widgets/stylesheet/stylesheet.qrc -share/qt4/examples/widgets/stylesheet/stylesheeteditor.cpp -share/qt4/examples/widgets/stylesheet/stylesheeteditor.h -share/qt4/examples/widgets/stylesheet/stylesheeteditor.ui -share/qt4/examples/widgets/tablet/main.cpp -share/qt4/examples/widgets/tablet/mainwindow.cpp -share/qt4/examples/widgets/tablet/mainwindow.h -share/qt4/examples/widgets/tablet/tablet -%%DEBUG%%share/qt4/examples/widgets/tablet/tablet.debug -share/qt4/examples/widgets/tablet/tablet.pro -share/qt4/examples/widgets/tablet/tabletapplication.cpp -share/qt4/examples/widgets/tablet/tabletapplication.h -share/qt4/examples/widgets/tablet/tabletcanvas.cpp -share/qt4/examples/widgets/tablet/tabletcanvas.h -share/qt4/examples/widgets/tetrix/main.cpp -share/qt4/examples/widgets/tetrix/tetrix -%%DEBUG%%share/qt4/examples/widgets/tetrix/tetrix.debug -share/qt4/examples/widgets/tetrix/tetrix.pro -share/qt4/examples/widgets/tetrix/tetrixboard.cpp -share/qt4/examples/widgets/tetrix/tetrixboard.h -share/qt4/examples/widgets/tetrix/tetrixpiece.cpp -share/qt4/examples/widgets/tetrix/tetrixpiece.h -share/qt4/examples/widgets/tetrix/tetrixwindow.cpp -share/qt4/examples/widgets/tetrix/tetrixwindow.h -share/qt4/examples/widgets/tooltips/images/circle.png -share/qt4/examples/widgets/tooltips/images/square.png -share/qt4/examples/widgets/tooltips/images/triangle.png -share/qt4/examples/widgets/tooltips/main.cpp -share/qt4/examples/widgets/tooltips/shapeitem.cpp -share/qt4/examples/widgets/tooltips/shapeitem.h -share/qt4/examples/widgets/tooltips/sortingbox.cpp -share/qt4/examples/widgets/tooltips/sortingbox.h -share/qt4/examples/widgets/tooltips/tooltips -%%DEBUG%%share/qt4/examples/widgets/tooltips/tooltips.debug -share/qt4/examples/widgets/tooltips/tooltips.pro -share/qt4/examples/widgets/tooltips/tooltips.qrc -share/qt4/examples/widgets/widgets.pro -share/qt4/examples/widgets/wiggly/dialog.cpp -share/qt4/examples/widgets/wiggly/dialog.h -share/qt4/examples/widgets/wiggly/main.cpp -share/qt4/examples/widgets/wiggly/wiggly -%%DEBUG%%share/qt4/examples/widgets/wiggly/wiggly.debug -share/qt4/examples/widgets/wiggly/wiggly.pro -share/qt4/examples/widgets/wiggly/wigglywidget.cpp -share/qt4/examples/widgets/wiggly/wigglywidget.h -share/qt4/examples/widgets/windowflags/controllerwindow.cpp -share/qt4/examples/widgets/windowflags/controllerwindow.h -share/qt4/examples/widgets/windowflags/main.cpp -share/qt4/examples/widgets/windowflags/previewwindow.cpp -share/qt4/examples/widgets/windowflags/previewwindow.h -share/qt4/examples/widgets/windowflags/windowflags -%%DEBUG%%share/qt4/examples/widgets/windowflags/windowflags.debug -share/qt4/examples/widgets/windowflags/windowflags.pro -share/qt4/examples/xml/README -share/qt4/examples/xml/dombookmarks/dombookmarks -%%DEBUG%%share/qt4/examples/xml/dombookmarks/dombookmarks.debug -share/qt4/examples/xml/dombookmarks/dombookmarks.pro -share/qt4/examples/xml/dombookmarks/frank.xbel -share/qt4/examples/xml/dombookmarks/jennifer.xbel -share/qt4/examples/xml/dombookmarks/main.cpp -share/qt4/examples/xml/dombookmarks/mainwindow.cpp -share/qt4/examples/xml/dombookmarks/mainwindow.h -share/qt4/examples/xml/dombookmarks/xbeltree.cpp -share/qt4/examples/xml/dombookmarks/xbeltree.h -share/qt4/examples/xml/rsslisting/main.cpp -share/qt4/examples/xml/rsslisting/rsslisting -share/qt4/examples/xml/rsslisting/rsslisting.cpp -%%DEBUG%%share/qt4/examples/xml/rsslisting/rsslisting.debug -share/qt4/examples/xml/rsslisting/rsslisting.h -share/qt4/examples/xml/rsslisting/rsslisting.pro -share/qt4/examples/xml/saxbookmarks/frank.xbel -share/qt4/examples/xml/saxbookmarks/jennifer.xbel -share/qt4/examples/xml/saxbookmarks/main.cpp -share/qt4/examples/xml/saxbookmarks/mainwindow.cpp -share/qt4/examples/xml/saxbookmarks/mainwindow.h -share/qt4/examples/xml/saxbookmarks/saxbookmarks -%%DEBUG%%share/qt4/examples/xml/saxbookmarks/saxbookmarks.debug -share/qt4/examples/xml/saxbookmarks/saxbookmarks.pro -share/qt4/examples/xml/saxbookmarks/xbelgenerator.cpp -share/qt4/examples/xml/saxbookmarks/xbelgenerator.h -share/qt4/examples/xml/saxbookmarks/xbelhandler.cpp -share/qt4/examples/xml/saxbookmarks/xbelhandler.h -share/qt4/examples/xml/streambookmarks/frank.xbel -share/qt4/examples/xml/streambookmarks/jennifer.xbel -share/qt4/examples/xml/streambookmarks/main.cpp -share/qt4/examples/xml/streambookmarks/mainwindow.cpp -share/qt4/examples/xml/streambookmarks/mainwindow.h -share/qt4/examples/xml/streambookmarks/streambookmarks -%%DEBUG%%share/qt4/examples/xml/streambookmarks/streambookmarks.debug -share/qt4/examples/xml/streambookmarks/streambookmarks.pro -share/qt4/examples/xml/streambookmarks/xbelreader.cpp -share/qt4/examples/xml/streambookmarks/xbelreader.h -share/qt4/examples/xml/streambookmarks/xbelwriter.cpp -share/qt4/examples/xml/streambookmarks/xbelwriter.h -share/qt4/examples/xml/xml.pro -share/qt4/examples/xml/xmlstreamlint/main.cpp -share/qt4/examples/xml/xmlstreamlint/xmlstreamlint -%%DEBUG%%share/qt4/examples/xml/xmlstreamlint/xmlstreamlint.debug -share/qt4/examples/xml/xmlstreamlint/xmlstreamlint.pro -@dirrm share/qt4/examples/xml/xmlstreamlint -@dirrm share/qt4/examples/xml/streambookmarks -@dirrm share/qt4/examples/xml/saxbookmarks -@dirrm share/qt4/examples/xml/rsslisting -@dirrm share/qt4/examples/xml/dombookmarks -@dirrm share/qt4/examples/xml -@dirrm share/qt4/examples/widgets/windowflags -@dirrm share/qt4/examples/widgets/wiggly -@dirrm share/qt4/examples/widgets/tooltips/images -@dirrm share/qt4/examples/widgets/tooltips -@dirrm share/qt4/examples/widgets/tetrix -@dirrm share/qt4/examples/widgets/tablet -@dirrm share/qt4/examples/widgets/stylesheet -@dirrm share/qt4/examples/widgets/styles/images -@dirrm share/qt4/examples/widgets/styles -@dirrm share/qt4/examples/widgets/spinboxes -@dirrm share/qt4/examples/widgets/sliders -@dirrm share/qt4/examples/widgets/shapedclock -@dirrm share/qt4/examples/widgets/scribble -@dirrm share/qt4/examples/widgets/movie/images -@dirrm share/qt4/examples/widgets/movie -@dirrm share/qt4/examples/widgets/lineedits -@dirrm share/qt4/examples/widgets/imageviewer -@dirrm share/qt4/examples/widgets/icons/images -@dirrm share/qt4/examples/widgets/icons -@dirrm share/qt4/examples/widgets/groupbox -@dirrm share/qt4/examples/widgets/digitalclock -@dirrm share/qt4/examples/widgets/charactermap -@dirrm share/qt4/examples/widgets/calendarwidget -@dirrm share/qt4/examples/widgets/calculator -@dirrm share/qt4/examples/widgets/analogclock -@dirrm share/qt4/examples/widgets -@dirrm share/qt4/examples/uitools -@dirrm share/qt4/examples/tutorial/t9 -@dirrm share/qt4/examples/tutorial/t8 -@dirrm share/qt4/examples/tutorial/t7 -@dirrm share/qt4/examples/tutorial/t6 -@dirrm share/qt4/examples/tutorial/t5 -@dirrm share/qt4/examples/tutorial/t4 -@dirrm share/qt4/examples/tutorial/t3 -@dirrm share/qt4/examples/tutorial/t2 -@dirrm share/qt4/examples/tutorial/t14 -@dirrm share/qt4/examples/tutorial/t13 -@dirrm share/qt4/examples/tutorial/t12 -@dirrm share/qt4/examples/tutorial/t11 -@dirrm share/qt4/examples/tutorial/t10 -@dirrm share/qt4/examples/tutorial/t1 -@dirrm share/qt4/examples/tutorial -@dirrm share/qt4/examples/tools/undoframework -@dirrm share/qt4/examples/tools/treemodelcompleter/resources -@dirrm share/qt4/examples/tools/treemodelcompleter -@dirrm share/qt4/examples/tools/styleplugin/stylewindow -@dirrm share/qt4/examples/tools/styleplugin/styles -@dirrm share/qt4/examples/tools/styleplugin/plugin -@dirrm share/qt4/examples/tools/styleplugin -@dirrm share/qt4/examples/tools/settingseditor/inifiles -@dirrm share/qt4/examples/tools/settingseditor -@dirrm share/qt4/examples/tools/regexp -@dirrm share/qt4/examples/tools/plugandpaintplugins/extrafilters -@dirrm share/qt4/examples/tools/plugandpaintplugins/basictools -@dirrm share/qt4/examples/tools/plugandpaintplugins -@dirrm share/qt4/examples/tools/plugandpaint/plugins -@dirrm share/qt4/examples/tools/plugandpaint -@dirrm share/qt4/examples/tools/i18n/translations -@dirrm share/qt4/examples/tools/i18n -@dirrm share/qt4/examples/tools/echoplugin/plugin -@dirrm share/qt4/examples/tools/echoplugin/echowindow -@dirrm share/qt4/examples/tools/echoplugin -@dirrm share/qt4/examples/tools/customcompleter/resources -@dirrm share/qt4/examples/tools/customcompleter -@dirrm share/qt4/examples/tools/completer/resources -@dirrm share/qt4/examples/tools/completer -@dirrm share/qt4/examples/tools/codecs/encodedfiles -@dirrm share/qt4/examples/tools/codecs -@dirrm share/qt4/examples/tools -@dirrm share/qt4/examples/threads/waitconditions -@dirrm share/qt4/examples/threads/semaphores -@dirrm share/qt4/examples/threads/mandelbrot -@dirrm share/qt4/examples/threads -@dirrm share/qt4/examples/sql/tablemodel -@dirrm share/qt4/examples/sql/relationaltablemodel -@dirrm share/qt4/examples/sql/querymodel -@dirrm share/qt4/examples/sql/masterdetail -@dirrm share/qt4/examples/sql/drilldown -@dirrm share/qt4/examples/sql/cachedtable -@dirrm share/qt4/examples/sql -@dirrm share/qt4/examples/script/tetrix -@dirrm share/qt4/examples/script/qscript -@dirrm share/qt4/examples/script/helloscript -@dirrm share/qt4/examples/script/defaultprototypes -@dirrm share/qt4/examples/script/context2d/scripts -@dirrm share/qt4/examples/script/context2d -@dirrm share/qt4/examples/script/calculator -@dirrm share/qt4/examples/script -@dirrm share/qt4/examples/richtext/syntaxhighlighter -@dirrm share/qt4/examples/richtext/orderform -@dirrm share/qt4/examples/richtext/calendar -@dirrm share/qt4/examples/richtext -@dirrm share/qt4/examples/qtestlib/tutorial4 -@dirrm share/qt4/examples/qtestlib/tutorial3 -@dirrm share/qt4/examples/qtestlib/tutorial2 -@dirrm share/qt4/examples/qtestlib/tutorial1 -@dirrm share/qt4/examples/qtestlib -@dirrm share/qt4/examples/qdbus/remotecontrolledcar/controller -@dirrm share/qt4/examples/qdbus/remotecontrolledcar/car -@dirrm share/qt4/examples/qdbus/remotecontrolledcar -@dirrm share/qt4/examples/qdbus/pingpong -@dirrm share/qt4/examples/qdbus/listnames -@dirrm share/qt4/examples/qdbus/complexpingpong -@dirrm share/qt4/examples/qdbus/chat -@dirrm share/qt4/examples/qdbus -@dirrm share/qt4/examples/painting/transformations -@dirrm share/qt4/examples/painting/svgviewer/files -@dirrm share/qt4/examples/painting/svgviewer -@dirrm share/qt4/examples/painting/painterpaths -@dirrm share/qt4/examples/painting/imagecomposition/images -@dirrm share/qt4/examples/painting/imagecomposition -@dirrm share/qt4/examples/painting/fontsampler -@dirrm share/qt4/examples/painting/concentriccircles -@dirrm share/qt4/examples/painting/basicdrawing/images -@dirrm share/qt4/examples/painting/basicdrawing -@dirrm share/qt4/examples/painting -@dirrm share/qt4/examples/opengl/textures/images -@dirrm share/qt4/examples/opengl/textures -@dirrm share/qt4/examples/opengl/samplebuffers -@dirrm share/qt4/examples/opengl/pbuffers2 -@dirrm share/qt4/examples/opengl/pbuffers -@dirrm share/qt4/examples/opengl/overpainting -@dirrm share/qt4/examples/opengl/hellogl -@dirrm share/qt4/examples/opengl/grabber -@dirrm share/qt4/examples/opengl/framebufferobject2 -@dirrm share/qt4/examples/opengl/framebufferobject -@dirrm share/qt4/examples/opengl/2dpainting -@dirrm share/qt4/examples/opengl -@dirrm share/qt4/examples/network/torrent/icons -@dirrm share/qt4/examples/network/torrent/forms -@dirrm share/qt4/examples/network/torrent/3rdparty -@dirrm share/qt4/examples/network/torrent -@dirrm share/qt4/examples/network/threadedfortuneserver -@dirrm share/qt4/examples/network/securesocketclient -@dirrm share/qt4/examples/network/loopback -@dirrm share/qt4/examples/network/http -@dirrm share/qt4/examples/network/ftp/images -@dirrm share/qt4/examples/network/ftp -@dirrm share/qt4/examples/network/fortuneserver -@dirrm share/qt4/examples/network/fortuneclient -@dirrm share/qt4/examples/network/chat -@dirrm share/qt4/examples/network/broadcastsender -@dirrm share/qt4/examples/network/broadcastreceiver -@dirrm share/qt4/examples/network/blockingfortuneclient -@dirrm share/qt4/examples/network -@dirrm share/qt4/examples/mainwindows/sdi/images -@dirrm share/qt4/examples/mainwindows/sdi -@dirrm share/qt4/examples/mainwindows/recentfiles -@dirrm share/qt4/examples/mainwindows/menus -@dirrm share/qt4/examples/mainwindows/mdi/images -@dirrm share/qt4/examples/mainwindows/mdi -@dirrm share/qt4/examples/mainwindows/dockwidgets/images -@dirrm share/qt4/examples/mainwindows/dockwidgets -@dirrm share/qt4/examples/mainwindows/application/images -@dirrm share/qt4/examples/mainwindows/application -@dirrm share/qt4/examples/mainwindows -@dirrm share/qt4/examples/linguist/trollprint -@dirrm share/qt4/examples/linguist/hellotr -@dirrm share/qt4/examples/linguist/arrowpad -@dirrm share/qt4/examples/linguist -@dirrm share/qt4/examples/layouts/flowlayout -@dirrm share/qt4/examples/layouts/dynamiclayouts -@dirrm share/qt4/examples/layouts/borderlayout -@dirrm share/qt4/examples/layouts/basiclayouts -@dirrm share/qt4/examples/layouts -@dirrm share/qt4/examples/itemviews/stardelegate -@dirrm share/qt4/examples/itemviews/spinboxdelegate -@dirrm share/qt4/examples/itemviews/simplewidgetmapper -@dirrm share/qt4/examples/itemviews/simpletreemodel -@dirrm share/qt4/examples/itemviews/simpledommodel -@dirrm share/qt4/examples/itemviews/puzzle -@dirrm share/qt4/examples/itemviews/pixelator/images -@dirrm share/qt4/examples/itemviews/pixelator -@dirrm share/qt4/examples/itemviews/dirview -@dirrm share/qt4/examples/itemviews/customsortfiltermodel -@dirrm share/qt4/examples/itemviews/coloreditorfactory -@dirrm share/qt4/examples/itemviews/chart -@dirrm share/qt4/examples/itemviews/basicsortfiltermodel -@dirrm share/qt4/examples/itemviews -@dirrm share/qt4/examples/graphicsview/portedcanvas -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/ship -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/shield -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/rock3 -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/rock2 -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/rock1 -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/powerups -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/missile -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/exhaust -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites/bits -@dirrm share/qt4/examples/graphicsview/portedasteroids/sprites -@dirrm share/qt4/examples/graphicsview/portedasteroids/sounds -@dirrm share/qt4/examples/graphicsview/portedasteroids -@dirrm share/qt4/examples/graphicsview/elasticnodes -@dirrm share/qt4/examples/graphicsview/dragdroprobot/images -@dirrm share/qt4/examples/graphicsview/dragdroprobot -@dirrm share/qt4/examples/graphicsview/diagramscene/images -@dirrm share/qt4/examples/graphicsview/diagramscene -@dirrm share/qt4/examples/graphicsview/collidingmice/images -@dirrm share/qt4/examples/graphicsview/collidingmice -@dirrm share/qt4/examples/graphicsview -@dirrm share/qt4/examples/draganddrop/puzzle -@dirrm share/qt4/examples/draganddrop/fridgemagnets -@dirrm share/qt4/examples/draganddrop/dropsite -@dirrm share/qt4/examples/draganddrop/draggabletext -@dirrm share/qt4/examples/draganddrop/draggableicons/images -@dirrm share/qt4/examples/draganddrop/draggableicons -@dirrm share/qt4/examples/draganddrop -@dirrm share/qt4/examples/dialogs/trivialwizard -@dirrm share/qt4/examples/dialogs/tabdialog -@dirrm share/qt4/examples/dialogs/standarddialogs -@dirrm share/qt4/examples/dialogs/licensewizard -@dirrm share/qt4/examples/dialogs/findfiles -@dirrm share/qt4/examples/dialogs/extension -@dirrm share/qt4/examples/dialogs/configdialog/images -@dirrm share/qt4/examples/dialogs/configdialog -@dirrm share/qt4/examples/dialogs/classwizard -@dirrm share/qt4/examples/dialogs -@dirrm share/qt4/examples/desktop/systray -@dirrm share/qt4/examples/desktop/screenshot -@dirrm share/qt4/examples/desktop -@dirrm share/qt4/examples/designer/worldtimeclockplugin -@dirrm share/qt4/examples/designer/worldtimeclockbuilder -@dirrm share/qt4/examples/designer/taskmenuextension -@dirrm share/qt4/examples/designer/customwidgetplugin -@dirrm share/qt4/examples/designer/containerextension -@dirrm share/qt4/examples/designer/calculatorform -@dirrm share/qt4/examples/designer/calculatorbuilder -@dirrm share/qt4/examples/designer -@dirrm share/qt4/examples/assistant/simpletextviewer/documentation/images -@dirrm share/qt4/examples/assistant/simpletextviewer/documentation -@dirrm share/qt4/examples/assistant/simpletextviewer -@dirrm share/qt4/examples/assistant -@dirrm share/qt4/examples -@dirrm share/qt4/demos/undo -@dirrm share/qt4/demos/textedit/images/win -@dirrm share/qt4/demos/textedit/images/mac -@dirrm share/qt4/demos/textedit/images -@dirrm share/qt4/demos/textedit -@dirrm share/qt4/demos/sqlbrowser -@dirrm share/qt4/demos/spreadsheet/images -@dirrm share/qt4/demos/spreadsheet -@dirrm share/qt4/demos/shared/images -@dirrm share/qt4/demos/shared -@dirrm share/qt4/demos/qtdemo/xml -@dirrm share/qt4/demos/qtdemo/images -@dirrm share/qt4/demos/qtdemo -@dirrm share/qt4/demos/pathstroke -@dirrm share/qt4/demos/mainwindow -@dirrm share/qt4/demos/interview/images -@dirrm share/qt4/demos/interview -@dirrm share/qt4/demos/gradients -@dirrm share/qt4/demos/deform -@dirrm share/qt4/demos/composition -@dirrm share/qt4/demos/chip -@dirrm share/qt4/demos/books/images -@dirrm share/qt4/demos/books -@dirrm share/qt4/demos/arthurplugin -@dirrm share/qt4/demos/affine -@dirrm share/qt4/demos +share/examples/qt4/demos/README +share/examples/qt4/demos/affine/affine +%%DEBUG%%share/examples/qt4/demos/affine/affine.debug +share/examples/qt4/demos/affine/affine.pro +share/examples/qt4/demos/affine/affine.qrc +share/examples/qt4/demos/affine/bg1.jpg +share/examples/qt4/demos/affine/main.cpp +share/examples/qt4/demos/affine/xform.cpp +share/examples/qt4/demos/affine/xform.h +share/examples/qt4/demos/affine/xform.html +share/examples/qt4/demos/arthurplugin/arthur_plugin.qrc +share/examples/qt4/demos/arthurplugin/arthurplugin.pro +share/examples/qt4/demos/arthurplugin/bg1.jpg +share/examples/qt4/demos/arthurplugin/composition.cpp +share/examples/qt4/demos/arthurplugin/composition.h +share/examples/qt4/demos/arthurplugin/flower.jpg +share/examples/qt4/demos/arthurplugin/flower_alpha.jpg +share/examples/qt4/demos/arthurplugin/gradients.cpp +share/examples/qt4/demos/arthurplugin/gradients.h +share/examples/qt4/demos/arthurplugin/pathdeform.cpp +share/examples/qt4/demos/arthurplugin/pathdeform.h +share/examples/qt4/demos/arthurplugin/pathstroke.cpp +share/examples/qt4/demos/arthurplugin/pathstroke.h +share/examples/qt4/demos/arthurplugin/plugin.cpp +share/examples/qt4/demos/arthurplugin/xform.cpp +share/examples/qt4/demos/arthurplugin/xform.h +share/examples/qt4/demos/books/bookdelegate.cpp +share/examples/qt4/demos/books/bookdelegate.h +share/examples/qt4/demos/books/books +%%DEBUG%%share/examples/qt4/demos/books/books.debug +share/examples/qt4/demos/books/books.pro +share/examples/qt4/demos/books/books.qrc +share/examples/qt4/demos/books/bookwindow.cpp +share/examples/qt4/demos/books/bookwindow.h +share/examples/qt4/demos/books/bookwindow.ui +share/examples/qt4/demos/books/images/star.png +share/examples/qt4/demos/books/initdb.h +share/examples/qt4/demos/books/main.cpp +share/examples/qt4/demos/browser/addbookmarkdialog.ui +share/examples/qt4/demos/browser/autosaver.cpp +share/examples/qt4/demos/browser/autosaver.h +share/examples/qt4/demos/browser/bookmarks.cpp +share/examples/qt4/demos/browser/bookmarks.h +share/examples/qt4/demos/browser/bookmarks.ui +share/examples/qt4/demos/browser/browser +%%DEBUG%%share/examples/qt4/demos/browser/browser.debug +share/examples/qt4/demos/browser/browser.icns +share/examples/qt4/demos/browser/browser.ico +share/examples/qt4/demos/browser/browser.pro +share/examples/qt4/demos/browser/browser.rc +share/examples/qt4/demos/browser/browserapplication.cpp +share/examples/qt4/demos/browser/browserapplication.h +share/examples/qt4/demos/browser/browsermainwindow.cpp +share/examples/qt4/demos/browser/browsermainwindow.h +share/examples/qt4/demos/browser/chasewidget.cpp +share/examples/qt4/demos/browser/chasewidget.h +share/examples/qt4/demos/browser/cookiejar.cpp +share/examples/qt4/demos/browser/cookiejar.h +share/examples/qt4/demos/browser/cookies.ui +share/examples/qt4/demos/browser/cookiesexceptions.ui +share/examples/qt4/demos/browser/data.qrc +share/examples/qt4/demos/browser/downloaditem.ui +share/examples/qt4/demos/browser/downloadmanager.cpp +share/examples/qt4/demos/browser/downloadmanager.h +share/examples/qt4/demos/browser/downloads.ui +share/examples/qt4/demos/browser/edittableview.cpp +share/examples/qt4/demos/browser/edittableview.h +share/examples/qt4/demos/browser/edittreeview.cpp +share/examples/qt4/demos/browser/edittreeview.h +share/examples/qt4/demos/browser/history.cpp +share/examples/qt4/demos/browser/history.h +share/examples/qt4/demos/browser/history.ui +share/examples/qt4/demos/browser/htmls.qrc +share/examples/qt4/demos/browser/htmls/htmls.qrc +share/examples/qt4/demos/browser/htmls/notfound.html +share/examples/qt4/demos/browser/main.cpp +share/examples/qt4/demos/browser/modelmenu.cpp +share/examples/qt4/demos/browser/modelmenu.h +share/examples/qt4/demos/browser/networkaccessmanager.cpp +share/examples/qt4/demos/browser/networkaccessmanager.h +share/examples/qt4/demos/browser/passworddialog.ui +share/examples/qt4/demos/browser/proxy.ui +share/examples/qt4/demos/browser/searchlineedit.cpp +share/examples/qt4/demos/browser/searchlineedit.h +share/examples/qt4/demos/browser/settings.cpp +share/examples/qt4/demos/browser/settings.h +share/examples/qt4/demos/browser/settings.ui +share/examples/qt4/demos/browser/squeezelabel.cpp +share/examples/qt4/demos/browser/squeezelabel.h +share/examples/qt4/demos/browser/tabwidget.cpp +share/examples/qt4/demos/browser/tabwidget.h +share/examples/qt4/demos/browser/toolbarsearch.cpp +share/examples/qt4/demos/browser/toolbarsearch.h +share/examples/qt4/demos/browser/urllineedit.cpp +share/examples/qt4/demos/browser/urllineedit.h +share/examples/qt4/demos/browser/webview.cpp +share/examples/qt4/demos/browser/webview.h +share/examples/qt4/demos/browser/xbel.cpp +share/examples/qt4/demos/browser/xbel.h +share/examples/qt4/demos/chip/chip +share/examples/qt4/demos/chip/chip.cpp +%%DEBUG%%share/examples/qt4/demos/chip/chip.debug +share/examples/qt4/demos/chip/chip.h +share/examples/qt4/demos/chip/chip.pro +share/examples/qt4/demos/chip/fileprint.png +share/examples/qt4/demos/chip/images.qrc +share/examples/qt4/demos/chip/main.cpp +share/examples/qt4/demos/chip/mainwindow.cpp +share/examples/qt4/demos/chip/mainwindow.h +share/examples/qt4/demos/chip/qt4logo.png +share/examples/qt4/demos/chip/rotateleft.png +share/examples/qt4/demos/chip/rotateright.png +share/examples/qt4/demos/chip/view.cpp +share/examples/qt4/demos/chip/view.h +share/examples/qt4/demos/chip/zoomin.png +share/examples/qt4/demos/chip/zoomout.png +share/examples/qt4/demos/composition/composition +share/examples/qt4/demos/composition/composition.cpp +%%DEBUG%%share/examples/qt4/demos/composition/composition.debug +share/examples/qt4/demos/composition/composition.h +share/examples/qt4/demos/composition/composition.html +share/examples/qt4/demos/composition/composition.pro +share/examples/qt4/demos/composition/composition.qrc +share/examples/qt4/demos/composition/flower.jpg +share/examples/qt4/demos/composition/flower_alpha.jpg +share/examples/qt4/demos/composition/main.cpp +share/examples/qt4/demos/deform/deform +%%DEBUG%%share/examples/qt4/demos/deform/deform.debug +share/examples/qt4/demos/deform/deform.pro +share/examples/qt4/demos/deform/deform.qrc +share/examples/qt4/demos/deform/main.cpp +share/examples/qt4/demos/deform/pathdeform.cpp +share/examples/qt4/demos/deform/pathdeform.h +share/examples/qt4/demos/deform/pathdeform.html +share/examples/qt4/demos/demos.pro +share/examples/qt4/demos/embeddeddialogs/No-Ones-Laughing-3.jpg +share/examples/qt4/demos/embeddeddialogs/customproxy.cpp +share/examples/qt4/demos/embeddeddialogs/customproxy.h +share/examples/qt4/demos/embeddeddialogs/embeddeddialog.cpp +share/examples/qt4/demos/embeddeddialogs/embeddeddialog.h +share/examples/qt4/demos/embeddeddialogs/embeddeddialog.ui +share/examples/qt4/demos/embeddeddialogs/embeddeddialogs +%%DEBUG%%share/examples/qt4/demos/embeddeddialogs/embeddeddialogs.debug +share/examples/qt4/demos/embeddeddialogs/embeddeddialogs.pro +share/examples/qt4/demos/embeddeddialogs/embeddeddialogs.qrc +share/examples/qt4/demos/embeddeddialogs/main.cpp +share/examples/qt4/demos/gradients/gradients +share/examples/qt4/demos/gradients/gradients.cpp +%%DEBUG%%share/examples/qt4/demos/gradients/gradients.debug +share/examples/qt4/demos/gradients/gradients.h +share/examples/qt4/demos/gradients/gradients.html +share/examples/qt4/demos/gradients/gradients.pro +share/examples/qt4/demos/gradients/gradients.qrc +share/examples/qt4/demos/gradients/main.cpp +share/examples/qt4/demos/interview/README +share/examples/qt4/demos/interview/images/folder.png +share/examples/qt4/demos/interview/images/interview.png +share/examples/qt4/demos/interview/images/services.png +share/examples/qt4/demos/interview/interview +%%DEBUG%%share/examples/qt4/demos/interview/interview.debug +share/examples/qt4/demos/interview/interview.pro +share/examples/qt4/demos/interview/interview.qrc +share/examples/qt4/demos/interview/main.cpp +share/examples/qt4/demos/interview/model.cpp +share/examples/qt4/demos/interview/model.h +share/examples/qt4/demos/mainwindow/colorswatch.cpp +share/examples/qt4/demos/mainwindow/colorswatch.h +share/examples/qt4/demos/mainwindow/main.cpp +share/examples/qt4/demos/mainwindow/mainwindow +share/examples/qt4/demos/mainwindow/mainwindow.cpp +%%DEBUG%%share/examples/qt4/demos/mainwindow/mainwindow.debug +share/examples/qt4/demos/mainwindow/mainwindow.h +share/examples/qt4/demos/mainwindow/mainwindow.pro +share/examples/qt4/demos/mainwindow/mainwindow.qrc +share/examples/qt4/demos/mainwindow/qt.png +share/examples/qt4/demos/mainwindow/titlebarCenter.png +share/examples/qt4/demos/mainwindow/titlebarLeft.png +share/examples/qt4/demos/mainwindow/titlebarRight.png +share/examples/qt4/demos/mainwindow/toolbar.cpp +share/examples/qt4/demos/mainwindow/toolbar.h +share/examples/qt4/demos/mediaplayer/mediaplayer +%%DEBUG%%share/examples/qt4/demos/mediaplayer/mediaplayer.debug +share/examples/qt4/demos/mediaplayer/main.cpp +share/examples/qt4/demos/mediaplayer/mediaplayer.cpp +share/examples/qt4/demos/mediaplayer/mediaplayer.h +share/examples/qt4/demos/mediaplayer/settings.ui +share/examples/qt4/demos/mediaplayer/mediaplayer.qrc +share/examples/qt4/demos/mediaplayer/mediaplayer.pro +share/examples/qt4/demos/mediaplayer/images/screen.png +share/examples/qt4/demos/pathstroke/main.cpp +share/examples/qt4/demos/pathstroke/pathstroke +share/examples/qt4/demos/pathstroke/pathstroke.cpp +%%DEBUG%%share/examples/qt4/demos/pathstroke/pathstroke.debug +share/examples/qt4/demos/pathstroke/pathstroke.h +share/examples/qt4/demos/pathstroke/pathstroke.html +share/examples/qt4/demos/pathstroke/pathstroke.pro +share/examples/qt4/demos/pathstroke/pathstroke.qrc +share/examples/qt4/demos/qtdemo/colors.cpp +share/examples/qt4/demos/qtdemo/colors.h +share/examples/qt4/demos/qtdemo/demoitem.cpp +share/examples/qt4/demos/qtdemo/demoitem.h +share/examples/qt4/demos/qtdemo/demoitemanimation.cpp +share/examples/qt4/demos/qtdemo/demoitemanimation.h +share/examples/qt4/demos/qtdemo/demoscene.cpp +share/examples/qt4/demos/qtdemo/demoscene.h +share/examples/qt4/demos/qtdemo/demotextitem.cpp +share/examples/qt4/demos/qtdemo/demotextitem.h +share/examples/qt4/demos/qtdemo/dockitem.cpp +share/examples/qt4/demos/qtdemo/dockitem.h +share/examples/qt4/demos/qtdemo/examplecontent.cpp +share/examples/qt4/demos/qtdemo/examplecontent.h +share/examples/qt4/demos/qtdemo/guide.cpp +share/examples/qt4/demos/qtdemo/guide.h +share/examples/qt4/demos/qtdemo/guidecircle.cpp +share/examples/qt4/demos/qtdemo/guidecircle.h +share/examples/qt4/demos/qtdemo/guideline.cpp +share/examples/qt4/demos/qtdemo/guideline.h +share/examples/qt4/demos/qtdemo/headingitem.cpp +share/examples/qt4/demos/qtdemo/headingitem.h +share/examples/qt4/demos/qtdemo/imageitem.cpp +share/examples/qt4/demos/qtdemo/imageitem.h +share/examples/qt4/demos/qtdemo/images/demobg.png +share/examples/qt4/demos/qtdemo/images/qtlogo_small.png +share/examples/qt4/demos/qtdemo/images/trolltech-logo.png +share/examples/qt4/demos/qtdemo/itemcircleanimation.cpp +share/examples/qt4/demos/qtdemo/itemcircleanimation.h +share/examples/qt4/demos/qtdemo/letteritem.cpp +share/examples/qt4/demos/qtdemo/letteritem.h +share/examples/qt4/demos/qtdemo/main.cpp +share/examples/qt4/demos/qtdemo/mainwindow.cpp +share/examples/qt4/demos/qtdemo/mainwindow.h +share/examples/qt4/demos/qtdemo/menucontent.cpp +share/examples/qt4/demos/qtdemo/menucontent.h +share/examples/qt4/demos/qtdemo/menumanager.cpp +share/examples/qt4/demos/qtdemo/menumanager.h +share/examples/qt4/demos/qtdemo/qtdemo.icns +share/examples/qt4/demos/qtdemo/qtdemo.ico +share/examples/qt4/demos/qtdemo/qtdemo.pro +share/examples/qt4/demos/qtdemo/qtdemo.qrc +share/examples/qt4/demos/qtdemo/qtdemo.rc +share/examples/qt4/demos/qtdemo/scanitem.cpp +share/examples/qt4/demos/qtdemo/scanitem.h +share/examples/qt4/demos/qtdemo/score.cpp +share/examples/qt4/demos/qtdemo/score.h +share/examples/qt4/demos/qtdemo/textbutton.cpp +share/examples/qt4/demos/qtdemo/textbutton.h +share/examples/qt4/demos/qtdemo/xml/examples.xml +share/examples/qt4/demos/shared/arthurstyle.cpp +share/examples/qt4/demos/shared/arthurstyle.h +share/examples/qt4/demos/shared/arthurwidgets.cpp +share/examples/qt4/demos/shared/arthurwidgets.h +share/examples/qt4/demos/shared/hoverpoints.cpp +share/examples/qt4/demos/shared/hoverpoints.h +share/examples/qt4/demos/shared/images/bg_pattern.png +share/examples/qt4/demos/shared/images/button_normal_cap_left.png +share/examples/qt4/demos/shared/images/button_normal_cap_right.png +share/examples/qt4/demos/shared/images/button_normal_stretch.png +share/examples/qt4/demos/shared/images/button_pressed_cap_left.png +share/examples/qt4/demos/shared/images/button_pressed_cap_right.png +share/examples/qt4/demos/shared/images/button_pressed_stretch.png +share/examples/qt4/demos/shared/images/curve_thing_edit-6.png +share/examples/qt4/demos/shared/images/frame_bottom.png +share/examples/qt4/demos/shared/images/frame_bottomleft.png +share/examples/qt4/demos/shared/images/frame_bottomright.png +share/examples/qt4/demos/shared/images/frame_left.png +share/examples/qt4/demos/shared/images/frame_right.png +share/examples/qt4/demos/shared/images/frame_top.png +share/examples/qt4/demos/shared/images/frame_topleft.png +share/examples/qt4/demos/shared/images/frame_topright.png +share/examples/qt4/demos/shared/images/groupframe_bottom_left.png +share/examples/qt4/demos/shared/images/groupframe_bottom_right.png +share/examples/qt4/demos/shared/images/groupframe_bottom_stretch.png +share/examples/qt4/demos/shared/images/groupframe_left_stretch.png +share/examples/qt4/demos/shared/images/groupframe_right_stretch.png +share/examples/qt4/demos/shared/images/groupframe_top_stretch.png +share/examples/qt4/demos/shared/images/groupframe_topleft.png +share/examples/qt4/demos/shared/images/groupframe_topright.png +share/examples/qt4/demos/shared/images/line_dash_dot.png +share/examples/qt4/demos/shared/images/line_dash_dot_dot.png +share/examples/qt4/demos/shared/images/line_dashed.png +share/examples/qt4/demos/shared/images/line_dotted.png +share/examples/qt4/demos/shared/images/line_solid.png +share/examples/qt4/demos/shared/images/radiobutton-off.png +share/examples/qt4/demos/shared/images/radiobutton-on.png +share/examples/qt4/demos/shared/images/radiobutton_off.png +share/examples/qt4/demos/shared/images/radiobutton_on.png +share/examples/qt4/demos/shared/images/slider_bar.png +share/examples/qt4/demos/shared/images/slider_thumb_off.png +share/examples/qt4/demos/shared/images/slider_thumb_on.png +share/examples/qt4/demos/shared/images/title_cap_left.png +share/examples/qt4/demos/shared/images/title_cap_right.png +share/examples/qt4/demos/shared/images/title_stretch.png +share/examples/qt4/demos/shared/libdemo_shared.a +share/examples/qt4/demos/shared/libdemo_shared.prl +share/examples/qt4/demos/shared/shared.pri +share/examples/qt4/demos/shared/shared.pro +share/examples/qt4/demos/shared/shared.qrc +share/examples/qt4/demos/spreadsheet/images/interview.png +share/examples/qt4/demos/spreadsheet/main.cpp +share/examples/qt4/demos/spreadsheet/spreadsheet +%%DEBUG%%share/examples/qt4/demos/spreadsheet/spreadsheet.debug +share/examples/qt4/demos/spreadsheet/spreadsheet.pro +share/examples/qt4/demos/spreadsheet/spreadsheet.qrc +share/examples/qt4/demos/sqlbrowser/browser.cpp +share/examples/qt4/demos/sqlbrowser/browser.h +share/examples/qt4/demos/sqlbrowser/browserwidget.ui +share/examples/qt4/demos/sqlbrowser/connectionwidget.cpp +share/examples/qt4/demos/sqlbrowser/connectionwidget.h +share/examples/qt4/demos/sqlbrowser/main.cpp +share/examples/qt4/demos/sqlbrowser/qsqlconnectiondialog.cpp +share/examples/qt4/demos/sqlbrowser/qsqlconnectiondialog.h +share/examples/qt4/demos/sqlbrowser/qsqlconnectiondialog.ui +share/examples/qt4/demos/sqlbrowser/sqlbrowser +%%DEBUG%%share/examples/qt4/demos/sqlbrowser/sqlbrowser.debug +share/examples/qt4/demos/sqlbrowser/sqlbrowser.pro +share/examples/qt4/demos/textedit/example.html +share/examples/qt4/demos/textedit/images/logo32.png +share/examples/qt4/demos/textedit/images/mac/editcopy.png +share/examples/qt4/demos/textedit/images/mac/editcut.png +share/examples/qt4/demos/textedit/images/mac/editpaste.png +share/examples/qt4/demos/textedit/images/mac/editredo.png +share/examples/qt4/demos/textedit/images/mac/editundo.png +share/examples/qt4/demos/textedit/images/mac/exportpdf.png +share/examples/qt4/demos/textedit/images/mac/filenew.png +share/examples/qt4/demos/textedit/images/mac/fileopen.png +share/examples/qt4/demos/textedit/images/mac/fileprint.png +share/examples/qt4/demos/textedit/images/mac/filesave.png +share/examples/qt4/demos/textedit/images/mac/textbold.png +share/examples/qt4/demos/textedit/images/mac/textcenter.png +share/examples/qt4/demos/textedit/images/mac/textitalic.png +share/examples/qt4/demos/textedit/images/mac/textjustify.png +share/examples/qt4/demos/textedit/images/mac/textleft.png +share/examples/qt4/demos/textedit/images/mac/textright.png +share/examples/qt4/demos/textedit/images/mac/textunder.png +share/examples/qt4/demos/textedit/images/mac/zoomin.png +share/examples/qt4/demos/textedit/images/mac/zoomout.png +share/examples/qt4/demos/textedit/images/win/editcopy.png +share/examples/qt4/demos/textedit/images/win/editcut.png +share/examples/qt4/demos/textedit/images/win/editpaste.png +share/examples/qt4/demos/textedit/images/win/editredo.png +share/examples/qt4/demos/textedit/images/win/editundo.png +share/examples/qt4/demos/textedit/images/win/exportpdf.png +share/examples/qt4/demos/textedit/images/win/filenew.png +share/examples/qt4/demos/textedit/images/win/fileopen.png +share/examples/qt4/demos/textedit/images/win/fileprint.png +share/examples/qt4/demos/textedit/images/win/filesave.png +share/examples/qt4/demos/textedit/images/win/textbold.png +share/examples/qt4/demos/textedit/images/win/textcenter.png +share/examples/qt4/demos/textedit/images/win/textitalic.png +share/examples/qt4/demos/textedit/images/win/textjustify.png +share/examples/qt4/demos/textedit/images/win/textleft.png +share/examples/qt4/demos/textedit/images/win/textright.png +share/examples/qt4/demos/textedit/images/win/textunder.png +share/examples/qt4/demos/textedit/images/win/zoomin.png +share/examples/qt4/demos/textedit/images/win/zoomout.png +share/examples/qt4/demos/textedit/main.cpp +share/examples/qt4/demos/textedit/textedit +share/examples/qt4/demos/textedit/textedit.cpp +%%DEBUG%%share/examples/qt4/demos/textedit/textedit.debug +share/examples/qt4/demos/textedit/textedit.doc +share/examples/qt4/demos/textedit/textedit.h +share/examples/qt4/demos/textedit/textedit.pro +share/examples/qt4/demos/textedit/textedit.qrc +share/examples/qt4/demos/undo/commands.cpp +share/examples/qt4/demos/undo/commands.h +share/examples/qt4/demos/undo/document.cpp +share/examples/qt4/demos/undo/document.h +share/examples/qt4/demos/undo/icons/background.png +share/examples/qt4/demos/undo/icons/blue.png +share/examples/qt4/demos/undo/icons/circle.png +share/examples/qt4/demos/undo/icons/exit.png +share/examples/qt4/demos/undo/icons/fileclose.png +share/examples/qt4/demos/undo/icons/filenew.png +share/examples/qt4/demos/undo/icons/fileopen.png +share/examples/qt4/demos/undo/icons/filesave.png +share/examples/qt4/demos/undo/icons/green.png +share/examples/qt4/demos/undo/icons/ok.png +share/examples/qt4/demos/undo/icons/rectangle.png +share/examples/qt4/demos/undo/icons/red.png +share/examples/qt4/demos/undo/icons/redo.png +share/examples/qt4/demos/undo/icons/remove.png +share/examples/qt4/demos/undo/icons/triangle.png +share/examples/qt4/demos/undo/icons/undo.png +share/examples/qt4/demos/undo/main.cpp +share/examples/qt4/demos/undo/mainwindow.cpp +share/examples/qt4/demos/undo/mainwindow.h +share/examples/qt4/demos/undo/mainwindow.ui +share/examples/qt4/demos/undo/undo +%%DEBUG%%share/examples/qt4/demos/undo/undo.debug +share/examples/qt4/demos/undo/undo.pro +share/examples/qt4/demos/undo/undo.qrc +share/examples/qt4/examples/README +share/examples/qt4/examples/assistant/README +share/examples/qt4/examples/assistant/assistant.pro +share/examples/qt4/examples/assistant/simpletextviewer/documentation/about.txt +share/examples/qt4/examples/assistant/simpletextviewer/documentation/browse.html +share/examples/qt4/examples/assistant/simpletextviewer/documentation/filedialog.html +share/examples/qt4/examples/assistant/simpletextviewer/documentation/findfile.html +share/examples/qt4/examples/assistant/simpletextviewer/documentation/images/browse.png +share/examples/qt4/examples/assistant/simpletextviewer/documentation/images/fadedfilemenu.png +share/examples/qt4/examples/assistant/simpletextviewer/documentation/images/filedialog.png +share/examples/qt4/examples/assistant/simpletextviewer/documentation/images/handbook.png +share/examples/qt4/examples/assistant/simpletextviewer/documentation/images/mainwindow.png +share/examples/qt4/examples/assistant/simpletextviewer/documentation/images/open.png +share/examples/qt4/examples/assistant/simpletextviewer/documentation/images/wildcard.png +share/examples/qt4/examples/assistant/simpletextviewer/documentation/index.html +share/examples/qt4/examples/assistant/simpletextviewer/documentation/intro.html +share/examples/qt4/examples/assistant/simpletextviewer/documentation/openfile.html +share/examples/qt4/examples/assistant/simpletextviewer/documentation/simpletextviewer.adp +share/examples/qt4/examples/assistant/simpletextviewer/documentation/wildcardmatching.html +share/examples/qt4/examples/assistant/simpletextviewer/findfiledialog.cpp +share/examples/qt4/examples/assistant/simpletextviewer/findfiledialog.h +share/examples/qt4/examples/assistant/simpletextviewer/main.cpp +share/examples/qt4/examples/assistant/simpletextviewer/mainwindow.cpp +share/examples/qt4/examples/assistant/simpletextviewer/mainwindow.h +share/examples/qt4/examples/assistant/simpletextviewer/simpletextviewer +%%DEBUG%%share/examples/qt4/examples/assistant/simpletextviewer/simpletextviewer.debug +share/examples/qt4/examples/assistant/simpletextviewer/simpletextviewer.pro +share/examples/qt4/examples/dbus/chat/chat +share/examples/qt4/examples/dbus/chat/chat.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/chat/chat.debug +share/examples/qt4/examples/dbus/chat/chat.h +share/examples/qt4/examples/dbus/chat/chat.pro +share/examples/qt4/examples/dbus/chat/chat_adaptor.cpp +share/examples/qt4/examples/dbus/chat/chat_adaptor.h +share/examples/qt4/examples/dbus/chat/chat_interface.cpp +share/examples/qt4/examples/dbus/chat/chat_interface.h +share/examples/qt4/examples/dbus/chat/chatmainwindow.ui +share/examples/qt4/examples/dbus/chat/chatsetnickname.ui +share/examples/qt4/examples/dbus/chat/com.trolltech.chat.xml +share/examples/qt4/examples/dbus/complexpingpong/complexping +share/examples/qt4/examples/dbus/complexpingpong/complexping.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/complexpingpong/complexping.debug +share/examples/qt4/examples/dbus/complexpingpong/complexping.h +share/examples/qt4/examples/dbus/complexpingpong/complexping.pro +share/examples/qt4/examples/dbus/complexpingpong/complexpingpong.pro +share/examples/qt4/examples/dbus/complexpingpong/complexpong +share/examples/qt4/examples/dbus/complexpingpong/complexpong.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/complexpingpong/complexpong.debug +share/examples/qt4/examples/dbus/complexpingpong/complexpong.h +share/examples/qt4/examples/dbus/complexpingpong/complexpong.pro +share/examples/qt4/examples/dbus/complexpingpong/ping-common.h +share/examples/qt4/examples/dbus/dbus.pro +share/examples/qt4/examples/dbus/listnames/listnames +share/examples/qt4/examples/dbus/listnames/listnames.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/listnames/listnames.debug +share/examples/qt4/examples/dbus/listnames/listnames.pro +share/examples/qt4/examples/dbus/pingpong/ping +share/examples/qt4/examples/dbus/pingpong/ping-common.h +share/examples/qt4/examples/dbus/pingpong/ping.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/pingpong/ping.debug +share/examples/qt4/examples/dbus/pingpong/ping.pro +share/examples/qt4/examples/dbus/pingpong/pingpong.pro +share/examples/qt4/examples/dbus/pingpong/pong +share/examples/qt4/examples/dbus/pingpong/pong.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/pingpong/pong.debug +share/examples/qt4/examples/dbus/pingpong/pong.h +share/examples/qt4/examples/dbus/pingpong/pong.pro +share/examples/qt4/examples/dbus/remotecontrolledcar/car/car +share/examples/qt4/examples/dbus/remotecontrolledcar/car/car.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/remotecontrolledcar/car/car.debug +share/examples/qt4/examples/dbus/remotecontrolledcar/car/car.h +share/examples/qt4/examples/dbus/remotecontrolledcar/car/car.pro +share/examples/qt4/examples/dbus/remotecontrolledcar/car/car.xml +share/examples/qt4/examples/dbus/remotecontrolledcar/car/car_adaptor.cpp +share/examples/qt4/examples/dbus/remotecontrolledcar/car/car_adaptor_p.h +share/examples/qt4/examples/dbus/remotecontrolledcar/car/main.cpp +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/car.xml +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/car_interface.cpp +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/car_interface_p.h +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/controller +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/controller.cpp +%%DEBUG%%share/examples/qt4/examples/dbus/remotecontrolledcar/controller/controller.debug +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/controller.h +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/controller.pro +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/controller.ui +share/examples/qt4/examples/dbus/remotecontrolledcar/controller/main.cpp +share/examples/qt4/examples/dbus/remotecontrolledcar/remotecontrolledcar.pro +share/examples/qt4/examples/designer/README +share/examples/qt4/examples/designer/calculatorbuilder/calculatorbuilder +%%DEBUG%%share/examples/qt4/examples/designer/calculatorbuilder/calculatorbuilder.debug +share/examples/qt4/examples/designer/calculatorbuilder/calculatorbuilder.pro +share/examples/qt4/examples/designer/calculatorbuilder/calculatorbuilder.qrc +share/examples/qt4/examples/designer/calculatorbuilder/calculatorform.cpp +share/examples/qt4/examples/designer/calculatorbuilder/calculatorform.h +share/examples/qt4/examples/designer/calculatorbuilder/calculatorform.ui +share/examples/qt4/examples/designer/calculatorbuilder/main.cpp +share/examples/qt4/examples/designer/calculatorform/calculatorform +share/examples/qt4/examples/designer/calculatorform/calculatorform.cpp +%%DEBUG%%share/examples/qt4/examples/designer/calculatorform/calculatorform.debug +share/examples/qt4/examples/designer/calculatorform/calculatorform.h +share/examples/qt4/examples/designer/calculatorform/calculatorform.pro +share/examples/qt4/examples/designer/calculatorform/calculatorform.ui +share/examples/qt4/examples/designer/calculatorform/main.cpp +share/examples/qt4/examples/designer/containerextension/containerextension.pro +share/examples/qt4/examples/designer/containerextension/multipagewidget.cpp +share/examples/qt4/examples/designer/containerextension/multipagewidget.h +share/examples/qt4/examples/designer/containerextension/multipagewidgetcontainerextension.cpp +share/examples/qt4/examples/designer/containerextension/multipagewidgetcontainerextension.h +share/examples/qt4/examples/designer/containerextension/multipagewidgetextensionfactory.cpp +share/examples/qt4/examples/designer/containerextension/multipagewidgetextensionfactory.h +share/examples/qt4/examples/designer/containerextension/multipagewidgetplugin.cpp +share/examples/qt4/examples/designer/containerextension/multipagewidgetplugin.h +share/examples/qt4/examples/designer/customwidgetplugin/analogclock.cpp +share/examples/qt4/examples/designer/customwidgetplugin/analogclock.h +share/examples/qt4/examples/designer/customwidgetplugin/customwidgetplugin.cpp +share/examples/qt4/examples/designer/customwidgetplugin/customwidgetplugin.h +share/examples/qt4/examples/designer/customwidgetplugin/customwidgetplugin.pro +share/examples/qt4/examples/designer/designer.pro +share/examples/qt4/examples/designer/taskmenuextension/taskmenuextension.pro +share/examples/qt4/examples/designer/taskmenuextension/tictactoe.cpp +share/examples/qt4/examples/designer/taskmenuextension/tictactoe.h +share/examples/qt4/examples/designer/taskmenuextension/tictactoedialog.cpp +share/examples/qt4/examples/designer/taskmenuextension/tictactoedialog.h +share/examples/qt4/examples/designer/taskmenuextension/tictactoeplugin.cpp +share/examples/qt4/examples/designer/taskmenuextension/tictactoeplugin.h +share/examples/qt4/examples/designer/taskmenuextension/tictactoetaskmenu.cpp +share/examples/qt4/examples/designer/taskmenuextension/tictactoetaskmenu.h +share/examples/qt4/examples/designer/worldtimeclockbuilder/form.ui +share/examples/qt4/examples/designer/worldtimeclockbuilder/main.cpp +share/examples/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder +%%DEBUG%%share/examples/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder.debug +share/examples/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder.pro +share/examples/qt4/examples/designer/worldtimeclockbuilder/worldtimeclockbuilder.qrc +share/examples/qt4/examples/designer/worldtimeclockplugin/worldtimeclock.cpp +share/examples/qt4/examples/designer/worldtimeclockplugin/worldtimeclock.h +share/examples/qt4/examples/designer/worldtimeclockplugin/worldtimeclockplugin.cpp +share/examples/qt4/examples/designer/worldtimeclockplugin/worldtimeclockplugin.h +share/examples/qt4/examples/designer/worldtimeclockplugin/worldtimeclockplugin.pro +share/examples/qt4/examples/desktop/README +share/examples/qt4/examples/desktop/desktop.pro +share/examples/qt4/examples/desktop/screenshot/main.cpp +share/examples/qt4/examples/desktop/screenshot/screenshot +share/examples/qt4/examples/desktop/screenshot/screenshot.cpp +%%DEBUG%%share/examples/qt4/examples/desktop/screenshot/screenshot.debug +share/examples/qt4/examples/desktop/screenshot/screenshot.h +share/examples/qt4/examples/desktop/screenshot/screenshot.pro +share/examples/qt4/examples/desktop/systray/images/bad.svg +share/examples/qt4/examples/desktop/systray/images/heart.svg +share/examples/qt4/examples/desktop/systray/images/trash.svg +share/examples/qt4/examples/desktop/systray/main.cpp +share/examples/qt4/examples/desktop/systray/systray +%%DEBUG%%share/examples/qt4/examples/desktop/systray/systray.debug +share/examples/qt4/examples/desktop/systray/systray.pro +share/examples/qt4/examples/desktop/systray/systray.qrc +share/examples/qt4/examples/desktop/systray/window.cpp +share/examples/qt4/examples/desktop/systray/window.h +share/examples/qt4/examples/dialogs/README +share/examples/qt4/examples/dialogs/classwizard/classwizard +share/examples/qt4/examples/dialogs/classwizard/classwizard.cpp +%%DEBUG%%share/examples/qt4/examples/dialogs/classwizard/classwizard.debug +share/examples/qt4/examples/dialogs/classwizard/classwizard.h +share/examples/qt4/examples/dialogs/classwizard/classwizard.pro +share/examples/qt4/examples/dialogs/classwizard/classwizard.qrc +share/examples/qt4/examples/dialogs/classwizard/images/background.png +share/examples/qt4/examples/dialogs/classwizard/images/banner.png +share/examples/qt4/examples/dialogs/classwizard/images/logo1.png +share/examples/qt4/examples/dialogs/classwizard/images/logo2.png +share/examples/qt4/examples/dialogs/classwizard/images/logo3.png +share/examples/qt4/examples/dialogs/classwizard/images/watermark1.png +share/examples/qt4/examples/dialogs/classwizard/images/watermark2.png +share/examples/qt4/examples/dialogs/classwizard/main.cpp +share/examples/qt4/examples/dialogs/configdialog/configdialog +share/examples/qt4/examples/dialogs/configdialog/configdialog.cpp +%%DEBUG%%share/examples/qt4/examples/dialogs/configdialog/configdialog.debug +share/examples/qt4/examples/dialogs/configdialog/configdialog.h +share/examples/qt4/examples/dialogs/configdialog/configdialog.pro +share/examples/qt4/examples/dialogs/configdialog/configdialog.qrc +share/examples/qt4/examples/dialogs/configdialog/images/config.png +share/examples/qt4/examples/dialogs/configdialog/images/query.png +share/examples/qt4/examples/dialogs/configdialog/images/update.png +share/examples/qt4/examples/dialogs/configdialog/main.cpp +share/examples/qt4/examples/dialogs/configdialog/pages.cpp +share/examples/qt4/examples/dialogs/configdialog/pages.h +share/examples/qt4/examples/dialogs/dialogs.pro +share/examples/qt4/examples/dialogs/extension/extension +%%DEBUG%%share/examples/qt4/examples/dialogs/extension/extension.debug +share/examples/qt4/examples/dialogs/extension/extension.pro +share/examples/qt4/examples/dialogs/extension/finddialog.cpp +share/examples/qt4/examples/dialogs/extension/finddialog.h +share/examples/qt4/examples/dialogs/extension/main.cpp +share/examples/qt4/examples/dialogs/findfiles/findfiles +%%DEBUG%%share/examples/qt4/examples/dialogs/findfiles/findfiles.debug +share/examples/qt4/examples/dialogs/findfiles/findfiles.pro +share/examples/qt4/examples/dialogs/findfiles/main.cpp +share/examples/qt4/examples/dialogs/findfiles/window.cpp +share/examples/qt4/examples/dialogs/findfiles/window.h +share/examples/qt4/examples/dialogs/licensewizard/images/logo.png +share/examples/qt4/examples/dialogs/licensewizard/images/watermark.png +share/examples/qt4/examples/dialogs/licensewizard/licensewizard +share/examples/qt4/examples/dialogs/licensewizard/licensewizard.cpp +%%DEBUG%%share/examples/qt4/examples/dialogs/licensewizard/licensewizard.debug +share/examples/qt4/examples/dialogs/licensewizard/licensewizard.h +share/examples/qt4/examples/dialogs/licensewizard/licensewizard.pro +share/examples/qt4/examples/dialogs/licensewizard/licensewizard.qrc +share/examples/qt4/examples/dialogs/licensewizard/main.cpp +share/examples/qt4/examples/dialogs/standarddialogs/dialog.cpp +share/examples/qt4/examples/dialogs/standarddialogs/dialog.h +share/examples/qt4/examples/dialogs/standarddialogs/main.cpp +share/examples/qt4/examples/dialogs/standarddialogs/standarddialogs +%%DEBUG%%share/examples/qt4/examples/dialogs/standarddialogs/standarddialogs.debug +share/examples/qt4/examples/dialogs/standarddialogs/standarddialogs.pro +share/examples/qt4/examples/dialogs/tabdialog/main.cpp +share/examples/qt4/examples/dialogs/tabdialog/tabdialog +share/examples/qt4/examples/dialogs/tabdialog/tabdialog.cpp +%%DEBUG%%share/examples/qt4/examples/dialogs/tabdialog/tabdialog.debug +share/examples/qt4/examples/dialogs/tabdialog/tabdialog.h +share/examples/qt4/examples/dialogs/tabdialog/tabdialog.pro +share/examples/qt4/examples/dialogs/trivialwizard/trivialwizard +share/examples/qt4/examples/dialogs/trivialwizard/trivialwizard.cpp +%%DEBUG%%share/examples/qt4/examples/dialogs/trivialwizard/trivialwizard.debug +share/examples/qt4/examples/dialogs/trivialwizard/trivialwizard.pro +share/examples/qt4/examples/draganddrop/README +share/examples/qt4/examples/draganddrop/draganddrop.pro +share/examples/qt4/examples/draganddrop/draggableicons/draggableicons +%%DEBUG%%share/examples/qt4/examples/draganddrop/draggableicons/draggableicons.debug +share/examples/qt4/examples/draganddrop/draggableicons/draggableicons.pro +share/examples/qt4/examples/draganddrop/draggableicons/draggableicons.qrc +share/examples/qt4/examples/draganddrop/draggableicons/dragwidget.cpp +share/examples/qt4/examples/draganddrop/draggableicons/dragwidget.h +share/examples/qt4/examples/draganddrop/draggableicons/images/boat.png +share/examples/qt4/examples/draganddrop/draggableicons/images/car.png +share/examples/qt4/examples/draganddrop/draggableicons/images/house.png +share/examples/qt4/examples/draganddrop/draggableicons/main.cpp +share/examples/qt4/examples/draganddrop/draggabletext/draggabletext +%%DEBUG%%share/examples/qt4/examples/draganddrop/draggabletext/draggabletext.debug +share/examples/qt4/examples/draganddrop/draggabletext/draggabletext.pro +share/examples/qt4/examples/draganddrop/draggabletext/draggabletext.qrc +share/examples/qt4/examples/draganddrop/draggabletext/draglabel.cpp +share/examples/qt4/examples/draganddrop/draggabletext/draglabel.h +share/examples/qt4/examples/draganddrop/draggabletext/dragwidget.cpp +share/examples/qt4/examples/draganddrop/draggabletext/dragwidget.h +share/examples/qt4/examples/draganddrop/draggabletext/main.cpp +share/examples/qt4/examples/draganddrop/draggabletext/words.txt +share/examples/qt4/examples/draganddrop/dropsite/droparea.cpp +share/examples/qt4/examples/draganddrop/dropsite/droparea.h +share/examples/qt4/examples/draganddrop/dropsite/dropsite +%%DEBUG%%share/examples/qt4/examples/draganddrop/dropsite/dropsite.debug +share/examples/qt4/examples/draganddrop/dropsite/dropsite.pro +share/examples/qt4/examples/draganddrop/dropsite/dropsitewindow.cpp +share/examples/qt4/examples/draganddrop/dropsite/dropsitewindow.h +share/examples/qt4/examples/draganddrop/dropsite/main.cpp +share/examples/qt4/examples/draganddrop/fridgemagnets/draglabel.cpp +share/examples/qt4/examples/draganddrop/fridgemagnets/draglabel.h +share/examples/qt4/examples/draganddrop/fridgemagnets/dragwidget.cpp +share/examples/qt4/examples/draganddrop/fridgemagnets/dragwidget.h +share/examples/qt4/examples/draganddrop/fridgemagnets/fridgemagnets +%%DEBUG%%share/examples/qt4/examples/draganddrop/fridgemagnets/fridgemagnets.debug +share/examples/qt4/examples/draganddrop/fridgemagnets/fridgemagnets.pro +share/examples/qt4/examples/draganddrop/fridgemagnets/fridgemagnets.qrc +share/examples/qt4/examples/draganddrop/fridgemagnets/main.cpp +share/examples/qt4/examples/draganddrop/fridgemagnets/words.txt +share/examples/qt4/examples/draganddrop/puzzle/example.jpg +share/examples/qt4/examples/draganddrop/puzzle/main.cpp +share/examples/qt4/examples/draganddrop/puzzle/mainwindow.cpp +share/examples/qt4/examples/draganddrop/puzzle/mainwindow.h +share/examples/qt4/examples/draganddrop/puzzle/pieceslist.cpp +share/examples/qt4/examples/draganddrop/puzzle/pieceslist.h +share/examples/qt4/examples/draganddrop/puzzle/puzzle +%%DEBUG%%share/examples/qt4/examples/draganddrop/puzzle/puzzle.debug +share/examples/qt4/examples/draganddrop/puzzle/puzzle.pro +share/examples/qt4/examples/draganddrop/puzzle/puzzle.qrc +share/examples/qt4/examples/draganddrop/puzzle/puzzlewidget.cpp +share/examples/qt4/examples/draganddrop/puzzle/puzzlewidget.h +share/examples/qt4/examples/examples.pro +share/examples/qt4/examples/graphicsview/README +share/examples/qt4/examples/graphicsview/collidingmice/collidingmice +%%DEBUG%%share/examples/qt4/examples/graphicsview/collidingmice/collidingmice.debug +share/examples/qt4/examples/graphicsview/collidingmice/collidingmice.pro +share/examples/qt4/examples/graphicsview/collidingmice/images/cheese.jpg +share/examples/qt4/examples/graphicsview/collidingmice/main.cpp +share/examples/qt4/examples/graphicsview/collidingmice/mice.qrc +share/examples/qt4/examples/graphicsview/collidingmice/mouse.cpp +share/examples/qt4/examples/graphicsview/collidingmice/mouse.h +share/examples/qt4/examples/graphicsview/diagramscene/arrow.cpp +share/examples/qt4/examples/graphicsview/diagramscene/arrow.h +share/examples/qt4/examples/graphicsview/diagramscene/diagramitem.cpp +share/examples/qt4/examples/graphicsview/diagramscene/diagramitem.h +share/examples/qt4/examples/graphicsview/diagramscene/diagramscene +share/examples/qt4/examples/graphicsview/diagramscene/diagramscene.cpp +%%DEBUG%%share/examples/qt4/examples/graphicsview/diagramscene/diagramscene.debug +share/examples/qt4/examples/graphicsview/diagramscene/diagramscene.h +share/examples/qt4/examples/graphicsview/diagramscene/diagramscene.pro +share/examples/qt4/examples/graphicsview/diagramscene/diagramscene.qrc +share/examples/qt4/examples/graphicsview/diagramscene/diagramtextitem.cpp +share/examples/qt4/examples/graphicsview/diagramscene/diagramtextitem.h +share/examples/qt4/examples/graphicsview/diagramscene/images/background1.png +share/examples/qt4/examples/graphicsview/diagramscene/images/background2.png +share/examples/qt4/examples/graphicsview/diagramscene/images/background3.png +share/examples/qt4/examples/graphicsview/diagramscene/images/background4.png +share/examples/qt4/examples/graphicsview/diagramscene/images/bold.png +share/examples/qt4/examples/graphicsview/diagramscene/images/bringtofront.png +share/examples/qt4/examples/graphicsview/diagramscene/images/delete.png +share/examples/qt4/examples/graphicsview/diagramscene/images/floodfill.png +share/examples/qt4/examples/graphicsview/diagramscene/images/italic.png +share/examples/qt4/examples/graphicsview/diagramscene/images/linecolor.png +share/examples/qt4/examples/graphicsview/diagramscene/images/linepointer.png +share/examples/qt4/examples/graphicsview/diagramscene/images/pointer.png +share/examples/qt4/examples/graphicsview/diagramscene/images/sendtoback.png +share/examples/qt4/examples/graphicsview/diagramscene/images/textpointer.png +share/examples/qt4/examples/graphicsview/diagramscene/images/underline.png +share/examples/qt4/examples/graphicsview/diagramscene/main.cpp +share/examples/qt4/examples/graphicsview/diagramscene/mainwindow.cpp +share/examples/qt4/examples/graphicsview/diagramscene/mainwindow.h +share/examples/qt4/examples/graphicsview/dragdroprobot/coloritem.cpp +share/examples/qt4/examples/graphicsview/dragdroprobot/coloritem.h +share/examples/qt4/examples/graphicsview/dragdroprobot/dragdroprobot +%%DEBUG%%share/examples/qt4/examples/graphicsview/dragdroprobot/dragdroprobot.debug +share/examples/qt4/examples/graphicsview/dragdroprobot/dragdroprobot.pro +share/examples/qt4/examples/graphicsview/dragdroprobot/images/head.png +share/examples/qt4/examples/graphicsview/dragdroprobot/main.cpp +share/examples/qt4/examples/graphicsview/dragdroprobot/robot.cpp +share/examples/qt4/examples/graphicsview/dragdroprobot/robot.h +share/examples/qt4/examples/graphicsview/dragdroprobot/robot.qrc +share/examples/qt4/examples/graphicsview/elasticnodes/edge.cpp +share/examples/qt4/examples/graphicsview/elasticnodes/edge.h +share/examples/qt4/examples/graphicsview/elasticnodes/elasticnodes +%%DEBUG%%share/examples/qt4/examples/graphicsview/elasticnodes/elasticnodes.debug +share/examples/qt4/examples/graphicsview/elasticnodes/elasticnodes.pro +share/examples/qt4/examples/graphicsview/elasticnodes/graphwidget.cpp +share/examples/qt4/examples/graphicsview/elasticnodes/graphwidget.h +share/examples/qt4/examples/graphicsview/elasticnodes/main.cpp +share/examples/qt4/examples/graphicsview/elasticnodes/node.cpp +share/examples/qt4/examples/graphicsview/elasticnodes/node.h +share/examples/qt4/examples/graphicsview/graphicsview.pro +share/examples/qt4/examples/graphicsview/padnavigator/backside.ui +share/examples/qt4/examples/graphicsview/padnavigator/images/artsfftscope.png +share/examples/qt4/examples/graphicsview/padnavigator/images/blue_angle_swirl.jpg +share/examples/qt4/examples/graphicsview/padnavigator/images/kontact_contacts.png +share/examples/qt4/examples/graphicsview/padnavigator/images/kontact_journal.png +share/examples/qt4/examples/graphicsview/padnavigator/images/kontact_mail.png +share/examples/qt4/examples/graphicsview/padnavigator/images/kontact_notes.png +share/examples/qt4/examples/graphicsview/padnavigator/images/kopeteavailable.png +share/examples/qt4/examples/graphicsview/padnavigator/images/metacontact_online.png +share/examples/qt4/examples/graphicsview/padnavigator/images/minitools.png +share/examples/qt4/examples/graphicsview/padnavigator/main.cpp +share/examples/qt4/examples/graphicsview/padnavigator/padnavigator +%%DEBUG%%share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.debug +share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.pro +share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.qrc +share/examples/qt4/examples/graphicsview/padnavigator/panel.cpp +share/examples/qt4/examples/graphicsview/padnavigator/panel.h +share/examples/qt4/examples/graphicsview/padnavigator/roundrectitem.cpp +share/examples/qt4/examples/graphicsview/padnavigator/roundrectitem.h +share/examples/qt4/examples/graphicsview/padnavigator/splashitem.cpp +share/examples/qt4/examples/graphicsview/padnavigator/splashitem.h +share/examples/qt4/examples/graphicsview/portedasteroids/animateditem.cpp +share/examples/qt4/examples/graphicsview/portedasteroids/animateditem.h +share/examples/qt4/examples/graphicsview/portedasteroids/bg.png +share/examples/qt4/examples/graphicsview/portedasteroids/ledmeter.cpp +share/examples/qt4/examples/graphicsview/portedasteroids/ledmeter.h +share/examples/qt4/examples/graphicsview/portedasteroids/main.cpp +share/examples/qt4/examples/graphicsview/portedasteroids/portedasteroids +%%DEBUG%%share/examples/qt4/examples/graphicsview/portedasteroids/portedasteroids.debug +share/examples/qt4/examples/graphicsview/portedasteroids/portedasteroids.pro +share/examples/qt4/examples/graphicsview/portedasteroids/portedasteroids.qrc +share/examples/qt4/examples/graphicsview/portedasteroids/sounds/Explosion.wav +share/examples/qt4/examples/graphicsview/portedasteroids/sprites.h +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits.ini +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits.pov +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0000.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0001.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0002.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0003.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0004.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0005.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0006.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0007.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0008.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0009.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0010.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0011.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0012.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0013.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0014.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits/bits0015.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/exhaust/exhaust.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/missile/missile.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/powerups/brake.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/powerups/energy.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/powerups/shield.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/powerups/shoot.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/powerups/teleport.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock1.ini +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock1.pov +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10000.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10001.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10002.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10003.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10004.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10005.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10006.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10007.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10008.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10009.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10010.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10011.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10012.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10013.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10014.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10015.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10016.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10017.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10018.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10019.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10020.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10021.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10022.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10023.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10024.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10025.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10026.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10027.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10028.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10029.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10030.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1/rock10031.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock2.ini +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock2.pov +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20000.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20001.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20002.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20003.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20004.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20005.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20006.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20007.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20008.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20009.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20010.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20011.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20012.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20013.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20014.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20015.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20016.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20017.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20018.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20019.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20020.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20021.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20022.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20023.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20024.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20025.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20026.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20027.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20028.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20029.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20030.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2/rock20031.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock3.ini +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock3.pov +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30000.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30001.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30002.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30003.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30004.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30005.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30006.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30007.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30008.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30009.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30010.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30011.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30012.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30013.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30014.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30015.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30016.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30017.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30018.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30019.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30020.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30021.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30022.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30023.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30024.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30025.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30026.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30027.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30028.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30029.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30030.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3/rock30031.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0000.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0001.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0002.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0003.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0004.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0005.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield/shield0006.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship.ini +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship.pov +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0000.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0001.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0002.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0003.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0004.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0005.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0006.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0007.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0008.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0009.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0010.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0011.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0012.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0013.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0014.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0015.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0016.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0017.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0018.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0019.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0020.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0021.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0022.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0023.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0024.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0025.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0026.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0027.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0028.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0029.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0030.png +share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship/ship0031.png +share/examples/qt4/examples/graphicsview/portedasteroids/toplevel.cpp +share/examples/qt4/examples/graphicsview/portedasteroids/toplevel.h +share/examples/qt4/examples/graphicsview/portedasteroids/view.cpp +share/examples/qt4/examples/graphicsview/portedasteroids/view.h +share/examples/qt4/examples/graphicsview/portedcanvas/butterfly.png +share/examples/qt4/examples/graphicsview/portedcanvas/canvas.cpp +share/examples/qt4/examples/graphicsview/portedcanvas/canvas.doc +share/examples/qt4/examples/graphicsview/portedcanvas/canvas.h +share/examples/qt4/examples/graphicsview/portedcanvas/main.cpp +share/examples/qt4/examples/graphicsview/portedcanvas/portedcanvas +%%DEBUG%%share/examples/qt4/examples/graphicsview/portedcanvas/portedcanvas.debug +share/examples/qt4/examples/graphicsview/portedcanvas/portedcanvas.pro +share/examples/qt4/examples/graphicsview/portedcanvas/portedcanvas.qrc +share/examples/qt4/examples/graphicsview/portedcanvas/qt-trans.xpm +share/examples/qt4/examples/graphicsview/portedcanvas/qtlogo.png +share/examples/qt4/examples/help/README +share/examples/qt4/examples/help/contextsensitivehelp/contextsensitivehelp +%%DEBUG%%share/examples/qt4/examples/help/contextsensitivehelp/contextsensitivehelp.debug +share/examples/qt4/examples/help/contextsensitivehelp/contextsensitivehelp.pro +share/examples/qt4/examples/help/contextsensitivehelp/doc/amount.html +share/examples/qt4/examples/help/contextsensitivehelp/doc/filter.html +share/examples/qt4/examples/help/contextsensitivehelp/doc/plants.html +share/examples/qt4/examples/help/contextsensitivehelp/doc/rain.html +share/examples/qt4/examples/help/contextsensitivehelp/doc/source.html +share/examples/qt4/examples/help/contextsensitivehelp/doc/temperature.html +share/examples/qt4/examples/help/contextsensitivehelp/doc/time.html +share/examples/qt4/examples/help/contextsensitivehelp/doc/wateringmachine.qch +share/examples/qt4/examples/help/contextsensitivehelp/doc/wateringmachine.qhc +share/examples/qt4/examples/help/contextsensitivehelp/doc/wateringmachine.qhcp +share/examples/qt4/examples/help/contextsensitivehelp/doc/wateringmachine.qhp +share/examples/qt4/examples/help/contextsensitivehelp/helpbrowser.cpp +share/examples/qt4/examples/help/contextsensitivehelp/helpbrowser.h +share/examples/qt4/examples/help/contextsensitivehelp/main.cpp +share/examples/qt4/examples/help/contextsensitivehelp/wateringconfigdialog.cpp +share/examples/qt4/examples/help/contextsensitivehelp/wateringconfigdialog.h +share/examples/qt4/examples/help/contextsensitivehelp/wateringconfigdialog.ui +share/examples/qt4/examples/help/help.pro +share/examples/qt4/examples/help/remotecontrol/enter.png +share/examples/qt4/examples/help/remotecontrol/main.cpp +share/examples/qt4/examples/help/remotecontrol/remotecontrol +share/examples/qt4/examples/help/remotecontrol/remotecontrol.cpp +%%DEBUG%%share/examples/qt4/examples/help/remotecontrol/remotecontrol.debug +share/examples/qt4/examples/help/remotecontrol/remotecontrol.h +share/examples/qt4/examples/help/remotecontrol/remotecontrol.pro +share/examples/qt4/examples/help/remotecontrol/remotecontrol.qrc +share/examples/qt4/examples/help/remotecontrol/remotecontrol.ui +share/examples/qt4/examples/help/simpletextviewer/assistant.cpp +share/examples/qt4/examples/help/simpletextviewer/assistant.h +share/examples/qt4/examples/help/simpletextviewer/documentation/about.txt +share/examples/qt4/examples/help/simpletextviewer/documentation/browse.html +share/examples/qt4/examples/help/simpletextviewer/documentation/filedialog.html +share/examples/qt4/examples/help/simpletextviewer/documentation/findfile.html +share/examples/qt4/examples/help/simpletextviewer/documentation/images/browse.png +share/examples/qt4/examples/help/simpletextviewer/documentation/images/fadedfilemenu.png +share/examples/qt4/examples/help/simpletextviewer/documentation/images/filedialog.png +share/examples/qt4/examples/help/simpletextviewer/documentation/images/handbook.png +share/examples/qt4/examples/help/simpletextviewer/documentation/images/icon.png +share/examples/qt4/examples/help/simpletextviewer/documentation/images/mainwindow.png +share/examples/qt4/examples/help/simpletextviewer/documentation/images/open.png +share/examples/qt4/examples/help/simpletextviewer/documentation/images/wildcard.png +share/examples/qt4/examples/help/simpletextviewer/documentation/index.html +share/examples/qt4/examples/help/simpletextviewer/documentation/intro.html +share/examples/qt4/examples/help/simpletextviewer/documentation/openfile.html +share/examples/qt4/examples/help/simpletextviewer/documentation/simpletextviewer.qch +share/examples/qt4/examples/help/simpletextviewer/documentation/simpletextviewer.qhc +share/examples/qt4/examples/help/simpletextviewer/documentation/simpletextviewer.qhcp +share/examples/qt4/examples/help/simpletextviewer/documentation/simpletextviewer.qhp +share/examples/qt4/examples/help/simpletextviewer/documentation/wildcardmatching.html +share/examples/qt4/examples/help/simpletextviewer/findfiledialog.cpp +share/examples/qt4/examples/help/simpletextviewer/findfiledialog.h +share/examples/qt4/examples/help/simpletextviewer/main.cpp +share/examples/qt4/examples/help/simpletextviewer/mainwindow.cpp +share/examples/qt4/examples/help/simpletextviewer/mainwindow.h +share/examples/qt4/examples/help/simpletextviewer/simpletextviewer +%%DEBUG%%share/examples/qt4/examples/help/simpletextviewer/simpletextviewer.debug +share/examples/qt4/examples/help/simpletextviewer/simpletextviewer.pro +share/examples/qt4/examples/help/simpletextviewer/textedit.cpp +share/examples/qt4/examples/help/simpletextviewer/textedit.h +share/examples/qt4/examples/ipc/README +share/examples/qt4/examples/ipc/ipc.pro +share/examples/qt4/examples/ipc/localfortuneclient/client.cpp +share/examples/qt4/examples/ipc/localfortuneclient/client.h +share/examples/qt4/examples/ipc/localfortuneclient/localfortuneclient +%%DEBUG%%share/examples/qt4/examples/ipc/localfortuneclient/localfortuneclient.debug +share/examples/qt4/examples/ipc/localfortuneclient/localfortuneclient.pro +share/examples/qt4/examples/ipc/localfortuneclient/main.cpp +share/examples/qt4/examples/ipc/localfortuneserver/localfortuneserver +%%DEBUG%%share/examples/qt4/examples/ipc/localfortuneserver/localfortuneserver.debug +share/examples/qt4/examples/ipc/localfortuneserver/localfortuneserver.pro +share/examples/qt4/examples/ipc/localfortuneserver/main.cpp +share/examples/qt4/examples/ipc/localfortuneserver/server.cpp +share/examples/qt4/examples/ipc/localfortuneserver/server.h +share/examples/qt4/examples/ipc/sharedmemory/dialog.cpp +share/examples/qt4/examples/ipc/sharedmemory/dialog.h +share/examples/qt4/examples/ipc/sharedmemory/dialog.ui +share/examples/qt4/examples/ipc/sharedmemory/main.cpp +share/examples/qt4/examples/ipc/sharedmemory/qt.png +share/examples/qt4/examples/ipc/sharedmemory/sharedmemory +%%DEBUG%%share/examples/qt4/examples/ipc/sharedmemory/sharedmemory.debug +share/examples/qt4/examples/ipc/sharedmemory/sharedmemory.pro +share/examples/qt4/examples/itemviews/README +share/examples/qt4/examples/itemviews/addressbook/adddialog.cpp +share/examples/qt4/examples/itemviews/addressbook/adddialog.h +share/examples/qt4/examples/itemviews/addressbook/addressbook +%%DEBUG%%share/examples/qt4/examples/itemviews/addressbook/addressbook.debug +share/examples/qt4/examples/itemviews/addressbook/addressbook.pro +share/examples/qt4/examples/itemviews/addressbook/addresswidget.cpp +share/examples/qt4/examples/itemviews/addressbook/addresswidget.h +share/examples/qt4/examples/itemviews/addressbook/main.cpp +share/examples/qt4/examples/itemviews/addressbook/mainwindow.cpp +share/examples/qt4/examples/itemviews/addressbook/mainwindow.h +share/examples/qt4/examples/itemviews/addressbook/newaddresstab.cpp +share/examples/qt4/examples/itemviews/addressbook/newaddresstab.h +share/examples/qt4/examples/itemviews/addressbook/tablemodel.cpp +share/examples/qt4/examples/itemviews/addressbook/tablemodel.h +share/examples/qt4/examples/itemviews/basicsortfiltermodel/basicsortfiltermodel +%%DEBUG%%share/examples/qt4/examples/itemviews/basicsortfiltermodel/basicsortfiltermodel.debug +share/examples/qt4/examples/itemviews/basicsortfiltermodel/basicsortfiltermodel.pro +share/examples/qt4/examples/itemviews/basicsortfiltermodel/main.cpp +share/examples/qt4/examples/itemviews/basicsortfiltermodel/window.cpp +share/examples/qt4/examples/itemviews/basicsortfiltermodel/window.h +share/examples/qt4/examples/itemviews/chart/chart +%%DEBUG%%share/examples/qt4/examples/itemviews/chart/chart.debug +share/examples/qt4/examples/itemviews/chart/chart.pro +share/examples/qt4/examples/itemviews/chart/chart.qrc +share/examples/qt4/examples/itemviews/chart/main.cpp +share/examples/qt4/examples/itemviews/chart/mainwindow.cpp +share/examples/qt4/examples/itemviews/chart/mainwindow.h +share/examples/qt4/examples/itemviews/chart/mydata.cht +share/examples/qt4/examples/itemviews/chart/pieview.cpp +share/examples/qt4/examples/itemviews/chart/pieview.h +share/examples/qt4/examples/itemviews/chart/qtdata.cht +share/examples/qt4/examples/itemviews/coloreditorfactory/coloreditorfactory +%%DEBUG%%share/examples/qt4/examples/itemviews/coloreditorfactory/coloreditorfactory.debug +share/examples/qt4/examples/itemviews/coloreditorfactory/coloreditorfactory.pro +share/examples/qt4/examples/itemviews/coloreditorfactory/colorlisteditor.cpp +share/examples/qt4/examples/itemviews/coloreditorfactory/colorlisteditor.h +share/examples/qt4/examples/itemviews/coloreditorfactory/main.cpp +share/examples/qt4/examples/itemviews/coloreditorfactory/window.cpp +share/examples/qt4/examples/itemviews/coloreditorfactory/window.h +share/examples/qt4/examples/itemviews/customsortfiltermodel/customsortfiltermodel +%%DEBUG%%share/examples/qt4/examples/itemviews/customsortfiltermodel/customsortfiltermodel.debug +share/examples/qt4/examples/itemviews/customsortfiltermodel/customsortfiltermodel.pro +share/examples/qt4/examples/itemviews/customsortfiltermodel/main.cpp +share/examples/qt4/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp +share/examples/qt4/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.h +share/examples/qt4/examples/itemviews/customsortfiltermodel/window.cpp +share/examples/qt4/examples/itemviews/customsortfiltermodel/window.h +share/examples/qt4/examples/itemviews/dirview/dirview +%%DEBUG%%share/examples/qt4/examples/itemviews/dirview/dirview.debug +share/examples/qt4/examples/itemviews/dirview/dirview.pro +share/examples/qt4/examples/itemviews/dirview/main.cpp +share/examples/qt4/examples/itemviews/editabletreemodel/default.txt +share/examples/qt4/examples/itemviews/editabletreemodel/editabletreemodel +%%DEBUG%%share/examples/qt4/examples/itemviews/editabletreemodel/editabletreemodel.debug +share/examples/qt4/examples/itemviews/editabletreemodel/editabletreemodel.pro +share/examples/qt4/examples/itemviews/editabletreemodel/editabletreemodel.qrc +share/examples/qt4/examples/itemviews/editabletreemodel/main.cpp +share/examples/qt4/examples/itemviews/editabletreemodel/mainwindow.cpp +share/examples/qt4/examples/itemviews/editabletreemodel/mainwindow.h +share/examples/qt4/examples/itemviews/editabletreemodel/mainwindow.ui +share/examples/qt4/examples/itemviews/editabletreemodel/treeitem.cpp +share/examples/qt4/examples/itemviews/editabletreemodel/treeitem.h +share/examples/qt4/examples/itemviews/editabletreemodel/treemodel.cpp +share/examples/qt4/examples/itemviews/editabletreemodel/treemodel.h +share/examples/qt4/examples/itemviews/itemviews.pro +share/examples/qt4/examples/itemviews/pixelator/imagemodel.cpp +share/examples/qt4/examples/itemviews/pixelator/imagemodel.h +share/examples/qt4/examples/itemviews/pixelator/images.qrc +share/examples/qt4/examples/itemviews/pixelator/images/qt.png +share/examples/qt4/examples/itemviews/pixelator/main.cpp +share/examples/qt4/examples/itemviews/pixelator/mainwindow.cpp +share/examples/qt4/examples/itemviews/pixelator/mainwindow.h +share/examples/qt4/examples/itemviews/pixelator/pixelator +%%DEBUG%%share/examples/qt4/examples/itemviews/pixelator/pixelator.debug +share/examples/qt4/examples/itemviews/pixelator/pixelator.pro +share/examples/qt4/examples/itemviews/pixelator/pixeldelegate.cpp +share/examples/qt4/examples/itemviews/pixelator/pixeldelegate.h +share/examples/qt4/examples/itemviews/puzzle/example.jpg +share/examples/qt4/examples/itemviews/puzzle/main.cpp +share/examples/qt4/examples/itemviews/puzzle/mainwindow.cpp +share/examples/qt4/examples/itemviews/puzzle/mainwindow.h +share/examples/qt4/examples/itemviews/puzzle/piecesmodel.cpp +share/examples/qt4/examples/itemviews/puzzle/piecesmodel.h +share/examples/qt4/examples/itemviews/puzzle/puzzle +%%DEBUG%%share/examples/qt4/examples/itemviews/puzzle/puzzle.debug +share/examples/qt4/examples/itemviews/puzzle/puzzle.pro +share/examples/qt4/examples/itemviews/puzzle/puzzle.qrc +share/examples/qt4/examples/itemviews/puzzle/puzzlewidget.cpp +share/examples/qt4/examples/itemviews/puzzle/puzzlewidget.h +share/examples/qt4/examples/itemviews/simpledommodel/domitem.cpp +share/examples/qt4/examples/itemviews/simpledommodel/domitem.h +share/examples/qt4/examples/itemviews/simpledommodel/dommodel.cpp +share/examples/qt4/examples/itemviews/simpledommodel/dommodel.h +share/examples/qt4/examples/itemviews/simpledommodel/main.cpp +share/examples/qt4/examples/itemviews/simpledommodel/mainwindow.cpp +share/examples/qt4/examples/itemviews/simpledommodel/mainwindow.h +share/examples/qt4/examples/itemviews/simpledommodel/simpledommodel +%%DEBUG%%share/examples/qt4/examples/itemviews/simpledommodel/simpledommodel.debug +share/examples/qt4/examples/itemviews/simpledommodel/simpledommodel.pro +share/examples/qt4/examples/itemviews/simpletreemodel/default.txt +share/examples/qt4/examples/itemviews/simpletreemodel/main.cpp +share/examples/qt4/examples/itemviews/simpletreemodel/simpletreemodel +%%DEBUG%%share/examples/qt4/examples/itemviews/simpletreemodel/simpletreemodel.debug +share/examples/qt4/examples/itemviews/simpletreemodel/simpletreemodel.pro +share/examples/qt4/examples/itemviews/simpletreemodel/simpletreemodel.qrc +share/examples/qt4/examples/itemviews/simpletreemodel/treeitem.cpp +share/examples/qt4/examples/itemviews/simpletreemodel/treeitem.h +share/examples/qt4/examples/itemviews/simpletreemodel/treemodel.cpp +share/examples/qt4/examples/itemviews/simpletreemodel/treemodel.h +share/examples/qt4/examples/itemviews/simplewidgetmapper/main.cpp +share/examples/qt4/examples/itemviews/simplewidgetmapper/simplewidgetmapper +%%DEBUG%%share/examples/qt4/examples/itemviews/simplewidgetmapper/simplewidgetmapper.debug +share/examples/qt4/examples/itemviews/simplewidgetmapper/simplewidgetmapper.pro +share/examples/qt4/examples/itemviews/simplewidgetmapper/window.cpp +share/examples/qt4/examples/itemviews/simplewidgetmapper/window.h +share/examples/qt4/examples/itemviews/spinboxdelegate/delegate.cpp +share/examples/qt4/examples/itemviews/spinboxdelegate/delegate.h +share/examples/qt4/examples/itemviews/spinboxdelegate/main.cpp +share/examples/qt4/examples/itemviews/spinboxdelegate/spinboxdelegate +%%DEBUG%%share/examples/qt4/examples/itemviews/spinboxdelegate/spinboxdelegate.debug +share/examples/qt4/examples/itemviews/spinboxdelegate/spinboxdelegate.pro +share/examples/qt4/examples/itemviews/stardelegate/main.cpp +share/examples/qt4/examples/itemviews/stardelegate/stardelegate +share/examples/qt4/examples/itemviews/stardelegate/stardelegate.cpp +%%DEBUG%%share/examples/qt4/examples/itemviews/stardelegate/stardelegate.debug +share/examples/qt4/examples/itemviews/stardelegate/stardelegate.h +share/examples/qt4/examples/itemviews/stardelegate/stardelegate.pro +share/examples/qt4/examples/itemviews/stardelegate/stareditor.cpp +share/examples/qt4/examples/itemviews/stardelegate/stareditor.h +share/examples/qt4/examples/itemviews/stardelegate/starrating.cpp +share/examples/qt4/examples/itemviews/stardelegate/starrating.h +share/examples/qt4/examples/layouts/README +share/examples/qt4/examples/layouts/basiclayouts/basiclayouts +%%DEBUG%%share/examples/qt4/examples/layouts/basiclayouts/basiclayouts.debug +share/examples/qt4/examples/layouts/basiclayouts/basiclayouts.pro +share/examples/qt4/examples/layouts/basiclayouts/dialog.cpp +share/examples/qt4/examples/layouts/basiclayouts/dialog.h +share/examples/qt4/examples/layouts/basiclayouts/main.cpp +share/examples/qt4/examples/layouts/borderlayout/borderlayout +share/examples/qt4/examples/layouts/borderlayout/borderlayout.cpp +%%DEBUG%%share/examples/qt4/examples/layouts/borderlayout/borderlayout.debug +share/examples/qt4/examples/layouts/borderlayout/borderlayout.h +share/examples/qt4/examples/layouts/borderlayout/borderlayout.pro +share/examples/qt4/examples/layouts/borderlayout/main.cpp +share/examples/qt4/examples/layouts/borderlayout/window.cpp +share/examples/qt4/examples/layouts/borderlayout/window.h +share/examples/qt4/examples/layouts/dynamiclayouts/dialog.cpp +share/examples/qt4/examples/layouts/dynamiclayouts/dialog.h +share/examples/qt4/examples/layouts/dynamiclayouts/dynamiclayouts +%%DEBUG%%share/examples/qt4/examples/layouts/dynamiclayouts/dynamiclayouts.debug +share/examples/qt4/examples/layouts/dynamiclayouts/dynamiclayouts.pro +share/examples/qt4/examples/layouts/dynamiclayouts/main.cpp +share/examples/qt4/examples/layouts/flowlayout/flowlayout +share/examples/qt4/examples/layouts/flowlayout/flowlayout.cpp +%%DEBUG%%share/examples/qt4/examples/layouts/flowlayout/flowlayout.debug +share/examples/qt4/examples/layouts/flowlayout/flowlayout.h +share/examples/qt4/examples/layouts/flowlayout/flowlayout.pro +share/examples/qt4/examples/layouts/flowlayout/main.cpp +share/examples/qt4/examples/layouts/flowlayout/window.cpp +share/examples/qt4/examples/layouts/flowlayout/window.h +share/examples/qt4/examples/layouts/layouts.pro +share/examples/qt4/examples/linguist/README +share/examples/qt4/examples/linguist/arrowpad/arrowpad +share/examples/qt4/examples/linguist/arrowpad/arrowpad.cpp +%%DEBUG%%share/examples/qt4/examples/linguist/arrowpad/arrowpad.debug +share/examples/qt4/examples/linguist/arrowpad/arrowpad.h +share/examples/qt4/examples/linguist/arrowpad/arrowpad.pro +share/examples/qt4/examples/linguist/arrowpad/main.cpp +share/examples/qt4/examples/linguist/arrowpad/mainwindow.cpp +share/examples/qt4/examples/linguist/arrowpad/mainwindow.h +share/examples/qt4/examples/linguist/hellotr/hellotr +%%DEBUG%%share/examples/qt4/examples/linguist/hellotr/hellotr.debug +share/examples/qt4/examples/linguist/hellotr/hellotr.pro +share/examples/qt4/examples/linguist/hellotr/main.cpp +share/examples/qt4/examples/linguist/linguist.pro +share/examples/qt4/examples/linguist/trollprint/main.cpp +share/examples/qt4/examples/linguist/trollprint/mainwindow.cpp +share/examples/qt4/examples/linguist/trollprint/mainwindow.h +share/examples/qt4/examples/linguist/trollprint/printpanel.cpp +share/examples/qt4/examples/linguist/trollprint/printpanel.h +share/examples/qt4/examples/linguist/trollprint/trollprint +%%DEBUG%%share/examples/qt4/examples/linguist/trollprint/trollprint.debug +share/examples/qt4/examples/linguist/trollprint/trollprint.pro +share/examples/qt4/examples/linguist/trollprint/trollprint_pt.ts +share/examples/qt4/examples/mainwindows/README +share/examples/qt4/examples/mainwindows/application/application +%%DEBUG%%share/examples/qt4/examples/mainwindows/application/application.debug +share/examples/qt4/examples/mainwindows/application/application.pro +share/examples/qt4/examples/mainwindows/application/application.qrc +share/examples/qt4/examples/mainwindows/application/images/copy.png +share/examples/qt4/examples/mainwindows/application/images/cut.png +share/examples/qt4/examples/mainwindows/application/images/new.png +share/examples/qt4/examples/mainwindows/application/images/open.png +share/examples/qt4/examples/mainwindows/application/images/paste.png +share/examples/qt4/examples/mainwindows/application/images/save.png +share/examples/qt4/examples/mainwindows/application/main.cpp +share/examples/qt4/examples/mainwindows/application/mainwindow.cpp +share/examples/qt4/examples/mainwindows/application/mainwindow.h +share/examples/qt4/examples/mainwindows/dockwidgets/dockwidgets +%%DEBUG%%share/examples/qt4/examples/mainwindows/dockwidgets/dockwidgets.debug +share/examples/qt4/examples/mainwindows/dockwidgets/dockwidgets.pro +share/examples/qt4/examples/mainwindows/dockwidgets/dockwidgets.qrc +share/examples/qt4/examples/mainwindows/dockwidgets/images/new.png +share/examples/qt4/examples/mainwindows/dockwidgets/images/print.png +share/examples/qt4/examples/mainwindows/dockwidgets/images/save.png +share/examples/qt4/examples/mainwindows/dockwidgets/images/undo.png +share/examples/qt4/examples/mainwindows/dockwidgets/main.cpp +share/examples/qt4/examples/mainwindows/dockwidgets/mainwindow.cpp +share/examples/qt4/examples/mainwindows/dockwidgets/mainwindow.h +share/examples/qt4/examples/mainwindows/mainwindows.pro +share/examples/qt4/examples/mainwindows/mdi/images/copy.png +share/examples/qt4/examples/mainwindows/mdi/images/cut.png +share/examples/qt4/examples/mainwindows/mdi/images/new.png +share/examples/qt4/examples/mainwindows/mdi/images/open.png +share/examples/qt4/examples/mainwindows/mdi/images/paste.png +share/examples/qt4/examples/mainwindows/mdi/images/save.png +share/examples/qt4/examples/mainwindows/mdi/main.cpp +share/examples/qt4/examples/mainwindows/mdi/mainwindow.cpp +share/examples/qt4/examples/mainwindows/mdi/mainwindow.h +share/examples/qt4/examples/mainwindows/mdi/mdi +%%DEBUG%%share/examples/qt4/examples/mainwindows/mdi/mdi.debug +share/examples/qt4/examples/mainwindows/mdi/mdi.pro +share/examples/qt4/examples/mainwindows/mdi/mdi.qrc +share/examples/qt4/examples/mainwindows/mdi/mdichild.cpp +share/examples/qt4/examples/mainwindows/mdi/mdichild.h +share/examples/qt4/examples/mainwindows/menus/main.cpp +share/examples/qt4/examples/mainwindows/menus/mainwindow.cpp +share/examples/qt4/examples/mainwindows/menus/mainwindow.h +share/examples/qt4/examples/mainwindows/menus/menus +%%DEBUG%%share/examples/qt4/examples/mainwindows/menus/menus.debug +share/examples/qt4/examples/mainwindows/menus/menus.pro +share/examples/qt4/examples/mainwindows/recentfiles/main.cpp +share/examples/qt4/examples/mainwindows/recentfiles/mainwindow.cpp +share/examples/qt4/examples/mainwindows/recentfiles/mainwindow.h +share/examples/qt4/examples/mainwindows/recentfiles/recentfiles +%%DEBUG%%share/examples/qt4/examples/mainwindows/recentfiles/recentfiles.debug +share/examples/qt4/examples/mainwindows/recentfiles/recentfiles.pro +share/examples/qt4/examples/mainwindows/sdi/images/copy.png +share/examples/qt4/examples/mainwindows/sdi/images/cut.png +share/examples/qt4/examples/mainwindows/sdi/images/new.png +share/examples/qt4/examples/mainwindows/sdi/images/open.png +share/examples/qt4/examples/mainwindows/sdi/images/paste.png +share/examples/qt4/examples/mainwindows/sdi/images/save.png +share/examples/qt4/examples/mainwindows/sdi/main.cpp +share/examples/qt4/examples/mainwindows/sdi/mainwindow.cpp +share/examples/qt4/examples/mainwindows/sdi/mainwindow.h +share/examples/qt4/examples/mainwindows/sdi/sdi +%%DEBUG%%share/examples/qt4/examples/mainwindows/sdi/sdi.debug +share/examples/qt4/examples/mainwindows/sdi/sdi.pro +share/examples/qt4/examples/mainwindows/sdi/sdi.qrc +share/examples/qt4/examples/network/README +share/examples/qt4/examples/network/blockingfortuneclient/blockingclient.cpp +share/examples/qt4/examples/network/blockingfortuneclient/blockingclient.h +share/examples/qt4/examples/network/blockingfortuneclient/blockingfortuneclient +%%DEBUG%%share/examples/qt4/examples/network/blockingfortuneclient/blockingfortuneclient.debug +share/examples/qt4/examples/network/blockingfortuneclient/blockingfortuneclient.pro +share/examples/qt4/examples/network/blockingfortuneclient/fortunethread.cpp +share/examples/qt4/examples/network/blockingfortuneclient/fortunethread.h +share/examples/qt4/examples/network/blockingfortuneclient/main.cpp +share/examples/qt4/examples/network/broadcastreceiver/broadcastreceiver +%%DEBUG%%share/examples/qt4/examples/network/broadcastreceiver/broadcastreceiver.debug +share/examples/qt4/examples/network/broadcastreceiver/broadcastreceiver.pro +share/examples/qt4/examples/network/broadcastreceiver/main.cpp +share/examples/qt4/examples/network/broadcastreceiver/receiver.cpp +share/examples/qt4/examples/network/broadcastreceiver/receiver.h +share/examples/qt4/examples/network/broadcastsender/broadcastsender +%%DEBUG%%share/examples/qt4/examples/network/broadcastsender/broadcastsender.debug +share/examples/qt4/examples/network/broadcastsender/broadcastsender.pro +share/examples/qt4/examples/network/broadcastsender/main.cpp +share/examples/qt4/examples/network/broadcastsender/sender.cpp +share/examples/qt4/examples/network/broadcastsender/sender.h +share/examples/qt4/examples/network/chat/chat +%%DEBUG%%share/examples/qt4/examples/network/chat/chat.debug +share/examples/qt4/examples/network/chat/chat.pro +share/examples/qt4/examples/network/chat/chatdialog.cpp +share/examples/qt4/examples/network/chat/chatdialog.h +share/examples/qt4/examples/network/chat/chatdialog.ui +share/examples/qt4/examples/network/chat/client.cpp +share/examples/qt4/examples/network/chat/client.h +share/examples/qt4/examples/network/chat/connection.cpp +share/examples/qt4/examples/network/chat/connection.h +share/examples/qt4/examples/network/chat/main.cpp +share/examples/qt4/examples/network/chat/peermanager.cpp +share/examples/qt4/examples/network/chat/peermanager.h +share/examples/qt4/examples/network/chat/server.cpp +share/examples/qt4/examples/network/chat/server.h +share/examples/qt4/examples/network/download/download +%%DEBUG%%share/examples/qt4/examples/network/download/download.debug +share/examples/qt4/examples/network/download/download.pro +share/examples/qt4/examples/network/download/main.cpp +share/examples/qt4/examples/network/downloadmanager/downloadmanager +share/examples/qt4/examples/network/downloadmanager/downloadmanager.cpp +%%DEBUG%%share/examples/qt4/examples/network/downloadmanager/downloadmanager.debug +share/examples/qt4/examples/network/downloadmanager/downloadmanager.h +share/examples/qt4/examples/network/downloadmanager/downloadmanager.pro +share/examples/qt4/examples/network/downloadmanager/main.cpp +share/examples/qt4/examples/network/downloadmanager/textprogressbar.cpp +share/examples/qt4/examples/network/downloadmanager/textprogressbar.h +share/examples/qt4/examples/network/fortuneclient/client.cpp +share/examples/qt4/examples/network/fortuneclient/client.h +share/examples/qt4/examples/network/fortuneclient/fortuneclient +%%DEBUG%%share/examples/qt4/examples/network/fortuneclient/fortuneclient.debug +share/examples/qt4/examples/network/fortuneclient/fortuneclient.pro +share/examples/qt4/examples/network/fortuneclient/main.cpp +share/examples/qt4/examples/network/fortuneserver/fortuneserver +%%DEBUG%%share/examples/qt4/examples/network/fortuneserver/fortuneserver.debug +share/examples/qt4/examples/network/fortuneserver/fortuneserver.pro +share/examples/qt4/examples/network/fortuneserver/main.cpp +share/examples/qt4/examples/network/fortuneserver/server.cpp +share/examples/qt4/examples/network/fortuneserver/server.h +share/examples/qt4/examples/network/ftp/ftp +%%DEBUG%%share/examples/qt4/examples/network/ftp/ftp.debug +share/examples/qt4/examples/network/ftp/ftp.pro +share/examples/qt4/examples/network/ftp/ftp.qrc +share/examples/qt4/examples/network/ftp/ftpwindow.cpp +share/examples/qt4/examples/network/ftp/ftpwindow.h +share/examples/qt4/examples/network/ftp/images/cdtoparent.png +share/examples/qt4/examples/network/ftp/images/dir.png +share/examples/qt4/examples/network/ftp/images/file.png +share/examples/qt4/examples/network/ftp/main.cpp +share/examples/qt4/examples/network/http/authenticationdialog.ui +share/examples/qt4/examples/network/http/http +%%DEBUG%%share/examples/qt4/examples/network/http/http.debug +share/examples/qt4/examples/network/http/http.pro +share/examples/qt4/examples/network/http/httpwindow.cpp +share/examples/qt4/examples/network/http/httpwindow.h +share/examples/qt4/examples/network/http/main.cpp +share/examples/qt4/examples/network/loopback/dialog.cpp +share/examples/qt4/examples/network/loopback/dialog.h +share/examples/qt4/examples/network/loopback/loopback +%%DEBUG%%share/examples/qt4/examples/network/loopback/loopback.debug +share/examples/qt4/examples/network/loopback/loopback.pro +share/examples/qt4/examples/network/loopback/main.cpp +share/examples/qt4/examples/network/network.pro +share/examples/qt4/examples/network/securesocketclient/certificateinfo.cpp +share/examples/qt4/examples/network/securesocketclient/certificateinfo.h +share/examples/qt4/examples/network/securesocketclient/certificateinfo.ui +share/examples/qt4/examples/network/securesocketclient/encrypted.png +share/examples/qt4/examples/network/securesocketclient/main.cpp +share/examples/qt4/examples/network/securesocketclient/securesocketclient +%%DEBUG%%share/examples/qt4/examples/network/securesocketclient/securesocketclient.debug +share/examples/qt4/examples/network/securesocketclient/securesocketclient.pro +share/examples/qt4/examples/network/securesocketclient/securesocketclient.qrc +share/examples/qt4/examples/network/securesocketclient/sslclient.cpp +share/examples/qt4/examples/network/securesocketclient/sslclient.h +share/examples/qt4/examples/network/securesocketclient/sslclient.ui +share/examples/qt4/examples/network/securesocketclient/sslerrors.ui +share/examples/qt4/examples/network/threadedfortuneserver/dialog.cpp +share/examples/qt4/examples/network/threadedfortuneserver/dialog.h +share/examples/qt4/examples/network/threadedfortuneserver/fortuneserver.cpp +share/examples/qt4/examples/network/threadedfortuneserver/fortuneserver.h +share/examples/qt4/examples/network/threadedfortuneserver/fortunethread.cpp +share/examples/qt4/examples/network/threadedfortuneserver/fortunethread.h +share/examples/qt4/examples/network/threadedfortuneserver/main.cpp +share/examples/qt4/examples/network/threadedfortuneserver/threadedfortuneserver +%%DEBUG%%share/examples/qt4/examples/network/threadedfortuneserver/threadedfortuneserver.debug +share/examples/qt4/examples/network/threadedfortuneserver/threadedfortuneserver.pro +share/examples/qt4/examples/network/torrent/3rdparty/sha1.c +share/examples/qt4/examples/network/torrent/3rdparty/sha1.h +share/examples/qt4/examples/network/torrent/addtorrentdialog.cpp +share/examples/qt4/examples/network/torrent/addtorrentdialog.h +share/examples/qt4/examples/network/torrent/bencodeparser.cpp +share/examples/qt4/examples/network/torrent/bencodeparser.h +share/examples/qt4/examples/network/torrent/connectionmanager.cpp +share/examples/qt4/examples/network/torrent/connectionmanager.h +share/examples/qt4/examples/network/torrent/filemanager.cpp +share/examples/qt4/examples/network/torrent/filemanager.h +share/examples/qt4/examples/network/torrent/forms/addtorrentform.ui +share/examples/qt4/examples/network/torrent/icons.qrc +share/examples/qt4/examples/network/torrent/icons/1downarrow.png +share/examples/qt4/examples/network/torrent/icons/1uparrow.png +share/examples/qt4/examples/network/torrent/icons/bottom.png +share/examples/qt4/examples/network/torrent/icons/edit_add.png +share/examples/qt4/examples/network/torrent/icons/edit_remove.png +share/examples/qt4/examples/network/torrent/icons/exit.png +share/examples/qt4/examples/network/torrent/icons/peertopeer.png +share/examples/qt4/examples/network/torrent/icons/player_pause.png +share/examples/qt4/examples/network/torrent/icons/player_play.png +share/examples/qt4/examples/network/torrent/icons/player_stop.png +share/examples/qt4/examples/network/torrent/icons/stop.png +share/examples/qt4/examples/network/torrent/main.cpp +share/examples/qt4/examples/network/torrent/mainwindow.cpp +share/examples/qt4/examples/network/torrent/mainwindow.h +share/examples/qt4/examples/network/torrent/metainfo.cpp +share/examples/qt4/examples/network/torrent/metainfo.h +share/examples/qt4/examples/network/torrent/peerwireclient.cpp +share/examples/qt4/examples/network/torrent/peerwireclient.h +share/examples/qt4/examples/network/torrent/ratecontroller.cpp +share/examples/qt4/examples/network/torrent/ratecontroller.h +share/examples/qt4/examples/network/torrent/torrent +%%DEBUG%%share/examples/qt4/examples/network/torrent/torrent.debug +share/examples/qt4/examples/network/torrent/torrent.pro +share/examples/qt4/examples/network/torrent/torrentclient.cpp +share/examples/qt4/examples/network/torrent/torrentclient.h +share/examples/qt4/examples/network/torrent/torrentserver.cpp +share/examples/qt4/examples/network/torrent/torrentserver.h +share/examples/qt4/examples/network/torrent/trackerclient.cpp +share/examples/qt4/examples/network/torrent/trackerclient.h +share/examples/qt4/examples/opengl/2dpainting/2dpainting +%%DEBUG%%share/examples/qt4/examples/opengl/2dpainting/2dpainting.debug +share/examples/qt4/examples/opengl/2dpainting/2dpainting.pro +share/examples/qt4/examples/opengl/2dpainting/glwidget.cpp +share/examples/qt4/examples/opengl/2dpainting/glwidget.h +share/examples/qt4/examples/opengl/2dpainting/helper.cpp +share/examples/qt4/examples/opengl/2dpainting/helper.h +share/examples/qt4/examples/opengl/2dpainting/main.cpp +share/examples/qt4/examples/opengl/2dpainting/widget.cpp +share/examples/qt4/examples/opengl/2dpainting/widget.h +share/examples/qt4/examples/opengl/2dpainting/window.cpp +share/examples/qt4/examples/opengl/2dpainting/window.h +share/examples/qt4/examples/opengl/README +share/examples/qt4/examples/opengl/framebufferobject/bubbles.svg +share/examples/qt4/examples/opengl/framebufferobject/framebufferobject +%%DEBUG%%share/examples/qt4/examples/opengl/framebufferobject/framebufferobject.debug +share/examples/qt4/examples/opengl/framebufferobject/framebufferobject.pro +share/examples/qt4/examples/opengl/framebufferobject/framebufferobject.qrc +share/examples/qt4/examples/opengl/framebufferobject/glwidget.cpp +share/examples/qt4/examples/opengl/framebufferobject/glwidget.h +share/examples/qt4/examples/opengl/framebufferobject/main.cpp +share/examples/qt4/examples/opengl/framebufferobject/qt4-logo.png +share/examples/qt4/examples/opengl/framebufferobject2/cubelogo.png +share/examples/qt4/examples/opengl/framebufferobject2/framebufferobject2 +%%DEBUG%%share/examples/qt4/examples/opengl/framebufferobject2/framebufferobject2.debug +share/examples/qt4/examples/opengl/framebufferobject2/framebufferobject2.pro +share/examples/qt4/examples/opengl/framebufferobject2/framebufferobject2.qrc +share/examples/qt4/examples/opengl/framebufferobject2/glwidget.cpp +share/examples/qt4/examples/opengl/framebufferobject2/glwidget.h +share/examples/qt4/examples/opengl/framebufferobject2/main.cpp +share/examples/qt4/examples/opengl/grabber/glwidget.cpp +share/examples/qt4/examples/opengl/grabber/glwidget.h +share/examples/qt4/examples/opengl/grabber/grabber +%%DEBUG%%share/examples/qt4/examples/opengl/grabber/grabber.debug +share/examples/qt4/examples/opengl/grabber/grabber.pro +share/examples/qt4/examples/opengl/grabber/main.cpp +share/examples/qt4/examples/opengl/grabber/mainwindow.cpp +share/examples/qt4/examples/opengl/grabber/mainwindow.h +share/examples/qt4/examples/opengl/hellogl/glwidget.cpp +share/examples/qt4/examples/opengl/hellogl/glwidget.h +share/examples/qt4/examples/opengl/hellogl/hellogl +%%DEBUG%%share/examples/qt4/examples/opengl/hellogl/hellogl.debug +share/examples/qt4/examples/opengl/hellogl/hellogl.pro +share/examples/qt4/examples/opengl/hellogl/main.cpp +share/examples/qt4/examples/opengl/hellogl/window.cpp +share/examples/qt4/examples/opengl/hellogl/window.h +share/examples/qt4/examples/opengl/opengl.pro +share/examples/qt4/examples/opengl/overpainting/bubble.cpp +share/examples/qt4/examples/opengl/overpainting/bubble.h +share/examples/qt4/examples/opengl/overpainting/glwidget.cpp +share/examples/qt4/examples/opengl/overpainting/glwidget.h +share/examples/qt4/examples/opengl/overpainting/main.cpp +share/examples/qt4/examples/opengl/overpainting/overpainting +%%DEBUG%%share/examples/qt4/examples/opengl/overpainting/overpainting.debug +share/examples/qt4/examples/opengl/overpainting/overpainting.pro +share/examples/qt4/examples/opengl/pbuffers/cubelogo.png +share/examples/qt4/examples/opengl/pbuffers/glwidget.cpp +share/examples/qt4/examples/opengl/pbuffers/glwidget.h +share/examples/qt4/examples/opengl/pbuffers/main.cpp +share/examples/qt4/examples/opengl/pbuffers/pbuffers +%%DEBUG%%share/examples/qt4/examples/opengl/pbuffers/pbuffers.debug +share/examples/qt4/examples/opengl/pbuffers/pbuffers.pro +share/examples/qt4/examples/opengl/pbuffers/pbuffers.qrc +share/examples/qt4/examples/opengl/pbuffers2/bubbles.svg +share/examples/qt4/examples/opengl/pbuffers2/glwidget.cpp +share/examples/qt4/examples/opengl/pbuffers2/glwidget.h +share/examples/qt4/examples/opengl/pbuffers2/main.cpp +share/examples/qt4/examples/opengl/pbuffers2/pbuffers2 +%%DEBUG%%share/examples/qt4/examples/opengl/pbuffers2/pbuffers2.debug +share/examples/qt4/examples/opengl/pbuffers2/pbuffers2.pro +share/examples/qt4/examples/opengl/pbuffers2/pbuffers2.qrc +share/examples/qt4/examples/opengl/pbuffers2/qt4-logo.png +share/examples/qt4/examples/opengl/samplebuffers/glwidget.cpp +share/examples/qt4/examples/opengl/samplebuffers/glwidget.h +share/examples/qt4/examples/opengl/samplebuffers/main.cpp +share/examples/qt4/examples/opengl/samplebuffers/samplebuffers +%%DEBUG%%share/examples/qt4/examples/opengl/samplebuffers/samplebuffers.debug +share/examples/qt4/examples/opengl/samplebuffers/samplebuffers.pro +share/examples/qt4/examples/opengl/textures/glwidget.cpp +share/examples/qt4/examples/opengl/textures/glwidget.h +share/examples/qt4/examples/opengl/textures/images/side1.png +share/examples/qt4/examples/opengl/textures/images/side2.png +share/examples/qt4/examples/opengl/textures/images/side3.png +share/examples/qt4/examples/opengl/textures/images/side4.png +share/examples/qt4/examples/opengl/textures/images/side5.png +share/examples/qt4/examples/opengl/textures/images/side6.png +share/examples/qt4/examples/opengl/textures/main.cpp +share/examples/qt4/examples/opengl/textures/textures +%%DEBUG%%share/examples/qt4/examples/opengl/textures/textures.debug +share/examples/qt4/examples/opengl/textures/textures.pro +share/examples/qt4/examples/opengl/textures/textures.qrc +share/examples/qt4/examples/opengl/textures/window.cpp +share/examples/qt4/examples/opengl/textures/window.h +share/examples/qt4/examples/painting/README +share/examples/qt4/examples/painting/basicdrawing/basicdrawing +%%DEBUG%%share/examples/qt4/examples/painting/basicdrawing/basicdrawing.debug +share/examples/qt4/examples/painting/basicdrawing/basicdrawing.pro +share/examples/qt4/examples/painting/basicdrawing/basicdrawing.qrc +share/examples/qt4/examples/painting/basicdrawing/images/brick.png +share/examples/qt4/examples/painting/basicdrawing/images/qt-logo.png +share/examples/qt4/examples/painting/basicdrawing/main.cpp +share/examples/qt4/examples/painting/basicdrawing/renderarea.cpp +share/examples/qt4/examples/painting/basicdrawing/renderarea.h +share/examples/qt4/examples/painting/basicdrawing/window.cpp +share/examples/qt4/examples/painting/basicdrawing/window.h +share/examples/qt4/examples/painting/concentriccircles/circlewidget.cpp +share/examples/qt4/examples/painting/concentriccircles/circlewidget.h +share/examples/qt4/examples/painting/concentriccircles/concentriccircles +%%DEBUG%%share/examples/qt4/examples/painting/concentriccircles/concentriccircles.debug +share/examples/qt4/examples/painting/concentriccircles/concentriccircles.pro +share/examples/qt4/examples/painting/concentriccircles/main.cpp +share/examples/qt4/examples/painting/concentriccircles/window.cpp +share/examples/qt4/examples/painting/concentriccircles/window.h +share/examples/qt4/examples/painting/fontsampler/fontsampler +%%DEBUG%%share/examples/qt4/examples/painting/fontsampler/fontsampler.debug +share/examples/qt4/examples/painting/fontsampler/fontsampler.pro +share/examples/qt4/examples/painting/fontsampler/main.cpp +share/examples/qt4/examples/painting/fontsampler/mainwindow.cpp +share/examples/qt4/examples/painting/fontsampler/mainwindow.h +share/examples/qt4/examples/painting/fontsampler/mainwindowbase.ui +share/examples/qt4/examples/painting/imagecomposition/imagecomposer.cpp +share/examples/qt4/examples/painting/imagecomposition/imagecomposer.h +share/examples/qt4/examples/painting/imagecomposition/imagecomposition +%%DEBUG%%share/examples/qt4/examples/painting/imagecomposition/imagecomposition.debug +share/examples/qt4/examples/painting/imagecomposition/imagecomposition.pro +share/examples/qt4/examples/painting/imagecomposition/imagecomposition.qrc +share/examples/qt4/examples/painting/imagecomposition/images/background.png +share/examples/qt4/examples/painting/imagecomposition/images/blackrectangle.png +share/examples/qt4/examples/painting/imagecomposition/images/butterfly.png +share/examples/qt4/examples/painting/imagecomposition/images/checker.png +share/examples/qt4/examples/painting/imagecomposition/main.cpp +share/examples/qt4/examples/painting/painterpaths/main.cpp +share/examples/qt4/examples/painting/painterpaths/painterpaths +%%DEBUG%%share/examples/qt4/examples/painting/painterpaths/painterpaths.debug +share/examples/qt4/examples/painting/painterpaths/painterpaths.pro +share/examples/qt4/examples/painting/painterpaths/renderarea.cpp +share/examples/qt4/examples/painting/painterpaths/renderarea.h +share/examples/qt4/examples/painting/painterpaths/window.cpp +share/examples/qt4/examples/painting/painterpaths/window.h +share/examples/qt4/examples/painting/painting.pro +share/examples/qt4/examples/painting/svgviewer/files/bubbles.svg +share/examples/qt4/examples/painting/svgviewer/files/cubic.svg +share/examples/qt4/examples/painting/svgviewer/files/spheres.svg +share/examples/qt4/examples/painting/svgviewer/main.cpp +share/examples/qt4/examples/painting/svgviewer/mainwindow.cpp +share/examples/qt4/examples/painting/svgviewer/mainwindow.h +share/examples/qt4/examples/painting/svgviewer/svgview.cpp +share/examples/qt4/examples/painting/svgviewer/svgview.h +share/examples/qt4/examples/painting/svgviewer/svgviewer +%%DEBUG%%share/examples/qt4/examples/painting/svgviewer/svgviewer.debug +share/examples/qt4/examples/painting/svgviewer/svgviewer.pro +share/examples/qt4/examples/painting/svgviewer/svgviewer.qrc +share/examples/qt4/examples/painting/svgviewer/svgwindow.cpp +share/examples/qt4/examples/painting/svgviewer/svgwindow.h +share/examples/qt4/examples/painting/transformations/main.cpp +share/examples/qt4/examples/painting/transformations/renderarea.cpp +share/examples/qt4/examples/painting/transformations/renderarea.h +share/examples/qt4/examples/painting/transformations/transformations +%%DEBUG%%share/examples/qt4/examples/painting/transformations/transformations.debug +share/examples/qt4/examples/painting/transformations/transformations.pro +share/examples/qt4/examples/painting/transformations/window.cpp +share/examples/qt4/examples/painting/transformations/window.h +share/examples/qt4/examples/phonon/README +share/examples/qt4/examples/phonon/capabilities/capabilities +%%DEBUG%%share/examples/qt4/examples/phonon/capabilities/capabilities.debug +share/examples/qt4/examples/phonon/capabilities/capabilities.pro +share/examples/qt4/examples/phonon/capabilities/main.cpp +share/examples/qt4/examples/phonon/capabilities/window.cpp +share/examples/qt4/examples/phonon/capabilities/window.h +share/examples/qt4/examples/phonon/musicplayer/main.cpp +share/examples/qt4/examples/phonon/musicplayer/mainwindow.cpp +share/examples/qt4/examples/phonon/musicplayer/mainwindow.h +share/examples/qt4/examples/phonon/musicplayer/musicplayer +%%DEBUG%%share/examples/qt4/examples/phonon/musicplayer/musicplayer.debug +share/examples/qt4/examples/phonon/musicplayer/musicplayer.pro +share/examples/qt4/examples/phonon/phonon.pro +share/examples/qt4/examples/qtconcurrent/README +share/examples/qt4/examples/qtconcurrent/imagescaling/imagescaling +share/examples/qt4/examples/qtconcurrent/imagescaling/imagescaling.cpp +%%DEBUG%%share/examples/qt4/examples/qtconcurrent/imagescaling/imagescaling.debug +share/examples/qt4/examples/qtconcurrent/imagescaling/imagescaling.h +share/examples/qt4/examples/qtconcurrent/imagescaling/imagescaling.pro +share/examples/qt4/examples/qtconcurrent/imagescaling/main.cpp +share/examples/qt4/examples/qtconcurrent/map/main.cpp +share/examples/qt4/examples/qtconcurrent/map/map.pro +share/examples/qt4/examples/qtconcurrent/map/mapdemo +%%DEBUG%%share/examples/qt4/examples/qtconcurrent/map/mapdemo.debug +share/examples/qt4/examples/qtconcurrent/progressdialog/main.cpp +share/examples/qt4/examples/qtconcurrent/progressdialog/progressdialog +%%DEBUG%%share/examples/qt4/examples/qtconcurrent/progressdialog/progressdialog.debug +share/examples/qt4/examples/qtconcurrent/progressdialog/progressdialog.pro +share/examples/qt4/examples/qtconcurrent/qtconcurrent.pro +share/examples/qt4/examples/qtconcurrent/runfunction/main.cpp +share/examples/qt4/examples/qtconcurrent/runfunction/runfunction +%%DEBUG%%share/examples/qt4/examples/qtconcurrent/runfunction/runfunction.debug +share/examples/qt4/examples/qtconcurrent/runfunction/runfunction.pro +share/examples/qt4/examples/qtconcurrent/wordcount/main.cpp +share/examples/qt4/examples/qtconcurrent/wordcount/wordcount +%%DEBUG%%share/examples/qt4/examples/qtconcurrent/wordcount/wordcount.debug +share/examples/qt4/examples/qtconcurrent/wordcount/wordcount.pro +share/examples/qt4/examples/qtestlib/README +share/examples/qt4/examples/qtestlib/qtestlib.pro +share/examples/qt4/examples/qtestlib/tutorial1/testqstring.cpp +share/examples/qt4/examples/qtestlib/tutorial1/tutorial1 +%%DEBUG%%share/examples/qt4/examples/qtestlib/tutorial1/tutorial1.debug +share/examples/qt4/examples/qtestlib/tutorial1/tutorial1.pro +share/examples/qt4/examples/qtestlib/tutorial2/testqstring.cpp +share/examples/qt4/examples/qtestlib/tutorial2/tutorial2 +%%DEBUG%%share/examples/qt4/examples/qtestlib/tutorial2/tutorial2.debug +share/examples/qt4/examples/qtestlib/tutorial2/tutorial2.pro +share/examples/qt4/examples/qtestlib/tutorial3/testgui.cpp +share/examples/qt4/examples/qtestlib/tutorial3/tutorial3 +%%DEBUG%%share/examples/qt4/examples/qtestlib/tutorial3/tutorial3.debug +share/examples/qt4/examples/qtestlib/tutorial3/tutorial3.pro +share/examples/qt4/examples/qtestlib/tutorial4/testgui.cpp +share/examples/qt4/examples/qtestlib/tutorial4/tutorial4 +%%DEBUG%%share/examples/qt4/examples/qtestlib/tutorial4/tutorial4.debug +share/examples/qt4/examples/qtestlib/tutorial4/tutorial4.pro +share/examples/qt4/examples/richtext/README +share/examples/qt4/examples/richtext/calendar/calendar +%%DEBUG%%share/examples/qt4/examples/richtext/calendar/calendar.debug +share/examples/qt4/examples/richtext/calendar/calendar.pro +share/examples/qt4/examples/richtext/calendar/main.cpp +share/examples/qt4/examples/richtext/calendar/mainwindow.cpp +share/examples/qt4/examples/richtext/calendar/mainwindow.h +share/examples/qt4/examples/richtext/orderform/detailsdialog.cpp +share/examples/qt4/examples/richtext/orderform/detailsdialog.h +share/examples/qt4/examples/richtext/orderform/main.cpp +share/examples/qt4/examples/richtext/orderform/mainwindow.cpp +share/examples/qt4/examples/richtext/orderform/mainwindow.h +share/examples/qt4/examples/richtext/orderform/orderform +%%DEBUG%%share/examples/qt4/examples/richtext/orderform/orderform.debug +share/examples/qt4/examples/richtext/orderform/orderform.pro +share/examples/qt4/examples/richtext/richtext.pro +share/examples/qt4/examples/richtext/syntaxhighlighter/highlighter.cpp +share/examples/qt4/examples/richtext/syntaxhighlighter/highlighter.h +share/examples/qt4/examples/richtext/syntaxhighlighter/main.cpp +share/examples/qt4/examples/richtext/syntaxhighlighter/mainwindow.cpp +share/examples/qt4/examples/richtext/syntaxhighlighter/mainwindow.h +share/examples/qt4/examples/richtext/syntaxhighlighter/syntaxhighlighter +%%DEBUG%%share/examples/qt4/examples/richtext/syntaxhighlighter/syntaxhighlighter.debug +share/examples/qt4/examples/richtext/syntaxhighlighter/syntaxhighlighter.pro +share/examples/qt4/examples/script/README +share/examples/qt4/examples/script/calculator/calculator +%%DEBUG%%share/examples/qt4/examples/script/calculator/calculator.debug +share/examples/qt4/examples/script/calculator/calculator.js +share/examples/qt4/examples/script/calculator/calculator.pro +share/examples/qt4/examples/script/calculator/calculator.qrc +share/examples/qt4/examples/script/calculator/calculator.ui +share/examples/qt4/examples/script/calculator/main.cpp +share/examples/qt4/examples/script/context2d/context2d +share/examples/qt4/examples/script/context2d/context2d.cpp +%%DEBUG%%share/examples/qt4/examples/script/context2d/context2d.debug +share/examples/qt4/examples/script/context2d/context2d.h +share/examples/qt4/examples/script/context2d/context2d.pro +share/examples/qt4/examples/script/context2d/context2d.qrc +share/examples/qt4/examples/script/context2d/domimage.cpp +share/examples/qt4/examples/script/context2d/domimage.h +share/examples/qt4/examples/script/context2d/main.cpp +share/examples/qt4/examples/script/context2d/qcontext2dcanvas.cpp +share/examples/qt4/examples/script/context2d/qcontext2dcanvas.h +share/examples/qt4/examples/script/context2d/scripts/alpha.js +share/examples/qt4/examples/script/context2d/scripts/arc.js +share/examples/qt4/examples/script/context2d/scripts/bezier.js +share/examples/qt4/examples/script/context2d/scripts/clock.js +share/examples/qt4/examples/script/context2d/scripts/fill1.js +share/examples/qt4/examples/script/context2d/scripts/grad.js +share/examples/qt4/examples/script/context2d/scripts/linecap.js +share/examples/qt4/examples/script/context2d/scripts/linestye.js +share/examples/qt4/examples/script/context2d/scripts/moveto.js +share/examples/qt4/examples/script/context2d/scripts/moveto2.js +share/examples/qt4/examples/script/context2d/scripts/pacman.js +share/examples/qt4/examples/script/context2d/scripts/plasma.js +share/examples/qt4/examples/script/context2d/scripts/pong.js +share/examples/qt4/examples/script/context2d/scripts/quad.js +share/examples/qt4/examples/script/context2d/scripts/rgba.js +share/examples/qt4/examples/script/context2d/scripts/rotate.js +share/examples/qt4/examples/script/context2d/scripts/scale.js +share/examples/qt4/examples/script/context2d/scripts/stroke1.js +share/examples/qt4/examples/script/context2d/scripts/translate.js +share/examples/qt4/examples/script/context2d/window.cpp +share/examples/qt4/examples/script/context2d/window.h +share/examples/qt4/examples/script/customclass/bytearrayclass.cpp +share/examples/qt4/examples/script/customclass/bytearrayclass.h +share/examples/qt4/examples/script/customclass/bytearrayclass.pri +share/examples/qt4/examples/script/customclass/bytearrayprototype.cpp +share/examples/qt4/examples/script/customclass/bytearrayprototype.h +share/examples/qt4/examples/script/customclass/customclass +%%DEBUG%%share/examples/qt4/examples/script/customclass/customclass.debug +share/examples/qt4/examples/script/customclass/customclass.pro +share/examples/qt4/examples/script/customclass/main.cpp +share/examples/qt4/examples/script/defaultprototypes/code.js +share/examples/qt4/examples/script/defaultprototypes/defaultprototypes +%%DEBUG%%share/examples/qt4/examples/script/defaultprototypes/defaultprototypes.debug +share/examples/qt4/examples/script/defaultprototypes/defaultprototypes.pro +share/examples/qt4/examples/script/defaultprototypes/defaultprototypes.qrc +share/examples/qt4/examples/script/defaultprototypes/main.cpp +share/examples/qt4/examples/script/defaultprototypes/prototypes.cpp +share/examples/qt4/examples/script/defaultprototypes/prototypes.h +share/examples/qt4/examples/script/helloscript/helloscript +%%DEBUG%%share/examples/qt4/examples/script/helloscript/helloscript.debug +share/examples/qt4/examples/script/helloscript/helloscript.pro +share/examples/qt4/examples/script/helloscript/main.cpp +share/examples/qt4/examples/script/marshal/main.cpp +share/examples/qt4/examples/script/marshal/marshal +%%DEBUG%%share/examples/qt4/examples/script/marshal/marshal.debug +share/examples/qt4/examples/script/marshal/marshal.pro +share/examples/qt4/examples/script/qscript/main.cpp +share/examples/qt4/examples/script/qscript/qscript +%%DEBUG%%share/examples/qt4/examples/script/qscript/qscript.debug +share/examples/qt4/examples/script/qscript/qscript.pro +share/examples/qt4/examples/script/script.pro +share/examples/qt4/examples/script/tetrix/main.cpp +share/examples/qt4/examples/script/tetrix/tetrix +%%DEBUG%%share/examples/qt4/examples/script/tetrix/tetrix.debug +share/examples/qt4/examples/script/tetrix/tetrix.pro +share/examples/qt4/examples/script/tetrix/tetrix.qrc +share/examples/qt4/examples/script/tetrix/tetrixboard.cpp +share/examples/qt4/examples/script/tetrix/tetrixboard.h +share/examples/qt4/examples/script/tetrix/tetrixboard.js +share/examples/qt4/examples/script/tetrix/tetrixpiece.js +share/examples/qt4/examples/script/tetrix/tetrixwindow.js +share/examples/qt4/examples/script/tetrix/tetrixwindow.ui +share/examples/qt4/examples/sql/README +share/examples/qt4/examples/sql/cachedtable/cachedtable +%%DEBUG%%share/examples/qt4/examples/sql/cachedtable/cachedtable.debug +share/examples/qt4/examples/sql/cachedtable/cachedtable.pro +share/examples/qt4/examples/sql/cachedtable/main.cpp +share/examples/qt4/examples/sql/cachedtable/tableeditor.cpp +share/examples/qt4/examples/sql/cachedtable/tableeditor.h +share/examples/qt4/examples/sql/connection.h +share/examples/qt4/examples/sql/drilldown/drilldown +%%DEBUG%%share/examples/qt4/examples/sql/drilldown/drilldown.debug +share/examples/qt4/examples/sql/drilldown/drilldown.pro +share/examples/qt4/examples/sql/drilldown/drilldown.qrc +share/examples/qt4/examples/sql/drilldown/imageitem.cpp +share/examples/qt4/examples/sql/drilldown/imageitem.h +share/examples/qt4/examples/sql/drilldown/images/beijing.png +share/examples/qt4/examples/sql/drilldown/images/berlin.png +share/examples/qt4/examples/sql/drilldown/images/brisbane.png +share/examples/qt4/examples/sql/drilldown/images/munich.png +share/examples/qt4/examples/sql/drilldown/images/oslo.png +share/examples/qt4/examples/sql/drilldown/images/redwood.png +share/examples/qt4/examples/sql/drilldown/informationwindow.cpp +share/examples/qt4/examples/sql/drilldown/informationwindow.h +share/examples/qt4/examples/sql/drilldown/logo.png +share/examples/qt4/examples/sql/drilldown/main.cpp +share/examples/qt4/examples/sql/drilldown/view.cpp +share/examples/qt4/examples/sql/drilldown/view.h +share/examples/qt4/examples/sql/masterdetail/albumdetails.xml +share/examples/qt4/examples/sql/masterdetail/database.h +share/examples/qt4/examples/sql/masterdetail/dialog.cpp +share/examples/qt4/examples/sql/masterdetail/dialog.h +share/examples/qt4/examples/sql/masterdetail/images/icon.png +share/examples/qt4/examples/sql/masterdetail/images/image.png +share/examples/qt4/examples/sql/masterdetail/main.cpp +share/examples/qt4/examples/sql/masterdetail/mainwindow.cpp +share/examples/qt4/examples/sql/masterdetail/mainwindow.h +share/examples/qt4/examples/sql/masterdetail/masterdetail +%%DEBUG%%share/examples/qt4/examples/sql/masterdetail/masterdetail.debug +share/examples/qt4/examples/sql/masterdetail/masterdetail.pro +share/examples/qt4/examples/sql/masterdetail/masterdetail.qrc +share/examples/qt4/examples/sql/querymodel/customsqlmodel.cpp +share/examples/qt4/examples/sql/querymodel/customsqlmodel.h +share/examples/qt4/examples/sql/querymodel/editablesqlmodel.cpp +share/examples/qt4/examples/sql/querymodel/editablesqlmodel.h +share/examples/qt4/examples/sql/querymodel/main.cpp +share/examples/qt4/examples/sql/querymodel/querymodel +%%DEBUG%%share/examples/qt4/examples/sql/querymodel/querymodel.debug +share/examples/qt4/examples/sql/querymodel/querymodel.pro +share/examples/qt4/examples/sql/relationaltablemodel/relationaltablemodel +share/examples/qt4/examples/sql/relationaltablemodel/relationaltablemodel.cpp +%%DEBUG%%share/examples/qt4/examples/sql/relationaltablemodel/relationaltablemodel.debug +share/examples/qt4/examples/sql/relationaltablemodel/relationaltablemodel.pro +share/examples/qt4/examples/sql/sql.pro +share/examples/qt4/examples/sql/tablemodel/tablemodel +share/examples/qt4/examples/sql/tablemodel/tablemodel.cpp +%%DEBUG%%share/examples/qt4/examples/sql/tablemodel/tablemodel.debug +share/examples/qt4/examples/sql/tablemodel/tablemodel.pro +share/examples/qt4/examples/threads/README +share/examples/qt4/examples/threads/mandelbrot/main.cpp +share/examples/qt4/examples/threads/mandelbrot/mandelbrot +%%DEBUG%%share/examples/qt4/examples/threads/mandelbrot/mandelbrot.debug +share/examples/qt4/examples/threads/mandelbrot/mandelbrot.pro +share/examples/qt4/examples/threads/mandelbrot/mandelbrotwidget.cpp +share/examples/qt4/examples/threads/mandelbrot/mandelbrotwidget.h +share/examples/qt4/examples/threads/mandelbrot/renderthread.cpp +share/examples/qt4/examples/threads/mandelbrot/renderthread.h +share/examples/qt4/examples/threads/semaphores/semaphores +share/examples/qt4/examples/threads/semaphores/semaphores.cpp +%%DEBUG%%share/examples/qt4/examples/threads/semaphores/semaphores.debug +share/examples/qt4/examples/threads/semaphores/semaphores.pro +share/examples/qt4/examples/threads/threads.pro +share/examples/qt4/examples/threads/waitconditions/waitconditions +share/examples/qt4/examples/threads/waitconditions/waitconditions.cpp +%%DEBUG%%share/examples/qt4/examples/threads/waitconditions/waitconditions.debug +share/examples/qt4/examples/threads/waitconditions/waitconditions.pro +share/examples/qt4/examples/tools/README +share/examples/qt4/examples/tools/codecs/codecs +%%DEBUG%%share/examples/qt4/examples/tools/codecs/codecs.debug +share/examples/qt4/examples/tools/codecs/codecs.pro +share/examples/qt4/examples/tools/codecs/encodedfiles/iso-8859-1.txt +share/examples/qt4/examples/tools/codecs/encodedfiles/iso-8859-15.txt +share/examples/qt4/examples/tools/codecs/encodedfiles/utf-16.txt +share/examples/qt4/examples/tools/codecs/encodedfiles/utf-16be.txt +share/examples/qt4/examples/tools/codecs/encodedfiles/utf-16le.txt +share/examples/qt4/examples/tools/codecs/encodedfiles/utf-8.txt +share/examples/qt4/examples/tools/codecs/main.cpp +share/examples/qt4/examples/tools/codecs/mainwindow.cpp +share/examples/qt4/examples/tools/codecs/mainwindow.h +share/examples/qt4/examples/tools/codecs/previewform.cpp +share/examples/qt4/examples/tools/codecs/previewform.h +share/examples/qt4/examples/tools/completer/completer +%%DEBUG%%share/examples/qt4/examples/tools/completer/completer.debug +share/examples/qt4/examples/tools/completer/completer.pro +share/examples/qt4/examples/tools/completer/completer.qrc +share/examples/qt4/examples/tools/completer/dirmodel.cpp +share/examples/qt4/examples/tools/completer/dirmodel.h +share/examples/qt4/examples/tools/completer/main.cpp +share/examples/qt4/examples/tools/completer/mainwindow.cpp +share/examples/qt4/examples/tools/completer/mainwindow.h +share/examples/qt4/examples/tools/completer/resources/countries.txt +share/examples/qt4/examples/tools/completer/resources/wordlist.txt +share/examples/qt4/examples/tools/customcompleter/customcompleter +%%DEBUG%%share/examples/qt4/examples/tools/customcompleter/customcompleter.debug +share/examples/qt4/examples/tools/customcompleter/customcompleter.pro +share/examples/qt4/examples/tools/customcompleter/customcompleter.qrc +share/examples/qt4/examples/tools/customcompleter/main.cpp +share/examples/qt4/examples/tools/customcompleter/mainwindow.cpp +share/examples/qt4/examples/tools/customcompleter/mainwindow.h +share/examples/qt4/examples/tools/customcompleter/resources/wordlist.txt +share/examples/qt4/examples/tools/customcompleter/textedit.cpp +share/examples/qt4/examples/tools/customcompleter/textedit.h +share/examples/qt4/examples/tools/echoplugin/echoplugin +%%DEBUG%%share/examples/qt4/examples/tools/echoplugin/echoplugin.debug +share/examples/qt4/examples/tools/echoplugin/echoplugin.pro +share/examples/qt4/examples/tools/echoplugin/echowindow/echointerface.h +share/examples/qt4/examples/tools/echoplugin/echowindow/echowindow.cpp +share/examples/qt4/examples/tools/echoplugin/echowindow/echowindow.h +share/examples/qt4/examples/tools/echoplugin/echowindow/echowindow.pro +share/examples/qt4/examples/tools/echoplugin/echowindow/main.cpp +share/examples/qt4/examples/tools/echoplugin/plugin/echoplugin.cpp +share/examples/qt4/examples/tools/echoplugin/plugin/echoplugin.h +share/examples/qt4/examples/tools/echoplugin/plugin/libechoplugin.so +%%DEBUG%%share/examples/qt4/examples/tools/echoplugin/plugin/libechoplugin.so.debug +share/examples/qt4/examples/tools/echoplugin/plugin/plugin.pro +share/examples/qt4/examples/tools/i18n/i18n +%%DEBUG%%share/examples/qt4/examples/tools/i18n/i18n.debug +share/examples/qt4/examples/tools/i18n/i18n.pro +share/examples/qt4/examples/tools/i18n/i18n.qrc +share/examples/qt4/examples/tools/i18n/languagechooser.cpp +share/examples/qt4/examples/tools/i18n/languagechooser.h +share/examples/qt4/examples/tools/i18n/main.cpp +share/examples/qt4/examples/tools/i18n/mainwindow.cpp +share/examples/qt4/examples/tools/i18n/mainwindow.h +share/examples/qt4/examples/tools/i18n/translations/i18n_ar.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_ar.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_cs.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_cs.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_de.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_de.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_el.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_el.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_en.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_en.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_eo.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_eo.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_fr.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_fr.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_it.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_it.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_jp.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_jp.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_ko.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_ko.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_no.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_no.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_ru.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_ru.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_sv.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_sv.ts +share/examples/qt4/examples/tools/i18n/translations/i18n_zh.qm +share/examples/qt4/examples/tools/i18n/translations/i18n_zh.ts +share/examples/qt4/examples/tools/plugandpaint/interfaces.h +share/examples/qt4/examples/tools/plugandpaint/main.cpp +share/examples/qt4/examples/tools/plugandpaint/mainwindow.cpp +share/examples/qt4/examples/tools/plugandpaint/mainwindow.h +share/examples/qt4/examples/tools/plugandpaint/paintarea.cpp +share/examples/qt4/examples/tools/plugandpaint/paintarea.h +share/examples/qt4/examples/tools/plugandpaint/plugandpaint +%%DEBUG%%share/examples/qt4/examples/tools/plugandpaint/plugandpaint.debug +share/examples/qt4/examples/tools/plugandpaint/plugandpaint.pro +share/examples/qt4/examples/tools/plugandpaint/plugindialog.cpp +share/examples/qt4/examples/tools/plugandpaint/plugindialog.h +share/examples/qt4/examples/tools/plugandpaint/plugins/libpnp_basictools.a +share/examples/qt4/examples/tools/plugandpaint/plugins/libpnp_extrafilters.so +%%DEBUG%%share/examples/qt4/examples/tools/plugandpaint/plugins/libpnp_extrafilters.so.debug +share/examples/qt4/examples/tools/plugandpaintplugins/basictools/basictools.pro +share/examples/qt4/examples/tools/plugandpaintplugins/basictools/basictoolsplugin.cpp +share/examples/qt4/examples/tools/plugandpaintplugins/basictools/basictoolsplugin.h +share/examples/qt4/examples/tools/plugandpaintplugins/extrafilters/extrafilters.pro +share/examples/qt4/examples/tools/plugandpaintplugins/extrafilters/extrafiltersplugin.cpp +share/examples/qt4/examples/tools/plugandpaintplugins/extrafilters/extrafiltersplugin.h +share/examples/qt4/examples/tools/plugandpaintplugins/plugandpaintplugins.pro +share/examples/qt4/examples/tools/regexp/main.cpp +share/examples/qt4/examples/tools/regexp/regexp +%%DEBUG%%share/examples/qt4/examples/tools/regexp/regexp.debug +share/examples/qt4/examples/tools/regexp/regexp.pro +share/examples/qt4/examples/tools/regexp/regexpdialog.cpp +share/examples/qt4/examples/tools/regexp/regexpdialog.h +share/examples/qt4/examples/tools/settingseditor/inifiles/licensepage.ini +share/examples/qt4/examples/tools/settingseditor/inifiles/qsa.ini +share/examples/qt4/examples/tools/settingseditor/locationdialog.cpp +share/examples/qt4/examples/tools/settingseditor/locationdialog.h +share/examples/qt4/examples/tools/settingseditor/main.cpp +share/examples/qt4/examples/tools/settingseditor/mainwindow.cpp +share/examples/qt4/examples/tools/settingseditor/mainwindow.h +share/examples/qt4/examples/tools/settingseditor/settingseditor +%%DEBUG%%share/examples/qt4/examples/tools/settingseditor/settingseditor.debug +share/examples/qt4/examples/tools/settingseditor/settingseditor.pro +share/examples/qt4/examples/tools/settingseditor/settingstree.cpp +share/examples/qt4/examples/tools/settingseditor/settingstree.h +share/examples/qt4/examples/tools/settingseditor/variantdelegate.cpp +share/examples/qt4/examples/tools/settingseditor/variantdelegate.h +share/examples/qt4/examples/tools/styleplugin/plugin/plugin.pro +share/examples/qt4/examples/tools/styleplugin/plugin/simplestyle.cpp +share/examples/qt4/examples/tools/styleplugin/plugin/simplestyle.h +share/examples/qt4/examples/tools/styleplugin/plugin/simplestyleplugin.cpp +share/examples/qt4/examples/tools/styleplugin/plugin/simplestyleplugin.h +share/examples/qt4/examples/tools/styleplugin/styleplugin +%%DEBUG%%share/examples/qt4/examples/tools/styleplugin/styleplugin.debug +share/examples/qt4/examples/tools/styleplugin/styleplugin.pro +share/examples/qt4/examples/tools/styleplugin/styles/libsimplestyleplugin.so +%%DEBUG%%share/examples/qt4/examples/tools/styleplugin/styles/libsimplestyleplugin.so.debug +share/examples/qt4/examples/tools/styleplugin/stylewindow/main.cpp +share/examples/qt4/examples/tools/styleplugin/stylewindow/stylewindow.cpp +share/examples/qt4/examples/tools/styleplugin/stylewindow/stylewindow.h +share/examples/qt4/examples/tools/styleplugin/stylewindow/stylewindow.pro +share/examples/qt4/examples/tools/tools.pro +share/examples/qt4/examples/tools/treemodelcompleter/main.cpp +share/examples/qt4/examples/tools/treemodelcompleter/mainwindow.cpp +share/examples/qt4/examples/tools/treemodelcompleter/mainwindow.h +share/examples/qt4/examples/tools/treemodelcompleter/resources/treemodel.txt +share/examples/qt4/examples/tools/treemodelcompleter/treemodelcompleter +share/examples/qt4/examples/tools/treemodelcompleter/treemodelcompleter.cpp +%%DEBUG%%share/examples/qt4/examples/tools/treemodelcompleter/treemodelcompleter.debug +share/examples/qt4/examples/tools/treemodelcompleter/treemodelcompleter.h +share/examples/qt4/examples/tools/treemodelcompleter/treemodelcompleter.pro +share/examples/qt4/examples/tools/treemodelcompleter/treemodelcompleter.qrc +share/examples/qt4/examples/tools/undoframework/commands.cpp +share/examples/qt4/examples/tools/undoframework/commands.h +share/examples/qt4/examples/tools/undoframework/diagramitem.cpp +share/examples/qt4/examples/tools/undoframework/diagramitem.h +share/examples/qt4/examples/tools/undoframework/diagramscene.cpp +share/examples/qt4/examples/tools/undoframework/diagramscene.h +share/examples/qt4/examples/tools/undoframework/images/cross.png +share/examples/qt4/examples/tools/undoframework/main.cpp +share/examples/qt4/examples/tools/undoframework/mainwindow.cpp +share/examples/qt4/examples/tools/undoframework/mainwindow.h +share/examples/qt4/examples/tools/undoframework/undoframework +%%DEBUG%%share/examples/qt4/examples/tools/undoframework/undoframework.debug +share/examples/qt4/examples/tools/undoframework/undoframework.pro +share/examples/qt4/examples/tools/undoframework/undoframework.qrc +share/examples/qt4/examples/tutorial/addressbook/README +share/examples/qt4/examples/tutorials/README +share/examples/qt4/examples/tutorials/addressbook/part1/addressbook.cpp +share/examples/qt4/examples/tutorials/addressbook/part1/addressbook.h +share/examples/qt4/examples/tutorials/addressbook/part1/main.cpp +share/examples/qt4/examples/tutorials/addressbook/part1/part1 +%%DEBUG%%share/examples/qt4/examples/tutorials/addressbook/part1/part1.debug +share/examples/qt4/examples/tutorials/addressbook/part1/part1.pro +share/examples/qt4/examples/tutorials/addressbook/part2/addressbook.cpp +share/examples/qt4/examples/tutorials/addressbook/part2/addressbook.h +share/examples/qt4/examples/tutorials/addressbook/part2/main.cpp +share/examples/qt4/examples/tutorials/addressbook/part2/part2 +%%DEBUG%%share/examples/qt4/examples/tutorials/addressbook/part2/part2.debug +share/examples/qt4/examples/tutorials/addressbook/part2/part2.pro +share/examples/qt4/examples/tutorials/addressbook/part3/addressbook.cpp +share/examples/qt4/examples/tutorials/addressbook/part3/addressbook.h +share/examples/qt4/examples/tutorials/addressbook/part3/main.cpp +share/examples/qt4/examples/tutorials/addressbook/part3/part3 +%%DEBUG%%share/examples/qt4/examples/tutorials/addressbook/part3/part3.debug +share/examples/qt4/examples/tutorials/addressbook/part3/part3.pro +share/examples/qt4/examples/tutorials/addressbook/part4/addressbook.cpp +share/examples/qt4/examples/tutorials/addressbook/part4/addressbook.h +share/examples/qt4/examples/tutorials/addressbook/part4/main.cpp +share/examples/qt4/examples/tutorials/addressbook/part4/part4 +%%DEBUG%%share/examples/qt4/examples/tutorials/addressbook/part4/part4.debug +share/examples/qt4/examples/tutorials/addressbook/part4/part4.pro +share/examples/qt4/examples/tutorials/addressbook/part5/addressbook.cpp +share/examples/qt4/examples/tutorials/addressbook/part5/addressbook.h +share/examples/qt4/examples/tutorials/addressbook/part5/finddialog.cpp +share/examples/qt4/examples/tutorials/addressbook/part5/finddialog.h +share/examples/qt4/examples/tutorials/addressbook/part5/main.cpp +share/examples/qt4/examples/tutorials/addressbook/part5/part5 +%%DEBUG%%share/examples/qt4/examples/tutorials/addressbook/part5/part5.debug +share/examples/qt4/examples/tutorials/addressbook/part5/part5.pro +share/examples/qt4/examples/tutorials/addressbook/part6/addressbook.cpp +share/examples/qt4/examples/tutorials/addressbook/part6/addressbook.h +share/examples/qt4/examples/tutorials/addressbook/part6/finddialog.cpp +share/examples/qt4/examples/tutorials/addressbook/part6/finddialog.h +share/examples/qt4/examples/tutorials/addressbook/part6/main.cpp +share/examples/qt4/examples/tutorials/addressbook/part6/part6 +%%DEBUG%%share/examples/qt4/examples/tutorials/addressbook/part6/part6.debug +share/examples/qt4/examples/tutorials/addressbook/part6/part6.pro +share/examples/qt4/examples/tutorials/addressbook/part7/addressbook.cpp +share/examples/qt4/examples/tutorials/addressbook/part7/addressbook.h +share/examples/qt4/examples/tutorials/addressbook/part7/finddialog.cpp +share/examples/qt4/examples/tutorials/addressbook/part7/finddialog.h +share/examples/qt4/examples/tutorials/addressbook/part7/main.cpp +share/examples/qt4/examples/tutorials/addressbook/part7/part7 +%%DEBUG%%share/examples/qt4/examples/tutorials/addressbook/part7/part7.debug +share/examples/qt4/examples/tutorials/addressbook/part7/part7.pro +share/examples/qt4/examples/tutorials/tutorial/README +share/examples/qt4/examples/tutorials/tutorial/t1/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t1/t1 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t1/t1.debug +share/examples/qt4/examples/tutorials/tutorial/t1/t1.pro +share/examples/qt4/examples/tutorials/tutorial/t10/cannonfield.cpp +share/examples/qt4/examples/tutorials/tutorial/t10/cannonfield.h +share/examples/qt4/examples/tutorials/tutorial/t10/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t10/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t10/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t10/t10 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t10/t10.debug +share/examples/qt4/examples/tutorials/tutorial/t10/t10.pro +share/examples/qt4/examples/tutorials/tutorial/t11/cannonfield.cpp +share/examples/qt4/examples/tutorials/tutorial/t11/cannonfield.h +share/examples/qt4/examples/tutorials/tutorial/t11/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t11/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t11/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t11/t11 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t11/t11.debug +share/examples/qt4/examples/tutorials/tutorial/t11/t11.pro +share/examples/qt4/examples/tutorials/tutorial/t12/cannonfield.cpp +share/examples/qt4/examples/tutorials/tutorial/t12/cannonfield.h +share/examples/qt4/examples/tutorials/tutorial/t12/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t12/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t12/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t12/t12 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t12/t12.debug +share/examples/qt4/examples/tutorials/tutorial/t12/t12.pro +share/examples/qt4/examples/tutorials/tutorial/t13/cannonfield.cpp +share/examples/qt4/examples/tutorials/tutorial/t13/cannonfield.h +share/examples/qt4/examples/tutorials/tutorial/t13/gameboard.cpp +share/examples/qt4/examples/tutorials/tutorial/t13/gameboard.h +share/examples/qt4/examples/tutorials/tutorial/t13/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t13/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t13/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t13/t13 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t13/t13.debug +share/examples/qt4/examples/tutorials/tutorial/t13/t13.pro +share/examples/qt4/examples/tutorials/tutorial/t14/cannonfield.cpp +share/examples/qt4/examples/tutorials/tutorial/t14/cannonfield.h +share/examples/qt4/examples/tutorials/tutorial/t14/gameboard.cpp +share/examples/qt4/examples/tutorials/tutorial/t14/gameboard.h +share/examples/qt4/examples/tutorials/tutorial/t14/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t14/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t14/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t14/t14 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t14/t14.debug +share/examples/qt4/examples/tutorials/tutorial/t14/t14.pro +share/examples/qt4/examples/tutorials/tutorial/t2/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t2/t2 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t2/t2.debug +share/examples/qt4/examples/tutorials/tutorial/t2/t2.pro +share/examples/qt4/examples/tutorials/tutorial/t3/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t3/t3 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t3/t3.debug +share/examples/qt4/examples/tutorials/tutorial/t3/t3.pro +share/examples/qt4/examples/tutorials/tutorial/t4/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t4/t4 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t4/t4.debug +share/examples/qt4/examples/tutorials/tutorial/t4/t4.pro +share/examples/qt4/examples/tutorials/tutorial/t5/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t5/t5 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t5/t5.debug +share/examples/qt4/examples/tutorials/tutorial/t5/t5.pro +share/examples/qt4/examples/tutorials/tutorial/t6/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t6/t6 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t6/t6.debug +share/examples/qt4/examples/tutorials/tutorial/t6/t6.pro +share/examples/qt4/examples/tutorials/tutorial/t7/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t7/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t7/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t7/t7 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t7/t7.debug +share/examples/qt4/examples/tutorials/tutorial/t7/t7.pro +share/examples/qt4/examples/tutorials/tutorial/t8/cannonfield.cpp +share/examples/qt4/examples/tutorials/tutorial/t8/cannonfield.h +share/examples/qt4/examples/tutorials/tutorial/t8/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t8/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t8/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t8/t8 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t8/t8.debug +share/examples/qt4/examples/tutorials/tutorial/t8/t8.pro +share/examples/qt4/examples/tutorials/tutorial/t9/cannonfield.cpp +share/examples/qt4/examples/tutorials/tutorial/t9/cannonfield.h +share/examples/qt4/examples/tutorials/tutorial/t9/lcdrange.cpp +share/examples/qt4/examples/tutorials/tutorial/t9/lcdrange.h +share/examples/qt4/examples/tutorials/tutorial/t9/main.cpp +share/examples/qt4/examples/tutorials/tutorial/t9/t9 +%%DEBUG%%share/examples/qt4/examples/tutorials/tutorial/t9/t9.debug +share/examples/qt4/examples/tutorials/tutorial/t9/t9.pro +share/examples/qt4/examples/tutorials/tutorial/tutorial.pro +share/examples/qt4/examples/tutorials/tutorials.pro +share/examples/qt4/examples/uitools/multipleinheritance/calculatorform.cpp +share/examples/qt4/examples/uitools/multipleinheritance/calculatorform.h +share/examples/qt4/examples/uitools/multipleinheritance/calculatorform.ui +share/examples/qt4/examples/uitools/multipleinheritance/main.cpp +share/examples/qt4/examples/uitools/multipleinheritance/multipleinheritance +%%DEBUG%%share/examples/qt4/examples/uitools/multipleinheritance/multipleinheritance.debug +share/examples/qt4/examples/uitools/multipleinheritance/multipleinheritance.pro +share/examples/qt4/examples/uitools/textfinder/forms/input.txt +share/examples/qt4/examples/uitools/textfinder/forms/textfinder.ui +share/examples/qt4/examples/uitools/textfinder/main.cpp +share/examples/qt4/examples/uitools/textfinder/textfinder +share/examples/qt4/examples/uitools/textfinder/textfinder.cpp +%%DEBUG%%share/examples/qt4/examples/uitools/textfinder/textfinder.debug +share/examples/qt4/examples/uitools/textfinder/textfinder.h +share/examples/qt4/examples/uitools/textfinder/textfinder.pro +share/examples/qt4/examples/uitools/textfinder/textfinder.qrc +share/examples/qt4/examples/uitools/uitools.pro +share/examples/qt4/examples/webkit/previewer/main.cpp +share/examples/qt4/examples/webkit/previewer/mainwindow.cpp +share/examples/qt4/examples/webkit/previewer/mainwindow.h +share/examples/qt4/examples/webkit/previewer/previewer +share/examples/qt4/examples/webkit/previewer/previewer.cpp +%%DEBUG%%share/examples/qt4/examples/webkit/previewer/previewer.debug +share/examples/qt4/examples/webkit/previewer/previewer.h +share/examples/qt4/examples/webkit/previewer/previewer.pro +share/examples/qt4/examples/webkit/previewer/previewer.ui +share/examples/qt4/examples/widgets/README +share/examples/qt4/examples/widgets/analogclock/analogclock +share/examples/qt4/examples/widgets/analogclock/analogclock.cpp +%%DEBUG%%share/examples/qt4/examples/widgets/analogclock/analogclock.debug +share/examples/qt4/examples/widgets/analogclock/analogclock.h +share/examples/qt4/examples/widgets/analogclock/analogclock.pro +share/examples/qt4/examples/widgets/analogclock/main.cpp +share/examples/qt4/examples/widgets/calculator/button.cpp +share/examples/qt4/examples/widgets/calculator/button.h +share/examples/qt4/examples/widgets/calculator/calculator +share/examples/qt4/examples/widgets/calculator/calculator.cpp +%%DEBUG%%share/examples/qt4/examples/widgets/calculator/calculator.debug +share/examples/qt4/examples/widgets/calculator/calculator.h +share/examples/qt4/examples/widgets/calculator/calculator.pro +share/examples/qt4/examples/widgets/calculator/main.cpp +share/examples/qt4/examples/widgets/calendarwidget/calendarwidget +%%DEBUG%%share/examples/qt4/examples/widgets/calendarwidget/calendarwidget.debug +share/examples/qt4/examples/widgets/calendarwidget/calendarwidget.pro +share/examples/qt4/examples/widgets/calendarwidget/main.cpp +share/examples/qt4/examples/widgets/calendarwidget/window.cpp +share/examples/qt4/examples/widgets/calendarwidget/window.h +share/examples/qt4/examples/widgets/charactermap/charactermap +%%DEBUG%%share/examples/qt4/examples/widgets/charactermap/charactermap.debug +share/examples/qt4/examples/widgets/charactermap/charactermap.pro +share/examples/qt4/examples/widgets/charactermap/characterwidget.cpp +share/examples/qt4/examples/widgets/charactermap/characterwidget.h +share/examples/qt4/examples/widgets/charactermap/main.cpp +share/examples/qt4/examples/widgets/charactermap/mainwindow.cpp +share/examples/qt4/examples/widgets/charactermap/mainwindow.h +share/examples/qt4/examples/widgets/digitalclock/digitalclock +share/examples/qt4/examples/widgets/digitalclock/digitalclock.cpp +%%DEBUG%%share/examples/qt4/examples/widgets/digitalclock/digitalclock.debug +share/examples/qt4/examples/widgets/digitalclock/digitalclock.h +share/examples/qt4/examples/widgets/digitalclock/digitalclock.pro +share/examples/qt4/examples/widgets/digitalclock/main.cpp +share/examples/qt4/examples/widgets/groupbox/groupbox +%%DEBUG%%share/examples/qt4/examples/widgets/groupbox/groupbox.debug +share/examples/qt4/examples/widgets/groupbox/groupbox.pro +share/examples/qt4/examples/widgets/groupbox/main.cpp +share/examples/qt4/examples/widgets/groupbox/window.cpp +share/examples/qt4/examples/widgets/groupbox/window.h +share/examples/qt4/examples/widgets/icons/iconpreviewarea.cpp +share/examples/qt4/examples/widgets/icons/iconpreviewarea.h +share/examples/qt4/examples/widgets/icons/icons +%%DEBUG%%share/examples/qt4/examples/widgets/icons/icons.debug +share/examples/qt4/examples/widgets/icons/icons.pro +share/examples/qt4/examples/widgets/icons/iconsizespinbox.cpp +share/examples/qt4/examples/widgets/icons/iconsizespinbox.h +share/examples/qt4/examples/widgets/icons/imagedelegate.cpp +share/examples/qt4/examples/widgets/icons/imagedelegate.h +share/examples/qt4/examples/widgets/icons/images/designer.png +share/examples/qt4/examples/widgets/icons/images/find_disabled.png +share/examples/qt4/examples/widgets/icons/images/find_normal.png +share/examples/qt4/examples/widgets/icons/images/monkey_off_128x128.png +share/examples/qt4/examples/widgets/icons/images/monkey_off_16x16.png +share/examples/qt4/examples/widgets/icons/images/monkey_off_32x32.png +share/examples/qt4/examples/widgets/icons/images/monkey_off_64x64.png +share/examples/qt4/examples/widgets/icons/images/monkey_on_128x128.png +share/examples/qt4/examples/widgets/icons/images/monkey_on_16x16.png +share/examples/qt4/examples/widgets/icons/images/monkey_on_32x32.png +share/examples/qt4/examples/widgets/icons/images/monkey_on_64x64.png +share/examples/qt4/examples/widgets/icons/images/qtopia_16x16.png +share/examples/qt4/examples/widgets/icons/images/qtopia_32x32.png +share/examples/qt4/examples/widgets/icons/images/qtopia_48x48.png +share/examples/qt4/examples/widgets/icons/main.cpp +share/examples/qt4/examples/widgets/icons/mainwindow.cpp +share/examples/qt4/examples/widgets/icons/mainwindow.h +share/examples/qt4/examples/widgets/imageviewer/imageviewer +share/examples/qt4/examples/widgets/imageviewer/imageviewer.cpp +%%DEBUG%%share/examples/qt4/examples/widgets/imageviewer/imageviewer.debug +share/examples/qt4/examples/widgets/imageviewer/imageviewer.h +share/examples/qt4/examples/widgets/imageviewer/imageviewer.pro +share/examples/qt4/examples/widgets/imageviewer/main.cpp +share/examples/qt4/examples/widgets/lineedits/lineedits +%%DEBUG%%share/examples/qt4/examples/widgets/lineedits/lineedits.debug +share/examples/qt4/examples/widgets/lineedits/lineedits.pro +share/examples/qt4/examples/widgets/lineedits/main.cpp +share/examples/qt4/examples/widgets/lineedits/window.cpp +share/examples/qt4/examples/widgets/lineedits/window.h +share/examples/qt4/examples/widgets/movie/images/open.png +share/examples/qt4/examples/widgets/movie/images/pause.png +share/examples/qt4/examples/widgets/movie/images/play.png +share/examples/qt4/examples/widgets/movie/images/quit.png +share/examples/qt4/examples/widgets/movie/images/stop.png +share/examples/qt4/examples/widgets/movie/main.cpp +share/examples/qt4/examples/widgets/movie/movie +%%DEBUG%%share/examples/qt4/examples/widgets/movie/movie.debug +share/examples/qt4/examples/widgets/movie/movie.pro +share/examples/qt4/examples/widgets/movie/movie.qrc +share/examples/qt4/examples/widgets/movie/movieplayer.cpp +share/examples/qt4/examples/widgets/movie/movieplayer.h +share/examples/qt4/examples/widgets/scribble/main.cpp +share/examples/qt4/examples/widgets/scribble/mainwindow.cpp +share/examples/qt4/examples/widgets/scribble/mainwindow.h +share/examples/qt4/examples/widgets/scribble/scribble +%%DEBUG%%share/examples/qt4/examples/widgets/scribble/scribble.debug +share/examples/qt4/examples/widgets/scribble/scribble.pro +share/examples/qt4/examples/widgets/scribble/scribblearea.cpp +share/examples/qt4/examples/widgets/scribble/scribblearea.h +share/examples/qt4/examples/widgets/shapedclock/main.cpp +share/examples/qt4/examples/widgets/shapedclock/shapedclock +share/examples/qt4/examples/widgets/shapedclock/shapedclock.cpp +%%DEBUG%%share/examples/qt4/examples/widgets/shapedclock/shapedclock.debug +share/examples/qt4/examples/widgets/shapedclock/shapedclock.h +share/examples/qt4/examples/widgets/shapedclock/shapedclock.pro +share/examples/qt4/examples/widgets/sliders/main.cpp +share/examples/qt4/examples/widgets/sliders/sliders +%%DEBUG%%share/examples/qt4/examples/widgets/sliders/sliders.debug +share/examples/qt4/examples/widgets/sliders/sliders.pro +share/examples/qt4/examples/widgets/sliders/slidersgroup.cpp +share/examples/qt4/examples/widgets/sliders/slidersgroup.h +share/examples/qt4/examples/widgets/sliders/window.cpp +share/examples/qt4/examples/widgets/sliders/window.h +share/examples/qt4/examples/widgets/spinboxes/main.cpp +share/examples/qt4/examples/widgets/spinboxes/spinboxes +%%DEBUG%%share/examples/qt4/examples/widgets/spinboxes/spinboxes.debug +share/examples/qt4/examples/widgets/spinboxes/spinboxes.pro +share/examples/qt4/examples/widgets/spinboxes/window.cpp +share/examples/qt4/examples/widgets/spinboxes/window.h +share/examples/qt4/examples/widgets/styles/images/woodbackground.png +share/examples/qt4/examples/widgets/styles/images/woodbutton.png +share/examples/qt4/examples/widgets/styles/main.cpp +share/examples/qt4/examples/widgets/styles/norwegianwoodstyle.cpp +share/examples/qt4/examples/widgets/styles/norwegianwoodstyle.h +share/examples/qt4/examples/widgets/styles/styles +%%DEBUG%%share/examples/qt4/examples/widgets/styles/styles.debug +share/examples/qt4/examples/widgets/styles/styles.pro +share/examples/qt4/examples/widgets/styles/styles.qrc +share/examples/qt4/examples/widgets/styles/widgetgallery.cpp +share/examples/qt4/examples/widgets/styles/widgetgallery.h +share/examples/qt4/examples/widgets/stylesheet/images/checkbox_checked.png +share/examples/qt4/examples/widgets/stylesheet/images/checkbox_checked_hover.png +share/examples/qt4/examples/widgets/stylesheet/images/checkbox_checked_pressed.png +share/examples/qt4/examples/widgets/stylesheet/images/checkbox_unchecked.png +share/examples/qt4/examples/widgets/stylesheet/images/checkbox_unchecked_hover.png +share/examples/qt4/examples/widgets/stylesheet/images/checkbox_unchecked_pressed.png +share/examples/qt4/examples/widgets/stylesheet/images/down_arrow.png +share/examples/qt4/examples/widgets/stylesheet/images/down_arrow_disabled.png +share/examples/qt4/examples/widgets/stylesheet/images/frame.png +share/examples/qt4/examples/widgets/stylesheet/images/pagefold.png +share/examples/qt4/examples/widgets/stylesheet/images/pushbutton.png +share/examples/qt4/examples/widgets/stylesheet/images/pushbutton_hover.png +share/examples/qt4/examples/widgets/stylesheet/images/pushbutton_pressed.png +share/examples/qt4/examples/widgets/stylesheet/images/radiobutton_checked.png +share/examples/qt4/examples/widgets/stylesheet/images/radiobutton_checked_hover.png +share/examples/qt4/examples/widgets/stylesheet/images/radiobutton_checked_pressed.png +share/examples/qt4/examples/widgets/stylesheet/images/radiobutton_unchecked.png +share/examples/qt4/examples/widgets/stylesheet/images/radiobutton_unchecked_hover.png +share/examples/qt4/examples/widgets/stylesheet/images/radiobutton_unchecked_pressed.png +share/examples/qt4/examples/widgets/stylesheet/images/sizegrip.png +share/examples/qt4/examples/widgets/stylesheet/images/spindown.png +share/examples/qt4/examples/widgets/stylesheet/images/spindown_hover.png +share/examples/qt4/examples/widgets/stylesheet/images/spindown_off.png +share/examples/qt4/examples/widgets/stylesheet/images/spindown_pressed.png +share/examples/qt4/examples/widgets/stylesheet/images/spinup.png +share/examples/qt4/examples/widgets/stylesheet/images/spinup_hover.png +share/examples/qt4/examples/widgets/stylesheet/images/spinup_off.png +share/examples/qt4/examples/widgets/stylesheet/images/spinup_pressed.png +share/examples/qt4/examples/widgets/stylesheet/images/up_arrow.png +share/examples/qt4/examples/widgets/stylesheet/images/up_arrow_disabled.png +share/examples/qt4/examples/widgets/stylesheet/layouts/default.ui +share/examples/qt4/examples/widgets/stylesheet/layouts/pagefold.ui +share/examples/qt4/examples/widgets/stylesheet/main.cpp +share/examples/qt4/examples/widgets/stylesheet/mainwindow.cpp +share/examples/qt4/examples/widgets/stylesheet/mainwindow.h +share/examples/qt4/examples/widgets/stylesheet/mainwindow.ui +share/examples/qt4/examples/widgets/stylesheet/qss/coffee.qss +share/examples/qt4/examples/widgets/stylesheet/qss/default.qss +share/examples/qt4/examples/widgets/stylesheet/qss/pagefold.qss +share/examples/qt4/examples/widgets/stylesheet/stylesheet +%%DEBUG%%share/examples/qt4/examples/widgets/stylesheet/stylesheet.debug +share/examples/qt4/examples/widgets/stylesheet/stylesheet.pro +share/examples/qt4/examples/widgets/stylesheet/stylesheet.qrc +share/examples/qt4/examples/widgets/stylesheet/stylesheeteditor.cpp +share/examples/qt4/examples/widgets/stylesheet/stylesheeteditor.h +share/examples/qt4/examples/widgets/stylesheet/stylesheeteditor.ui +share/examples/qt4/examples/widgets/tablet/main.cpp +share/examples/qt4/examples/widgets/tablet/mainwindow.cpp +share/examples/qt4/examples/widgets/tablet/mainwindow.h +share/examples/qt4/examples/widgets/tablet/tablet +%%DEBUG%%share/examples/qt4/examples/widgets/tablet/tablet.debug +share/examples/qt4/examples/widgets/tablet/tablet.pro +share/examples/qt4/examples/widgets/tablet/tabletapplication.cpp +share/examples/qt4/examples/widgets/tablet/tabletapplication.h +share/examples/qt4/examples/widgets/tablet/tabletcanvas.cpp +share/examples/qt4/examples/widgets/tablet/tabletcanvas.h +share/examples/qt4/examples/widgets/tetrix/main.cpp +share/examples/qt4/examples/widgets/tetrix/tetrix +%%DEBUG%%share/examples/qt4/examples/widgets/tetrix/tetrix.debug +share/examples/qt4/examples/widgets/tetrix/tetrix.pro +share/examples/qt4/examples/widgets/tetrix/tetrixboard.cpp +share/examples/qt4/examples/widgets/tetrix/tetrixboard.h +share/examples/qt4/examples/widgets/tetrix/tetrixpiece.cpp +share/examples/qt4/examples/widgets/tetrix/tetrixpiece.h +share/examples/qt4/examples/widgets/tetrix/tetrixwindow.cpp +share/examples/qt4/examples/widgets/tetrix/tetrixwindow.h +share/examples/qt4/examples/widgets/tooltips/images/circle.png +share/examples/qt4/examples/widgets/tooltips/images/square.png +share/examples/qt4/examples/widgets/tooltips/images/triangle.png +share/examples/qt4/examples/widgets/tooltips/main.cpp +share/examples/qt4/examples/widgets/tooltips/shapeitem.cpp +share/examples/qt4/examples/widgets/tooltips/shapeitem.h +share/examples/qt4/examples/widgets/tooltips/sortingbox.cpp +share/examples/qt4/examples/widgets/tooltips/sortingbox.h +share/examples/qt4/examples/widgets/tooltips/tooltips +%%DEBUG%%share/examples/qt4/examples/widgets/tooltips/tooltips.debug +share/examples/qt4/examples/widgets/tooltips/tooltips.pro +share/examples/qt4/examples/widgets/tooltips/tooltips.qrc +share/examples/qt4/examples/widgets/validators/ledoff.png +share/examples/qt4/examples/widgets/validators/ledon.png +share/examples/qt4/examples/widgets/validators/ledwidget.cpp +share/examples/qt4/examples/widgets/validators/ledwidget.h +share/examples/qt4/examples/widgets/validators/localeselector.cpp +share/examples/qt4/examples/widgets/validators/localeselector.h +share/examples/qt4/examples/widgets/validators/main.cpp +share/examples/qt4/examples/widgets/validators/validators +%%DEBUG%%share/examples/qt4/examples/widgets/validators/validators.debug +share/examples/qt4/examples/widgets/validators/validators.pro +share/examples/qt4/examples/widgets/validators/validators.qrc +share/examples/qt4/examples/widgets/validators/validators.ui +share/examples/qt4/examples/widgets/widgets.pro +share/examples/qt4/examples/widgets/wiggly/dialog.cpp +share/examples/qt4/examples/widgets/wiggly/dialog.h +share/examples/qt4/examples/widgets/wiggly/main.cpp +share/examples/qt4/examples/widgets/wiggly/wiggly +%%DEBUG%%share/examples/qt4/examples/widgets/wiggly/wiggly.debug +share/examples/qt4/examples/widgets/wiggly/wiggly.pro +share/examples/qt4/examples/widgets/wiggly/wigglywidget.cpp +share/examples/qt4/examples/widgets/wiggly/wigglywidget.h +share/examples/qt4/examples/widgets/windowflags/controllerwindow.cpp +share/examples/qt4/examples/widgets/windowflags/controllerwindow.h +share/examples/qt4/examples/widgets/windowflags/main.cpp +share/examples/qt4/examples/widgets/windowflags/previewwindow.cpp +share/examples/qt4/examples/widgets/windowflags/previewwindow.h +share/examples/qt4/examples/widgets/windowflags/windowflags +%%DEBUG%%share/examples/qt4/examples/widgets/windowflags/windowflags.debug +share/examples/qt4/examples/widgets/windowflags/windowflags.pro +share/examples/qt4/examples/xml/README +share/examples/qt4/examples/xml/dombookmarks/dombookmarks +%%DEBUG%%share/examples/qt4/examples/xml/dombookmarks/dombookmarks.debug +share/examples/qt4/examples/xml/dombookmarks/dombookmarks.pro +share/examples/qt4/examples/xml/dombookmarks/frank.xbel +share/examples/qt4/examples/xml/dombookmarks/jennifer.xbel +share/examples/qt4/examples/xml/dombookmarks/main.cpp +share/examples/qt4/examples/xml/dombookmarks/mainwindow.cpp +share/examples/qt4/examples/xml/dombookmarks/mainwindow.h +share/examples/qt4/examples/xml/dombookmarks/xbeltree.cpp +share/examples/qt4/examples/xml/dombookmarks/xbeltree.h +share/examples/qt4/examples/xml/rsslisting/main.cpp +share/examples/qt4/examples/xml/rsslisting/rsslisting +share/examples/qt4/examples/xml/rsslisting/rsslisting.cpp +%%DEBUG%%share/examples/qt4/examples/xml/rsslisting/rsslisting.debug +share/examples/qt4/examples/xml/rsslisting/rsslisting.h +share/examples/qt4/examples/xml/rsslisting/rsslisting.pro +share/examples/qt4/examples/xml/saxbookmarks/frank.xbel +share/examples/qt4/examples/xml/saxbookmarks/jennifer.xbel +share/examples/qt4/examples/xml/saxbookmarks/main.cpp +share/examples/qt4/examples/xml/saxbookmarks/mainwindow.cpp +share/examples/qt4/examples/xml/saxbookmarks/mainwindow.h +share/examples/qt4/examples/xml/saxbookmarks/saxbookmarks +%%DEBUG%%share/examples/qt4/examples/xml/saxbookmarks/saxbookmarks.debug +share/examples/qt4/examples/xml/saxbookmarks/saxbookmarks.pro +share/examples/qt4/examples/xml/saxbookmarks/xbelgenerator.cpp +share/examples/qt4/examples/xml/saxbookmarks/xbelgenerator.h +share/examples/qt4/examples/xml/saxbookmarks/xbelhandler.cpp +share/examples/qt4/examples/xml/saxbookmarks/xbelhandler.h +share/examples/qt4/examples/xml/streambookmarks/frank.xbel +share/examples/qt4/examples/xml/streambookmarks/jennifer.xbel +share/examples/qt4/examples/xml/streambookmarks/main.cpp +share/examples/qt4/examples/xml/streambookmarks/mainwindow.cpp +share/examples/qt4/examples/xml/streambookmarks/mainwindow.h +share/examples/qt4/examples/xml/streambookmarks/streambookmarks +%%DEBUG%%share/examples/qt4/examples/xml/streambookmarks/streambookmarks.debug +share/examples/qt4/examples/xml/streambookmarks/streambookmarks.pro +share/examples/qt4/examples/xml/streambookmarks/xbelreader.cpp +share/examples/qt4/examples/xml/streambookmarks/xbelreader.h +share/examples/qt4/examples/xml/streambookmarks/xbelwriter.cpp +share/examples/qt4/examples/xml/streambookmarks/xbelwriter.h +share/examples/qt4/examples/xml/xml.pro +share/examples/qt4/examples/xml/xmlstreamlint/main.cpp +share/examples/qt4/examples/xml/xmlstreamlint/xmlstreamlint +%%DEBUG%%share/examples/qt4/examples/xml/xmlstreamlint/xmlstreamlint.debug +share/examples/qt4/examples/xml/xmlstreamlint/xmlstreamlint.pro +@dirrm share/examples/qt4/examples/xml/xmlstreamlint +@dirrm share/examples/qt4/examples/xml/streambookmarks +@dirrm share/examples/qt4/examples/xml/saxbookmarks +@dirrm share/examples/qt4/examples/xml/rsslisting +@dirrm share/examples/qt4/examples/xml/dombookmarks +@dirrm share/examples/qt4/examples/xml +@dirrm share/examples/qt4/examples/widgets/windowflags +@dirrm share/examples/qt4/examples/widgets/wiggly +@dirrm share/examples/qt4/examples/widgets/validators +@dirrm share/examples/qt4/examples/widgets/tooltips/images +@dirrm share/examples/qt4/examples/widgets/tooltips +@dirrm share/examples/qt4/examples/widgets/tetrix +@dirrm share/examples/qt4/examples/widgets/tablet +@dirrm share/examples/qt4/examples/widgets/stylesheet/qss +@dirrm share/examples/qt4/examples/widgets/stylesheet/layouts +@dirrm share/examples/qt4/examples/widgets/stylesheet/images +@dirrm share/examples/qt4/examples/widgets/stylesheet +@dirrm share/examples/qt4/examples/widgets/styles/images +@dirrm share/examples/qt4/examples/widgets/styles +@dirrm share/examples/qt4/examples/widgets/spinboxes +@dirrm share/examples/qt4/examples/widgets/sliders +@dirrm share/examples/qt4/examples/widgets/shapedclock +@dirrm share/examples/qt4/examples/widgets/scribble +@dirrm share/examples/qt4/examples/widgets/movie/images +@dirrm share/examples/qt4/examples/widgets/movie +@dirrm share/examples/qt4/examples/widgets/lineedits +@dirrm share/examples/qt4/examples/widgets/imageviewer +@dirrm share/examples/qt4/examples/widgets/icons/images +@dirrm share/examples/qt4/examples/widgets/icons +@dirrm share/examples/qt4/examples/widgets/groupbox +@dirrm share/examples/qt4/examples/widgets/digitalclock +@dirrm share/examples/qt4/examples/widgets/charactermap +@dirrm share/examples/qt4/examples/widgets/calendarwidget +@dirrm share/examples/qt4/examples/widgets/calculator +@dirrm share/examples/qt4/examples/widgets/analogclock +@dirrm share/examples/qt4/examples/widgets +@dirrm share/examples/qt4/examples/webkit/previewer +@dirrm share/examples/qt4/examples/webkit +@dirrm share/examples/qt4/examples/uitools/textfinder/forms +@dirrm share/examples/qt4/examples/uitools/textfinder +@dirrm share/examples/qt4/examples/uitools/multipleinheritance +@dirrm share/examples/qt4/examples/uitools +@dirrm share/examples/qt4/examples/tutorials/tutorial/t9 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t8 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t7 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t6 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t5 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t4 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t3 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t2 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t14 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t13 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t12 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t11 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t10 +@dirrm share/examples/qt4/examples/tutorials/tutorial/t1 +@dirrm share/examples/qt4/examples/tutorials/tutorial +@dirrm share/examples/qt4/examples/tutorials/addressbook/part7 +@dirrm share/examples/qt4/examples/tutorials/addressbook/part6 +@dirrm share/examples/qt4/examples/tutorials/addressbook/part5 +@dirrm share/examples/qt4/examples/tutorials/addressbook/part4 +@dirrm share/examples/qt4/examples/tutorials/addressbook/part3 +@dirrm share/examples/qt4/examples/tutorials/addressbook/part2 +@dirrm share/examples/qt4/examples/tutorials/addressbook/part1 +@dirrm share/examples/qt4/examples/tutorials/addressbook +@dirrm share/examples/qt4/examples/tutorials +@dirrm share/examples/qt4/examples/tutorial/addressbook +@dirrm share/examples/qt4/examples/tutorial +@dirrm share/examples/qt4/examples/tools/undoframework/images +@dirrm share/examples/qt4/examples/tools/undoframework +@dirrm share/examples/qt4/examples/tools/treemodelcompleter/resources +@dirrm share/examples/qt4/examples/tools/treemodelcompleter +@dirrm share/examples/qt4/examples/tools/styleplugin/stylewindow +@dirrm share/examples/qt4/examples/tools/styleplugin/styles +@dirrm share/examples/qt4/examples/tools/styleplugin/plugin +@dirrm share/examples/qt4/examples/tools/styleplugin +@dirrm share/examples/qt4/examples/tools/settingseditor/inifiles +@dirrm share/examples/qt4/examples/tools/settingseditor +@dirrm share/examples/qt4/examples/tools/regexp +@dirrm share/examples/qt4/examples/tools/plugandpaintplugins/extrafilters +@dirrm share/examples/qt4/examples/tools/plugandpaintplugins/basictools +@dirrm share/examples/qt4/examples/tools/plugandpaintplugins +@dirrm share/examples/qt4/examples/tools/plugandpaint/plugins +@dirrm share/examples/qt4/examples/tools/plugandpaint +@dirrm share/examples/qt4/examples/tools/i18n/translations +@dirrm share/examples/qt4/examples/tools/i18n +@dirrm share/examples/qt4/examples/tools/echoplugin/plugin +@dirrm share/examples/qt4/examples/tools/echoplugin/echowindow +@dirrm share/examples/qt4/examples/tools/echoplugin +@dirrm share/examples/qt4/examples/tools/customcompleter/resources +@dirrm share/examples/qt4/examples/tools/customcompleter +@dirrm share/examples/qt4/examples/tools/completer/resources +@dirrm share/examples/qt4/examples/tools/completer +@dirrm share/examples/qt4/examples/tools/codecs/encodedfiles +@dirrm share/examples/qt4/examples/tools/codecs +@dirrm share/examples/qt4/examples/tools +@dirrm share/examples/qt4/examples/threads/waitconditions +@dirrm share/examples/qt4/examples/threads/semaphores +@dirrm share/examples/qt4/examples/threads/mandelbrot +@dirrm share/examples/qt4/examples/threads +@dirrm share/examples/qt4/examples/sql/tablemodel +@dirrm share/examples/qt4/examples/sql/relationaltablemodel +@dirrm share/examples/qt4/examples/sql/querymodel +@dirrm share/examples/qt4/examples/sql/masterdetail/images +@dirrm share/examples/qt4/examples/sql/masterdetail +@dirrm share/examples/qt4/examples/sql/drilldown/images +@dirrm share/examples/qt4/examples/sql/drilldown +@dirrm share/examples/qt4/examples/sql/cachedtable +@dirrm share/examples/qt4/examples/sql +@dirrm share/examples/qt4/examples/script/tetrix +@dirrm share/examples/qt4/examples/script/qscript +@dirrm share/examples/qt4/examples/script/marshal +@dirrm share/examples/qt4/examples/script/helloscript +@dirrm share/examples/qt4/examples/script/defaultprototypes +@dirrm share/examples/qt4/examples/script/customclass +@dirrm share/examples/qt4/examples/script/context2d/scripts +@dirrm share/examples/qt4/examples/script/context2d +@dirrm share/examples/qt4/examples/script/calculator +@dirrm share/examples/qt4/examples/script +@dirrm share/examples/qt4/examples/richtext/syntaxhighlighter +@dirrm share/examples/qt4/examples/richtext/orderform +@dirrm share/examples/qt4/examples/richtext/calendar +@dirrm share/examples/qt4/examples/richtext +@dirrm share/examples/qt4/examples/qtestlib/tutorial4 +@dirrm share/examples/qt4/examples/qtestlib/tutorial3 +@dirrm share/examples/qt4/examples/qtestlib/tutorial2 +@dirrm share/examples/qt4/examples/qtestlib/tutorial1 +@dirrm share/examples/qt4/examples/qtestlib +@dirrm share/examples/qt4/examples/qtconcurrent/wordcount +@dirrm share/examples/qt4/examples/qtconcurrent/runfunction +@dirrm share/examples/qt4/examples/qtconcurrent/progressdialog +@dirrm share/examples/qt4/examples/qtconcurrent/map +@dirrm share/examples/qt4/examples/qtconcurrent/imagescaling +@dirrm share/examples/qt4/examples/qtconcurrent +@dirrm share/examples/qt4/examples/phonon/musicplayer +@dirrm share/examples/qt4/examples/phonon/capabilities +@dirrm share/examples/qt4/examples/phonon +@dirrm share/examples/qt4/examples/painting/transformations +@dirrm share/examples/qt4/examples/painting/svgviewer/files +@dirrm share/examples/qt4/examples/painting/svgviewer +@dirrm share/examples/qt4/examples/painting/painterpaths +@dirrm share/examples/qt4/examples/painting/imagecomposition/images +@dirrm share/examples/qt4/examples/painting/imagecomposition +@dirrm share/examples/qt4/examples/painting/fontsampler +@dirrm share/examples/qt4/examples/painting/concentriccircles +@dirrm share/examples/qt4/examples/painting/basicdrawing/images +@dirrm share/examples/qt4/examples/painting/basicdrawing +@dirrm share/examples/qt4/examples/painting +@dirrm share/examples/qt4/examples/opengl/textures/images +@dirrm share/examples/qt4/examples/opengl/textures +@dirrm share/examples/qt4/examples/opengl/samplebuffers +@dirrm share/examples/qt4/examples/opengl/pbuffers2 +@dirrm share/examples/qt4/examples/opengl/pbuffers +@dirrm share/examples/qt4/examples/opengl/overpainting +@dirrm share/examples/qt4/examples/opengl/hellogl +@dirrm share/examples/qt4/examples/opengl/grabber +@dirrm share/examples/qt4/examples/opengl/framebufferobject2 +@dirrm share/examples/qt4/examples/opengl/framebufferobject +@dirrm share/examples/qt4/examples/opengl/2dpainting +@dirrm share/examples/qt4/examples/opengl +@dirrm share/examples/qt4/examples/network/torrent/icons +@dirrm share/examples/qt4/examples/network/torrent/forms +@dirrm share/examples/qt4/examples/network/torrent/3rdparty +@dirrm share/examples/qt4/examples/network/torrent +@dirrm share/examples/qt4/examples/network/threadedfortuneserver +@dirrm share/examples/qt4/examples/network/securesocketclient +@dirrm share/examples/qt4/examples/network/loopback +@dirrm share/examples/qt4/examples/network/http +@dirrm share/examples/qt4/examples/network/ftp/images +@dirrm share/examples/qt4/examples/network/ftp +@dirrm share/examples/qt4/examples/network/fortuneserver +@dirrm share/examples/qt4/examples/network/fortuneclient +@dirrm share/examples/qt4/examples/network/downloadmanager +@dirrm share/examples/qt4/examples/network/download +@dirrm share/examples/qt4/examples/network/chat +@dirrm share/examples/qt4/examples/network/broadcastsender +@dirrm share/examples/qt4/examples/network/broadcastreceiver +@dirrm share/examples/qt4/examples/network/blockingfortuneclient +@dirrm share/examples/qt4/examples/network +@dirrm share/examples/qt4/examples/mainwindows/sdi/images +@dirrm share/examples/qt4/examples/mainwindows/sdi +@dirrm share/examples/qt4/examples/mainwindows/recentfiles +@dirrm share/examples/qt4/examples/mainwindows/menus +@dirrm share/examples/qt4/examples/mainwindows/mdi/images +@dirrm share/examples/qt4/examples/mainwindows/mdi +@dirrm share/examples/qt4/examples/mainwindows/dockwidgets/images +@dirrm share/examples/qt4/examples/mainwindows/dockwidgets +@dirrm share/examples/qt4/examples/mainwindows/application/images +@dirrm share/examples/qt4/examples/mainwindows/application +@dirrm share/examples/qt4/examples/mainwindows +@dirrm share/examples/qt4/examples/linguist/trollprint +@dirrm share/examples/qt4/examples/linguist/hellotr +@dirrm share/examples/qt4/examples/linguist/arrowpad +@dirrm share/examples/qt4/examples/linguist +@dirrm share/examples/qt4/examples/layouts/flowlayout +@dirrm share/examples/qt4/examples/layouts/dynamiclayouts +@dirrm share/examples/qt4/examples/layouts/borderlayout +@dirrm share/examples/qt4/examples/layouts/basiclayouts +@dirrm share/examples/qt4/examples/layouts +@dirrm share/examples/qt4/examples/itemviews/stardelegate +@dirrm share/examples/qt4/examples/itemviews/spinboxdelegate +@dirrm share/examples/qt4/examples/itemviews/simplewidgetmapper +@dirrm share/examples/qt4/examples/itemviews/simpletreemodel +@dirrm share/examples/qt4/examples/itemviews/simpledommodel +@dirrm share/examples/qt4/examples/itemviews/puzzle +@dirrm share/examples/qt4/examples/itemviews/pixelator/images +@dirrm share/examples/qt4/examples/itemviews/pixelator +@dirrm share/examples/qt4/examples/itemviews/editabletreemodel +@dirrm share/examples/qt4/examples/itemviews/dirview +@dirrm share/examples/qt4/examples/itemviews/customsortfiltermodel +@dirrm share/examples/qt4/examples/itemviews/coloreditorfactory +@dirrm share/examples/qt4/examples/itemviews/chart +@dirrm share/examples/qt4/examples/itemviews/basicsortfiltermodel +@dirrm share/examples/qt4/examples/itemviews/addressbook +@dirrm share/examples/qt4/examples/itemviews +@dirrm share/examples/qt4/examples/ipc/sharedmemory +@dirrm share/examples/qt4/examples/ipc/localfortuneserver +@dirrm share/examples/qt4/examples/ipc/localfortuneclient +@dirrm share/examples/qt4/examples/ipc +@dirrm share/examples/qt4/examples/help/simpletextviewer/documentation/images +@dirrm share/examples/qt4/examples/help/simpletextviewer/documentation +@dirrm share/examples/qt4/examples/help/simpletextviewer +@dirrm share/examples/qt4/examples/help/remotecontrol +@dirrm share/examples/qt4/examples/help/contextsensitivehelp/doc +@dirrm share/examples/qt4/examples/help/contextsensitivehelp +@dirrm share/examples/qt4/examples/help +@dirrm share/examples/qt4/examples/graphicsview/portedcanvas +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/ship +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/shield +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock3 +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock2 +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/rock1 +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/powerups +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/missile +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/exhaust +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites/bits +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sprites +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids/sounds +@dirrm share/examples/qt4/examples/graphicsview/portedasteroids +@dirrm share/examples/qt4/examples/graphicsview/padnavigator/images +@dirrm share/examples/qt4/examples/graphicsview/padnavigator +@dirrm share/examples/qt4/examples/graphicsview/elasticnodes +@dirrm share/examples/qt4/examples/graphicsview/dragdroprobot/images +@dirrm share/examples/qt4/examples/graphicsview/dragdroprobot +@dirrm share/examples/qt4/examples/graphicsview/diagramscene/images +@dirrm share/examples/qt4/examples/graphicsview/diagramscene +@dirrm share/examples/qt4/examples/graphicsview/collidingmice/images +@dirrm share/examples/qt4/examples/graphicsview/collidingmice +@dirrm share/examples/qt4/examples/graphicsview +@dirrm share/examples/qt4/examples/draganddrop/puzzle +@dirrm share/examples/qt4/examples/draganddrop/fridgemagnets +@dirrm share/examples/qt4/examples/draganddrop/dropsite +@dirrm share/examples/qt4/examples/draganddrop/draggabletext +@dirrm share/examples/qt4/examples/draganddrop/draggableicons/images +@dirrm share/examples/qt4/examples/draganddrop/draggableicons +@dirrm share/examples/qt4/examples/draganddrop +@dirrm share/examples/qt4/examples/dialogs/trivialwizard +@dirrm share/examples/qt4/examples/dialogs/tabdialog +@dirrm share/examples/qt4/examples/dialogs/standarddialogs +@dirrm share/examples/qt4/examples/dialogs/licensewizard/images +@dirrm share/examples/qt4/examples/dialogs/licensewizard +@dirrm share/examples/qt4/examples/dialogs/findfiles +@dirrm share/examples/qt4/examples/dialogs/extension +@dirrm share/examples/qt4/examples/dialogs/configdialog/images +@dirrm share/examples/qt4/examples/dialogs/configdialog +@dirrm share/examples/qt4/examples/dialogs/classwizard/images +@dirrm share/examples/qt4/examples/dialogs/classwizard +@dirrm share/examples/qt4/examples/dialogs +@dirrm share/examples/qt4/examples/desktop/systray/images +@dirrm share/examples/qt4/examples/desktop/systray +@dirrm share/examples/qt4/examples/desktop/screenshot +@dirrm share/examples/qt4/examples/desktop +@dirrm share/examples/qt4/examples/designer/worldtimeclockplugin +@dirrm share/examples/qt4/examples/designer/worldtimeclockbuilder +@dirrm share/examples/qt4/examples/designer/taskmenuextension +@dirrm share/examples/qt4/examples/designer/customwidgetplugin +@dirrm share/examples/qt4/examples/designer/containerextension +@dirrm share/examples/qt4/examples/designer/calculatorform +@dirrm share/examples/qt4/examples/designer/calculatorbuilder +@dirrm share/examples/qt4/examples/designer +@dirrm share/examples/qt4/examples/dbus/remotecontrolledcar/controller +@dirrm share/examples/qt4/examples/dbus/remotecontrolledcar/car +@dirrm share/examples/qt4/examples/dbus/remotecontrolledcar +@dirrm share/examples/qt4/examples/dbus/pingpong +@dirrm share/examples/qt4/examples/dbus/listnames +@dirrm share/examples/qt4/examples/dbus/complexpingpong +@dirrm share/examples/qt4/examples/dbus/chat +@dirrm share/examples/qt4/examples/dbus +@dirrm share/examples/qt4/examples/assistant/simpletextviewer/documentation/images +@dirrm share/examples/qt4/examples/assistant/simpletextviewer/documentation +@dirrm share/examples/qt4/examples/assistant/simpletextviewer +@dirrm share/examples/qt4/examples/assistant +@dirrm share/examples/qt4/examples +@dirrm share/examples/qt4/demos/undo/icons +@dirrm share/examples/qt4/demos/undo +@dirrm share/examples/qt4/demos/textedit/images/win +@dirrm share/examples/qt4/demos/textedit/images/mac +@dirrm share/examples/qt4/demos/textedit/images +@dirrm share/examples/qt4/demos/textedit +@dirrm share/examples/qt4/demos/sqlbrowser +@dirrm share/examples/qt4/demos/spreadsheet/images +@dirrm share/examples/qt4/demos/spreadsheet +@dirrm share/examples/qt4/demos/shared/images +@dirrm share/examples/qt4/demos/shared +@dirrm share/examples/qt4/demos/qtdemo/xml +@dirrm share/examples/qt4/demos/qtdemo/images +@dirrm share/examples/qt4/demos/qtdemo +@dirrm share/examples/qt4/demos/pathstroke +@dirrm share/examples/qt4/demos/mediaplayer/images +@dirrm share/examples/qt4/demos/mediaplayer +@dirrm share/examples/qt4/demos/mainwindow +@dirrm share/examples/qt4/demos/interview/images +@dirrm share/examples/qt4/demos/interview +@dirrm share/examples/qt4/demos/gradients +@dirrm share/examples/qt4/demos/embeddeddialogs +@dirrm share/examples/qt4/demos/deform +@dirrm share/examples/qt4/demos/composition +@dirrm share/examples/qt4/demos/chip +@dirrm share/examples/qt4/demos/browser/htmls +@dirrm share/examples/qt4/demos/browser +@dirrm share/examples/qt4/demos/books/images +@dirrm share/examples/qt4/demos/books +@dirrm share/examples/qt4/demos/arthurplugin +@dirrm share/examples/qt4/demos/affine +@dirrm share/examples/qt4/demos +@dirrm share/examples/qt4 diff --git a/multimedia/Makefile b/multimedia/Makefile index 2044be4087df..46fe6c3584d4 100644 --- a/multimedia/Makefile +++ b/multimedia/Makefile @@ -194,6 +194,8 @@ SUBDIR += py-gstreamer SUBDIR += py-pybmp SUBDIR += qdvdauthor + SUBDIR += qt4-phonon + SUBDIR += qt4-phonon-gst SUBDIR += quark SUBDIR += quodlibet SUBDIR += recmpeg diff --git a/multimedia/qt4-phonon-gst/Makefile b/multimedia/qt4-phonon-gst/Makefile new file mode 100644 index 000000000000..3acd90af03b2 --- /dev/null +++ b/multimedia/qt4-phonon-gst/Makefile @@ -0,0 +1,57 @@ +# New ports collection makefile for: qt4-phonon-gst +# Date created: Mon May 12 15:33:12 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= phonon +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= multimedia +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +PKGNAMESUFFIX= -gst +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt4 multimedia framework, gstreamer backend + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build corelib gui phonon opengl dbus +QT_NONSTANDARD= yes +QT_DIST= yes + +USE_GSTREAMER= yes + +HAS_CONFIGURE= yes + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/network \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/phonon/gstreamer +CONFIGURE_WRKSRC=${WRKSRC}/../../../../ + +EXTRA_INCL!= pkg-config --cflags-only-I gstreamer-0.10 | sed -e 's|-I||g' + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${ECHO_CMD} "INCLUDEPATH+=${EXTRA_INCL}" >> ${WRKSRC}/gstreamer.pro + ${ECHO_CMD} "DEFINES+= QT_OPENGL" >> ${WRKSRC}/gstreamer.pro + ${MKDIR} ${WRKSRC}/../../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc + +.include <bsd.port.mk> diff --git a/multimedia/qt4-phonon-gst/distinfo b/multimedia/qt4-phonon-gst/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/multimedia/qt4-phonon-gst/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/multimedia/qt4-phonon-gst/pkg-descr b/multimedia/qt4-phonon-gst/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/multimedia/qt4-phonon-gst/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/multimedia/qt4-phonon-gst/pkg-plist b/multimedia/qt4-phonon-gst/pkg-plist new file mode 100644 index 000000000000..2f07df745675 --- /dev/null +++ b/multimedia/qt4-phonon-gst/pkg-plist @@ -0,0 +1,2 @@ +lib/qt4/plugins/phonon_backend/libphonon_gstreamer.so +@dirrmtry lib/qt4/plugins/phonon_backend diff --git a/multimedia/qt4-phonon/Makefile b/multimedia/qt4-phonon/Makefile new file mode 100644 index 000000000000..fb6b7baba05f --- /dev/null +++ b/multimedia/qt4-phonon/Makefile @@ -0,0 +1,65 @@ +# New ports collection makefile for: qt4-phonon +# Date created: Mon May 12 15:33:12 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= phonon +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= multimedia +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt4 multimedia framework + +CONFLICTS= phonon-4.* + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build corelib dbus gui xml +QT_NONSTANDARD= yes +QT_DIST= yes + +HAS_CONFIGURE= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/network src/opengl \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} +CONFIGURE_WRKSRC=${WRKSRC}/../../ + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${MKDIR} ${WRKSRC}/../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc + +post-configure: + ${REINPLACE_CMD} \ + -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + -e 's|.*$$(QMAKE).*||g' \ + ${WRKSRC}/Makefile + ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ + -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ + ${WRKSRC}/../../lib/pkgconfig/phonon.pc + +post-install: + ${MKDIR} ${PREFIX}/lib/qt4/plugins/phonon_backend + +.include <bsd.port.mk> diff --git a/multimedia/qt4-phonon/distinfo b/multimedia/qt4-phonon/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/multimedia/qt4-phonon/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/multimedia/qt4-phonon/pkg-descr b/multimedia/qt4-phonon/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/multimedia/qt4-phonon/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/multimedia/qt4-phonon/pkg-plist b/multimedia/qt4-phonon/pkg-plist new file mode 100644 index 000000000000..0f7c9c0ec579 --- /dev/null +++ b/multimedia/qt4-phonon/pkg-plist @@ -0,0 +1,78 @@ +include/qt4/Qt/abstractaudiooutput.h +include/qt4/Qt/abstractmediastream.h +include/qt4/Qt/abstractvideooutput.h +include/qt4/Qt/addoninterface.h +include/qt4/Qt/audiooutput.h +include/qt4/Qt/audiooutputinterface.h +include/qt4/Qt/backendcapabilities.h +include/qt4/Qt/backendinterface.h +include/qt4/Qt/effect.h +include/qt4/Qt/effectinterface.h +include/qt4/Qt/effectparameter.h +include/qt4/Qt/effectwidget.h +include/qt4/Qt/mediacontroller.h +include/qt4/Qt/medianode.h +include/qt4/Qt/mediaobject.h +include/qt4/Qt/mediaobjectinterface.h +include/qt4/Qt/mediasource.h +include/qt4/Qt/objectdescription.h +include/qt4/Qt/objectdescriptionmodel.h +include/qt4/Qt/path.h +include/qt4/Qt/phonon +include/qt4/Qt/phonon_export.h +include/qt4/Qt/phonondefs.h +include/qt4/Qt/phononnamespace.h +include/qt4/Qt/platformplugin.h +include/qt4/Qt/seekslider.h +include/qt4/Qt/streaminterface.h +include/qt4/Qt/videoplayer.h +include/qt4/Qt/videowidget.h +include/qt4/Qt/videowidgetinterface.h +include/qt4/Qt/volumefadereffect.h +include/qt4/Qt/volumefaderinterface.h +include/qt4/Qt/volumeslider.h +include/qt4/phonon/abstractaudiooutput.h +include/qt4/phonon/abstractmediastream.h +include/qt4/phonon/abstractvideooutput.h +include/qt4/phonon/addoninterface.h +include/qt4/phonon/audiooutput.h +include/qt4/phonon/audiooutputinterface.h +include/qt4/phonon/backendcapabilities.h +include/qt4/phonon/backendinterface.h +include/qt4/phonon/effect.h +include/qt4/phonon/effectinterface.h +include/qt4/phonon/effectparameter.h +include/qt4/phonon/effectwidget.h +include/qt4/phonon/mediacontroller.h +include/qt4/phonon/medianode.h +include/qt4/phonon/mediaobject.h +include/qt4/phonon/mediaobjectinterface.h +include/qt4/phonon/mediasource.h +include/qt4/phonon/objectdescription.h +include/qt4/phonon/objectdescriptionmodel.h +include/qt4/phonon/path.h +include/qt4/phonon/phonon +include/qt4/phonon/phonon_export.h +include/qt4/phonon/phonondefs.h +include/qt4/phonon/phononnamespace.h +include/qt4/phonon/platformplugin.h +include/qt4/phonon/seekslider.h +include/qt4/phonon/streaminterface.h +include/qt4/phonon/videoplayer.h +include/qt4/phonon/videowidget.h +include/qt4/phonon/videowidgetinterface.h +include/qt4/phonon/volumefadereffect.h +include/qt4/phonon/volumefaderinterface.h +include/qt4/phonon/volumeslider.h +lib/qt4/libphonon.la +lib/qt4/libphonon.prl +lib/qt4/libphonon.so +lib/qt4/libphonon.so.4 +lib/qt4/libphonon.so.4.1 +lib/qt4/libphonon.so.4.1.1 +%%DEBUG%%lib/qt4/libphonon.so.4.1.1.debug +libdata/pkgconfig/phonon.pc +@dirrm include/qt4/phonon +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 +@dirrmtry lib/qt4/plugins/phonon_backend diff --git a/net/qt4-network/Makefile b/net/qt4-network/Makefile index 11ee30764d41..3787d59404ab 100644 --- a/net/qt4-network/Makefile +++ b/net/qt4-network/Makefile @@ -8,7 +8,7 @@ PORTNAME= network PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= net ipv6 MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -24,45 +24,40 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 USE_OPENSSL= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../bin/rcc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtNetwork.pc .include <bsd.port.mk> diff --git a/net/qt4-network/distinfo b/net/qt4-network/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/net/qt4-network/distinfo +++ b/net/qt4-network/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/net/qt4-network/pkg-plist b/net/qt4-network/pkg-plist index af6ba9f40141..7f6bce343931 100644 --- a/net/qt4-network/pkg-plist +++ b/net/qt4-network/pkg-plist @@ -1,71 +1,95 @@ -include/Qt/QtNetwork -include/Qt/qabstractsocket.h -include/Qt/qauthenticator.h -include/Qt/qftp.h -include/Qt/qhostaddress.h -include/Qt/qhostinfo.h -include/Qt/qhttp.h -include/Qt/qnetworkinterface.h -include/Qt/qnetworkproxy.h -include/Qt/qssl.h -include/Qt/qsslcertificate.h -include/Qt/qsslcipher.h -include/Qt/qsslerror.h -include/Qt/qsslkey.h -include/Qt/qsslsocket.h -include/Qt/qtcpserver.h -include/Qt/qtcpsocket.h -include/Qt/qudpsocket.h -include/Qt/qurlinfo.h -include/QtNetwork/QAbstractSocket -include/QtNetwork/QAuthenticator -include/QtNetwork/QFtp -include/QtNetwork/QHostAddress -include/QtNetwork/QHostInfo -include/QtNetwork/QHttp -include/QtNetwork/QHttpHeader -include/QtNetwork/QHttpRequestHeader -include/QtNetwork/QHttpResponseHeader -include/QtNetwork/QIPv6Address -include/QtNetwork/QNetworkAddressEntry -include/QtNetwork/QNetworkInterface -include/QtNetwork/QNetworkProxy -include/QtNetwork/QSsl -include/QtNetwork/QSslCertificate -include/QtNetwork/QSslCipher -include/QtNetwork/QSslError -include/QtNetwork/QSslKey -include/QtNetwork/QSslSocket -include/QtNetwork/QTcpServer -include/QtNetwork/QTcpSocket -include/QtNetwork/QUdpSocket -include/QtNetwork/QUrlInfo -include/QtNetwork/Q_IPV6ADDR -include/QtNetwork/QtNetwork -include/QtNetwork/qabstractsocket.h -include/QtNetwork/qauthenticator.h -include/QtNetwork/qftp.h -include/QtNetwork/qhostaddress.h -include/QtNetwork/qhostinfo.h -include/QtNetwork/qhttp.h -include/QtNetwork/qnetworkinterface.h -include/QtNetwork/qnetworkproxy.h -include/QtNetwork/qssl.h -include/QtNetwork/qsslcertificate.h -include/QtNetwork/qsslcipher.h -include/QtNetwork/qsslerror.h -include/QtNetwork/qsslkey.h -include/QtNetwork/qsslsocket.h -include/QtNetwork/qtcpserver.h -include/QtNetwork/qtcpsocket.h -include/QtNetwork/qudpsocket.h -include/QtNetwork/qurlinfo.h -lib/libQtNetwork.la -lib/libQtNetwork.prl -lib/libQtNetwork.so -lib/libQtNetwork.so.4 -lib/libQtNetwork.so.4.3 -lib/libQtNetwork.so.4.3.4 -%%DEBUG%%lib/libQtNetwork.so.4.3.4.debug +include/qt4/Qt/QtNetwork +include/qt4/Qt/qabstractsocket.h +include/qt4/Qt/qauthenticator.h +include/qt4/Qt/qftp.h +include/qt4/Qt/qhostaddress.h +include/qt4/Qt/qhostinfo.h +include/qt4/Qt/qhttp.h +include/qt4/Qt/qlocalserver.h +include/qt4/Qt/qlocalsocket.h +include/qt4/Qt/qnetworkaccessmanager.h +include/qt4/Qt/qnetworkcookie.h +include/qt4/Qt/qnetworkinterface.h +include/qt4/Qt/qnetworkproxy.h +include/qt4/Qt/qnetworkreply.h +include/qt4/Qt/qnetworkrequest.h +include/qt4/Qt/qssl.h +include/qt4/Qt/qsslcertificate.h +include/qt4/Qt/qsslcipher.h +include/qt4/Qt/qsslconfiguration.h +include/qt4/Qt/qsslerror.h +include/qt4/Qt/qsslkey.h +include/qt4/Qt/qsslsocket.h +include/qt4/Qt/qtcpserver.h +include/qt4/Qt/qtcpsocket.h +include/qt4/Qt/qudpsocket.h +include/qt4/Qt/qurlinfo.h +include/qt4/QtNetwork/QAbstractSocket +include/qt4/QtNetwork/QAuthenticator +include/qt4/QtNetwork/QFtp +include/qt4/QtNetwork/QHostAddress +include/qt4/QtNetwork/QHostInfo +include/qt4/QtNetwork/QHttp +include/qt4/QtNetwork/QHttpHeader +include/qt4/QtNetwork/QHttpRequestHeader +include/qt4/QtNetwork/QHttpResponseHeader +include/qt4/QtNetwork/QIPv6Address +include/qt4/QtNetwork/QLocalServer +include/qt4/QtNetwork/QLocalSocket +include/qt4/QtNetwork/QNetworkAccessManager +include/qt4/QtNetwork/QNetworkAddressEntry +include/qt4/QtNetwork/QNetworkCookie +include/qt4/QtNetwork/QNetworkCookieJar +include/qt4/QtNetwork/QNetworkInterface +include/qt4/QtNetwork/QNetworkProxy +include/qt4/QtNetwork/QNetworkReply +include/qt4/QtNetwork/QNetworkRequest +include/qt4/QtNetwork/QSsl +include/qt4/QtNetwork/QSslCertificate +include/qt4/QtNetwork/QSslCipher +include/qt4/QtNetwork/QSslConfiguration +include/qt4/QtNetwork/QSslError +include/qt4/QtNetwork/QSslKey +include/qt4/QtNetwork/QSslSocket +include/qt4/QtNetwork/QTcpServer +include/qt4/QtNetwork/QTcpSocket +include/qt4/QtNetwork/QUdpSocket +include/qt4/QtNetwork/QUrlInfo +include/qt4/QtNetwork/Q_IPV6ADDR +include/qt4/QtNetwork/QtNetwork +include/qt4/QtNetwork/qabstractsocket.h +include/qt4/QtNetwork/qauthenticator.h +include/qt4/QtNetwork/qftp.h +include/qt4/QtNetwork/qhostaddress.h +include/qt4/QtNetwork/qhostinfo.h +include/qt4/QtNetwork/qhttp.h +include/qt4/QtNetwork/qlocalserver.h +include/qt4/QtNetwork/qlocalsocket.h +include/qt4/QtNetwork/qnetworkaccessmanager.h +include/qt4/QtNetwork/qnetworkcookie.h +include/qt4/QtNetwork/qnetworkinterface.h +include/qt4/QtNetwork/qnetworkproxy.h +include/qt4/QtNetwork/qnetworkreply.h +include/qt4/QtNetwork/qnetworkrequest.h +include/qt4/QtNetwork/qssl.h +include/qt4/QtNetwork/qsslcertificate.h +include/qt4/QtNetwork/qsslcipher.h +include/qt4/QtNetwork/qsslconfiguration.h +include/qt4/QtNetwork/qsslerror.h +include/qt4/QtNetwork/qsslkey.h +include/qt4/QtNetwork/qsslsocket.h +include/qt4/QtNetwork/qtcpserver.h +include/qt4/QtNetwork/qtcpsocket.h +include/qt4/QtNetwork/qudpsocket.h +include/qt4/QtNetwork/qurlinfo.h +lib/qt4/libQtNetwork.la +lib/qt4/libQtNetwork.prl +lib/qt4/libQtNetwork.so +%%DEBUG%%lib/qt4/libQtNetwork.so.4.4.1.debug +lib/qt4/libQtNetwork.so.4 +lib/qt4/libQtNetwork.so.4.4 +lib/qt4/libQtNetwork.so.4.4.1 libdata/pkgconfig/QtNetwork.pc -@dirrm include/QtNetwork +@dirrm include/qt4/QtNetwork +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/textproc/Makefile b/textproc/Makefile index 09dfaf318e28..deb33451b911 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -867,7 +867,10 @@ SUBDIR += pybook SUBDIR += pychm SUBDIR += qstardict + SUBDIR += qt4-clucene SUBDIR += qt4-xml + SUBDIR += qt4-xmlpatterns + SUBDIR += qt4-xmlpatterns-tool SUBDIR += qu-aspell SUBDIR += queequeg SUBDIR += rand diff --git a/textproc/qt4-clucene/Makefile b/textproc/qt4-clucene/Makefile new file mode 100644 index 000000000000..6220560e9fbe --- /dev/null +++ b/textproc/qt4-clucene/Makefile @@ -0,0 +1,62 @@ +# -*-mode: makefile-*- +# New ports collection makefile for: qt4-clucene +# Date created: Fri May 9 15:30:23 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= clucene +PORTVERSION= ${QT4_VERSION} +PORTREVISION= 0 +CATEGORIES?= textproc +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= QtCLucene full text search library wrapper + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build corelib +QT_NONSTANDARD= yes +QT_DIST= yes + +HAS_CONFIGURE= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/tools/assistant/lib/fulltextsearch +CONFIGURE_WRKSRC=${WRKSRC}/../../../../ + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${MKDIR} ${WRKSRC}/../../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake + +post-configure: + ${REINPLACE_CMD} \ + -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + -e 's|.*$$(QMAKE).*||g' \ + -e 's|-fno-exceptions ||g' \ + ${WRKSRC}/Makefile + ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ + -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ + ${WRKSRC}/../../../../lib/pkgconfig/QtCLucene.pc + +.include <bsd.port.mk> diff --git a/textproc/qt4-clucene/distinfo b/textproc/qt4-clucene/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/textproc/qt4-clucene/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/textproc/qt4-clucene/pkg-descr b/textproc/qt4-clucene/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/textproc/qt4-clucene/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/textproc/qt4-clucene/pkg-plist b/textproc/qt4-clucene/pkg-plist new file mode 100644 index 000000000000..d361f1edfe05 --- /dev/null +++ b/textproc/qt4-clucene/pkg-plist @@ -0,0 +1,8 @@ +lib/qt4/libQtCLucene.la +lib/qt4/libQtCLucene.prl +lib/qt4/libQtCLucene.so +lib/qt4/libQtCLucene.so.4 +lib/qt4/libQtCLucene.so.4.4 +lib/qt4/libQtCLucene.so.4.4.1 +%%DEBUG%%lib/qt4/libQtCLucene.so.4.4.1.debug +libdata/pkgconfig/QtCLucene.pc diff --git a/textproc/qt4-xml/Makefile b/textproc/qt4-xml/Makefile index 1a69d2825998..9646ca040cf6 100644 --- a/textproc/qt4-xml/Makefile +++ b/textproc/qt4-xml/Makefile @@ -8,7 +8,7 @@ PORTNAME= xml PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= textproc MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -24,44 +24,38 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/gui' --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' --exclude '${DISTNAME}/tools/designer' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtXml.pc .include <bsd.port.mk> diff --git a/textproc/qt4-xml/distinfo b/textproc/qt4-xml/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/textproc/qt4-xml/distinfo +++ b/textproc/qt4-xml/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/textproc/qt4-xml/pkg-plist b/textproc/qt4-xml/pkg-plist index 76cdce0b6f32..a9dc0b9296e4 100644 --- a/textproc/qt4-xml/pkg-plist +++ b/textproc/qt4-xml/pkg-plist @@ -1,59 +1,61 @@ -include/Qt/QtXml -include/Qt/qdom.h -include/Qt/qxml.h -include/Qt/qxmlstream.h -include/QtXml/QDomAttr -include/QtXml/QDomCDATASection -include/QtXml/QDomCharacterData -include/QtXml/QDomComment -include/QtXml/QDomDocument -include/QtXml/QDomDocumentFragment -include/QtXml/QDomDocumentType -include/QtXml/QDomElement -include/QtXml/QDomEntity -include/QtXml/QDomEntityReference -include/QtXml/QDomImplementation -include/QtXml/QDomNamedNodeMap -include/QtXml/QDomNode -include/QtXml/QDomNodeList -include/QtXml/QDomNotation -include/QtXml/QDomProcessingInstruction -include/QtXml/QDomText -include/QtXml/QXmlAttributes -include/QtXml/QXmlContentHandler -include/QtXml/QXmlDTDHandler -include/QtXml/QXmlDeclHandler -include/QtXml/QXmlDefaultHandler -include/QtXml/QXmlEntityResolver -include/QtXml/QXmlErrorHandler -include/QtXml/QXmlInputSource -include/QtXml/QXmlLexicalHandler -include/QtXml/QXmlLocator -include/QtXml/QXmlNamespaceSupport -include/QtXml/QXmlParseException -include/QtXml/QXmlReader -include/QtXml/QXmlSimpleReader -include/QtXml/QXmlStreamAttribute -include/QtXml/QXmlStreamAttributes -include/QtXml/QXmlStreamEntityDeclaration -include/QtXml/QXmlStreamEntityDeclarations -include/QtXml/QXmlStreamNamespaceDeclaration -include/QtXml/QXmlStreamNamespaceDeclarations -include/QtXml/QXmlStreamNotationDeclaration -include/QtXml/QXmlStreamNotationDeclarations -include/QtXml/QXmlStreamReader -include/QtXml/QXmlStreamStringRef -include/QtXml/QXmlStreamWriter -include/QtXml/QtXml -include/QtXml/qdom.h -include/QtXml/qxml.h -include/QtXml/qxmlstream.h -lib/libQtXml.la -lib/libQtXml.prl -lib/libQtXml.so -lib/libQtXml.so.4 -lib/libQtXml.so.4.3 -lib/libQtXml.so.4.3.4 -%%DEBUG%%lib/libQtXml.so.4.3.4.debug +include/qt4/Qt/QtXml +include/qt4/Qt/qdom.h +include/qt4/Qt/qxml.h +include/qt4/QtXml/QDomAttr +include/qt4/QtXml/QDomCDATASection +include/qt4/QtXml/QDomCharacterData +include/qt4/QtXml/QDomComment +include/qt4/QtXml/QDomDocument +include/qt4/QtXml/QDomDocumentFragment +include/qt4/QtXml/QDomDocumentType +include/qt4/QtXml/QDomElement +include/qt4/QtXml/QDomEntity +include/qt4/QtXml/QDomEntityReference +include/qt4/QtXml/QDomImplementation +include/qt4/QtXml/QDomNamedNodeMap +include/qt4/QtXml/QDomNode +include/qt4/QtXml/QDomNodeList +include/qt4/QtXml/QDomNotation +include/qt4/QtXml/QDomProcessingInstruction +include/qt4/QtXml/QDomText +include/qt4/QtXml/QXmlAttributes +include/qt4/QtXml/QXmlContentHandler +include/qt4/QtXml/QXmlDTDHandler +include/qt4/QtXml/QXmlDeclHandler +include/qt4/QtXml/QXmlDefaultHandler +include/qt4/QtXml/QXmlEntityResolver +include/qt4/QtXml/QXmlErrorHandler +include/qt4/QtXml/QXmlInputSource +include/qt4/QtXml/QXmlLexicalHandler +include/qt4/QtXml/QXmlLocator +include/qt4/QtXml/QXmlNamespaceSupport +include/qt4/QtXml/QXmlParseException +include/qt4/QtXml/QXmlReader +include/qt4/QtXml/QXmlSimpleReader +include/qt4/QtXml/QXmlStreamAttribute +include/qt4/QtXml/QXmlStreamAttributes +include/qt4/QtXml/QXmlStreamEntityDeclaration +include/qt4/QtXml/QXmlStreamEntityDeclarations +include/qt4/QtXml/QXmlStreamEntityResolver +include/qt4/QtXml/QXmlStreamNamespaceDeclaration +include/qt4/QtXml/QXmlStreamNamespaceDeclarations +include/qt4/QtXml/QXmlStreamNotationDeclaration +include/qt4/QtXml/QXmlStreamNotationDeclarations +include/qt4/QtXml/QXmlStreamReader +include/qt4/QtXml/QXmlStreamStringRef +include/qt4/QtXml/QXmlStreamWriter +include/qt4/QtXml/QtXml +include/qt4/QtXml/qdom.h +include/qt4/QtXml/qxml.h +include/qt4/QtXml/qxmlstream.h +lib/qt4/libQtXml.la +lib/qt4/libQtXml.prl +lib/qt4/libQtXml.so +lib/qt4/libQtXml.so.4 +lib/qt4/libQtXml.so.4.4 +lib/qt4/libQtXml.so.4.4.1 +%%DEBUG%%lib/qt4/libQtXml.so.4.4.1.debug libdata/pkgconfig/QtXml.pc -@dirrm include/QtXml +@dirrm include/qt4/QtXml +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/textproc/qt4-xmlpatterns-tool/Makefile b/textproc/qt4-xmlpatterns-tool/Makefile new file mode 100644 index 000000000000..3a5a6c44a784 --- /dev/null +++ b/textproc/qt4-xmlpatterns-tool/Makefile @@ -0,0 +1,51 @@ +# New ports collection makefile for: qt4-xmlpatterns-tool +# Date created: Sat May 10 23:17:08 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= xmlpatterns-tool +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= textproc +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt4 command line utility for running XQueries + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build xmlpatterns +QT_NONSTANDARD= yes +QT_DIST= yes + +HAS_CONFIGURE= yes + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/gui src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/tools/xmlpatterns +CONFIGURE_WRKSRC=${WRKSRC}/../../ + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${MKDIR} ${WRKSRC}/../../mkspecs +# ${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=xmlpatterns|g' \ +# ${WRKSRC}/xmlpatterns.pro + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake + +.include <bsd.port.mk> diff --git a/textproc/qt4-xmlpatterns-tool/distinfo b/textproc/qt4-xmlpatterns-tool/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/textproc/qt4-xmlpatterns-tool/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/textproc/qt4-xmlpatterns-tool/pkg-descr b/textproc/qt4-xmlpatterns-tool/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/textproc/qt4-xmlpatterns-tool/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/textproc/qt4-xmlpatterns-tool/pkg-plist b/textproc/qt4-xmlpatterns-tool/pkg-plist new file mode 100644 index 000000000000..cdc6491ff65d --- /dev/null +++ b/textproc/qt4-xmlpatterns-tool/pkg-plist @@ -0,0 +1,2 @@ +bin/xmlpatterns +%%DEBUG%%bin/xmlpatterns.debug diff --git a/textproc/qt4-xmlpatterns/Makefile b/textproc/qt4-xmlpatterns/Makefile new file mode 100644 index 000000000000..cc82304fffc3 --- /dev/null +++ b/textproc/qt4-xmlpatterns/Makefile @@ -0,0 +1,61 @@ +# New ports collection makefile for: qt4-xmlpatterns +# Date created: Fri May 9 15:30:23 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= xmlpatterns +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= textproc +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= XQuery 1.0 and XPath 2.0 support for Qt4 + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build corelib network +QT_NONSTANDARD= yes +QT_DIST= yes + +HAS_CONFIGURE= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ + src/dbus src/gui src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} +CONFIGURE_WRKSRC=${WRKSRC}/../../ + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${MKDIR} ${WRKSRC}/../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc + +post-configure: + ${REINPLACE_CMD} \ + -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + -e 's|.*$$(QMAKE).*||g' \ + -e 's|-fno-exceptions ||g' \ + ${WRKSRC}/Makefile + ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ + -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ + ${WRKSRC}/../../lib/pkgconfig/QtXmlPatterns.pc + +.include <bsd.port.mk> diff --git a/textproc/qt4-xmlpatterns/distinfo b/textproc/qt4-xmlpatterns/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/textproc/qt4-xmlpatterns/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/textproc/qt4-xmlpatterns/pkg-descr b/textproc/qt4-xmlpatterns/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/textproc/qt4-xmlpatterns/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/textproc/qt4-xmlpatterns/pkg-plist b/textproc/qt4-xmlpatterns/pkg-plist new file mode 100644 index 000000000000..13eabd7bad1c --- /dev/null +++ b/textproc/qt4-xmlpatterns/pkg-plist @@ -0,0 +1,50 @@ +include/qt4/Qt/QtXmlPatterns +include/qt4/Qt/qabstractmessagehandler.h +include/qt4/Qt/qabstracturiresolver.h +include/qt4/Qt/qabstractxmlnodemodel.h +include/qt4/Qt/qabstractxmlreceiver.h +include/qt4/Qt/qsimplexmlnodemodel.h +include/qt4/Qt/qsourcelocation.h +include/qt4/Qt/qxmlformatter.h +include/qt4/Qt/qxmlname.h +include/qt4/Qt/qxmlnamepool.h +include/qt4/Qt/qxmlquery.h +include/qt4/Qt/qxmlresultitems.h +include/qt4/Qt/qxmlserializer.h +include/qt4/QtXmlPatterns/QAbstractMessageHandler +include/qt4/QtXmlPatterns/QAbstractUriResolver +include/qt4/QtXmlPatterns/QAbstractXmlNodeModel +include/qt4/QtXmlPatterns/QAbstractXmlReceiver +include/qt4/QtXmlPatterns/QSimpleXmlNodeModel +include/qt4/QtXmlPatterns/QSourceLocation +include/qt4/QtXmlPatterns/QXmlFormatter +include/qt4/QtXmlPatterns/QXmlItem +include/qt4/QtXmlPatterns/QXmlName +include/qt4/QtXmlPatterns/QXmlNamePool +include/qt4/QtXmlPatterns/QXmlNodeModelIndex +include/qt4/QtXmlPatterns/QXmlQuery +include/qt4/QtXmlPatterns/QXmlResultItems +include/qt4/QtXmlPatterns/QXmlSerializer +include/qt4/QtXmlPatterns/QtXmlPatterns +include/qt4/QtXmlPatterns/qabstractmessagehandler.h +include/qt4/QtXmlPatterns/qabstracturiresolver.h +include/qt4/QtXmlPatterns/qabstractxmlnodemodel.h +include/qt4/QtXmlPatterns/qabstractxmlreceiver.h +include/qt4/QtXmlPatterns/qsimplexmlnodemodel.h +include/qt4/QtXmlPatterns/qsourcelocation.h +include/qt4/QtXmlPatterns/qxmlformatter.h +include/qt4/QtXmlPatterns/qxmlname.h +include/qt4/QtXmlPatterns/qxmlnamepool.h +include/qt4/QtXmlPatterns/qxmlquery.h +include/qt4/QtXmlPatterns/qxmlresultitems.h +include/qt4/QtXmlPatterns/qxmlserializer.h +lib/qt4/libQtXmlPatterns.la +lib/qt4/libQtXmlPatterns.prl +lib/qt4/libQtXmlPatterns.so +lib/qt4/libQtXmlPatterns.so.4 +lib/qt4/libQtXmlPatterns.so.4.4 +lib/qt4/libQtXmlPatterns.so.4.4.1 +%%DEBUG%%lib/qt4/libQtXmlPatterns.so.4.4.1.debug +libdata/pkgconfig/QtXmlPatterns.pc +@dirrm include/qt4/QtXmlPatterns +@dirrmtry include/qt4/Qt diff --git a/www/Makefile b/www/Makefile index 6f0202bd043e..6d76dce6d4c9 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1183,6 +1183,7 @@ SUBDIR += pyblosxom SUBDIR += pyweblib SUBDIR += qdecoder + SUBDIR += qt4-webkit SUBDIR += quickie SUBDIR += quixote SUBDIR += raqdevil diff --git a/www/qt4-webkit/Makefile b/www/qt4-webkit/Makefile new file mode 100644 index 000000000000..1e8ac98dcb48 --- /dev/null +++ b/www/qt4-webkit/Makefile @@ -0,0 +1,61 @@ +# New ports collection makefile for: qt4-webkit +# Date created: Mon May 12 17:18:19 CEST 2008 +# Whom: danny@ricin.com +# +# $FreeBSD$ +# + +PORTNAME= webkit +PORTVERSION= ${QT4_VERSION} +CATEGORIES?= www +MASTER_SITES= ${MASTER_SITE_QT} +PKGNAMEPREFIX= qt4- +DISTNAME= qt-x11-opensource-src-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt4 webkit engine + +USE_QT_VER= 4 +QT_COMPONENTS= qmake_build moc_build rcc_build corelib gui network xml +QT_NONSTANDARD= yes +QT_DIST= yes + +HAS_CONFIGURE= yes +USE_LDCONFIG= ${PREFIX}/lib/qt4 + +ALL_TARGET= first +CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH +MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ + PATH=${WRKSRC}/bin:$$PATH + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + +WRKSRC= ${WRKDIR}/${DISTNAME}/src/3rdparty/${PORTNAME}/WebCore +CONFIGURE_WRKSRC=${WRKSRC}/../../../../ + +pre-configure: + ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} + ${MKDIR} ${WRKSRC}/../../../../mkspecs + ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../../bin/qmake + ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../../bin/moc + ${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../../bin/rcc + +post-configure: + ${REINPLACE_CMD} \ + -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + -e 's|.*$$(QMAKE).*||g' \ + ${WRKSRC}/Makefile + ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ + -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ + ${WRKSRC}/../../../../lib/pkgconfig/QtWebKit.pc + +.include <bsd.port.mk> diff --git a/www/qt4-webkit/distinfo b/www/qt4-webkit/distinfo new file mode 100644 index 000000000000..0c630f09baf6 --- /dev/null +++ b/www/qt4-webkit/distinfo @@ -0,0 +1,3 @@ +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/www/qt4-webkit/pkg-descr b/www/qt4-webkit/pkg-descr new file mode 100644 index 000000000000..efc79b9aaf24 --- /dev/null +++ b/www/qt4-webkit/pkg-descr @@ -0,0 +1,12 @@ +Qt is a C++ toolkit for application development. It lets application +developers target all major operating systems with a single application +source code. + +Qt provides a platform-independent API to all central platform functionality: +GUI, database access, networking, file handling, etc. The Qt library +encapsulates the different APIs of different operating systems, providing +the application programmer with a single, common API for all operating systems. +The native C APIs are encapsulated in a set of well-designed, fully +object-oriented C++ classes. + +WWW: http://www.trolltech.com/products/qt/index.html diff --git a/www/qt4-webkit/pkg-plist b/www/qt4-webkit/pkg-plist new file mode 100644 index 000000000000..b0e49e7d34ef --- /dev/null +++ b/www/qt4-webkit/pkg-plist @@ -0,0 +1,38 @@ +include/qt4/Qt/qwebframe.h +include/qt4/Qt/qwebhistory.h +include/qt4/Qt/qwebhistoryinterface.h +include/qt4/Qt/qwebkitglobal.h +include/qt4/Qt/qwebpage.h +include/qt4/Qt/qwebpluginfactory.h +include/qt4/Qt/qwebsettings.h +include/qt4/Qt/qwebview.h +include/qt4/Qt/QtWebKit +include/qt4/QtWebKit/QWebFrame +include/qt4/QtWebKit/QWebHistory +include/qt4/QtWebKit/QWebHistoryInterface +include/qt4/QtWebKit/QWebHistoryItem +include/qt4/QtWebKit/QWebHitTestResult +include/qt4/QtWebKit/QWebPage +include/qt4/QtWebKit/QWebPluginFactory +include/qt4/QtWebKit/QWebSettings +include/qt4/QtWebKit/QWebView +include/qt4/QtWebKit/QtWebKit +include/qt4/QtWebKit/qwebframe.h +include/qt4/QtWebKit/qwebhistory.h +include/qt4/QtWebKit/qwebhistoryinterface.h +include/qt4/QtWebKit/qwebkitglobal.h +include/qt4/QtWebKit/qwebpage.h +include/qt4/QtWebKit/qwebpluginfactory.h +include/qt4/QtWebKit/qwebsettings.h +include/qt4/QtWebKit/qwebview.h +lib/qt4/libQtWebKit.la +lib/qt4/libQtWebKit.prl +lib/qt4/libQtWebKit.so +lib/qt4/libQtWebKit.so.4 +lib/qt4/libQtWebKit.so.4.4 +lib/qt4/libQtWebKit.so.4.4.1 +%%DEBUG%%lib/qt4/libQtWebKit.so.4.4.1.debug +libdata/pkgconfig/QtWebKit.pc +@dirrm include/qt4/QtWebKit +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/x11-toolkits/qt4-gui/Makefile b/x11-toolkits/qt4-gui/Makefile index 791c40ff47fb..a3d5677da55a 100644 --- a/x11-toolkits/qt4-gui/Makefile +++ b/x11-toolkits/qt4-gui/Makefile @@ -8,7 +8,7 @@ PORTNAME= gui PORTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 0 CATEGORIES?= x11-toolkits MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -18,8 +18,7 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Qt graphical user interface library -LIB_DEPENDS?= png:${PORTSDIR}/graphics/png \ - fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig +LIB_DEPENDS?= png:${PORTSDIR}/graphics/png USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build rcc_build uic_build corelib @@ -27,25 +26,24 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes -USE_XORG= xrender xrandr xinerama inputproto xfixes sm xcursor \ - xext x11 ice xi xt +USE_LDCONFIG= ${PREFIX}/lib/qt4 +USE_XLIB= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ PATCH_WRKSRC=${CONFIGURE_WRKSRC} @@ -57,7 +55,7 @@ OPTIONS= CUPS "Enable printing support (requires CUPS)" off \ .if !defined(WITHOUT_CUPS) || defined(PACKAGE_BUILDING) BUILD_DEPENDS+= cupsd:${PORTSDIR}/print/cups-base -CUPS= -cups -L${LOCALBASE}/lib -I. -I../../include/Qt -I../../include -I${LOCALBASE}/include +CUPS= -cups -L${LOCALBASE}/lib -I. -I../../include/Qt -I../../include -I${LOCALBASE}/include .elif defined(WITHOUT_CUPS) CUPS= .endif @@ -71,10 +69,6 @@ CONFIGURE_ARGS+=-no-nas-sound pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc @@ -82,12 +76,11 @@ pre-configure: ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/../../bin/uic post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtGui.pc .include <bsd.port.post.mk> diff --git a/x11-toolkits/qt4-gui/distinfo b/x11-toolkits/qt4-gui/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/x11-toolkits/qt4-gui/distinfo +++ b/x11-toolkits/qt4-gui/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/x11-toolkits/qt4-gui/pkg-plist b/x11-toolkits/qt4-gui/pkg-plist index 386f91e74d49..4c6464ecb6e7 100644 --- a/x11-toolkits/qt4-gui/pkg-plist +++ b/x11-toolkits/qt4-gui/pkg-plist @@ -1,745 +1,802 @@ -include/Qt/QtGui -include/Qt/qabstractbutton.h -include/Qt/qabstractitemdelegate.h -include/Qt/qabstractitemview.h -include/Qt/qabstractpagesetupdialog.h -include/Qt/qabstractprintdialog.h -include/Qt/qabstractproxymodel.h -include/Qt/qabstractscrollarea.h -include/Qt/qabstractslider.h -include/Qt/qabstractspinbox.h -include/Qt/qabstracttextdocumentlayout.h -include/Qt/qaccessible.h -include/Qt/qaccessible2.h -include/Qt/qaccessiblebridge.h -include/Qt/qaccessibleobject.h -include/Qt/qaccessibleplugin.h -include/Qt/qaccessiblewidget.h -include/Qt/qaction.h -include/Qt/qactiongroup.h -include/Qt/qapplication.h -include/Qt/qbitmap.h -include/Qt/qboxlayout.h -include/Qt/qbrush.h -include/Qt/qbuttongroup.h -include/Qt/qcalendarwidget.h -include/Qt/qcdestyle.h -include/Qt/qcheckbox.h -include/Qt/qcleanlooksstyle.h -include/Qt/qclipboard.h -include/Qt/qcolor.h -include/Qt/qcolordialog.h -include/Qt/qcolormap.h -include/Qt/qcolumnview.h -include/Qt/qcombobox.h -include/Qt/qcommonstyle.h -include/Qt/qcompleter.h -include/Qt/qcursor.h -include/Qt/qdatawidgetmapper.h -include/Qt/qdatetimeedit.h -include/Qt/qdesktopservices.h -include/Qt/qdesktopwidget.h -include/Qt/qdial.h -include/Qt/qdialog.h -include/Qt/qdialogbuttonbox.h -include/Qt/qdirmodel.h -include/Qt/qdockwidget.h -include/Qt/qdrag.h -include/Qt/qdrawutil.h -include/Qt/qerrormessage.h -include/Qt/qevent.h -include/Qt/qfiledialog.h -include/Qt/qfileiconprovider.h -include/Qt/qfocusframe.h -include/Qt/qfont.h -include/Qt/qfontcombobox.h -include/Qt/qfontdatabase.h -include/Qt/qfontdialog.h -include/Qt/qfontinfo.h -include/Qt/qfontmetrics.h -include/Qt/qframe.h -include/Qt/qgraphicsitem.h -include/Qt/qgraphicsitemanimation.h -include/Qt/qgraphicsscene.h -include/Qt/qgraphicssceneevent.h -include/Qt/qgraphicsview.h -include/Qt/qgridlayout.h -include/Qt/qgroupbox.h -include/Qt/qheaderview.h -include/Qt/qicon.h -include/Qt/qiconengine.h -include/Qt/qiconengineplugin.h -include/Qt/qimage.h -include/Qt/qimageiohandler.h -include/Qt/qimagereader.h -include/Qt/qimagewriter.h -include/Qt/qinputcontext.h -include/Qt/qinputcontextfactory.h -include/Qt/qinputcontextplugin.h -include/Qt/qinputdialog.h -include/Qt/qitemdelegate.h -include/Qt/qitemeditorfactory.h -include/Qt/qitemselectionmodel.h -include/Qt/qkeysequence.h -include/Qt/qlabel.h -include/Qt/qlayout.h -include/Qt/qlayoutitem.h -include/Qt/qlcdnumber.h -include/Qt/qlineedit.h -include/Qt/qlistview.h -include/Qt/qlistwidget.h -include/Qt/qmainwindow.h -include/Qt/qmatrix.h -include/Qt/qmdiarea.h -include/Qt/qmdisubwindow.h -include/Qt/qmenu.h -include/Qt/qmenubar.h -include/Qt/qmenudata.h -include/Qt/qmessagebox.h -include/Qt/qmime.h -include/Qt/qmotifstyle.h -include/Qt/qmovie.h -include/Qt/qpagesetupdialog.h -include/Qt/qpaintdevice.h -include/Qt/qpaintengine.h -include/Qt/qpainter.h -include/Qt/qpainterpath.h -include/Qt/qpalette.h -include/Qt/qpen.h -include/Qt/qpicture.h -include/Qt/qpictureformatplugin.h -include/Qt/qpixmap.h -include/Qt/qpixmapcache.h -include/Qt/qplastiquestyle.h -include/Qt/qpolygon.h -include/Qt/qprintdialog.h -include/Qt/qprintengine.h -include/Qt/qprinter.h -include/Qt/qprogressbar.h -include/Qt/qprogressdialog.h -include/Qt/qproxymodel.h -include/Qt/qpushbutton.h -include/Qt/qradiobutton.h -include/Qt/qregion.h -include/Qt/qrgb.h -include/Qt/qrubberband.h -include/Qt/qscrollarea.h -include/Qt/qscrollbar.h -include/Qt/qsessionmanager.h -include/Qt/qshortcut.h -include/Qt/qsizegrip.h -include/Qt/qsizepolicy.h -include/Qt/qslider.h -include/Qt/qsortfilterproxymodel.h -include/Qt/qsound.h -include/Qt/qspinbox.h -include/Qt/qsplashscreen.h -include/Qt/qsplitter.h -include/Qt/qstackedlayout.h -include/Qt/qstackedwidget.h -include/Qt/qstandarditemmodel.h -include/Qt/qstatusbar.h -include/Qt/qstringlistmodel.h -include/Qt/qstyle.h -include/Qt/qstylefactory.h -include/Qt/qstyleoption.h -include/Qt/qstylepainter.h -include/Qt/qstyleplugin.h -include/Qt/qsyntaxhighlighter.h -include/Qt/qsystemtrayicon.h -include/Qt/qtabbar.h -include/Qt/qtableview.h -include/Qt/qtablewidget.h -include/Qt/qtabwidget.h -include/Qt/qtextbrowser.h -include/Qt/qtextcursor.h -include/Qt/qtextdocument.h -include/Qt/qtextdocumentfragment.h -include/Qt/qtextedit.h -include/Qt/qtextformat.h -include/Qt/qtextlayout.h -include/Qt/qtextlist.h -include/Qt/qtextobject.h -include/Qt/qtextoption.h -include/Qt/qtexttable.h -include/Qt/qtoolbar.h -include/Qt/qtoolbox.h -include/Qt/qtoolbutton.h -include/Qt/qtooltip.h -include/Qt/qtransform.h -include/Qt/qtreeview.h -include/Qt/qtreewidget.h -include/Qt/qtreewidgetitemiterator.h -include/Qt/qundogroup.h -include/Qt/qundostack.h -include/Qt/qundoview.h -include/Qt/qvalidator.h -include/Qt/qwhatsthis.h -include/Qt/qwidget.h -include/Qt/qwidgetaction.h -include/Qt/qwindowdefs.h -include/Qt/qwindowsstyle.h -include/Qt/qwindowsvistastyle.h -include/Qt/qwindowsxpstyle.h -include/Qt/qwizard.h -include/Qt/qwmatrix.h -include/Qt/qworkspace.h -include/Qt/qx11embed_x11.h -include/Qt/qx11info_x11.h -include/QtGui/QAbstractButton -include/QtGui/QAbstractGraphicsShapeItem -include/QtGui/QAbstractItemDelegate -include/QtGui/QAbstractItemView -include/QtGui/QAbstractPageSetupDialog -include/QtGui/QAbstractPrintDialog -include/QtGui/QAbstractProxyModel -include/QtGui/QAbstractScrollArea -include/QtGui/QAbstractSlider -include/QtGui/QAbstractSpinBox -include/QtGui/QAbstractTextDocumentLayout -include/QtGui/QAbstractUndoItem -include/QtGui/QAccessible -include/QtGui/QAccessible2Interface -include/QtGui/QAccessibleApplication -include/QtGui/QAccessibleBridge -include/QtGui/QAccessibleBridgeFactoryInterface -include/QtGui/QAccessibleBridgePlugin -include/QtGui/QAccessibleEditableTextInterface -include/QtGui/QAccessibleEvent -include/QtGui/QAccessibleFactoryInterface -include/QtGui/QAccessibleInterface -include/QtGui/QAccessibleInterfaceEx -include/QtGui/QAccessibleObject -include/QtGui/QAccessibleObjectEx -include/QtGui/QAccessiblePlugin -include/QtGui/QAccessibleSimpleEditableTextInterface -include/QtGui/QAccessibleTableInterface -include/QtGui/QAccessibleTextInterface -include/QtGui/QAccessibleValueInterface -include/QtGui/QAccessibleWidget -include/QtGui/QAccessibleWidgetEx -include/QtGui/QAction -include/QtGui/QActionEvent -include/QtGui/QActionGroup -include/QtGui/QApplication -include/QtGui/QBitmap -include/QtGui/QBoxLayout -include/QtGui/QBrush -include/QtGui/QBrushData -include/QtGui/QButtonGroup -include/QtGui/QCDEStyle -include/QtGui/QCalendarWidget -include/QtGui/QCheckBox -include/QtGui/QCleanlooksStyle -include/QtGui/QClipboard -include/QtGui/QClipboardEvent -include/QtGui/QCloseEvent -include/QtGui/QColor -include/QtGui/QColorDialog -include/QtGui/QColorGroup -include/QtGui/QColormap -include/QtGui/QColumnView -include/QtGui/QComboBox -include/QtGui/QCommonStyle -include/QtGui/QCompleter -include/QtGui/QConicalGradient -include/QtGui/QContextMenuEvent -include/QtGui/QCursor -include/QtGui/QCursorShape -include/QtGui/QDataWidgetMapper -include/QtGui/QDateEdit -include/QtGui/QDateTimeEdit -include/QtGui/QDesktopServices -include/QtGui/QDesktopWidget -include/QtGui/QDial -include/QtGui/QDialog -include/QtGui/QDialogButtonBox -include/QtGui/QDirModel -include/QtGui/QDockWidget -include/QtGui/QDoubleSpinBox -include/QtGui/QDoubleValidator -include/QtGui/QDrag -include/QtGui/QDragEnterEvent -include/QtGui/QDragLeaveEvent -include/QtGui/QDragMoveEvent -include/QtGui/QDragResponseEvent -include/QtGui/QDropEvent -include/QtGui/QErrorMessage -include/QtGui/QFileDialog -include/QtGui/QFileIconProvider -include/QtGui/QFileOpenEvent -include/QtGui/QFocusEvent -include/QtGui/QFocusFrame -include/QtGui/QFont -include/QtGui/QFontComboBox -include/QtGui/QFontDatabase -include/QtGui/QFontDialog -include/QtGui/QFontInfo -include/QtGui/QFontMetrics -include/QtGui/QFontMetricsF -include/QtGui/QFrame -include/QtGui/QGradient -include/QtGui/QGradientStop -include/QtGui/QGradientStops -include/QtGui/QGraphicsEllipseItem -include/QtGui/QGraphicsItem -include/QtGui/QGraphicsItemAnimation -include/QtGui/QGraphicsItemGroup -include/QtGui/QGraphicsLineItem -include/QtGui/QGraphicsPathItem -include/QtGui/QGraphicsPixmapItem -include/QtGui/QGraphicsPolygonItem -include/QtGui/QGraphicsRectItem -include/QtGui/QGraphicsScene -include/QtGui/QGraphicsSceneContextMenuEvent -include/QtGui/QGraphicsSceneDragDropEvent -include/QtGui/QGraphicsSceneEvent -include/QtGui/QGraphicsSceneHelpEvent -include/QtGui/QGraphicsSceneHoverEvent -include/QtGui/QGraphicsSceneMouseEvent -include/QtGui/QGraphicsSceneWheelEvent -include/QtGui/QGraphicsSimpleTextItem -include/QtGui/QGraphicsTextItem -include/QtGui/QGraphicsView -include/QtGui/QGridLayout -include/QtGui/QGroupBox -include/QtGui/QHBoxLayout -include/QtGui/QHeaderView -include/QtGui/QHelpEvent -include/QtGui/QHideEvent -include/QtGui/QHoverEvent -include/QtGui/QIcon -include/QtGui/QIconDragEvent -include/QtGui/QIconEngine -include/QtGui/QIconEngineFactoryInterface -include/QtGui/QIconEngineFactoryInterfaceV2 -include/QtGui/QIconEnginePlugin -include/QtGui/QIconEnginePluginV2 -include/QtGui/QIconEngineV2 -include/QtGui/QIconSet -include/QtGui/QImage -include/QtGui/QImageIOHandler -include/QtGui/QImageIOHandlerFactoryInterface -include/QtGui/QImageIOPlugin -include/QtGui/QImageReader -include/QtGui/QImageTextKeyLang -include/QtGui/QImageWriter -include/QtGui/QInputContext -include/QtGui/QInputContextFactory -include/QtGui/QInputContextFactoryInterface -include/QtGui/QInputContextPlugin -include/QtGui/QInputDialog -include/QtGui/QInputEvent -include/QtGui/QInputMethodEvent -include/QtGui/QIntValidator -include/QtGui/QItemDelegate -include/QtGui/QItemEditorCreator -include/QtGui/QItemEditorCreatorBase -include/QtGui/QItemEditorFactory -include/QtGui/QItemSelection -include/QtGui/QItemSelectionModel -include/QtGui/QItemSelectionRange -include/QtGui/QKeyEvent -include/QtGui/QKeySequence -include/QtGui/QLCDNumber -include/QtGui/QLabel -include/QtGui/QLayout -include/QtGui/QLayoutItem -include/QtGui/QLayoutIterator -include/QtGui/QLineEdit -include/QtGui/QLinearGradient -include/QtGui/QListView -include/QtGui/QListWidget -include/QtGui/QListWidgetItem -include/QtGui/QMacMime -include/QtGui/QMacPasteboardMime -include/QtGui/QMainWindow -include/QtGui/QMatrix -include/QtGui/QMdiArea -include/QtGui/QMdiSubWindow -include/QtGui/QMenu -include/QtGui/QMenuBar -include/QtGui/QMenuItem -include/QtGui/QMenubarUpdatedEvent -include/QtGui/QMessageBox -include/QtGui/QMimeSource -include/QtGui/QMotifStyle -include/QtGui/QMouseEvent -include/QtGui/QMoveEvent -include/QtGui/QMovie -include/QtGui/QPageSetupDialog -include/QtGui/QPaintDevice -include/QtGui/QPaintEngine -include/QtGui/QPaintEngineState -include/QtGui/QPaintEvent -include/QtGui/QPainter -include/QtGui/QPainterPath -include/QtGui/QPainterPathPrivate -include/QtGui/QPainterPathStroker -include/QtGui/QPalette -include/QtGui/QPen -include/QtGui/QPicture -include/QtGui/QPictureFormatInterface -include/QtGui/QPictureFormatPlugin -include/QtGui/QPictureIO -include/QtGui/QPixmap -include/QtGui/QPixmapCache -include/QtGui/QPlastiqueStyle -include/QtGui/QPolygon -include/QtGui/QPolygonF -include/QtGui/QPrintDialog -include/QtGui/QPrintEngine -include/QtGui/QPrinter -include/QtGui/QProgressBar -include/QtGui/QProgressDialog -include/QtGui/QProxyModel -include/QtGui/QPushButton -include/QtGui/QRadialGradient -include/QtGui/QRadioButton -include/QtGui/QRegExpValidator -include/QtGui/QRegion -include/QtGui/QResizeEvent -include/QtGui/QRgb -include/QtGui/QRubberBand -include/QtGui/QScrollArea -include/QtGui/QScrollBar -include/QtGui/QSessionManager -include/QtGui/QShortcut -include/QtGui/QShortcutEvent -include/QtGui/QShowEvent -include/QtGui/QSizeGrip -include/QtGui/QSizePolicy -include/QtGui/QSlider -include/QtGui/QSortFilterProxyModel -include/QtGui/QSound -include/QtGui/QSpacerItem -include/QtGui/QSpinBox -include/QtGui/QSplashScreen -include/QtGui/QSplitter -include/QtGui/QSplitterHandle -include/QtGui/QStackedLayout -include/QtGui/QStackedWidget -include/QtGui/QStandardItem -include/QtGui/QStandardItemEditorCreator -include/QtGui/QStandardItemModel -include/QtGui/QStatusBar -include/QtGui/QStatusTipEvent -include/QtGui/QStringListModel -include/QtGui/QStyle -include/QtGui/QStyleFactory -include/QtGui/QStyleFactoryInterface -include/QtGui/QStyleHintReturn -include/QtGui/QStyleHintReturnMask -include/QtGui/QStyleHintReturnVariant -include/QtGui/QStyleOption -include/QtGui/QStyleOptionButton -include/QtGui/QStyleOptionComboBox -include/QtGui/QStyleOptionComplex -include/QtGui/QStyleOptionDockWidget -include/QtGui/QStyleOptionDockWidgetV2 -include/QtGui/QStyleOptionFocusRect -include/QtGui/QStyleOptionFrame -include/QtGui/QStyleOptionFrameV2 -include/QtGui/QStyleOptionGraphicsItem -include/QtGui/QStyleOptionGroupBox -include/QtGui/QStyleOptionHeader -include/QtGui/QStyleOptionMenuItem -include/QtGui/QStyleOptionProgressBar -include/QtGui/QStyleOptionProgressBarV2 -include/QtGui/QStyleOptionQ3DockWindow -include/QtGui/QStyleOptionQ3ListView -include/QtGui/QStyleOptionQ3ListViewItem -include/QtGui/QStyleOptionRubberBand -include/QtGui/QStyleOptionSizeGrip -include/QtGui/QStyleOptionSlider -include/QtGui/QStyleOptionSpinBox -include/QtGui/QStyleOptionTab -include/QtGui/QStyleOptionTabBarBase -include/QtGui/QStyleOptionTabV2 -include/QtGui/QStyleOptionTabWidgetFrame -include/QtGui/QStyleOptionTitleBar -include/QtGui/QStyleOptionToolBar -include/QtGui/QStyleOptionToolBox -include/QtGui/QStyleOptionToolBoxV2 -include/QtGui/QStyleOptionToolButton -include/QtGui/QStyleOptionViewItem -include/QtGui/QStyleOptionViewItemV2 -include/QtGui/QStyleOptionViewItemV3 -include/QtGui/QStylePainter -include/QtGui/QStylePlugin -include/QtGui/QSyntaxHighlighter -include/QtGui/QSystemTrayIcon -include/QtGui/QTabBar -include/QtGui/QTabWidget -include/QtGui/QTableView -include/QtGui/QTableWidget -include/QtGui/QTableWidgetItem -include/QtGui/QTableWidgetSelectionRange -include/QtGui/QTabletEvent -include/QtGui/QTextBlock -include/QtGui/QTextBlockFormat -include/QtGui/QTextBlockGroup -include/QtGui/QTextBlockUserData -include/QtGui/QTextBrowser -include/QtGui/QTextCharFormat -include/QtGui/QTextCursor -include/QtGui/QTextDocument -include/QtGui/QTextDocumentFragment -include/QtGui/QTextEdit -include/QtGui/QTextFormat -include/QtGui/QTextFragment -include/QtGui/QTextFrame -include/QtGui/QTextFrameFormat -include/QtGui/QTextFrameLayoutData -include/QtGui/QTextImageFormat -include/QtGui/QTextInlineObject -include/QtGui/QTextItem -include/QtGui/QTextLayout -include/QtGui/QTextLength -include/QtGui/QTextLine -include/QtGui/QTextList -include/QtGui/QTextListFormat -include/QtGui/QTextObject -include/QtGui/QTextObjectInterface -include/QtGui/QTextOption -include/QtGui/QTextTable -include/QtGui/QTextTableCell -include/QtGui/QTextTableFormat -include/QtGui/QTimeEdit -include/QtGui/QToolBar -include/QtGui/QToolBarChangeEvent -include/QtGui/QToolBox -include/QtGui/QToolButton -include/QtGui/QToolTip -include/QtGui/QTransform -include/QtGui/QTreeView -include/QtGui/QTreeWidget -include/QtGui/QTreeWidgetItem -include/QtGui/QTreeWidgetItemIterator -include/QtGui/QUndoCommand -include/QtGui/QUndoGroup -include/QtGui/QUndoStack -include/QtGui/QUndoView -include/QtGui/QUpdateLaterEvent -include/QtGui/QVBoxLayout -include/QtGui/QValidator -include/QtGui/QWMatrix -include/QtGui/QWhatsThis -include/QtGui/QWhatsThisClickedEvent -include/QtGui/QWheelEvent -include/QtGui/QWidget -include/QtGui/QWidgetAction -include/QtGui/QWidgetData -include/QtGui/QWidgetItem -include/QtGui/QWidgetList -include/QtGui/QWidgetMapper -include/QtGui/QWidgetSet -include/QtGui/QWindowStateChangeEvent -include/QtGui/QWindowsMime -include/QtGui/QWindowsStyle -include/QtGui/QWindowsVistaStyle -include/QtGui/QWindowsXPStyle -include/QtGui/QWizard -include/QtGui/QWizardPage -include/QtGui/QWorkspace -include/QtGui/QX11EmbedContainer -include/QtGui/QX11EmbedWidget -include/QtGui/QX11Info -include/QtGui/QtEvents -include/QtGui/QtGui -include/QtGui/qabstractbutton.h -include/QtGui/qabstractitemdelegate.h -include/QtGui/qabstractitemview.h -include/QtGui/qabstractpagesetupdialog.h -include/QtGui/qabstractprintdialog.h -include/QtGui/qabstractproxymodel.h -include/QtGui/qabstractscrollarea.h -include/QtGui/qabstractslider.h -include/QtGui/qabstractspinbox.h -include/QtGui/qabstracttextdocumentlayout.h -include/QtGui/qaccessible.h -include/QtGui/qaccessible2.h -include/QtGui/qaccessiblebridge.h -include/QtGui/qaccessibleobject.h -include/QtGui/qaccessibleplugin.h -include/QtGui/qaccessiblewidget.h -include/QtGui/qaction.h -include/QtGui/qactiongroup.h -include/QtGui/qapplication.h -include/QtGui/qbitmap.h -include/QtGui/qboxlayout.h -include/QtGui/qbrush.h -include/QtGui/qbuttongroup.h -include/QtGui/qcalendarwidget.h -include/QtGui/qcdestyle.h -include/QtGui/qcheckbox.h -include/QtGui/qcleanlooksstyle.h -include/QtGui/qclipboard.h -include/QtGui/qcolor.h -include/QtGui/qcolordialog.h -include/QtGui/qcolormap.h -include/QtGui/qcolumnview.h -include/QtGui/qcombobox.h -include/QtGui/qcommonstyle.h -include/QtGui/qcompleter.h -include/QtGui/qcursor.h -include/QtGui/qdatawidgetmapper.h -include/QtGui/qdatetimeedit.h -include/QtGui/qdesktopservices.h -include/QtGui/qdesktopwidget.h -include/QtGui/qdial.h -include/QtGui/qdialog.h -include/QtGui/qdialogbuttonbox.h -include/QtGui/qdirmodel.h -include/QtGui/qdockwidget.h -include/QtGui/qdrag.h -include/QtGui/qdrawutil.h -include/QtGui/qerrormessage.h -include/QtGui/qevent.h -include/QtGui/qfiledialog.h -include/QtGui/qfileiconprovider.h -include/QtGui/qfocusframe.h -include/QtGui/qfont.h -include/QtGui/qfontcombobox.h -include/QtGui/qfontdatabase.h -include/QtGui/qfontdialog.h -include/QtGui/qfontinfo.h -include/QtGui/qfontmetrics.h -include/QtGui/qframe.h -include/QtGui/qgraphicsitem.h -include/QtGui/qgraphicsitemanimation.h -include/QtGui/qgraphicsscene.h -include/QtGui/qgraphicssceneevent.h -include/QtGui/qgraphicsview.h -include/QtGui/qgridlayout.h -include/QtGui/qgroupbox.h -include/QtGui/qheaderview.h -include/QtGui/qicon.h -include/QtGui/qiconengine.h -include/QtGui/qiconengineplugin.h -include/QtGui/qimage.h -include/QtGui/qimageiohandler.h -include/QtGui/qimagereader.h -include/QtGui/qimagewriter.h -include/QtGui/qinputcontext.h -include/QtGui/qinputcontextfactory.h -include/QtGui/qinputcontextplugin.h -include/QtGui/qinputdialog.h -include/QtGui/qitemdelegate.h -include/QtGui/qitemeditorfactory.h -include/QtGui/qitemselectionmodel.h -include/QtGui/qkeysequence.h -include/QtGui/qlabel.h -include/QtGui/qlayout.h -include/QtGui/qlayoutitem.h -include/QtGui/qlcdnumber.h -include/QtGui/qlineedit.h -include/QtGui/qlistview.h -include/QtGui/qlistwidget.h -include/QtGui/qmainwindow.h -include/QtGui/qmatrix.h -include/QtGui/qmdiarea.h -include/QtGui/qmdisubwindow.h -include/QtGui/qmenu.h -include/QtGui/qmenubar.h -include/QtGui/qmenudata.h -include/QtGui/qmessagebox.h -include/QtGui/qmime.h -include/QtGui/qmotifstyle.h -include/QtGui/qmovie.h -include/QtGui/qpagesetupdialog.h -include/QtGui/qpaintdevice.h -include/QtGui/qpaintengine.h -include/QtGui/qpainter.h -include/QtGui/qpainterpath.h -include/QtGui/qpalette.h -include/QtGui/qpen.h -include/QtGui/qpicture.h -include/QtGui/qpictureformatplugin.h -include/QtGui/qpixmap.h -include/QtGui/qpixmapcache.h -include/QtGui/qplastiquestyle.h -include/QtGui/qpolygon.h -include/QtGui/qprintdialog.h -include/QtGui/qprintengine.h -include/QtGui/qprinter.h -include/QtGui/qprogressbar.h -include/QtGui/qprogressdialog.h -include/QtGui/qproxymodel.h -include/QtGui/qpushbutton.h -include/QtGui/qradiobutton.h -include/QtGui/qregion.h -include/QtGui/qrgb.h -include/QtGui/qrubberband.h -include/QtGui/qscrollarea.h -include/QtGui/qscrollbar.h -include/QtGui/qsessionmanager.h -include/QtGui/qshortcut.h -include/QtGui/qsizegrip.h -include/QtGui/qsizepolicy.h -include/QtGui/qslider.h -include/QtGui/qsortfilterproxymodel.h -include/QtGui/qsound.h -include/QtGui/qspinbox.h -include/QtGui/qsplashscreen.h -include/QtGui/qsplitter.h -include/QtGui/qstackedlayout.h -include/QtGui/qstackedwidget.h -include/QtGui/qstandarditemmodel.h -include/QtGui/qstatusbar.h -include/QtGui/qstringlistmodel.h -include/QtGui/qstyle.h -include/QtGui/qstylefactory.h -include/QtGui/qstyleoption.h -include/QtGui/qstylepainter.h -include/QtGui/qstyleplugin.h -include/QtGui/qsyntaxhighlighter.h -include/QtGui/qsystemtrayicon.h -include/QtGui/qtabbar.h -include/QtGui/qtableview.h -include/QtGui/qtablewidget.h -include/QtGui/qtabwidget.h -include/QtGui/qtextbrowser.h -include/QtGui/qtextcursor.h -include/QtGui/qtextdocument.h -include/QtGui/qtextdocumentfragment.h -include/QtGui/qtextedit.h -include/QtGui/qtextformat.h -include/QtGui/qtextlayout.h -include/QtGui/qtextlist.h -include/QtGui/qtextobject.h -include/QtGui/qtextoption.h -include/QtGui/qtexttable.h -include/QtGui/qtoolbar.h -include/QtGui/qtoolbox.h -include/QtGui/qtoolbutton.h -include/QtGui/qtooltip.h -include/QtGui/qtransform.h -include/QtGui/qtreeview.h -include/QtGui/qtreewidget.h -include/QtGui/qtreewidgetitemiterator.h -include/QtGui/qundogroup.h -include/QtGui/qundostack.h -include/QtGui/qundoview.h -include/QtGui/qvalidator.h -include/QtGui/qwhatsthis.h -include/QtGui/qwidget.h -include/QtGui/qwidgetaction.h -include/QtGui/qwindowdefs.h -include/QtGui/qwindowsstyle.h -include/QtGui/qwindowsvistastyle.h -include/QtGui/qwindowsxpstyle.h -include/QtGui/qwizard.h -include/QtGui/qwmatrix.h -include/QtGui/qworkspace.h -include/QtGui/qx11embed_x11.h -include/QtGui/qx11info_x11.h -lib/libQtGui.la -lib/libQtGui.prl -lib/libQtGui.so -lib/libQtGui.so.4 -lib/libQtGui.so.4.3 -lib/libQtGui.so.4.3.4 -%%DEBUG%%lib/libQtGui.so.4.3.4.debug +include/qt4/Qt/QtGui +include/qt4/Qt/qabstractbutton.h +include/qt4/Qt/qabstractitemdelegate.h +include/qt4/Qt/qabstractitemview.h +include/qt4/Qt/qabstractpagesetupdialog.h +include/qt4/Qt/qabstractprintdialog.h +include/qt4/Qt/qabstractproxymodel.h +include/qt4/Qt/qabstractscrollarea.h +include/qt4/Qt/qabstractslider.h +include/qt4/Qt/qabstractspinbox.h +include/qt4/Qt/qabstracttextdocumentlayout.h +include/qt4/Qt/qaccessible.h +include/qt4/Qt/qaccessible2.h +include/qt4/Qt/qaccessiblebridge.h +include/qt4/Qt/qaccessibleobject.h +include/qt4/Qt/qaccessibleplugin.h +include/qt4/Qt/qaccessiblewidget.h +include/qt4/Qt/qaction.h +include/qt4/Qt/qactiongroup.h +include/qt4/Qt/qapplication.h +include/qt4/Qt/qbitmap.h +include/qt4/Qt/qboxlayout.h +include/qt4/Qt/qbrush.h +include/qt4/Qt/qbuttongroup.h +include/qt4/Qt/qcalendarwidget.h +include/qt4/Qt/qcdestyle.h +include/qt4/Qt/qcheckbox.h +include/qt4/Qt/qcleanlooksstyle.h +include/qt4/Qt/qclipboard.h +include/qt4/Qt/qcolor.h +include/qt4/Qt/qcolordialog.h +include/qt4/Qt/qcolormap.h +include/qt4/Qt/qcolumnview.h +include/qt4/Qt/qcombobox.h +include/qt4/Qt/qcommandlinkbutton.h +include/qt4/Qt/qcommonstyle.h +include/qt4/Qt/qcompleter.h +include/qt4/Qt/qcursor.h +include/qt4/Qt/qdatawidgetmapper.h +include/qt4/Qt/qdatetimeedit.h +include/qt4/Qt/qdesktopservices.h +include/qt4/Qt/qdesktopwidget.h +include/qt4/Qt/qdial.h +include/qt4/Qt/qdialog.h +include/qt4/Qt/qdialogbuttonbox.h +include/qt4/Qt/qdirmodel.h +include/qt4/Qt/qdockwidget.h +include/qt4/Qt/qdrag.h +include/qt4/Qt/qdrawutil.h +include/qt4/Qt/qerrormessage.h +include/qt4/Qt/qevent.h +include/qt4/Qt/qfiledialog.h +include/qt4/Qt/qfileiconprovider.h +include/qt4/Qt/qfilesystemmodel.h +include/qt4/Qt/qfocusframe.h +include/qt4/Qt/qfont.h +include/qt4/Qt/qfontcombobox.h +include/qt4/Qt/qfontdatabase.h +include/qt4/Qt/qfontdialog.h +include/qt4/Qt/qfontinfo.h +include/qt4/Qt/qfontmetrics.h +include/qt4/Qt/qformlayout.h +include/qt4/Qt/qframe.h +include/qt4/Qt/qgraphicsgridlayout.h +include/qt4/Qt/qgraphicsitem.h +include/qt4/Qt/qgraphicsitemanimation.h +include/qt4/Qt/qgraphicslayout.h +include/qt4/Qt/qgraphicslayoutitem.h +include/qt4/Qt/qgraphicslinearlayout.h +include/qt4/Qt/qgraphicsproxywidget.h +include/qt4/Qt/qgraphicsscene.h +include/qt4/Qt/qgraphicssceneevent.h +include/qt4/Qt/qgraphicsview.h +include/qt4/Qt/qgraphicswidget.h +include/qt4/Qt/qgridlayout.h +include/qt4/Qt/qgroupbox.h +include/qt4/Qt/qheaderview.h +include/qt4/Qt/qicon.h +include/qt4/Qt/qiconengine.h +include/qt4/Qt/qiconengineplugin.h +include/qt4/Qt/qimage.h +include/qt4/Qt/qimageiohandler.h +include/qt4/Qt/qimagereader.h +include/qt4/Qt/qimagewriter.h +include/qt4/Qt/qinputcontext.h +include/qt4/Qt/qinputcontextfactory.h +include/qt4/Qt/qinputcontextplugin.h +include/qt4/Qt/qinputdialog.h +include/qt4/Qt/qitemdelegate.h +include/qt4/Qt/qitemeditorfactory.h +include/qt4/Qt/qitemselectionmodel.h +include/qt4/Qt/qkeysequence.h +include/qt4/Qt/qlabel.h +include/qt4/Qt/qlayout.h +include/qt4/Qt/qlayoutitem.h +include/qt4/Qt/qlcdnumber.h +include/qt4/Qt/qlineedit.h +include/qt4/Qt/qlistview.h +include/qt4/Qt/qlistwidget.h +include/qt4/Qt/qmainwindow.h +include/qt4/Qt/qmatrix.h +include/qt4/Qt/qmdiarea.h +include/qt4/Qt/qmdisubwindow.h +include/qt4/Qt/qmenu.h +include/qt4/Qt/qmenubar.h +include/qt4/Qt/qmenudata.h +include/qt4/Qt/qmessagebox.h +include/qt4/Qt/qmime.h +include/qt4/Qt/qmotifstyle.h +include/qt4/Qt/qmovie.h +include/qt4/Qt/qpagesetupdialog.h +include/qt4/Qt/qpaintdevice.h +include/qt4/Qt/qpaintengine.h +include/qt4/Qt/qpainter.h +include/qt4/Qt/qpainterpath.h +include/qt4/Qt/qpalette.h +include/qt4/Qt/qpen.h +include/qt4/Qt/qpicture.h +include/qt4/Qt/qpictureformatplugin.h +include/qt4/Qt/qpixmap.h +include/qt4/Qt/qpixmapcache.h +include/qt4/Qt/qplaintextedit.h +include/qt4/Qt/qplastiquestyle.h +include/qt4/Qt/qpolygon.h +include/qt4/Qt/qprintdialog.h +include/qt4/Qt/qprintengine.h +include/qt4/Qt/qprinter.h +include/qt4/Qt/qprinterinfo.h +include/qt4/Qt/qprintpreviewdialog.h +include/qt4/Qt/qprintpreviewwidget.h +include/qt4/Qt/qprogressbar.h +include/qt4/Qt/qprogressdialog.h +include/qt4/Qt/qproxymodel.h +include/qt4/Qt/qpushbutton.h +include/qt4/Qt/qradiobutton.h +include/qt4/Qt/qregion.h +include/qt4/Qt/qrgb.h +include/qt4/Qt/qrubberband.h +include/qt4/Qt/qscrollarea.h +include/qt4/Qt/qscrollbar.h +include/qt4/Qt/qsessionmanager.h +include/qt4/Qt/qshortcut.h +include/qt4/Qt/qsizegrip.h +include/qt4/Qt/qsizepolicy.h +include/qt4/Qt/qslider.h +include/qt4/Qt/qsortfilterproxymodel.h +include/qt4/Qt/qsound.h +include/qt4/Qt/qspinbox.h +include/qt4/Qt/qsplashscreen.h +include/qt4/Qt/qsplitter.h +include/qt4/Qt/qstackedlayout.h +include/qt4/Qt/qstackedwidget.h +include/qt4/Qt/qstandarditemmodel.h +include/qt4/Qt/qstatusbar.h +include/qt4/Qt/qstringlistmodel.h +include/qt4/Qt/qstyle.h +include/qt4/Qt/qstyleditemdelegate.h +include/qt4/Qt/qstylefactory.h +include/qt4/Qt/qstyleoption.h +include/qt4/Qt/qstylepainter.h +include/qt4/Qt/qstyleplugin.h +include/qt4/Qt/qsyntaxhighlighter.h +include/qt4/Qt/qsystemtrayicon.h +include/qt4/Qt/qtabbar.h +include/qt4/Qt/qtableview.h +include/qt4/Qt/qtablewidget.h +include/qt4/Qt/qtabwidget.h +include/qt4/Qt/qtextbrowser.h +include/qt4/Qt/qtextcursor.h +include/qt4/Qt/qtextdocument.h +include/qt4/Qt/qtextdocumentfragment.h +include/qt4/Qt/qtextedit.h +include/qt4/Qt/qtextformat.h +include/qt4/Qt/qtextlayout.h +include/qt4/Qt/qtextlist.h +include/qt4/Qt/qtextobject.h +include/qt4/Qt/qtextoption.h +include/qt4/Qt/qtexttable.h +include/qt4/Qt/qtoolbar.h +include/qt4/Qt/qtoolbox.h +include/qt4/Qt/qtoolbutton.h +include/qt4/Qt/qtooltip.h +include/qt4/Qt/qtransform.h +include/qt4/Qt/qtreeview.h +include/qt4/Qt/qtreewidget.h +include/qt4/Qt/qtreewidgetitemiterator.h +include/qt4/Qt/qundogroup.h +include/qt4/Qt/qundostack.h +include/qt4/Qt/qundoview.h +include/qt4/Qt/qvalidator.h +include/qt4/Qt/qwhatsthis.h +include/qt4/Qt/qwidget.h +include/qt4/Qt/qwidgetaction.h +include/qt4/Qt/qwindowdefs.h +include/qt4/Qt/qwindowscestyle.h +include/qt4/Qt/qwindowsmobilestyle.h +include/qt4/Qt/qwindowsstyle.h +include/qt4/Qt/qwindowsvistastyle.h +include/qt4/Qt/qwindowsxpstyle.h +include/qt4/Qt/qwizard.h +include/qt4/Qt/qwmatrix.h +include/qt4/Qt/qworkspace.h +include/qt4/Qt/qx11embed_x11.h +include/qt4/Qt/qx11info_x11.h +include/qt4/QtGui/QAbstractButton +include/qt4/QtGui/QAbstractGraphicsShapeItem +include/qt4/QtGui/QAbstractItemDelegate +include/qt4/QtGui/QAbstractItemView +include/qt4/QtGui/QAbstractPageSetupDialog +include/qt4/QtGui/QAbstractPrintDialog +include/qt4/QtGui/QAbstractProxyModel +include/qt4/QtGui/QAbstractScrollArea +include/qt4/QtGui/QAbstractSlider +include/qt4/QtGui/QAbstractSpinBox +include/qt4/QtGui/QAbstractTextDocumentLayout +include/qt4/QtGui/QAbstractUndoItem +include/qt4/QtGui/QAccessible +include/qt4/QtGui/QAccessible2Interface +include/qt4/QtGui/QAccessibleApplication +include/qt4/QtGui/QAccessibleBridge +include/qt4/QtGui/QAccessibleBridgeFactoryInterface +include/qt4/QtGui/QAccessibleBridgePlugin +include/qt4/QtGui/QAccessibleEditableTextInterface +include/qt4/QtGui/QAccessibleEvent +include/qt4/QtGui/QAccessibleFactoryInterface +include/qt4/QtGui/QAccessibleInterface +include/qt4/QtGui/QAccessibleInterfaceEx +include/qt4/QtGui/QAccessibleObject +include/qt4/QtGui/QAccessibleObjectEx +include/qt4/QtGui/QAccessiblePlugin +include/qt4/QtGui/QAccessibleSimpleEditableTextInterface +include/qt4/QtGui/QAccessibleTableInterface +include/qt4/QtGui/QAccessibleTextInterface +include/qt4/QtGui/QAccessibleValueInterface +include/qt4/QtGui/QAccessibleWidget +include/qt4/QtGui/QAccessibleWidgetEx +include/qt4/QtGui/QAction +include/qt4/QtGui/QActionEvent +include/qt4/QtGui/QActionGroup +include/qt4/QtGui/QApplication +include/qt4/QtGui/QBitmap +include/qt4/QtGui/QBoxLayout +include/qt4/QtGui/QBrush +include/qt4/QtGui/QBrushData +include/qt4/QtGui/QButtonGroup +include/qt4/QtGui/QCDEStyle +include/qt4/QtGui/QCalendarWidget +include/qt4/QtGui/QCheckBox +include/qt4/QtGui/QCleanlooksStyle +include/qt4/QtGui/QClipboard +include/qt4/QtGui/QClipboardEvent +include/qt4/QtGui/QCloseEvent +include/qt4/QtGui/QColor +include/qt4/QtGui/QColorDialog +include/qt4/QtGui/QColorGroup +include/qt4/QtGui/QColormap +include/qt4/QtGui/QColumnView +include/qt4/QtGui/QComboBox +include/qt4/QtGui/QCommandLinkButton +include/qt4/QtGui/QCommonStyle +include/qt4/QtGui/QCompleter +include/qt4/QtGui/QConicalGradient +include/qt4/QtGui/QContextMenuEvent +include/qt4/QtGui/QCursor +include/qt4/QtGui/QCursorShape +include/qt4/QtGui/QDataWidgetMapper +include/qt4/QtGui/QDateEdit +include/qt4/QtGui/QDateTimeEdit +include/qt4/QtGui/QDesktopServices +include/qt4/QtGui/QDesktopWidget +include/qt4/QtGui/QDial +include/qt4/QtGui/QDialog +include/qt4/QtGui/QDialogButtonBox +include/qt4/QtGui/QDirModel +include/qt4/QtGui/QDockWidget +include/qt4/QtGui/QDoubleSpinBox +include/qt4/QtGui/QDoubleValidator +include/qt4/QtGui/QDrag +include/qt4/QtGui/QDragEnterEvent +include/qt4/QtGui/QDragLeaveEvent +include/qt4/QtGui/QDragMoveEvent +include/qt4/QtGui/QDragResponseEvent +include/qt4/QtGui/QDropEvent +include/qt4/QtGui/QErrorMessage +include/qt4/QtGui/QFileDialog +include/qt4/QtGui/QFileIconProvider +include/qt4/QtGui/QFileOpenEvent +include/qt4/QtGui/QFileSystemModel +include/qt4/QtGui/QFocusEvent +include/qt4/QtGui/QFocusFrame +include/qt4/QtGui/QFont +include/qt4/QtGui/QFontComboBox +include/qt4/QtGui/QFontDatabase +include/qt4/QtGui/QFontDialog +include/qt4/QtGui/QFontInfo +include/qt4/QtGui/QFontMetrics +include/qt4/QtGui/QFontMetricsF +include/qt4/QtGui/QFormLayout +include/qt4/QtGui/QFrame +include/qt4/QtGui/QGradient +include/qt4/QtGui/QGradientStop +include/qt4/QtGui/QGradientStops +include/qt4/QtGui/QGraphicsEllipseItem +include/qt4/QtGui/QGraphicsGridLayout +include/qt4/QtGui/QGraphicsItem +include/qt4/QtGui/QGraphicsItemAnimation +include/qt4/QtGui/QGraphicsItemGroup +include/qt4/QtGui/QGraphicsLayout +include/qt4/QtGui/QGraphicsLayoutItem +include/qt4/QtGui/QGraphicsLineItem +include/qt4/QtGui/QGraphicsLinearLayout +include/qt4/QtGui/QGraphicsPathItem +include/qt4/QtGui/QGraphicsPixmapItem +include/qt4/QtGui/QGraphicsPolygonItem +include/qt4/QtGui/QGraphicsProxyWidget +include/qt4/QtGui/QGraphicsRectItem +include/qt4/QtGui/QGraphicsScene +include/qt4/QtGui/QGraphicsSceneContextMenuEvent +include/qt4/QtGui/QGraphicsSceneDragDropEvent +include/qt4/QtGui/QGraphicsSceneEvent +include/qt4/QtGui/QGraphicsSceneHelpEvent +include/qt4/QtGui/QGraphicsSceneHoverEvent +include/qt4/QtGui/QGraphicsSceneMouseEvent +include/qt4/QtGui/QGraphicsSceneMoveEvent +include/qt4/QtGui/QGraphicsSceneResizeEvent +include/qt4/QtGui/QGraphicsSceneWheelEvent +include/qt4/QtGui/QGraphicsSimpleTextItem +include/qt4/QtGui/QGraphicsTextItem +include/qt4/QtGui/QGraphicsView +include/qt4/QtGui/QGraphicsWidget +include/qt4/QtGui/QGridLayout +include/qt4/QtGui/QGroupBox +include/qt4/QtGui/QHBoxLayout +include/qt4/QtGui/QHeaderView +include/qt4/QtGui/QHelpEvent +include/qt4/QtGui/QHideEvent +include/qt4/QtGui/QHoverEvent +include/qt4/QtGui/QIcon +include/qt4/QtGui/QIconDragEvent +include/qt4/QtGui/QIconEngine +include/qt4/QtGui/QIconEngineFactoryInterface +include/qt4/QtGui/QIconEngineFactoryInterfaceV2 +include/qt4/QtGui/QIconEnginePlugin +include/qt4/QtGui/QIconEnginePluginV2 +include/qt4/QtGui/QIconEngineV2 +include/qt4/QtGui/QIconSet +include/qt4/QtGui/QImage +include/qt4/QtGui/QImageIOHandler +include/qt4/QtGui/QImageIOHandlerFactoryInterface +include/qt4/QtGui/QImageIOPlugin +include/qt4/QtGui/QImageReader +include/qt4/QtGui/QImageTextKeyLang +include/qt4/QtGui/QImageWriter +include/qt4/QtGui/QInputContext +include/qt4/QtGui/QInputContextFactory +include/qt4/QtGui/QInputContextFactoryInterface +include/qt4/QtGui/QInputContextPlugin +include/qt4/QtGui/QInputDialog +include/qt4/QtGui/QInputEvent +include/qt4/QtGui/QInputMethodEvent +include/qt4/QtGui/QIntValidator +include/qt4/QtGui/QItemDelegate +include/qt4/QtGui/QItemEditorCreator +include/qt4/QtGui/QItemEditorCreatorBase +include/qt4/QtGui/QItemEditorFactory +include/qt4/QtGui/QItemSelection +include/qt4/QtGui/QItemSelectionModel +include/qt4/QtGui/QItemSelectionRange +include/qt4/QtGui/QKeyEvent +include/qt4/QtGui/QKeySequence +include/qt4/QtGui/QLCDNumber +include/qt4/QtGui/QLabel +include/qt4/QtGui/QLayout +include/qt4/QtGui/QLayoutItem +include/qt4/QtGui/QLayoutIterator +include/qt4/QtGui/QLineEdit +include/qt4/QtGui/QLinearGradient +include/qt4/QtGui/QListView +include/qt4/QtGui/QListWidget +include/qt4/QtGui/QListWidgetItem +include/qt4/QtGui/QMacMime +include/qt4/QtGui/QMacPasteboardMime +include/qt4/QtGui/QMainWindow +include/qt4/QtGui/QMatrix +include/qt4/QtGui/QMdiArea +include/qt4/QtGui/QMdiSubWindow +include/qt4/QtGui/QMenu +include/qt4/QtGui/QMenuBar +include/qt4/QtGui/QMenuItem +include/qt4/QtGui/QMenubarUpdatedEvent +include/qt4/QtGui/QMessageBox +include/qt4/QtGui/QMimeSource +include/qt4/QtGui/QMotifStyle +include/qt4/QtGui/QMouseEvent +include/qt4/QtGui/QMoveEvent +include/qt4/QtGui/QMovie +include/qt4/QtGui/QPageSetupDialog +include/qt4/QtGui/QPaintDevice +include/qt4/QtGui/QPaintEngine +include/qt4/QtGui/QPaintEngineState +include/qt4/QtGui/QPaintEvent +include/qt4/QtGui/QPainter +include/qt4/QtGui/QPainterPath +include/qt4/QtGui/QPainterPathPrivate +include/qt4/QtGui/QPainterPathStroker +include/qt4/QtGui/QPalette +include/qt4/QtGui/QPen +include/qt4/QtGui/QPicture +include/qt4/QtGui/QPictureFormatInterface +include/qt4/QtGui/QPictureFormatPlugin +include/qt4/QtGui/QPictureIO +include/qt4/QtGui/QPixmap +include/qt4/QtGui/QPixmapCache +include/qt4/QtGui/QPlainTextDocumentLayout +include/qt4/QtGui/QPlainTextEdit +include/qt4/QtGui/QPlastiqueStyle +include/qt4/QtGui/QPolygon +include/qt4/QtGui/QPolygonF +include/qt4/QtGui/QPrintDialog +include/qt4/QtGui/QPrintEngine +include/qt4/QtGui/QPrintPreviewDialog +include/qt4/QtGui/QPrintPreviewWidget +include/qt4/QtGui/QPrinter +include/qt4/QtGui/QPrinterInfo +include/qt4/QtGui/QProgressBar +include/qt4/QtGui/QProgressDialog +include/qt4/QtGui/QProxyModel +include/qt4/QtGui/QPushButton +include/qt4/QtGui/QRadialGradient +include/qt4/QtGui/QRadioButton +include/qt4/QtGui/QRegExpValidator +include/qt4/QtGui/QRegion +include/qt4/QtGui/QResizeEvent +include/qt4/QtGui/QRgb +include/qt4/QtGui/QRubberBand +include/qt4/QtGui/QScrollArea +include/qt4/QtGui/QScrollBar +include/qt4/QtGui/QSessionManager +include/qt4/QtGui/QShortcut +include/qt4/QtGui/QShortcutEvent +include/qt4/QtGui/QShowEvent +include/qt4/QtGui/QSizeGrip +include/qt4/QtGui/QSizePolicy +include/qt4/QtGui/QSlider +include/qt4/QtGui/QSortFilterProxyModel +include/qt4/QtGui/QSound +include/qt4/QtGui/QSpacerItem +include/qt4/QtGui/QSpinBox +include/qt4/QtGui/QSplashScreen +include/qt4/QtGui/QSplitter +include/qt4/QtGui/QSplitterHandle +include/qt4/QtGui/QStackedLayout +include/qt4/QtGui/QStackedWidget +include/qt4/QtGui/QStandardItem +include/qt4/QtGui/QStandardItemEditorCreator +include/qt4/QtGui/QStandardItemModel +include/qt4/QtGui/QStatusBar +include/qt4/QtGui/QStatusTipEvent +include/qt4/QtGui/QStringListModel +include/qt4/QtGui/QStyle +include/qt4/QtGui/QStyleFactory +include/qt4/QtGui/QStyleFactoryInterface +include/qt4/QtGui/QStyleHintReturn +include/qt4/QtGui/QStyleHintReturnMask +include/qt4/QtGui/QStyleHintReturnVariant +include/qt4/QtGui/QStyleOption +include/qt4/QtGui/QStyleOptionButton +include/qt4/QtGui/QStyleOptionComboBox +include/qt4/QtGui/QStyleOptionComplex +include/qt4/QtGui/QStyleOptionDockWidget +include/qt4/QtGui/QStyleOptionDockWidgetV2 +include/qt4/QtGui/QStyleOptionFocusRect +include/qt4/QtGui/QStyleOptionFrame +include/qt4/QtGui/QStyleOptionFrameV2 +include/qt4/QtGui/QStyleOptionGraphicsItem +include/qt4/QtGui/QStyleOptionGroupBox +include/qt4/QtGui/QStyleOptionHeader +include/qt4/QtGui/QStyleOptionMenuItem +include/qt4/QtGui/QStyleOptionProgressBar +include/qt4/QtGui/QStyleOptionProgressBarV2 +include/qt4/QtGui/QStyleOptionQ3DockWindow +include/qt4/QtGui/QStyleOptionQ3ListView +include/qt4/QtGui/QStyleOptionQ3ListViewItem +include/qt4/QtGui/QStyleOptionRubberBand +include/qt4/QtGui/QStyleOptionSizeGrip +include/qt4/QtGui/QStyleOptionSlider +include/qt4/QtGui/QStyleOptionSpinBox +include/qt4/QtGui/QStyleOptionTab +include/qt4/QtGui/QStyleOptionTabBarBase +include/qt4/QtGui/QStyleOptionTabV2 +include/qt4/QtGui/QStyleOptionTabWidgetFrame +include/qt4/QtGui/QStyleOptionTitleBar +include/qt4/QtGui/QStyleOptionToolBar +include/qt4/QtGui/QStyleOptionToolBox +include/qt4/QtGui/QStyleOptionToolBoxV2 +include/qt4/QtGui/QStyleOptionToolButton +include/qt4/QtGui/QStyleOptionViewItem +include/qt4/QtGui/QStyleOptionViewItemV2 +include/qt4/QtGui/QStyleOptionViewItemV3 +include/qt4/QtGui/QStyleOptionViewItemV4 +include/qt4/QtGui/QStylePainter +include/qt4/QtGui/QStylePlugin +include/qt4/QtGui/QStyledItemDelegate +include/qt4/QtGui/QSyntaxHighlighter +include/qt4/QtGui/QSystemTrayIcon +include/qt4/QtGui/QTabBar +include/qt4/QtGui/QTabWidget +include/qt4/QtGui/QTableView +include/qt4/QtGui/QTableWidget +include/qt4/QtGui/QTableWidgetItem +include/qt4/QtGui/QTableWidgetSelectionRange +include/qt4/QtGui/QTabletEvent +include/qt4/QtGui/QTextBlock +include/qt4/QtGui/QTextBlockFormat +include/qt4/QtGui/QTextBlockGroup +include/qt4/QtGui/QTextBlockUserData +include/qt4/QtGui/QTextBrowser +include/qt4/QtGui/QTextCharFormat +include/qt4/QtGui/QTextCursor +include/qt4/QtGui/QTextDocument +include/qt4/QtGui/QTextDocumentFragment +include/qt4/QtGui/QTextEdit +include/qt4/QtGui/QTextFormat +include/qt4/QtGui/QTextFragment +include/qt4/QtGui/QTextFrame +include/qt4/QtGui/QTextFrameFormat +include/qt4/QtGui/QTextFrameLayoutData +include/qt4/QtGui/QTextImageFormat +include/qt4/QtGui/QTextInlineObject +include/qt4/QtGui/QTextItem +include/qt4/QtGui/QTextLayout +include/qt4/QtGui/QTextLength +include/qt4/QtGui/QTextLine +include/qt4/QtGui/QTextList +include/qt4/QtGui/QTextListFormat +include/qt4/QtGui/QTextObject +include/qt4/QtGui/QTextObjectInterface +include/qt4/QtGui/QTextOption +include/qt4/QtGui/QTextTable +include/qt4/QtGui/QTextTableCell +include/qt4/QtGui/QTextTableCellFormat +include/qt4/QtGui/QTextTableFormat +include/qt4/QtGui/QTimeEdit +include/qt4/QtGui/QToolBar +include/qt4/QtGui/QToolBarChangeEvent +include/qt4/QtGui/QToolBox +include/qt4/QtGui/QToolButton +include/qt4/QtGui/QToolTip +include/qt4/QtGui/QTransform +include/qt4/QtGui/QTreeView +include/qt4/QtGui/QTreeWidget +include/qt4/QtGui/QTreeWidgetItem +include/qt4/QtGui/QTreeWidgetItemIterator +include/qt4/QtGui/QUndoCommand +include/qt4/QtGui/QUndoGroup +include/qt4/QtGui/QUndoStack +include/qt4/QtGui/QUndoView +include/qt4/QtGui/QUnixPrintWidget +include/qt4/QtGui/QUpdateLaterEvent +include/qt4/QtGui/QVBoxLayout +include/qt4/QtGui/QValidator +include/qt4/QtGui/QWMatrix +include/qt4/QtGui/QWhatsThis +include/qt4/QtGui/QWhatsThisClickedEvent +include/qt4/QtGui/QWheelEvent +include/qt4/QtGui/QWidget +include/qt4/QtGui/QWidgetAction +include/qt4/QtGui/QWidgetData +include/qt4/QtGui/QWidgetItem +include/qt4/QtGui/QWidgetItemV2 +include/qt4/QtGui/QWidgetList +include/qt4/QtGui/QWidgetMapper +include/qt4/QtGui/QWidgetSet +include/qt4/QtGui/QWindowStateChangeEvent +include/qt4/QtGui/QWindowsCEStyle +include/qt4/QtGui/QWindowsMime +include/qt4/QtGui/QWindowsMobileStyle +include/qt4/QtGui/QWindowsStyle +include/qt4/QtGui/QWindowsVistaStyle +include/qt4/QtGui/QWindowsXPStyle +include/qt4/QtGui/QWizard +include/qt4/QtGui/QWizardPage +include/qt4/QtGui/QWorkspace +include/qt4/QtGui/QX11EmbedContainer +include/qt4/QtGui/QX11EmbedWidget +include/qt4/QtGui/QX11Info +include/qt4/QtGui/QtEvents +include/qt4/QtGui/QtGui +include/qt4/QtGui/qabstractbutton.h +include/qt4/QtGui/qabstractitemdelegate.h +include/qt4/QtGui/qabstractitemview.h +include/qt4/QtGui/qabstractpagesetupdialog.h +include/qt4/QtGui/qabstractprintdialog.h +include/qt4/QtGui/qabstractproxymodel.h +include/qt4/QtGui/qabstractscrollarea.h +include/qt4/QtGui/qabstractslider.h +include/qt4/QtGui/qabstractspinbox.h +include/qt4/QtGui/qabstracttextdocumentlayout.h +include/qt4/QtGui/qaccessible.h +include/qt4/QtGui/qaccessible2.h +include/qt4/QtGui/qaccessiblebridge.h +include/qt4/QtGui/qaccessibleobject.h +include/qt4/QtGui/qaccessibleplugin.h +include/qt4/QtGui/qaccessiblewidget.h +include/qt4/QtGui/qaction.h +include/qt4/QtGui/qactiongroup.h +include/qt4/QtGui/qapplication.h +include/qt4/QtGui/qbitmap.h +include/qt4/QtGui/qboxlayout.h +include/qt4/QtGui/qbrush.h +include/qt4/QtGui/qbuttongroup.h +include/qt4/QtGui/qcalendarwidget.h +include/qt4/QtGui/qcdestyle.h +include/qt4/QtGui/qcheckbox.h +include/qt4/QtGui/qcleanlooksstyle.h +include/qt4/QtGui/qclipboard.h +include/qt4/QtGui/qcolor.h +include/qt4/QtGui/qcolordialog.h +include/qt4/QtGui/qcolormap.h +include/qt4/QtGui/qcolumnview.h +include/qt4/QtGui/qcombobox.h +include/qt4/QtGui/qcommandlinkbutton.h +include/qt4/QtGui/qcommonstyle.h +include/qt4/QtGui/qcompleter.h +include/qt4/QtGui/qcursor.h +include/qt4/QtGui/qdatawidgetmapper.h +include/qt4/QtGui/qdatetimeedit.h +include/qt4/QtGui/qdesktopservices.h +include/qt4/QtGui/qdesktopwidget.h +include/qt4/QtGui/qdial.h +include/qt4/QtGui/qdialog.h +include/qt4/QtGui/qdialogbuttonbox.h +include/qt4/QtGui/qdirmodel.h +include/qt4/QtGui/qdockwidget.h +include/qt4/QtGui/qdrag.h +include/qt4/QtGui/qdrawutil.h +include/qt4/QtGui/qerrormessage.h +include/qt4/QtGui/qevent.h +include/qt4/QtGui/qfiledialog.h +include/qt4/QtGui/qfileiconprovider.h +include/qt4/QtGui/qfilesystemmodel.h +include/qt4/QtGui/qfocusframe.h +include/qt4/QtGui/qfont.h +include/qt4/QtGui/qfontcombobox.h +include/qt4/QtGui/qfontdatabase.h +include/qt4/QtGui/qfontdialog.h +include/qt4/QtGui/qfontinfo.h +include/qt4/QtGui/qfontmetrics.h +include/qt4/QtGui/qformlayout.h +include/qt4/QtGui/qframe.h +include/qt4/QtGui/qgraphicsgridlayout.h +include/qt4/QtGui/qgraphicsitem.h +include/qt4/QtGui/qgraphicsitemanimation.h +include/qt4/QtGui/qgraphicslayout.h +include/qt4/QtGui/qgraphicslayoutitem.h +include/qt4/QtGui/qgraphicslinearlayout.h +include/qt4/QtGui/qgraphicsproxywidget.h +include/qt4/QtGui/qgraphicsscene.h +include/qt4/QtGui/qgraphicssceneevent.h +include/qt4/QtGui/qgraphicsview.h +include/qt4/QtGui/qgraphicswidget.h +include/qt4/QtGui/qgridlayout.h +include/qt4/QtGui/qgroupbox.h +include/qt4/QtGui/qheaderview.h +include/qt4/QtGui/qicon.h +include/qt4/QtGui/qiconengine.h +include/qt4/QtGui/qiconengineplugin.h +include/qt4/QtGui/qimage.h +include/qt4/QtGui/qimageiohandler.h +include/qt4/QtGui/qimagereader.h +include/qt4/QtGui/qimagewriter.h +include/qt4/QtGui/qinputcontext.h +include/qt4/QtGui/qinputcontextfactory.h +include/qt4/QtGui/qinputcontextplugin.h +include/qt4/QtGui/qinputdialog.h +include/qt4/QtGui/qitemdelegate.h +include/qt4/QtGui/qitemeditorfactory.h +include/qt4/QtGui/qitemselectionmodel.h +include/qt4/QtGui/qkeysequence.h +include/qt4/QtGui/qlabel.h +include/qt4/QtGui/qlayout.h +include/qt4/QtGui/qlayoutitem.h +include/qt4/QtGui/qlcdnumber.h +include/qt4/QtGui/qlineedit.h +include/qt4/QtGui/qlistview.h +include/qt4/QtGui/qlistwidget.h +include/qt4/QtGui/qmainwindow.h +include/qt4/QtGui/qmatrix.h +include/qt4/QtGui/qmdiarea.h +include/qt4/QtGui/qmdisubwindow.h +include/qt4/QtGui/qmenu.h +include/qt4/QtGui/qmenubar.h +include/qt4/QtGui/qmenudata.h +include/qt4/QtGui/qmessagebox.h +include/qt4/QtGui/qmime.h +include/qt4/QtGui/qmotifstyle.h +include/qt4/QtGui/qmovie.h +include/qt4/QtGui/qpagesetupdialog.h +include/qt4/QtGui/qpaintdevice.h +include/qt4/QtGui/qpaintengine.h +include/qt4/QtGui/qpainter.h +include/qt4/QtGui/qpainterpath.h +include/qt4/QtGui/qpalette.h +include/qt4/QtGui/qpen.h +include/qt4/QtGui/qpicture.h +include/qt4/QtGui/qpictureformatplugin.h +include/qt4/QtGui/qpixmap.h +include/qt4/QtGui/qpixmapcache.h +include/qt4/QtGui/qplaintextedit.h +include/qt4/QtGui/qplastiquestyle.h +include/qt4/QtGui/qpolygon.h +include/qt4/QtGui/qprintdialog.h +include/qt4/QtGui/qprintengine.h +include/qt4/QtGui/qprinter.h +include/qt4/QtGui/qprinterinfo.h +include/qt4/QtGui/qprintpreviewdialog.h +include/qt4/QtGui/qprintpreviewwidget.h +include/qt4/QtGui/qprogressbar.h +include/qt4/QtGui/qprogressdialog.h +include/qt4/QtGui/qproxymodel.h +include/qt4/QtGui/qpushbutton.h +include/qt4/QtGui/qradiobutton.h +include/qt4/QtGui/qregion.h +include/qt4/QtGui/qrgb.h +include/qt4/QtGui/qrubberband.h +include/qt4/QtGui/qscrollarea.h +include/qt4/QtGui/qscrollbar.h +include/qt4/QtGui/qsessionmanager.h +include/qt4/QtGui/qshortcut.h +include/qt4/QtGui/qsizegrip.h +include/qt4/QtGui/qsizepolicy.h +include/qt4/QtGui/qslider.h +include/qt4/QtGui/qsortfilterproxymodel.h +include/qt4/QtGui/qsound.h +include/qt4/QtGui/qspinbox.h +include/qt4/QtGui/qsplashscreen.h +include/qt4/QtGui/qsplitter.h +include/qt4/QtGui/qstackedlayout.h +include/qt4/QtGui/qstackedwidget.h +include/qt4/QtGui/qstandarditemmodel.h +include/qt4/QtGui/qstatusbar.h +include/qt4/QtGui/qstringlistmodel.h +include/qt4/QtGui/qstyle.h +include/qt4/QtGui/qstyleditemdelegate.h +include/qt4/QtGui/qstylefactory.h +include/qt4/QtGui/qstyleoption.h +include/qt4/QtGui/qstylepainter.h +include/qt4/QtGui/qstyleplugin.h +include/qt4/QtGui/qsyntaxhighlighter.h +include/qt4/QtGui/qsystemtrayicon.h +include/qt4/QtGui/qtabbar.h +include/qt4/QtGui/qtableview.h +include/qt4/QtGui/qtablewidget.h +include/qt4/QtGui/qtabwidget.h +include/qt4/QtGui/qtextbrowser.h +include/qt4/QtGui/qtextcursor.h +include/qt4/QtGui/qtextdocument.h +include/qt4/QtGui/qtextdocumentfragment.h +include/qt4/QtGui/qtextedit.h +include/qt4/QtGui/qtextformat.h +include/qt4/QtGui/qtextlayout.h +include/qt4/QtGui/qtextlist.h +include/qt4/QtGui/qtextobject.h +include/qt4/QtGui/qtextoption.h +include/qt4/QtGui/qtexttable.h +include/qt4/QtGui/qtoolbar.h +include/qt4/QtGui/qtoolbox.h +include/qt4/QtGui/qtoolbutton.h +include/qt4/QtGui/qtooltip.h +include/qt4/QtGui/qtransform.h +include/qt4/QtGui/qtreeview.h +include/qt4/QtGui/qtreewidget.h +include/qt4/QtGui/qtreewidgetitemiterator.h +include/qt4/QtGui/qundogroup.h +include/qt4/QtGui/qundostack.h +include/qt4/QtGui/qundoview.h +include/qt4/QtGui/qvalidator.h +include/qt4/QtGui/qwhatsthis.h +include/qt4/QtGui/qwidget.h +include/qt4/QtGui/qwidgetaction.h +include/qt4/QtGui/qwindowdefs.h +include/qt4/QtGui/qwindowscestyle.h +include/qt4/QtGui/qwindowsmobilestyle.h +include/qt4/QtGui/qwindowsstyle.h +include/qt4/QtGui/qwindowsvistastyle.h +include/qt4/QtGui/qwindowsxpstyle.h +include/qt4/QtGui/qwizard.h +include/qt4/QtGui/qwmatrix.h +include/qt4/QtGui/qworkspace.h +include/qt4/QtGui/qx11embed_x11.h +include/qt4/QtGui/qx11info_x11.h +lib/qt4/libQtGui.la +lib/qt4/libQtGui.prl +lib/qt4/libQtGui.so +lib/qt4/libQtGui.so.4 +lib/qt4/libQtGui.so.4.4 +lib/qt4/libQtGui.so.4.4.1 +%%DEBUG%%lib/qt4/libQtGui.so.4.4.1.debug libdata/pkgconfig/QtGui.pc -@dirrm include/QtGui +@dirrm include/qt4/QtGui +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 diff --git a/x11/qt4-inputmethods/Makefile b/x11/qt4-inputmethods/Makefile index 9923e0697621..bf080ba6cd91 100644 --- a/x11/qt4-inputmethods/Makefile +++ b/x11/qt4-inputmethods/Makefile @@ -8,7 +8,7 @@ PORTNAME= inputmethods PORTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION=0 CATEGORIES?= x11 MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -29,17 +29,17 @@ ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \ - --exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' \ - --exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \ - --exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/network src/opengl src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../.. diff --git a/x11/qt4-inputmethods/distinfo b/x11/qt4-inputmethods/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/x11/qt4-inputmethods/distinfo +++ b/x11/qt4-inputmethods/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/x11/qt4-opengl/Makefile b/x11/qt4-opengl/Makefile index 78d56ee2f85c..84e331eacf00 100644 --- a/x11/qt4-opengl/Makefile +++ b/x11/qt4-opengl/Makefile @@ -8,7 +8,7 @@ PORTNAME= opengl PORTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION=0 CATEGORIES?= x11 MASTER_SITES= ${MASTER_SITE_QT} PKGNAMEPREFIX= qt4- @@ -24,46 +24,39 @@ QT_NONSTANDARD= yes QT_DIST= yes HAS_CONFIGURE= yes -USE_LDCONFIG= yes -USE_GL= glu -USE_XORG= x11 +USE_LDCONFIG= ${PREFIX}/lib/qt4 +USE_GL= yes +USE_XLIB= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \ PATH=${WRKSRC}/bin:$$PATH -EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ - --exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \ - --exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \ - --exclude '${DISTNAME}/src/network' \ - --exclude '${DISTNAME}/src/xml' --exclude '${DISTNAME}/src/qt3support' \ - --exclude '${DISTNAME}/src/sql' --exclude '${DISTNAME}/src/plugins' \ - --exclude '${DISTNAME}/src/3rdparty' --exclude '${DISTNAME}/src/tools/moc' \ - --exclude '${DISTNAME}/src/tools/rcc' \ - --exclude '${DISTNAME}/src/tools/uic' --exclude '${DISTNAME}/src/tools/uic3' \ - --exclude '${DISTNAME}/tools/assistant' \ - --exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \ - --exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb' + +DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ + src/dbus src/network src/phonon \ + src/qt3support src/script src/sql src/svg src/testlib \ + src/tools src/xml src/xmlpatterns src/3rdparty/clucene \ + src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit +EXTRACT_AFTER_ARGS= | ${TAR} -xf - +.for dne in ${DO_NOT_EXTRACT} +EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' +.endfor + WRKSRC= ${WRKDIR}/${DISTNAME}/src/${PORTNAME} CONFIGURE_WRKSRC=${WRKSRC}/../../ pre-configure: ${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC} - ${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/lib|g' \ - -e 's|flat_headers.path.*|flat_headers.path=${PREFIX}/include/Qt|g' \ - -e 's|targ_headers.path.*|targ_headers.path=${PREFIX}/include/$$$$TARGET|g' \ - ${WRKSRC}/${PORTNAME}.pro ${WRKSRC}/../qt_install.pri ${MKDIR} ${WRKSRC}/../../mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../bin/moc post-configure: - ${REINPLACE_CMD} -e 's|${PREFIX}/lib/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ + ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${WRKSRC}/Makefile ${REINPLACE_CMD} -E -e 's|-L.[^[:space:]]*qt-x11-opensource.[^[:space:]]*lib||g' \ -E -e 's|(.*location=).*moc|\1${PREFIX}/bin/moc-qt4|g' \ - -E -e 's|(.*location=).*uic|\1${PREFIX}/bin/uic-qt4|g' \ - -E -e 's|(.*Cflags:.*)-I${LOCALBASE}/include |\1|g' \ - ${WRKSRC}/../../lib/pkgconfig/*Qt* + ${WRKSRC}/../../lib/pkgconfig/QtOpenGL.pc .include <bsd.port.mk> diff --git a/x11/qt4-opengl/distinfo b/x11/qt4-opengl/distinfo index 9451a68b5c02..0c630f09baf6 100644 --- a/x11/qt4-opengl/distinfo +++ b/x11/qt4-opengl/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 9499101ec54eb7b0de195b3c5e3ffa93 -SHA256 (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 8864dd80f3456be70a3be60364502a0ca3f46125b2f156860ad880ff55fcabd2 -SIZE (KDE/qt-x11-opensource-src-4.3.4.tar.gz) = 43988710 +MD5 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = b09decad252b5181f300135e3122481d +SHA256 (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 5aca7b784fc4de3db292666490ade84cfd1810f189c089c5c2810a710993f386 +SIZE (KDE/qt-x11-opensource-src-4.4.1.tar.gz) = 108774120 diff --git a/x11/qt4-opengl/pkg-plist b/x11/qt4-opengl/pkg-plist index cf8b3a55dfc7..74667e264349 100644 --- a/x11/qt4-opengl/pkg-plist +++ b/x11/qt4-opengl/pkg-plist @@ -1,29 +1,31 @@ -include/Qt/QtOpenGL -include/Qt/qgl.h -include/Qt/qglcolormap.h -include/Qt/qglframebufferobject.h -include/Qt/qglpixelbuffer.h -include/QtOpenGL/QGLColormap -include/QtOpenGL/QGLContext -include/QtOpenGL/QGLFormat -include/QtOpenGL/QGLFramebufferObject -include/QtOpenGL/QMacGLCompatTypes -include/QtOpenGL/QMacCompatGLint -include/QtOpenGL/QMacCompatGLuint -include/QtOpenGL/QMacCompatGLenum -include/QtOpenGL/QGLPixelBuffer -include/QtOpenGL/QGLWidget -include/QtOpenGL/QtOpenGL -include/QtOpenGL/qgl.h -include/QtOpenGL/qglcolormap.h -include/QtOpenGL/qglframebufferobject.h -include/QtOpenGL/qglpixelbuffer.h -lib/libQtOpenGL.la -lib/libQtOpenGL.prl -lib/libQtOpenGL.so -lib/libQtOpenGL.so.4 -lib/libQtOpenGL.so.4.3 -lib/libQtOpenGL.so.4.3.4 -%%DEBUG%%lib/libQtOpenGL.so.4.3.4.debug +include/qt4/Qt/QtOpenGL +include/qt4/Qt/qgl.h +include/qt4/Qt/qglcolormap.h +include/qt4/Qt/qglframebufferobject.h +include/qt4/Qt/qglpixelbuffer.h +include/qt4/QtOpenGL/QGLColormap +include/qt4/QtOpenGL/QGLContext +include/qt4/QtOpenGL/QGLFormat +include/qt4/QtOpenGL/QGLFramebufferObject +include/qt4/QtOpenGL/QGLPixelBuffer +include/qt4/QtOpenGL/QGLWidget +include/qt4/QtOpenGL/QMacCompatGLenum +include/qt4/QtOpenGL/QMacCompatGLint +include/qt4/QtOpenGL/QMacCompatGLuint +include/qt4/QtOpenGL/QMacGLCompatTypes +include/qt4/QtOpenGL/QtOpenGL +include/qt4/QtOpenGL/qgl.h +include/qt4/QtOpenGL/qglcolormap.h +include/qt4/QtOpenGL/qglframebufferobject.h +include/qt4/QtOpenGL/qglpixelbuffer.h +lib/qt4/libQtOpenGL.la +lib/qt4/libQtOpenGL.prl +lib/qt4/libQtOpenGL.so +lib/qt4/libQtOpenGL.so.4 +lib/qt4/libQtOpenGL.so.4.4 +lib/qt4/libQtOpenGL.so.4.4.1 +%%DEBUG%%lib/qt4/libQtOpenGL.so.4.4.1.debug libdata/pkgconfig/QtOpenGL.pc -@dirrm include/QtOpenGL +@dirrm include/qt4/QtOpenGL +@dirrmtry include/qt4/Qt +@dirrmtry include/qt4 |