Index: head/Mk/bsd.qt.mk =================================================================== --- head/Mk/bsd.qt.mk (revision 297366) +++ head/Mk/bsd.qt.mk (revision 297367) @@ -1,370 +1,369 @@ #-*- tab-width: 4; -*- # ex:ts=4 # # $FreeBSD$ # # Variables: # QT_NONSTANDARD - Suppress modification of configure and make environment. # QT_DIST - Package being built is part of the Qt distribution. # # Global switches (add this to /etc/make.conf): # WITH_QT_PHONON - If set, Qt phonon will be used instead of standalone. # Qt phonon doesn't work with KDE 4.4. # QT4_OPTIONS - A list of options, can be CUPS, NAS and/or QGTKSTYLE. # If set, Qt will be built with support for: # - Common UNIX Printing System (CUPS); # - Network Audio System (NAS); # - Qt style that renders using GTK (QGTKSTYLE). .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_INCDIR} \ --with-qt-libraries=${QT_LIBDIR} \ --with-extra-libs=${LOCALBASE}/lib \ --with-extra-includes=${LOCALBASE}/include CONFIGURE_ENV+= MOC="${MOC}" UIC="${UIC}" LIBS="${QTCFGLIBS}" \ QMAKE="${QMAKE}" QMAKESPEC="${QMAKESPEC}" QTDIR="${QT_PREFIX}" CPPFLAGS+= ${QTCPPFLAGS} MAKE_ENV+= QMAKESPEC="${QMAKESPEC}" .endif # !defined(QT_NONSTANDARD) .if defined(QT_DIST) DISTINFO_FILE= ${PORTSDIR}/devel/qt4/distinfo MASTER_SITES= ${MASTER_SITE_QT} DISTNAME= qt-everywhere-opensource-src-${QT4_VERSION} DIST_SUBDIR= KDE #CONFLICTS+= Currently there are no conflicts \o/ # Let configure handle its well known compilers defined in the mkspecs # (i.e. `cc` and `c++` are not supported by configure tests). CONFIGURE_ENV+= CC="" CXX="" # Keep in sync with devel/qmake4/files/qconfig.cpp CONFIGURE_ARGS+=-fast -platform ${QMAKESPEC} \ - -qt-gif -system-libjpeg -system-libpng \ + -system-libjpeg -system-libpng \ -system-libmng -system-libtiff -system-zlib \ -opensource -confirm-license \ -no-pch \ -prefix ${PREFIX} \ -bindir ${PREFIX}/bin \ -libdir ${PREFIX}/${QT_LIBDIR_REL} \ -docdir ${PREFIX}/share/doc/qt4 \ -headerdir ${PREFIX}/${QT_INCDIR_REL} \ -plugindir ${PREFIX}/${QT_PLUGINDIR_REL} \ -importdir ${PREFIX}/${QT_LIBDIR_REL}/imports \ -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 \ - -phonon \ - -no-phonon-backend + -phonon -no-phonon-backend PLIST_SUB+= SHLIB_VER=${QT4_VERSION:C/-.*//} \ SHLIB_SHVER=${QT4_VERSION:R} .if defined(PACKAGE_BUILDING) CONFIGURE_ARGS+=-no-mmx -no-3dnow -no-sse -no-sse2 -no-sse3 \ -no-ssse3 -no-sse4.1 -no-sse4.2 .endif #defined(PACKAGE_BUILDING) # .if defined(PORTNAME) && ${PORTNAME} != "xmlpatterns" # CONFIGURE_ARGS+=-no-exceptions # .endif .if defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) CONFIGURE_ARGS+=-debug -separate-debug-info PLIST_SUB+= DEBUG="" .else CONFIGURE_ARGS+=-release -no-separate-debug-info PLIST_SUB+= DEBUG="@comment " .endif .if defined(WANT_QT_VERBOSE_CONFIGURE) CONFIGURE_ARGS+=-verbose .endif .endif #defined(QT_DIST) QT_INCDIR_REL= include/qt4 QT_LIBDIR_REL= lib/qt4 QT_PLUGINDIR_REL= lib/qt4/plugins PLIST_SUB+= QT_INCDIR_REL=${QT_INCDIR_REL} \ QT_LIBDIR_REL=${QT_LIBDIR_REL} \ QT_PLUGINDIR_REL=${QT_PLUGINDIR_REL} QT_PREFIX?= ${LOCALBASE} QT_INCDIR?= ${QT_PREFIX}/${QT_INCDIR_REL} QT_LIBDIR?= ${QT_PREFIX}/${QT_LIBDIR_REL} QT_PLUGINDIR?= ${QT_PREFIX}/${QT_PLUGINDIR_REL} MOC?= ${QT_PREFIX}/bin/moc-qt4 UIC?= ${QT_PREFIX}/bin/uic-qt4 RCC?= ${QT_PREFIX}/bin/rcc QMAKE?= ${QT_PREFIX}/bin/qmake-qt4 QMAKEFLAGS+= QMAKE_CC="${CC}" QMAKE_CXX="${CXX}" \ QMAKE_LINK="${CXX}" QMAKE_LINK_SHLIB="${CXX}" \ QMAKE_LINK_C="${CC}" QMAKE_LINK_C_SHLIB="${CC}" \ QMAKE_CFLAGS="${CFLAGS}" QMAKE_CXXFLAGS="${CXXFLAGS}" \ QMAKE_CFLAGS_THREAD="${PTHREAD_CFLAGS}" \ QMAKE_LFLAGS_THREAD="${PTHREAD_LIBS}" # # Translate `c++` to its real name and select the appropriate mkspec. # QMAKE_BASE_COMPILER!= cc --version 2> /dev/null | ${AWK} 'NR == 1 { gsub(/[()]/, "", $$2); print $$2 }' .if ${QMAKE_BASE_COMPILER:L} == "gcc" QMAKE_BASE_COMPILER= g++ .endif .if ${CXX} == "c++" # Why CXX instead of CXX:T? Because if you're setting the full path of # `c++` you probably want to define QMAKESPEC by hand too. QMAKE_COMPILER= ${QMAKE_BASE_COMPILER} .elif ${CXX:T} == "clang++" QMAKE_COMPILER= clang .elif ${CXX:C/c\+\+/g++/:T} == "llvm-g++" QMAKE_COMPILER= llvm .elif ${CXX:T} == "icpc" QMAKE_COMPILER= icc .else # Handle all the other cases (mainly g++*). QMAKE_COMPILER= ${CXX:C/c\+\+/g++/:T} .endif .if exists(${QT_PREFIX}/share/qt4/mkspecs/freebsd-${QMAKE_COMPILER}) QMAKESPEC?= ${QT_PREFIX}/share/qt4/mkspecs/freebsd-${QMAKE_COMPILER} .else # If something went wrong, default to the base configuration. QMAKESPEC?= ${QT_PREFIX}/share/qt4/mkspecs/freebsd-${QMAKE_BASE_COMPILER} .endif QTCPPFLAGS?= QTCGFLIBS?= .endif # !defined(_POSTMKINCLUDED) && !defined(Qt_Pre_Include) # # QT4 version # -QT4_VERSION?= 4.7.4 +QT4_VERSION?= 4.8.1 _QT_COMPONENTS_ALL= accessible assistant assistant-adp assistantclient \ clucene codecs-cn codecs-jp codecs-kr codecs-tw corelib \ dbus declarative demo designer doc \ graphicssystems-opengl gui help help-tools \ iconengines imageformats inputmethods \ linguist l10n makeqpf moc multimedia network opengl \ pixeltool porting phonon phonon-gst \ qdbusviewer qdoc3 qmake qt3support qtconfig qtestlib \ qvfb rcc script scripttools sql sql-ibase sql-mysql \ sql-odbc sql-pgsql sql-sqlite2 sql-sqlite3 svg uic uic3 \ webkit xml xmlpatterns xmlpatterns-tool accessible_PORT= accessibility/qt4-accessible accessible_DEPENDS= ${QT_PLUGINDIR}/accessible/libqtaccessiblewidgets.so assistant_PORT= devel/qt4-assistant assistant_DEPENDS= ${QT_PREFIX}/bin/assistant-qt4 assistant-adp_PORT= devel/qt4-assistant-adp assistant-adp_DEPENDS= ${QT_PREFIX}/bin/assistant_adp assistantclient_PORT= devel/qt4-libqtassistantclient assistantclient_DEPENDS= ${QT_LIBDIR}/libQtAssistantClient.so clucene_PORT= textproc/qt4-clucene clucene_DEPENDS= ${QT_LIBDIR}/libQtCLucene.so codecs-cn_PORT= chinese/qt4-codecs-cn codecs-cn_DEPENDS= ${QT_PLUGINDIR}/codecs/libqcncodecs.so codecs-jp_PORT= japanese/qt4-codecs-jp codecs-jp_DEPENDS= ${QT_PLUGINDIR}/codecs/libqjpcodecs.so codecs-kr_PORT= korean/qt4-codecs-kr codecs-kr_DEPENDS= ${QT_PLUGINDIR}/codecs/libqkrcodecs.so codecs-tw_PORT= chinese/qt4-codecs-tw codecs-tw_DEPENDS= ${QT_PLUGINDIR}/codecs/libqtwcodecs.so corelib_PORT= devel/qt4-corelib corelib_DEPENDS= ${QT_LIBDIR}/libQtCore.so dbus_PORT= devel/dbus-qt4 dbus_DEPENDS= ${QT_LIBDIR}/libQtDBus.so declarative_PORT= devel/qt4-declarative declarative_DEPENDS= ${QT_LIBDIR}/libQtDeclarative.so demo_PORT= misc/qt4-qtdemo demo_DEPENDS= ${QT_PREFIX}/bin/qtdemo designer_PORT= devel/qt4-designer designer_DEPENDS= ${QT_PREFIX}/bin/designer-qt4 doc_PORT= misc/qt4-doc doc_DEPENDS= qt4-doc>=4 graphicssystems-opengl_PORT= x11/qt4-graphicssystems-opengl graphicssystems-opengl_DEPENDS= ${QT_PLUGINDIR}/graphicssystems/libqglgraphicssystem.so gui_PORT= x11-toolkits/qt4-gui gui_DEPENDS= ${QT_LIBDIR}/libQtGui.so help_PORT= devel/qt4-help help_DEPENDS= ${QT_LIBDIR}/libQtHelp.so help-tools_PORT= devel/qt4-help-tools help-tools_DEPENDS= ${QT_PREFIX}/bin/qhelpgenerator iconengines_PORT= graphics/qt4-iconengines iconengines_DEPENDS= ${QT_PLUGINDIR}/iconengines/libqsvgicon.so imageformats_PORT= graphics/qt4-imageformats imageformats_DEPENDS= ${QT_PLUGINDIR}/imageformats/libqjpeg.so inputmethods_PORT= x11/qt4-inputmethods inputmethods_DEPENDS= ${QT_PLUGINDIR}/inputmethods/libqimsw-multi.so linguist_PORT= devel/qt4-linguist linguist_DEPENDS= ${QT_PREFIX}/bin/linguist-qt4 l10n_PORT= misc/qt4-l10n l10n_DEPENDS= qt4-l10n>=4 makeqpf_PORT= devel/qt4-makeqpf makeqpf_DEPENDS= ${QT_PREFIX}/bin/makeqpf-qt4 moc_PORT= devel/qt4-moc moc_DEPENDS= ${MOC} multimedia_PORT= multimedia/qt4-multimedia multimedia_DEPENDS= ${QT_LIBDIR}/libQtMultimedia.so network_PORT= net/qt4-network network_DEPENDS= ${QT_LIBDIR}/libQtNetwork.so opengl_PORT= x11/qt4-opengl opengl_DEPENDS= ${QT_LIBDIR}/libQtOpenGL.so pixeltool_PORT= graphics/qt4-pixeltool pixeltool_DEPENDS= ${QT_PREFIX}/bin/pixeltool .if !defined(WITH_QT_PHONON) phonon_PORT= multimedia/phonon .else phonon_PORT= multimedia/qt4-phonon .endif phonon_DEPENDS= ${QT_LIBDIR}/libphonon.so .if !defined(WITH_QT_PHONON) phonon-gst_PORT= multimedia/phonon-gstreamer .else phonon-gst_PORT= multimedia/qt4-phonon-gst .endif phonon-gst_DEPENDS= ${QT_PLUGINDIR}/phonon_backend/libphonon_gstreamer.so porting_PORT= devel/qt4-porting porting_DEPENDS= ${QT_PREFIX}/bin/qt3to4 qdbusviewer_PORT= devel/qt4-qdbusviewer qdbusviewer_DEPENDS= ${QT_PREFIX}/bin/qdbusviewer qdoc3_PORT= devel/qt4-qdoc3 qdoc3_DEPENDS= ${QT_PREFIX}/bin/qdoc3 qmake_PORT= devel/qmake4 qmake_DEPENDS= ${QMAKE} qt3support_PORT= devel/qt4-qt3support qt3support_DEPENDS= ${QT_LIBDIR}/libQt3Support.so qtconfig_PORT= misc/qt4-qtconfig qtconfig_DEPENDS= ${QT_PREFIX}/bin/qtconfig-qt4 qtestlib_PORT= devel/qt4-qtestlib qtestlib_DEPENDS= ${QT_LIBDIR}/libQtTest.so qvfb_PORT= devel/qt4-qvfb qvfb_DEPENDS= ${QT_PREFIX}/bin/qvfb-qt4 rcc_PORT= devel/qt4-rcc rcc_DEPENDS= ${RCC} script_PORT= devel/qt4-script script_DEPENDS= ${QT_LIBDIR}/libQtScript.so scripttools_PORT= devel/qt4-scripttools scripttools_DEPENDS= ${QT_LIBDIR}/libQtScriptTools.so sql_PORT= databases/qt4-sql sql_DEPENDS= ${QT_LIBDIR}/libQtSql.so sql-ibase_PORT= databases/qt4-ibase-plugin sql-ibase_DEPENDS= ${QT_PLUGINDIR}/sqldrivers/libqsqlibase.so sql-mysql_PORT= databases/qt4-mysql-plugin sql-mysql_DEPENDS= ${QT_PLUGINDIR}/sqldrivers/libqsqlmysql.so sql-odbc_PORT= databases/qt4-odbc-plugin sql-odbc_DEPENDS= ${QT_PLUGINDIR}/sqldrivers/libqsqlodbc.so sql-pgsql_PORT= databases/qt4-pgsql-plugin sql-pgsql_DEPENDS= ${QT_PLUGINDIR}/sqldrivers/libqsqlpsql.so sql-sqlite2_PORT= databases/qt4-sqlite-plugin sql-sqlite2_DEPENDS= ${QT_PLUGINDIR}/sqldrivers/libqsqlite2.so sql-sqlite3_PORT= databases/qt4-sqlite3-plugin sql-sqlite3_DEPENDS= ${QT_PLUGINDIR}/sqldrivers/libqsqlite.so svg_PORT= graphics/qt4-svg svg_DEPENDS= ${QT_LIBDIR}/libQtSvg.so uic_PORT= devel/qt4-uic uic_DEPENDS= ${UIC} uic3_PORT= devel/qt4-uic3 uic3_DEPENDS= ${QT_PREFIX}/bin/uic3 webkit_PORT= www/qt4-webkit webkit_DEPENDS= ${QT_LIBDIR}/libQtWebKit.so xml_PORT= textproc/qt4-xml xml_DEPENDS= ${QT_LIBDIR}/libQtXml.so xmlpatterns_PORT= textproc/qt4-xmlpatterns xmlpatterns_DEPENDS= ${QT_LIBDIR}/libQtXmlPatterns.so xmlpatterns-tool_PORT= textproc/qt4-xmlpatterns-tool xmlpatterns-tool_DEPENDS= ${QT_PREFIX}/bin/xmlpatterns .if defined(_POSTMKINCLUDED) && !defined(Qt_Post_Include) Qt_Post_Include= bsd.qt.mk .for component in ${_QT_COMPONENTS_ALL} ${component}_BUILD_DEPENDS?= ${${component}_DEPENDS}:${PORTSDIR}/${${component}_PORT} ${component}_RUN_DEPENDS?= ${${component}_DEPENDS}:${PORTSDIR}/${${component}_PORT} ${component}_build_BUILD_DEPENDS?= ${${component}_BUILD_DEPENDS} ${component}_run_RUN_DEPENDS?= ${${component}_RUN_DEPENDS} _QT_COMPONENTS_ALL_SUFFIXED+= ${component} ${component}_build ${component}_run .endfor .if defined(USE_QT4) QT_COMPONENTS= ${USE_QT4} .endif .if defined(QT_COMPONENTS) . for component in ${QT_COMPONENTS:O:u} . if ${_QT_COMPONENTS_ALL_SUFFIXED:M${component}}!= "" BUILD_DEPENDS+= ${${component}_BUILD_DEPENDS} RUN_DEPENDS+= ${${component}_RUN_DEPENDS} . else IGNORE= can't be installed: unknown Qt 4 component '${component}' . endif . endfor .endif .endif Property changes on: head/Mk/bsd.qt.mk ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.31 \ No newline at end of property +1.32 \ No newline at end of property Index: head/databases/qt4-sql/pkg-plist =================================================================== --- head/databases/qt4-sql/pkg-plist (revision 297366) +++ head/databases/qt4-sql/pkg-plist (revision 297367) @@ -1,95 +1,99 @@ include/qt4/Qt/QtSql include/qt4/Qt/qsql.h include/qt4/Qt/qsql_db2.h include/qt4/Qt/qsql_ibase.h include/qt4/Qt/qsql_mysql.h include/qt4/Qt/qsql_oci.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/qsql_symsql.h include/qt4/Qt/qsql_tds.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/QDB2Driver include/qt4/QtSql/QDB2Result include/qt4/QtSql/QIBaseDriver include/qt4/QtSql/QIBaseResult include/qt4/QtSql/QMYSQLDriver include/qt4/QtSql/QMYSQLResult include/qt4/QtSql/QOCIDriver include/qt4/QtSql/QOCIResult 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/QSymSQLDriver +include/qt4/QtSql/QSymSQLResult include/qt4/QtSql/QTDSDriver include/qt4/QtSql/QTDSResult include/qt4/QtSql/QtSql include/qt4/QtSql/qsql.h include/qt4/QtSql/qsql_db2.h include/qt4/QtSql/qsql_ibase.h include/qt4/QtSql/qsql_mysql.h include/qt4/QtSql/qsql_oci.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/qsql_symsql.h include/qt4/QtSql/qsql_tds.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.%%SHLIB_SHVER%% lib/qt4/libQtSql.so.%%SHLIB_VER%% %%DEBUG%%lib/qt4/libQtSql.so.%%SHLIB_VER%%.debug libdata/pkgconfig/QtSql.pc @dirrmtry lib/qt4 @dirrm include/qt4/QtSql @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/databases/qt4-sql/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/devel/dbus-qt4/Makefile =================================================================== --- head/devel/dbus-qt4/Makefile (revision 297366) +++ head/devel/dbus-qt4/Makefile (revision 297367) @@ -1,72 +1,77 @@ ### -*-mode: makefile-*- # New ports collection makefile for: qt40 # Date created: Wed Jun 29 11:49:42 CEST 2005 # Whom: lofi@freebsd.org # # $FreeBSD$ # PORTNAME= dbus DISTVERSION= ${QT4_VERSION} CATEGORIES?= devel PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt4 bindings for the D-BUS messaging system LIB_DEPENDS= dbus-1.3:${PORTSDIR}/devel/dbus USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build rcc_build corelib xml QT_NONSTANDARD= yes QT_DIST= yes MAKE_JOBS_UNSAFE= 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:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ src/activeqt src/gui src/multimedia src/network src/opengl \ src/openvg src/phonon src/qt3support src/s60installs \ src/s60main src/script src/scripttools src/sql src/svg \ src/testlib src/tools src/winmain src/xmlpatterns \ src/3rdparty/clucene src/3rdparty/freetype \ src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \ src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor BUILD_WRKSRC= ${WRKSRC}/tools/qdbus INSTALL_WRKSRC= ${BUILD_WRKSRC} EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure .include +# Without this workaround, qdbus crashes. +.if ${OSVERSION} > 1000000 +CXXFLAGS+= -fno-use-cxa-atexit +.endif + CONFIGURE_ARGS+= --no-gui \ --no-phonon pre-configure: ${REINPLACE_CMD} -e 's|SUBDIRS = qdbus|SUBDIRS = ../../src/${PORTNAME} qdbus|g' \ ${BUILD_WRKSRC}/qdbus.pro ${REINPLACE_CMD} -e 's|"/moc"|"/moc-qt4"|' \ ${BUILD_WRKSRC}/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/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' ${WRKSRC}/src/${PORTNAME}/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/QtDBus.pc .include Property changes on: head/devel/dbus-qt4/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/devel/dbus-qt4/pkg-plist =================================================================== --- head/devel/dbus-qt4/pkg-plist (revision 297366) +++ head/devel/dbus-qt4/pkg-plist (revision 297367) @@ -1,75 +1,81 @@ bin/qdbus %%DEBUG%%bin/qdbus.debug bin/qdbuscpp2xml %%DEBUG%%bin/qdbuscpp2xml.debug bin/qdbusxml2cpp %%DEBUG%%bin/qdbusxml2cpp.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/qdbuspendingcall.h include/qt4/Qt/qdbuspendingreply.h include/qt4/Qt/qdbusreply.h include/qt4/Qt/qdbusserver.h include/qt4/Qt/qdbusservicewatcher.h +include/qt4/Qt/qdbusunixfiledescriptor.h +include/qt4/Qt/qdbusvirtualobject.h include/qt4/QtDBus/QDBusAbstractAdaptor include/qt4/QtDBus/QDBusAbstractInterface include/qt4/QtDBus/QDBusAbstractInterfaceBase 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/QDBusPendingCall include/qt4/QtDBus/QDBusPendingCallWatcher include/qt4/QtDBus/QDBusPendingReply include/qt4/QtDBus/QDBusPendingReplyData include/qt4/QtDBus/QDBusReply include/qt4/QtDBus/QDBusServer include/qt4/QtDBus/QDBusServiceWatcher include/qt4/QtDBus/QDBusSignature +include/qt4/QtDBus/QDBusUnixFileDescriptor include/qt4/QtDBus/QDBusVariant +include/qt4/QtDBus/QDBusVirtualObject 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/qdbuspendingcall.h include/qt4/QtDBus/qdbuspendingreply.h include/qt4/QtDBus/qdbusreply.h include/qt4/QtDBus/qdbusserver.h include/qt4/QtDBus/qdbusservicewatcher.h +include/qt4/QtDBus/qdbusunixfiledescriptor.h +include/qt4/QtDBus/qdbusvirtualobject.h lib/qt4/libQtDBus.la lib/qt4/libQtDBus.prl lib/qt4/libQtDBus.so lib/qt4/libQtDBus.so.4 lib/qt4/libQtDBus.so.%%SHLIB_SHVER%% lib/qt4/libQtDBus.so.%%SHLIB_VER%% %%DEBUG%%lib/qt4/libQtDBus.so.%%SHLIB_VER%%.debug libdata/pkgconfig/QtDBus.pc @dirrmtry lib/qt4 @dirrm include/qt4/QtDBus @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/devel/dbus-qt4/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/devel/qmake4/Makefile =================================================================== --- head/devel/qmake4/Makefile (revision 297366) +++ head/devel/qmake4/Makefile (revision 297367) @@ -1,94 +1,89 @@ # New ports collection makefile for: qmake-4 # Date created: Tue Jul 12 16:04:29 UTC 2005 # Whom: lofi@freebsd.org, # mi@aldan.algebra.com # # $FreeBSD$ PORTNAME= qmake DISTVERSION= ${QT4_VERSION} CATEGORIES= devel PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= The build utility of the Qt project QT_NONSTANDARD= yes QT_DIST= yes REINPLACE_ARGS= -i "" WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME} MAKEFILE= ${FILESDIR}/Makefile.bsd MAKE_ENV+= FILESDIR="${FILESDIR}" MAKE_JOBS_SAFE= yes TODAY_CMD= /bin/date +%Y-%m-%d EXTRACT_AFTER_ARGS=| ${TAR} -xf - \ '${DISTNAME}/mkspecs' \ '${DISTNAME}/include/*/*' \ '${DISTNAME}/src/*/*.h' \ '${DISTNAME}/qmake' \ '${DISTNAME}/src/corelib/tools' \ '${DISTNAME}/src/corelib/io' \ '${DISTNAME}/src/corelib/global' \ '${DISTNAME}/src/corelib/plugin' \ '${DISTNAME}/src/corelib/kernel' \ '${DISTNAME}/src/corelib/codecs' \ '${DISTNAME}/src/corelib/xml' \ '${DISTNAME}/src/3rdparty/md4' \ '${DISTNAME}/src/3rdparty/md5' \ '${DISTNAME}/src/3rdparty/sha1' \ '${DISTNAME}/tools/shared/symbian' \ '${DISTNAME}/tools/shared/windows' post-patch: @${REINPLACE_CMD} -e 's|-O2|${CXXFLAGS}|' \ -e 's|/usr/local|${LOCALBASE}|' \ -e 's|/usr/X11R6|${LOCALBASE}|' \ -e 's|release|release thread|' \ -e 's|-pthread -D_THREAD_SAFE|${PTHREAD_CFLAGS}|' \ -e 's|-pthread|${PTHREAD_LIBS}|' \ -e 's|uic|uic-qt4|' \ -e 's|moc|moc-qt4|' \ ${WRKSRC}/../mkspecs/freebsd-*/qmake.conf @${REINPLACE_CMD} -e 's|@QMAKE_QTOBJS@||g' ${WRKSRC}/Makefile.unix - # Add mkspecs for all the available compilers. - @${CP} ${WRKSRC}/../mkspecs/common/g++.conf ${WRKSRC}/../mkspecs/common/clang.conf - @${REINPLACE_CMD} -e 's|gcc|clang|g' -e 's|g++|clang++|g' \ - ${WRKSRC}/../mkspecs/common/clang.conf # FIXME: This is ugly @${RM} ${WRKSRC}/../mkspecs/freebsd-g++/*.orig @${RM} ${WRKSRC}/../mkspecs/freebsd-g++40/*.orig -.for c in clang llvm - @${CP} -PpR ${WRKSRC}/../mkspecs/freebsd-g++ ${WRKSRC}/../mkspecs/freebsd-${c} - @${REINPLACE_CMD} -e 's|g++|${c}|g' \ - ${WRKSRC}/../mkspecs/freebsd-${c}/qmake.conf -.endfor -.for v in 42 43 44 45 46 +# Add mkspec for clang + @${CP} -PpR ${WRKSRC}/../mkspecs/freebsd-g++ ${WRKSRC}/../mkspecs/freebsd-clang + @${REINPLACE_CMD} -e 's|g++-unix.conf|clang.conf|g' \ + ${WRKSRC}/../mkspecs/freebsd-clang/qmake.conf +# Add mkspecs for the different GCC versions in the ports tree +.for v in 42 44 46 47 48 @${CP} -PpR ${WRKSRC}/../mkspecs/freebsd-g++40 ${WRKSRC}/../mkspecs/freebsd-g++${v} @${REINPLACE_CMD} -e 's|40|${v}|g' \ ${WRKSRC}/../mkspecs/freebsd-g++${v}/qmake.conf .endfor @${RM} -r ${WRKSRC}/../mkspecs/freebsd-g++40 do-configure: ${SED} -e 's|/usr/local|${PREFIX}|g' \ -e "s|TODAY|$$(${TODAY_CMD})|g" \ < ${FILESDIR}/qconfig.cpp \ > ${WRKSRC:H}/src/corelib/global/qconfig.cpp ${ECHO} '/* empty */' > ${WRKSRC}/qconfig.h -# ${LN} ${WRKSRC}/qconfig.h ${WRKSRC}/../include/QtCore/qconfig.h ${LN} ${WRKSRC}/qconfig.h ${WRKSRC}/../src/corelib/global/qconfig.h .include .include "${.CURDIR}/../../Mk/bsd.qt.mk" .if ${ARCH} == "alpha" CXXFLAGS+= -mieee .endif post-install: ${LN} -sf ${PREFIX}/share/qt4/mkspecs/freebsd-${QMAKE_BASE_COMPILER} ${PREFIX}/share/qt4/mkspecs/default .include Property changes on: head/devel/qmake4/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/devel/qmake4/files/Makefile.bsd =================================================================== --- head/devel/qmake4/files/Makefile.bsd (revision 297366) +++ head/devel/qmake4/files/Makefile.bsd (revision 297367) @@ -1,54 +1,54 @@ # $FreeBSD$ _OBJS!= ${MAKE} -f Makefile.unix -V OBJS -V QOBJS # We'd like to avoid using qconfig.cpp, but can't -- see the comment # next to -DHAVE_CONFIG_CPP below: #_OBJS:= ${_OBJS:S/qconfig.o//} SRCS:= ${_OBJS:.o=.cpp} NO_MAN= true # qmake.1 anyone? .PATH: ${.CURDIR} ${.CURDIR:H}/src/corelib/tools ${.CURDIR:H}/src/corelib/io \ ${.CURDIR:H}/src/corelib/global ${.CURDIR:H}/src/corelib/plugin \ ${.CURDIR:H}/src/corelib/kernel ${.CURDIR:H}/src/corelib/codecs \ ${.CURDIR:H}/src/corelib/xml ${.CURDIR:H}/src/3rdparty/md4 \ ${.CURDIR:H}/src/3rdparty/md5 ${.CURDIR:H}/src/3rdparty/sha1 \ ${.CURDIR:H}/tools/shared/symbian ${.CURDIR:H}/tools/shared/windows CXXFLAGS+=-I${.CURDIR:H}/mkspecs/freebsd-g++ .for s in src/corelib/arch/generic src/corelib/global src/corelib/tools \ src/corelib/kernel src/corelib/codecs \ src/3rdparty/md5 src/3rdparty/md4 src/3rdparty/sha1 \ tools/shared include/QtCore include CXXFLAGS+=-I${.CURDIR:H}/$s .endfor -.for g in /. /unix /win32 /mac /symbian +.for g in /. /unix /win32 /mac /symbian /integrity .PATH: ${.CURDIR}/generators$g CXXFLAGS+=-I${.CURDIR}/generators$g .endfor CXXFLAGS+=-I. -I"${FILESDIR}" CXXFLAGS+=-DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT \ -DQT_NO_STL -DQT_BUILD_QMAKE -DQT_NO_COMPRESS -DHAVE_QCONFIG_CPP \ -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT \ -DQT_BOOTSTRAPPED -DQMAKE_OPENSOURCE_EDITION # I guess, qconfig.cpp used to be optional, but no longer is -- due to # bit-rot in Qt sources. So we still have to compile it, but, by not # adding the following define, we reduce the seemingly needless usage of # it: # -DHAVE_QCONFIG_CPP PROG_CXX= qmake-qt4 BINDIR= ${PREFIX}/bin SHAREDIR=${PREFIX}/share/qt4 ${SHAREDIR}: mkdir -p "$@" beforeinstall: ${SHAREDIR} cp -Rp ${.CURDIR:H}/mkspecs ${SHAREDIR} .include Property changes on: head/devel/qmake4/files/Makefile.bsd ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/devel/qmake4/pkg-plist =================================================================== --- head/devel/qmake4/pkg-plist (revision 297366) +++ head/devel/qmake4/pkg-plist (revision 297367) @@ -1,613 +1,702 @@ bin/qmake-qt4 share/qt4/mkspecs/aix-g++-64/qmake.conf share/qt4/mkspecs/aix-g++-64/qplatformdefs.h share/qt4/mkspecs/aix-g++/qmake.conf share/qt4/mkspecs/aix-g++/qplatformdefs.h share/qt4/mkspecs/aix-xlc-64/qmake.conf share/qt4/mkspecs/aix-xlc-64/qplatformdefs.h share/qt4/mkspecs/aix-xlc/qmake.conf share/qt4/mkspecs/aix-xlc/qplatformdefs.h share/qt4/mkspecs/common/aix/qplatformdefs.h share/qt4/mkspecs/common/armcc.conf share/qt4/mkspecs/common/c89/qplatformdefs.h share/qt4/mkspecs/common/clang.conf +share/qt4/mkspecs/common/g++-base.conf +share/qt4/mkspecs/common/g++-macx.conf +share/qt4/mkspecs/common/g++-unix.conf share/qt4/mkspecs/common/g++.conf +share/qt4/mkspecs/common/gcc-base-macx.conf +share/qt4/mkspecs/common/gcc-base-unix.conf +share/qt4/mkspecs/common/gcc-base.conf +share/qt4/mkspecs/common/ghs-base-integrity.conf +share/qt4/mkspecs/common/integrity/qplatformdefs.h share/qt4/mkspecs/common/linux.conf share/qt4/mkspecs/common/llvm.conf -share/qt4/mkspecs/common/mac-g++.conf -share/qt4/mkspecs/common/mac-llvm.conf share/qt4/mkspecs/common/mac.conf +share/qt4/mkspecs/common/mac/qplatformdefs.h share/qt4/mkspecs/common/posix/qplatformdefs.h +share/qt4/mkspecs/common/qcc-base-qnx.conf +share/qt4/mkspecs/common/qcc-base.conf +share/qt4/mkspecs/common/qnx/qmake.conf +share/qt4/mkspecs/common/qnx/qplatformdefs.h share/qt4/mkspecs/common/qws.conf share/qt4/mkspecs/common/symbian/appCaptionForTranslation.cpp +share/qt4/mkspecs/common/symbian/backup_registration.xml share/qt4/mkspecs/common/symbian/header-wrappers/AknBitmapAnimation.h share/qt4/mkspecs/common/symbian/header-wrappers/AknDoc.h share/qt4/mkspecs/common/symbian/header-wrappers/AknFontAccess.h share/qt4/mkspecs/common/symbian/header-wrappers/AknInputLanguageInfo.h share/qt4/mkspecs/common/symbian/header-wrappers/AknLayoutFont.h share/qt4/mkspecs/common/symbian/header-wrappers/AknPopupFader.h share/qt4/mkspecs/common/symbian/header-wrappers/AknServerApp.h share/qt4/mkspecs/common/symbian/header-wrappers/AknUtils.h share/qt4/mkspecs/common/symbian/header-wrappers/AknsBasicBackgroundControlContext.h share/qt4/mkspecs/common/symbian/header-wrappers/AknsConstants.h share/qt4/mkspecs/common/symbian/header-wrappers/AknsDrawUtils.h share/qt4/mkspecs/common/symbian/header-wrappers/AknsItemID.h share/qt4/mkspecs/common/symbian/header-wrappers/AknsSkinInstance.h share/qt4/mkspecs/common/symbian/header-wrappers/AknsUtils.h share/qt4/mkspecs/common/symbian/header-wrappers/ApAccessPointItem.h share/qt4/mkspecs/common/symbian/header-wrappers/ApDataHandler.h share/qt4/mkspecs/common/symbian/header-wrappers/ApUtils.h share/qt4/mkspecs/common/symbian/header-wrappers/CDirectoryLocalizer.h share/qt4/mkspecs/common/symbian/header-wrappers/DocumentHandler.h share/qt4/mkspecs/common/symbian/packageNameForTranslation.cpp share/qt4/mkspecs/common/symbian/qplatformdefs.h share/qt4/mkspecs/common/symbian/stl-off/new share/qt4/mkspecs/common/symbian/symbian-makefile.conf share/qt4/mkspecs/common/symbian/symbian-mmp.conf share/qt4/mkspecs/common/symbian/symbian.conf share/qt4/mkspecs/common/symbian/symbianincludes.h share/qt4/mkspecs/common/symbian/template.applite share/qt4/mkspecs/common/unix.conf share/qt4/mkspecs/common/wince/qmake.conf share/qt4/mkspecs/common/wince/qplatformdefs.h share/qt4/mkspecs/cygwin-g++/qmake.conf share/qt4/mkspecs/cygwin-g++/qplatformdefs.h share/qt4/mkspecs/darwin-g++/qmake.conf share/qt4/mkspecs/darwin-g++/qplatformdefs.h share/qt4/mkspecs/default share/qt4/mkspecs/features/build_pass.prf share/qt4/mkspecs/features/dbusadaptors.prf share/qt4/mkspecs/features/dbusinterfaces.prf share/qt4/mkspecs/features/debug.prf share/qt4/mkspecs/features/debug_and_release.prf +share/qt4/mkspecs/features/declarative_debug.prf share/qt4/mkspecs/features/default_post.prf share/qt4/mkspecs/features/default_pre.prf share/qt4/mkspecs/features/designer.prf share/qt4/mkspecs/features/dll.prf share/qt4/mkspecs/features/egl.prf +share/qt4/mkspecs/features/enable_backup.prf share/qt4/mkspecs/features/exclusive_builds.prf share/qt4/mkspecs/features/help.prf share/qt4/mkspecs/features/include_source_dir.prf share/qt4/mkspecs/features/incredibuild_xge.prf share/qt4/mkspecs/features/lex.prf share/qt4/mkspecs/features/link_pkgconfig.prf share/qt4/mkspecs/features/mac/default_post.prf share/qt4/mkspecs/features/mac/default_pre.prf share/qt4/mkspecs/features/mac/dwarf2.prf share/qt4/mkspecs/features/mac/objective_c.prf share/qt4/mkspecs/features/mac/ppc.prf share/qt4/mkspecs/features/mac/ppc64.prf share/qt4/mkspecs/features/mac/rez.prf share/qt4/mkspecs/features/mac/sdk.prf share/qt4/mkspecs/features/mac/x86.prf share/qt4/mkspecs/features/mac/x86_64.prf share/qt4/mkspecs/features/moc.prf share/qt4/mkspecs/features/no_debug_info.prf share/qt4/mkspecs/features/qdbus.prf share/qt4/mkspecs/features/qt.prf share/qt4/mkspecs/features/qt_config.prf share/qt4/mkspecs/features/qt_functions.prf share/qt4/mkspecs/features/qtestlib.prf share/qt4/mkspecs/features/qtopia.prf share/qt4/mkspecs/features/qtopiainc.prf share/qt4/mkspecs/features/qtopialib.prf share/qt4/mkspecs/features/qttest_p4.prf share/qt4/mkspecs/features/release.prf share/qt4/mkspecs/features/resources.prf share/qt4/mkspecs/features/shared.prf share/qt4/mkspecs/features/silent.prf share/qt4/mkspecs/features/static.prf share/qt4/mkspecs/features/static_and_shared.prf share/qt4/mkspecs/features/staticlib.prf share/qt4/mkspecs/features/symbian/add_mmp_rules.prf share/qt4/mkspecs/features/symbian/application_icon.prf share/qt4/mkspecs/features/symbian/armcc_warnings.prf share/qt4/mkspecs/features/symbian/data_caging_paths.prf share/qt4/mkspecs/features/symbian/debug.prf share/qt4/mkspecs/features/symbian/def_files.prf share/qt4/mkspecs/features/symbian/def_files_disabled.prf share/qt4/mkspecs/features/symbian/default_post.prf share/qt4/mkspecs/features/symbian/default_pre.prf share/qt4/mkspecs/features/symbian/do_not_build_as_thumb.prf share/qt4/mkspecs/features/symbian/epocallowdlldata.prf share/qt4/mkspecs/features/symbian/localize_deployment.prf share/qt4/mkspecs/features/symbian/moc.prf share/qt4/mkspecs/features/symbian/nested_exceptions.prf share/qt4/mkspecs/features/symbian/opengl.prf share/qt4/mkspecs/features/symbian/platform_paths.prf share/qt4/mkspecs/features/symbian/prepend_includepath.prf share/qt4/mkspecs/features/symbian/qt.prf share/qt4/mkspecs/features/symbian/qt_config.prf share/qt4/mkspecs/features/symbian/release.prf share/qt4/mkspecs/features/symbian/run_on_phone.prf share/qt4/mkspecs/features/symbian/sis_targets.prf share/qt4/mkspecs/features/symbian/stl.prf share/qt4/mkspecs/features/symbian/stl_off.prf share/qt4/mkspecs/features/symbian/symbian_appbooster.prf share/qt4/mkspecs/features/symbian/symbian_building.prf share/qt4/mkspecs/features/symbian/thread.prf share/qt4/mkspecs/features/testcase.prf share/qt4/mkspecs/features/uic.prf share/qt4/mkspecs/features/uitools.prf share/qt4/mkspecs/features/unix/bsymbolic_functions.prf share/qt4/mkspecs/features/unix/dylib.prf +share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf share/qt4/mkspecs/features/unix/hide_symbols.prf share/qt4/mkspecs/features/unix/largefile.prf share/qt4/mkspecs/features/unix/opengl.prf share/qt4/mkspecs/features/unix/openvg.prf share/qt4/mkspecs/features/unix/separate_debug_info.prf share/qt4/mkspecs/features/unix/thread.prf share/qt4/mkspecs/features/unix/x11.prf share/qt4/mkspecs/features/unix/x11inc.prf share/qt4/mkspecs/features/unix/x11lib.prf share/qt4/mkspecs/features/unix/x11sm.prf share/qt4/mkspecs/features/use_c_linker.prf share/qt4/mkspecs/features/vxworks.prf share/qt4/mkspecs/features/warn_off.prf share/qt4/mkspecs/features/warn_on.prf share/qt4/mkspecs/features/win32/console.prf share/qt4/mkspecs/features/win32/default_post.prf share/qt4/mkspecs/features/win32/default_pre.prf share/qt4/mkspecs/features/win32/dumpcpp.prf share/qt4/mkspecs/features/win32/embed_manifest_dll.prf share/qt4/mkspecs/features/win32/embed_manifest_exe.prf share/qt4/mkspecs/features/win32/exceptions.prf share/qt4/mkspecs/features/win32/exceptions_off.prf share/qt4/mkspecs/features/win32/ltcg.prf share/qt4/mkspecs/features/win32/msvc_mp.prf share/qt4/mkspecs/features/win32/opengl.prf share/qt4/mkspecs/features/win32/openvg.prf share/qt4/mkspecs/features/win32/qaxcontainer.prf share/qt4/mkspecs/features/win32/qaxserver.prf share/qt4/mkspecs/features/win32/qt_dll.prf share/qt4/mkspecs/features/win32/rtti.prf share/qt4/mkspecs/features/win32/rtti_off.prf share/qt4/mkspecs/features/win32/stl.prf share/qt4/mkspecs/features/win32/stl_off.prf share/qt4/mkspecs/features/win32/thread.prf share/qt4/mkspecs/features/win32/thread_off.prf share/qt4/mkspecs/features/win32/windows.prf share/qt4/mkspecs/features/yacc.prf share/qt4/mkspecs/freebsd-clang/qmake.conf share/qt4/mkspecs/freebsd-clang/qplatformdefs.h share/qt4/mkspecs/freebsd-g++/qmake.conf share/qt4/mkspecs/freebsd-g++/qplatformdefs.h share/qt4/mkspecs/freebsd-g++34/qmake.conf share/qt4/mkspecs/freebsd-g++34/qplatformdefs.h share/qt4/mkspecs/freebsd-g++42/qmake.conf share/qt4/mkspecs/freebsd-g++42/qplatformdefs.h -share/qt4/mkspecs/freebsd-g++43/qmake.conf -share/qt4/mkspecs/freebsd-g++43/qplatformdefs.h share/qt4/mkspecs/freebsd-g++44/qmake.conf share/qt4/mkspecs/freebsd-g++44/qplatformdefs.h -share/qt4/mkspecs/freebsd-g++45/qmake.conf -share/qt4/mkspecs/freebsd-g++45/qplatformdefs.h share/qt4/mkspecs/freebsd-g++46/qmake.conf share/qt4/mkspecs/freebsd-g++46/qplatformdefs.h +share/qt4/mkspecs/freebsd-g++47/qmake.conf +share/qt4/mkspecs/freebsd-g++47/qplatformdefs.h +share/qt4/mkspecs/freebsd-g++48/qmake.conf +share/qt4/mkspecs/freebsd-g++48/qplatformdefs.h share/qt4/mkspecs/freebsd-icc/qmake.conf share/qt4/mkspecs/freebsd-icc/qplatformdefs.h -share/qt4/mkspecs/freebsd-llvm/qmake.conf -share/qt4/mkspecs/freebsd-llvm/qplatformdefs.h share/qt4/mkspecs/hpux-acc-64/qmake.conf share/qt4/mkspecs/hpux-acc-64/qplatformdefs.h share/qt4/mkspecs/hpux-acc-o64/qmake.conf share/qt4/mkspecs/hpux-acc-o64/qplatformdefs.h share/qt4/mkspecs/hpux-acc/qmake.conf share/qt4/mkspecs/hpux-acc/qplatformdefs.h share/qt4/mkspecs/hpux-g++-64/qmake.conf share/qt4/mkspecs/hpux-g++-64/qplatformdefs.h share/qt4/mkspecs/hpux-g++/qmake.conf share/qt4/mkspecs/hpux-g++/qplatformdefs.h share/qt4/mkspecs/hpuxi-acc-32/qmake.conf share/qt4/mkspecs/hpuxi-acc-32/qplatformdefs.h share/qt4/mkspecs/hpuxi-acc-64/qmake.conf share/qt4/mkspecs/hpuxi-acc-64/qplatformdefs.h share/qt4/mkspecs/hpuxi-g++-64/qmake.conf share/qt4/mkspecs/hpuxi-g++-64/qplatformdefs.h share/qt4/mkspecs/hurd-g++/qmake.conf share/qt4/mkspecs/hurd-g++/qplatformdefs.h share/qt4/mkspecs/irix-cc-64/qmake.conf share/qt4/mkspecs/irix-cc-64/qplatformdefs.h share/qt4/mkspecs/irix-cc/qmake.conf share/qt4/mkspecs/irix-cc/qplatformdefs.h share/qt4/mkspecs/irix-g++-64/qmake.conf share/qt4/mkspecs/irix-g++-64/qplatformdefs.h share/qt4/mkspecs/irix-g++/qmake.conf share/qt4/mkspecs/irix-g++/qplatformdefs.h share/qt4/mkspecs/linux-cxx/qmake.conf share/qt4/mkspecs/linux-cxx/qplatformdefs.h share/qt4/mkspecs/linux-ecc-64/qmake.conf share/qt4/mkspecs/linux-ecc-64/qplatformdefs.h share/qt4/mkspecs/linux-g++-32/qmake.conf share/qt4/mkspecs/linux-g++-32/qplatformdefs.h share/qt4/mkspecs/linux-g++-64/qmake.conf share/qt4/mkspecs/linux-g++-64/qplatformdefs.h share/qt4/mkspecs/linux-g++-maemo/qmake.conf share/qt4/mkspecs/linux-g++-maemo/qplatformdefs.h share/qt4/mkspecs/linux-g++/qmake.conf share/qt4/mkspecs/linux-g++/qplatformdefs.h share/qt4/mkspecs/linux-icc-32/qmake.conf share/qt4/mkspecs/linux-icc-32/qplatformdefs.h share/qt4/mkspecs/linux-icc-64/qmake.conf share/qt4/mkspecs/linux-icc-64/qplatformdefs.h share/qt4/mkspecs/linux-icc/qmake.conf share/qt4/mkspecs/linux-icc/qplatformdefs.h share/qt4/mkspecs/linux-kcc/qmake.conf share/qt4/mkspecs/linux-kcc/qplatformdefs.h share/qt4/mkspecs/linux-llvm/qmake.conf share/qt4/mkspecs/linux-llvm/qplatformdefs.h share/qt4/mkspecs/linux-lsb-g++/qmake.conf share/qt4/mkspecs/linux-lsb-g++/qplatformdefs.h share/qt4/mkspecs/linux-pgcc/qmake.conf share/qt4/mkspecs/linux-pgcc/qplatformdefs.h share/qt4/mkspecs/lynxos-g++/qmake.conf share/qt4/mkspecs/lynxos-g++/qplatformdefs.h share/qt4/mkspecs/macx-g++/Info.plist.app share/qt4/mkspecs/macx-g++/Info.plist.lib share/qt4/mkspecs/macx-g++/qmake.conf share/qt4/mkspecs/macx-g++/qplatformdefs.h share/qt4/mkspecs/macx-g++40/Info.plist.app share/qt4/mkspecs/macx-g++40/Info.plist.lib share/qt4/mkspecs/macx-g++40/qmake.conf share/qt4/mkspecs/macx-g++40/qplatformdefs.h share/qt4/mkspecs/macx-g++42/Info.plist.app share/qt4/mkspecs/macx-g++42/Info.plist.lib share/qt4/mkspecs/macx-g++42/qmake.conf share/qt4/mkspecs/macx-g++42/qplatformdefs.h share/qt4/mkspecs/macx-icc/qmake.conf share/qt4/mkspecs/macx-icc/qplatformdefs.h share/qt4/mkspecs/macx-llvm/Info.plist.app share/qt4/mkspecs/macx-llvm/Info.plist.lib share/qt4/mkspecs/macx-llvm/qmake.conf share/qt4/mkspecs/macx-llvm/qplatformdefs.h share/qt4/mkspecs/macx-pbuilder/Info.plist.app share/qt4/mkspecs/macx-pbuilder/qmake.conf share/qt4/mkspecs/macx-pbuilder/qplatformdefs.h share/qt4/mkspecs/macx-xcode/Info.plist.app share/qt4/mkspecs/macx-xcode/Info.plist.lib share/qt4/mkspecs/macx-xcode/qmake.conf share/qt4/mkspecs/macx-xcode/qplatformdefs.h share/qt4/mkspecs/macx-xlc/qmake.conf share/qt4/mkspecs/macx-xlc/qplatformdefs.h share/qt4/mkspecs/modules/README share/qt4/mkspecs/netbsd-g++/qmake.conf share/qt4/mkspecs/netbsd-g++/qplatformdefs.h share/qt4/mkspecs/openbsd-g++/qmake.conf share/qt4/mkspecs/openbsd-g++/qplatformdefs.h +share/qt4/mkspecs/qpa/common/g++-base-macx-iphone.conf +share/qt4/mkspecs/qpa/common/g++-base-macx-iphonedevice.conf +share/qt4/mkspecs/qpa/macx-iphonedevice-g++-armv6/qmake.conf +share/qt4/mkspecs/qpa/macx-iphonedevice-g++-armv6/qplatformdefs.h +share/qt4/mkspecs/qpa/macx-iphonedevice-g++-armv7-nothumb/qmake.conf +share/qt4/mkspecs/qpa/macx-iphonedevice-g++-armv7-nothumb/qplatformdefs.h +share/qt4/mkspecs/qpa/macx-iphonedevice-g++/qmake.conf +share/qt4/mkspecs/qpa/macx-iphonedevice-g++/qplatformdefs.h +share/qt4/mkspecs/qpa/macx-iphonesimulator-g++/qmake.conf +share/qt4/mkspecs/qpa/macx-iphonesimulator-g++/qplatformdefs.h share/qt4/mkspecs/qws/freebsd-generic-g++/qmake.conf share/qt4/mkspecs/qws/freebsd-generic-g++/qplatformdefs.h +share/qt4/mkspecs/qws/integrity-arm-cxarm/qmake.conf +share/qt4/mkspecs/qws/integrity-arm-cxarm/qplatformdefs.h +share/qt4/mkspecs/qws/integrity-ppc-cxppc/qmake.conf +share/qt4/mkspecs/qws/integrity-ppc-cxppc/qplatformdefs.h +share/qt4/mkspecs/qws/integrity-x86-cx86/qmake.conf +share/qt4/mkspecs/qws/integrity-x86-cx86/qplatformdefs.h share/qt4/mkspecs/qws/linux-arm-g++/qmake.conf share/qt4/mkspecs/qws/linux-arm-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-arm-gnueabi-g++/qmake.conf share/qt4/mkspecs/qws/linux-arm-gnueabi-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-armv6-g++/qmake.conf share/qt4/mkspecs/qws/linux-armv6-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-avr32-g++/qmake.conf share/qt4/mkspecs/qws/linux-avr32-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-cellon-g++/qmake.conf share/qt4/mkspecs/qws/linux-cellon-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-dm7000-g++/qmake.conf share/qt4/mkspecs/qws/linux-dm7000-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-dm800-g++/qmake.conf share/qt4/mkspecs/qws/linux-dm800-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-generic-g++-32/qmake.conf share/qt4/mkspecs/qws/linux-generic-g++-32/qplatformdefs.h share/qt4/mkspecs/qws/linux-generic-g++/qmake.conf share/qt4/mkspecs/qws/linux-generic-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-ipaq-g++/qmake.conf share/qt4/mkspecs/qws/linux-ipaq-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-lsb-g++/qmake.conf share/qt4/mkspecs/qws/linux-lsb-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-mips-g++/qmake.conf share/qt4/mkspecs/qws/linux-mips-g++/qplatformdefs.h +share/qt4/mkspecs/qws/linux-nacl-g++/qmake.conf +share/qt4/mkspecs/qws/linux-nacl-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-powerpc-g++/qmake.conf share/qt4/mkspecs/qws/linux-powerpc-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-sh-g++/qmake.conf share/qt4/mkspecs/qws/linux-sh-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-sh4al-g++/qmake.conf share/qt4/mkspecs/qws/linux-sh4al-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-sharp-g++/qmake.conf share/qt4/mkspecs/qws/linux-sharp-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-x86-g++/qmake.conf share/qt4/mkspecs/qws/linux-x86-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-x86_64-g++/qmake.conf share/qt4/mkspecs/qws/linux-x86_64-g++/qplatformdefs.h share/qt4/mkspecs/qws/linux-zylonite-g++/qmake.conf share/qt4/mkspecs/qws/linux-zylonite-g++/qplatformdefs.h share/qt4/mkspecs/qws/macx-generic-g++/qmake.conf share/qt4/mkspecs/qws/macx-generic-g++/qplatformdefs.h +share/qt4/mkspecs/qws/macx-nacl-g++/qmake.conf +share/qt4/mkspecs/qws/macx-nacl-g++/qplatformdefs.h +share/qt4/mkspecs/qws/qnx-arm-g++/qmake.conf +share/qt4/mkspecs/qws/qnx-arm-g++/qplatformdefs.h +share/qt4/mkspecs/qws/qnx-armv7-g++/qmake.conf +share/qt4/mkspecs/qws/qnx-armv7-g++/qplatformdefs.h +share/qt4/mkspecs/qws/qnx-generic-g++/qmake.conf +share/qt4/mkspecs/qws/qnx-generic-g++/qplatformdefs.h +share/qt4/mkspecs/qws/qnx-i386-g++/qmake.conf +share/qt4/mkspecs/qws/qnx-i386-g++/qplatformdefs.h +share/qt4/mkspecs/qws/qnx-ppc-g++/qmake.conf +share/qt4/mkspecs/qws/qnx-ppc-g++/qplatformdefs.h share/qt4/mkspecs/qws/solaris-generic-g++/qmake.conf share/qt4/mkspecs/qws/solaris-generic-g++/qplatformdefs.h share/qt4/mkspecs/sco-cc/qmake.conf share/qt4/mkspecs/sco-cc/qplatformdefs.h share/qt4/mkspecs/sco-g++/qmake.conf share/qt4/mkspecs/sco-g++/qplatformdefs.h share/qt4/mkspecs/solaris-cc-64-stlport/qmake.conf share/qt4/mkspecs/solaris-cc-64-stlport/qplatformdefs.h share/qt4/mkspecs/solaris-cc-64/qmake.conf share/qt4/mkspecs/solaris-cc-64/qplatformdefs.h share/qt4/mkspecs/solaris-cc-stlport/qmake.conf share/qt4/mkspecs/solaris-cc-stlport/qplatformdefs.h share/qt4/mkspecs/solaris-cc/qmake.conf share/qt4/mkspecs/solaris-cc/qplatformdefs.h share/qt4/mkspecs/solaris-g++-64/qmake.conf share/qt4/mkspecs/solaris-g++-64/qplatformdefs.h share/qt4/mkspecs/solaris-g++/qmake.conf share/qt4/mkspecs/solaris-g++/qplatformdefs.h share/qt4/mkspecs/symbian-abld/qmake.conf share/qt4/mkspecs/symbian-abld/qplatformdefs.h share/qt4/mkspecs/symbian-armcc/features/default_post.prf share/qt4/mkspecs/symbian-armcc/qmake.conf share/qt4/mkspecs/symbian-armcc/qplatformdefs.h share/qt4/mkspecs/symbian-gcce/features/default_post.prf share/qt4/mkspecs/symbian-gcce/qmake.conf share/qt4/mkspecs/symbian-gcce/qplatformdefs.h share/qt4/mkspecs/symbian-sbsv2/flm/qt/qmake_clean.flm share/qt4/mkspecs/symbian-sbsv2/flm/qt/qmake_emulator_deployment.flm share/qt4/mkspecs/symbian-sbsv2/flm/qt/qmake_extra_pre_targetdep.flm share/qt4/mkspecs/symbian-sbsv2/flm/qt/qmake_post_link.flm share/qt4/mkspecs/symbian-sbsv2/flm/qt/qmake_store_build.flm share/qt4/mkspecs/symbian-sbsv2/flm/qt/qt.xml share/qt4/mkspecs/symbian-sbsv2/qmake.conf share/qt4/mkspecs/symbian-sbsv2/qplatformdefs.h share/qt4/mkspecs/tru64-cxx/qmake.conf share/qt4/mkspecs/tru64-cxx/qplatformdefs.h share/qt4/mkspecs/tru64-g++/qmake.conf share/qt4/mkspecs/tru64-g++/qplatformdefs.h share/qt4/mkspecs/unixware-cc/qmake.conf share/qt4/mkspecs/unixware-cc/qplatformdefs.h share/qt4/mkspecs/unixware-g++/qmake.conf share/qt4/mkspecs/unixware-g++/qplatformdefs.h +share/qt4/mkspecs/unsupported/linux-armcc/qmake.conf +share/qt4/mkspecs/unsupported/linux-armcc/qplatformdefs.h +share/qt4/mkspecs/unsupported/linux-clang/qmake.conf +share/qt4/mkspecs/unsupported/linux-clang/qplatformdefs.h share/qt4/mkspecs/unsupported/linux-host-g++/qmake.conf share/qt4/mkspecs/unsupported/linux-host-g++/qplatformdefs.h share/qt4/mkspecs/unsupported/linux-scratchbox2-g++/qmake.conf share/qt4/mkspecs/unsupported/linux-scratchbox2-g++/qplatformdefs.h -share/qt4/mkspecs/unsupported/qnx-g++/qmake.conf -share/qt4/mkspecs/unsupported/qnx-g++/qplatformdefs.h +share/qt4/mkspecs/unsupported/macx-clang/Info.plist.app +share/qt4/mkspecs/unsupported/macx-clang/Info.plist.lib +share/qt4/mkspecs/unsupported/macx-clang/qmake.conf +share/qt4/mkspecs/unsupported/macx-clang/qplatformdefs.h +share/qt4/mkspecs/unsupported/qnx-X11-g++/qmake.conf +share/qt4/mkspecs/unsupported/qnx-X11-g++/qplatformdefs.h +share/qt4/mkspecs/unsupported/qnx-armv7le-qcc/qmake.conf +share/qt4/mkspecs/unsupported/qnx-armv7le-qcc/qplatformdefs.h +share/qt4/mkspecs/unsupported/qnx-x86-qcc/qmake.conf +share/qt4/mkspecs/unsupported/qnx-x86-qcc/qplatformdefs.h +share/qt4/mkspecs/unsupported/qws/integrity-x86-cx86/qmake.conf +share/qt4/mkspecs/unsupported/qws/integrity-x86-cx86/qplatformdefs.h +share/qt4/mkspecs/unsupported/qws/linux-x86-openkode-g++/qmake.conf +share/qt4/mkspecs/unsupported/qws/linux-x86-openkode-g++/qplatformdefs.h share/qt4/mkspecs/unsupported/qws/qnx-641/qmake.conf share/qt4/mkspecs/unsupported/qws/qnx-641/qplatformdefs.h -share/qt4/mkspecs/unsupported/qws/qnx-generic-g++/qmake.conf -share/qt4/mkspecs/unsupported/qws/qnx-generic-g++/qplatformdefs.h -share/qt4/mkspecs/unsupported/qws/qnx-i386-g++/qmake.conf -share/qt4/mkspecs/unsupported/qws/qnx-i386-g++/qplatformdefs.h -share/qt4/mkspecs/unsupported/qws/qnx-ppc-g++/qmake.conf -share/qt4/mkspecs/unsupported/qws/qnx-ppc-g++/qplatformdefs.h share/qt4/mkspecs/unsupported/vxworks-ppc-dcc/qmake.conf share/qt4/mkspecs/unsupported/vxworks-ppc-dcc/qplatformdefs.h share/qt4/mkspecs/unsupported/vxworks-ppc-g++/qmake.conf share/qt4/mkspecs/unsupported/vxworks-ppc-g++/qplatformdefs.h share/qt4/mkspecs/unsupported/vxworks-simpentium-dcc/qmake.conf share/qt4/mkspecs/unsupported/vxworks-simpentium-dcc/qplatformdefs.h share/qt4/mkspecs/unsupported/vxworks-simpentium-g++/qmake.conf share/qt4/mkspecs/unsupported/vxworks-simpentium-g++/qplatformdefs.h +share/qt4/mkspecs/unsupported/win32-g++-4.6-cross/qmake.conf +share/qt4/mkspecs/unsupported/win32-g++-4.6-cross/qplatformdefs.h share/qt4/mkspecs/unsupported/win32-g++-cross/qmake.conf share/qt4/mkspecs/unsupported/win32-g++-cross/qplatformdefs.h share/qt4/mkspecs/win32-borland/qmake.conf share/qt4/mkspecs/win32-borland/qplatformdefs.h +share/qt4/mkspecs/win32-g++-4.6/qmake.conf +share/qt4/mkspecs/win32-g++-4.6/qplatformdefs.h share/qt4/mkspecs/win32-g++/qmake.conf share/qt4/mkspecs/win32-g++/qplatformdefs.h share/qt4/mkspecs/win32-icc/qmake.conf share/qt4/mkspecs/win32-icc/qplatformdefs.h share/qt4/mkspecs/win32-msvc2003/qmake.conf share/qt4/mkspecs/win32-msvc2003/qplatformdefs.h share/qt4/mkspecs/win32-msvc2005/qmake.conf share/qt4/mkspecs/win32-msvc2005/qplatformdefs.h share/qt4/mkspecs/win32-msvc2008/qmake.conf share/qt4/mkspecs/win32-msvc2008/qplatformdefs.h share/qt4/mkspecs/win32-msvc2010/qmake.conf share/qt4/mkspecs/win32-msvc2010/qplatformdefs.h share/qt4/mkspecs/wince50standard-armv4i-msvc2005/default_post.prf share/qt4/mkspecs/wince50standard-armv4i-msvc2005/qmake.conf share/qt4/mkspecs/wince50standard-armv4i-msvc2005/qplatformdefs.h share/qt4/mkspecs/wince50standard-armv4i-msvc2008/default_post.prf share/qt4/mkspecs/wince50standard-armv4i-msvc2008/qmake.conf share/qt4/mkspecs/wince50standard-armv4i-msvc2008/qplatformdefs.h share/qt4/mkspecs/wince50standard-mipsii-msvc2005/default_post.prf share/qt4/mkspecs/wince50standard-mipsii-msvc2005/qmake.conf share/qt4/mkspecs/wince50standard-mipsii-msvc2005/qplatformdefs.h share/qt4/mkspecs/wince50standard-mipsii-msvc2008/default_post.prf share/qt4/mkspecs/wince50standard-mipsii-msvc2008/qmake.conf share/qt4/mkspecs/wince50standard-mipsii-msvc2008/qplatformdefs.h share/qt4/mkspecs/wince50standard-mipsiv-msvc2005/qmake.conf share/qt4/mkspecs/wince50standard-mipsiv-msvc2005/qplatformdefs.h share/qt4/mkspecs/wince50standard-mipsiv-msvc2008/qmake.conf share/qt4/mkspecs/wince50standard-mipsiv-msvc2008/qplatformdefs.h share/qt4/mkspecs/wince50standard-sh4-msvc2005/qmake.conf share/qt4/mkspecs/wince50standard-sh4-msvc2005/qplatformdefs.h share/qt4/mkspecs/wince50standard-sh4-msvc2008/qmake.conf share/qt4/mkspecs/wince50standard-sh4-msvc2008/qplatformdefs.h share/qt4/mkspecs/wince50standard-x86-msvc2005/default_post.prf share/qt4/mkspecs/wince50standard-x86-msvc2005/qmake.conf share/qt4/mkspecs/wince50standard-x86-msvc2005/qplatformdefs.h share/qt4/mkspecs/wince50standard-x86-msvc2008/default_post.prf share/qt4/mkspecs/wince50standard-x86-msvc2008/qmake.conf share/qt4/mkspecs/wince50standard-x86-msvc2008/qplatformdefs.h share/qt4/mkspecs/wince60standard-armv4i-msvc2005/qmake.conf share/qt4/mkspecs/wince60standard-armv4i-msvc2005/qplatformdefs.h share/qt4/mkspecs/wince60standard-x86-msvc2005/qmake.conf share/qt4/mkspecs/wince60standard-x86-msvc2005/qplatformdefs.h +share/qt4/mkspecs/wince70embedded-armv4i-msvc2008/default_post.prf +share/qt4/mkspecs/wince70embedded-armv4i-msvc2008/qmake.conf +share/qt4/mkspecs/wince70embedded-armv4i-msvc2008/qplatformdefs.h +share/qt4/mkspecs/wince70embedded-x86-msvc2008/default_post.prf +share/qt4/mkspecs/wince70embedded-x86-msvc2008/qmake.conf +share/qt4/mkspecs/wince70embedded-x86-msvc2008/qplatformdefs.h share/qt4/mkspecs/wincewm50pocket-msvc2005/default_post.prf share/qt4/mkspecs/wincewm50pocket-msvc2005/qmake.conf share/qt4/mkspecs/wincewm50pocket-msvc2005/qplatformdefs.h share/qt4/mkspecs/wincewm50pocket-msvc2008/default_post.prf share/qt4/mkspecs/wincewm50pocket-msvc2008/qmake.conf share/qt4/mkspecs/wincewm50pocket-msvc2008/qplatformdefs.h share/qt4/mkspecs/wincewm50smart-msvc2005/default_post.prf share/qt4/mkspecs/wincewm50smart-msvc2005/qmake.conf share/qt4/mkspecs/wincewm50smart-msvc2005/qplatformdefs.h share/qt4/mkspecs/wincewm50smart-msvc2008/default_post.prf share/qt4/mkspecs/wincewm50smart-msvc2008/qmake.conf share/qt4/mkspecs/wincewm50smart-msvc2008/qplatformdefs.h share/qt4/mkspecs/wincewm60professional-msvc2005/default_post.prf share/qt4/mkspecs/wincewm60professional-msvc2005/qmake.conf share/qt4/mkspecs/wincewm60professional-msvc2005/qplatformdefs.h share/qt4/mkspecs/wincewm60professional-msvc2008/default_post.prf share/qt4/mkspecs/wincewm60professional-msvc2008/qmake.conf share/qt4/mkspecs/wincewm60professional-msvc2008/qplatformdefs.h share/qt4/mkspecs/wincewm60standard-msvc2005/default_post.prf share/qt4/mkspecs/wincewm60standard-msvc2005/qmake.conf share/qt4/mkspecs/wincewm60standard-msvc2005/qplatformdefs.h share/qt4/mkspecs/wincewm60standard-msvc2008/default_post.prf share/qt4/mkspecs/wincewm60standard-msvc2008/qmake.conf share/qt4/mkspecs/wincewm60standard-msvc2008/qplatformdefs.h share/qt4/mkspecs/wincewm65professional-msvc2005/default_post.prf share/qt4/mkspecs/wincewm65professional-msvc2005/qmake.conf share/qt4/mkspecs/wincewm65professional-msvc2005/qplatformdefs.h share/qt4/mkspecs/wincewm65professional-msvc2008/default_post.prf share/qt4/mkspecs/wincewm65professional-msvc2008/qmake.conf share/qt4/mkspecs/wincewm65professional-msvc2008/qplatformdefs.h @dirrm share/qt4/mkspecs/wincewm65professional-msvc2008 @dirrm share/qt4/mkspecs/wincewm65professional-msvc2005 @dirrm share/qt4/mkspecs/wincewm60standard-msvc2008 @dirrm share/qt4/mkspecs/wincewm60standard-msvc2005 @dirrm share/qt4/mkspecs/wincewm60professional-msvc2008 @dirrm share/qt4/mkspecs/wincewm60professional-msvc2005 @dirrm share/qt4/mkspecs/wincewm50smart-msvc2008 @dirrm share/qt4/mkspecs/wincewm50smart-msvc2005 @dirrm share/qt4/mkspecs/wincewm50pocket-msvc2008 @dirrm share/qt4/mkspecs/wincewm50pocket-msvc2005 +@dirrm share/qt4/mkspecs/wince70embedded-x86-msvc2008 +@dirrm share/qt4/mkspecs/wince70embedded-armv4i-msvc2008 @dirrm share/qt4/mkspecs/wince60standard-x86-msvc2005 @dirrm share/qt4/mkspecs/wince60standard-armv4i-msvc2005 @dirrm share/qt4/mkspecs/wince50standard-x86-msvc2008 @dirrm share/qt4/mkspecs/wince50standard-x86-msvc2005 @dirrm share/qt4/mkspecs/wince50standard-sh4-msvc2008 @dirrm share/qt4/mkspecs/wince50standard-sh4-msvc2005 @dirrm share/qt4/mkspecs/wince50standard-mipsiv-msvc2008 @dirrm share/qt4/mkspecs/wince50standard-mipsiv-msvc2005 @dirrm share/qt4/mkspecs/wince50standard-mipsii-msvc2008 @dirrm share/qt4/mkspecs/wince50standard-mipsii-msvc2005 @dirrm share/qt4/mkspecs/wince50standard-armv4i-msvc2008 @dirrm share/qt4/mkspecs/wince50standard-armv4i-msvc2005 @dirrm share/qt4/mkspecs/win32-msvc2010 @dirrm share/qt4/mkspecs/win32-msvc2008 @dirrm share/qt4/mkspecs/win32-msvc2005 @dirrm share/qt4/mkspecs/win32-msvc2003 @dirrm share/qt4/mkspecs/win32-icc +@dirrm share/qt4/mkspecs/win32-g++-4.6 @dirrm share/qt4/mkspecs/win32-g++ @dirrm share/qt4/mkspecs/win32-borland @dirrm share/qt4/mkspecs/unsupported/win32-g++-cross +@dirrm share/qt4/mkspecs/unsupported/win32-g++-4.6-cross @dirrm share/qt4/mkspecs/unsupported/vxworks-simpentium-g++ @dirrm share/qt4/mkspecs/unsupported/vxworks-simpentium-dcc @dirrm share/qt4/mkspecs/unsupported/vxworks-ppc-g++ @dirrm share/qt4/mkspecs/unsupported/vxworks-ppc-dcc -@dirrm share/qt4/mkspecs/unsupported/qws/qnx-ppc-g++ -@dirrm share/qt4/mkspecs/unsupported/qws/qnx-i386-g++ -@dirrm share/qt4/mkspecs/unsupported/qws/qnx-generic-g++ @dirrm share/qt4/mkspecs/unsupported/qws/qnx-641 +@dirrm share/qt4/mkspecs/unsupported/qws/linux-x86-openkode-g++ +@dirrm share/qt4/mkspecs/unsupported/qws/integrity-x86-cx86 @dirrm share/qt4/mkspecs/unsupported/qws -@dirrm share/qt4/mkspecs/unsupported/qnx-g++ +@dirrm share/qt4/mkspecs/unsupported/qnx-x86-qcc +@dirrm share/qt4/mkspecs/unsupported/qnx-armv7le-qcc +@dirrm share/qt4/mkspecs/unsupported/qnx-X11-g++ +@dirrm share/qt4/mkspecs/unsupported/macx-clang @dirrm share/qt4/mkspecs/unsupported/linux-scratchbox2-g++ @dirrm share/qt4/mkspecs/unsupported/linux-host-g++ +@dirrm share/qt4/mkspecs/unsupported/linux-clang +@dirrm share/qt4/mkspecs/unsupported/linux-armcc @dirrm share/qt4/mkspecs/unsupported @dirrm share/qt4/mkspecs/unixware-g++ @dirrm share/qt4/mkspecs/unixware-cc @dirrm share/qt4/mkspecs/tru64-g++ @dirrm share/qt4/mkspecs/tru64-cxx @dirrm share/qt4/mkspecs/symbian-sbsv2/flm/qt @dirrm share/qt4/mkspecs/symbian-sbsv2/flm @dirrm share/qt4/mkspecs/symbian-sbsv2 @dirrm share/qt4/mkspecs/symbian-gcce/features @dirrm share/qt4/mkspecs/symbian-gcce @dirrm share/qt4/mkspecs/symbian-armcc/features @dirrm share/qt4/mkspecs/symbian-armcc @dirrm share/qt4/mkspecs/symbian-abld @dirrm share/qt4/mkspecs/solaris-g++-64 @dirrm share/qt4/mkspecs/solaris-g++ @dirrm share/qt4/mkspecs/solaris-cc-stlport @dirrm share/qt4/mkspecs/solaris-cc-64-stlport @dirrm share/qt4/mkspecs/solaris-cc-64 @dirrm share/qt4/mkspecs/solaris-cc @dirrm share/qt4/mkspecs/sco-g++ @dirrm share/qt4/mkspecs/sco-cc @dirrm share/qt4/mkspecs/qws/solaris-generic-g++ +@dirrm share/qt4/mkspecs/qws/qnx-ppc-g++ +@dirrm share/qt4/mkspecs/qws/qnx-i386-g++ +@dirrm share/qt4/mkspecs/qws/qnx-generic-g++ +@dirrm share/qt4/mkspecs/qws/qnx-armv7-g++ +@dirrm share/qt4/mkspecs/qws/qnx-arm-g++ +@dirrm share/qt4/mkspecs/qws/macx-nacl-g++ @dirrm share/qt4/mkspecs/qws/macx-generic-g++ @dirrm share/qt4/mkspecs/qws/linux-zylonite-g++ @dirrm share/qt4/mkspecs/qws/linux-x86_64-g++ @dirrm share/qt4/mkspecs/qws/linux-x86-g++ @dirrm share/qt4/mkspecs/qws/linux-sharp-g++ @dirrm share/qt4/mkspecs/qws/linux-sh4al-g++ @dirrm share/qt4/mkspecs/qws/linux-sh-g++ @dirrm share/qt4/mkspecs/qws/linux-powerpc-g++ +@dirrm share/qt4/mkspecs/qws/linux-nacl-g++ @dirrm share/qt4/mkspecs/qws/linux-mips-g++ @dirrm share/qt4/mkspecs/qws/linux-lsb-g++ @dirrm share/qt4/mkspecs/qws/linux-ipaq-g++ @dirrm share/qt4/mkspecs/qws/linux-generic-g++-32 @dirrm share/qt4/mkspecs/qws/linux-generic-g++ @dirrm share/qt4/mkspecs/qws/linux-dm800-g++ @dirrm share/qt4/mkspecs/qws/linux-dm7000-g++ @dirrm share/qt4/mkspecs/qws/linux-cellon-g++ @dirrm share/qt4/mkspecs/qws/linux-avr32-g++ @dirrm share/qt4/mkspecs/qws/linux-armv6-g++ @dirrm share/qt4/mkspecs/qws/linux-arm-gnueabi-g++ @dirrm share/qt4/mkspecs/qws/linux-arm-g++ +@dirrm share/qt4/mkspecs/qws/integrity-x86-cx86 +@dirrm share/qt4/mkspecs/qws/integrity-ppc-cxppc +@dirrm share/qt4/mkspecs/qws/integrity-arm-cxarm @dirrm share/qt4/mkspecs/qws/freebsd-generic-g++ @dirrm share/qt4/mkspecs/qws +@dirrm share/qt4/mkspecs/qpa/macx-iphonesimulator-g++ +@dirrm share/qt4/mkspecs/qpa/macx-iphonedevice-g++-armv7-nothumb +@dirrm share/qt4/mkspecs/qpa/macx-iphonedevice-g++-armv6 +@dirrm share/qt4/mkspecs/qpa/macx-iphonedevice-g++ +@dirrm share/qt4/mkspecs/qpa/common +@dirrm share/qt4/mkspecs/qpa @dirrm share/qt4/mkspecs/openbsd-g++ @dirrm share/qt4/mkspecs/netbsd-g++ @dirrmtry share/qt4/mkspecs/modules @dirrm share/qt4/mkspecs/macx-xlc @dirrm share/qt4/mkspecs/macx-xcode @dirrm share/qt4/mkspecs/macx-pbuilder @dirrm share/qt4/mkspecs/macx-llvm @dirrm share/qt4/mkspecs/macx-icc @dirrm share/qt4/mkspecs/macx-g++42 @dirrm share/qt4/mkspecs/macx-g++40 @dirrm share/qt4/mkspecs/macx-g++ @dirrm share/qt4/mkspecs/lynxos-g++ @dirrm share/qt4/mkspecs/linux-pgcc @dirrm share/qt4/mkspecs/linux-lsb-g++ @dirrm share/qt4/mkspecs/linux-llvm @dirrm share/qt4/mkspecs/linux-kcc @dirrm share/qt4/mkspecs/linux-icc-64 @dirrm share/qt4/mkspecs/linux-icc-32 @dirrm share/qt4/mkspecs/linux-icc @dirrm share/qt4/mkspecs/linux-g++-maemo @dirrm share/qt4/mkspecs/linux-g++-64 @dirrm share/qt4/mkspecs/linux-g++-32 @dirrm share/qt4/mkspecs/linux-g++ @dirrm share/qt4/mkspecs/linux-ecc-64 @dirrm share/qt4/mkspecs/linux-cxx @dirrm share/qt4/mkspecs/irix-g++-64 @dirrm share/qt4/mkspecs/irix-g++ @dirrm share/qt4/mkspecs/irix-cc-64 @dirrm share/qt4/mkspecs/irix-cc @dirrm share/qt4/mkspecs/hurd-g++ @dirrm share/qt4/mkspecs/hpuxi-g++-64 @dirrm share/qt4/mkspecs/hpuxi-acc-64 @dirrm share/qt4/mkspecs/hpuxi-acc-32 @dirrm share/qt4/mkspecs/hpux-g++-64 @dirrm share/qt4/mkspecs/hpux-g++ @dirrm share/qt4/mkspecs/hpux-acc-o64 @dirrm share/qt4/mkspecs/hpux-acc-64 @dirrm share/qt4/mkspecs/hpux-acc -@dirrm share/qt4/mkspecs/freebsd-llvm @dirrm share/qt4/mkspecs/freebsd-icc +@dirrm share/qt4/mkspecs/freebsd-g++48 +@dirrm share/qt4/mkspecs/freebsd-g++47 @dirrm share/qt4/mkspecs/freebsd-g++46 -@dirrm share/qt4/mkspecs/freebsd-g++45 @dirrm share/qt4/mkspecs/freebsd-g++44 -@dirrm share/qt4/mkspecs/freebsd-g++43 @dirrm share/qt4/mkspecs/freebsd-g++42 @dirrm share/qt4/mkspecs/freebsd-g++34 @dirrm share/qt4/mkspecs/freebsd-g++ @dirrm share/qt4/mkspecs/freebsd-clang @dirrm share/qt4/mkspecs/features/win32 @dirrm share/qt4/mkspecs/features/unix @dirrm share/qt4/mkspecs/features/symbian @dirrm share/qt4/mkspecs/features/mac @dirrmtry share/qt4/mkspecs/features @dirrm share/qt4/mkspecs/darwin-g++ @dirrm share/qt4/mkspecs/cygwin-g++ @dirrm share/qt4/mkspecs/common/wince @dirrm share/qt4/mkspecs/common/symbian/stl-off @dirrm share/qt4/mkspecs/common/symbian/header-wrappers @dirrm share/qt4/mkspecs/common/symbian +@dirrm share/qt4/mkspecs/common/qnx @dirrm share/qt4/mkspecs/common/posix +@dirrm share/qt4/mkspecs/common/mac +@dirrm share/qt4/mkspecs/common/integrity @dirrm share/qt4/mkspecs/common/c89 @dirrm share/qt4/mkspecs/common/aix @dirrm share/qt4/mkspecs/common @dirrm share/qt4/mkspecs/aix-xlc-64 @dirrm share/qt4/mkspecs/aix-xlc @dirrm share/qt4/mkspecs/aix-g++-64 @dirrm share/qt4/mkspecs/aix-g++ @dirrmtry share/qt4/mkspecs @dirrmtry share/qt4 Property changes on: head/devel/qmake4/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/devel/qt4/distinfo =================================================================== --- head/devel/qt4/distinfo (revision 297366) +++ head/devel/qt4/distinfo (revision 297367) @@ -1,2 +1,2 @@ -SHA256 (KDE/qt-everywhere-opensource-src-4.7.4.tar.gz) = 97195ebce8a46f9929fb971d9ae58326d011c4d54425389e6e936514f540221e -SIZE (KDE/qt-everywhere-opensource-src-4.7.4.tar.gz) = 220388303 +SHA256 (KDE/qt-everywhere-opensource-src-4.8.1.tar.gz) = ef851a36aa41b4ad7a3e4c96ca27eaed2a629a6d2fa06c20f072118caed87ae8 +SIZE (KDE/qt-everywhere-opensource-src-4.8.1.tar.gz) = 239606696 Property changes on: head/devel/qt4/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/devel/qt4/files/patch-configure =================================================================== --- head/devel/qt4/files/patch-configure (revision 297366) +++ head/devel/qt4/files/patch-configure (revision 297367) @@ -1,56 +1,56 @@ ---- ./configure.orig 2011-03-05 18:49:09.908552467 +0100 -+++ ./configure 2011-03-05 18:51:40.918572488 +0100 -@@ -796,7 +796,7 @@ +--- ./configure.orig 2012-01-06 11:42:45.828388787 +0100 ++++ ./configure 2012-01-06 11:46:01.318339795 +0100 +@@ -829,7 +829,7 @@ CFG_SILENT=no CFG_GRAPHICS_SYSTEM=default CFG_RUNTIME_SYSTEM= -CFG_ALSA=auto +CFG_ALSA=no CFG_PULSEAUDIO=auto CFG_COREWLAN=auto CFG_ICD=auto -@@ -2445,11 +2445,6 @@ +@@ -2576,11 +2576,6 @@ fi done - # symlink the mkspecs directory - mkdir -p "$outpath/mkspecs" - rm -rf "$outpath"/mkspecs/* - ln -s "$relpath"/mkspecs/* "$outpath/mkspecs" - rm -f "$outpath/mkspecs/default" ShadowMkspecs() { -@@ -2495,7 +2490,7 @@ +@@ -2626,7 +2621,7 @@ # find a make command if [ -z "$MAKE" ]; then MAKE= - for mk in gmake make; do + for mk in make; do if "$WHICH" $mk >/dev/null 2>&1; then MAKE=`"$WHICH" $mk` break -@@ -4596,7 +4591,7 @@ +@@ -4816,7 +4811,7 @@ } # build qmake -if true; then ###[ '!' -f "$outpath/bin/qmake" ]; +if false; then ###[ '!' -f "$outpath/bin/qmake" ]; echo "Creating qmake. Please wait..." OLD_QCONFIG_H= -@@ -5564,14 +5559,6 @@ +@@ -5831,14 +5826,6 @@ X11TESTS_FLAGS="$X11TESTS_FLAGS -fpermissive" fi - # Check we actually have X11 :-) - "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xlib "XLib" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS - if [ $? != "0" ]; then - echo "Basic XLib functionality test failed!" - echo " You might need to modify the include and library search paths by editing" - echo " QMAKE_INCDIR_X11 and QMAKE_LIBDIR_X11 in ${XQMAKESPEC}." - exit 1 - fi fi - # X11/MINGW OpenGL + # X11/MINGW/SYMBIAN OpenGL Property changes on: head/devel/qt4/files/patch-configure ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/devel/qt4-assistant/Makefile =================================================================== --- head/devel/qt4-assistant/Makefile (revision 297366) +++ head/devel/qt4-assistant/Makefile (revision 297367) @@ -1,67 +1,66 @@ # -*-mode: makefile-*- # New ports collection makefile for: qt40 # Date created: Wed Jun 29 11:49:42 CEST 2005 # Whom: lofi@freebsd.org # # $FreeBSD$ # PORTNAME= assistant DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES?= devel PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org 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 help webkit QT_NONSTANDARD= yes QT_DIST= yes MAKE_JOBS_SAFE= yes HAS_CONFIGURE= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DESKTOP_ENTRIES="Qt Assistant" "${COMMENT}" \ "${PREFIX}/share/pixmaps/assistant-qt4.png" \ "${PREFIX}/bin/assistant-qt4" "" false DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ src/activeqt src/dbus src/multimedia src/opengl src/openvg \ src/phonon src/qt3support src/s60installs src/s60main \ src/script src/scripttools src/svg src/testlib src/tools \ src/winmain src/xmlpatterns src/3rdparty/clucene \ src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \ src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/phonon EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME}/tools/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure pre-configure: ${REINPLACE_CMD} \ -e 's|^TARGET.*|TARGET=assistant-qt4|g' \ ${BUILD_WRKSRC}/${PORTNAME}.pro ${MKDIR} ${WRKSRC}/mkspecs/modules ${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 post-install: ${INSTALL_DATA} ${BUILD_WRKSRC}/images/assistant-128.png \ ${PREFIX}/share/pixmaps/assistant-qt4.png .include Property changes on: head/devel/qt4-assistant/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/devel/qt4-corelib/files/patch-configure =================================================================== --- head/devel/qt4-corelib/files/patch-configure (revision 297366) +++ head/devel/qt4-corelib/files/patch-configure (revision 297367) @@ -1,76 +1,77 @@ ---- ./configure.orig 2011-03-09 01:18:35.443096016 +0100 -+++ ./configure 2011-03-09 01:17:30.423222843 +0100 -@@ -6617,7 +6617,6 @@ +--- configure.orig 2012-01-06 12:10:24.748328275 +0100 ++++ configure 2012-01-06 12:15:25.008280655 +0100 +@@ -7045,7 +7045,6 @@ QT_CONFIG="$QT_CONFIG phonon-backend" fi else - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_PHONON" fi # disable accessibility -@@ -6671,7 +6670,6 @@ +@@ -7102,7 +7101,6 @@ # enable opengl if [ "$CFG_OPENGL" = "no" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENGL" else QT_CONFIG="$QT_CONFIG opengl" fi -@@ -7172,7 +7170,6 @@ +@@ -7624,7 +7622,6 @@ if [ "$CFG_XMLPATTERNS" = "yes" ]; then QT_CONFIG="$QT_CONFIG xmlpatterns" else - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XMLPATTERNS" fi if [ "$CFG_MULTIMEDIA" = "no" ]; then -@@ -7772,10 +7769,8 @@ +@@ -8242,10 +8239,8 @@ [ "$CFG_MNG" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_MNG" [ "$CFG_ZLIB" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ZLIB" [ "$CFG_S60" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_S60" -[ "$CFG_EXCEPTIONS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_EXCEPTIONS" [ "$CFG_IPV6" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6" [ "$CFG_SXE" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SXE" -[ "$CFG_DBUS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_DBUS" - if [ "$PLATFORM_QWS" != "yes" ]; then + if [ "$PLATFORM_QWS" != "yes" -a "$PLATFORM_QPA" != "yes" ]; then [ "$CFG_GRAPHICS_SYSTEM" = "raster" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_GRAPHICSSYSTEM_RASTER" -@@ -7785,35 +7780,21 @@ - fi - +@@ -8257,36 +8252,22 @@ # X11/Unix/Mac only configs --[ "$CFG_CUPS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CUPS" -+%%CUPS%%[ "$CFG_CUPS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CUPS" [ "$CFG_ICONV" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ICONV" [ "$CFG_GLIB" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GLIB" --[ "$CFG_GSTREAMER" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GSTREAMER" -[ "$CFG_QGTKSTYLE" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STYLE_GTK" +%%QGTKSTYLE%%[ "$CFG_QGTKSTYLE" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STYLE_GTK" - [ "$CFG_CLOCK_MONOTONIC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CLOCK_MONOTONIC" - [ "$CFG_MREMAP" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MREMAP" - [ "$CFG_GETADDRINFO" = "no" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETADDRINFO" - [ "$CFG_IPV6IFNAME" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6IFNAME" - [ "$CFG_GETIFADDRS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETIFADDRS" - [ "$CFG_INOTIFY" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_INOTIFY" --[ "$CFG_NAS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NAS" -+%%NAS%%[ "$CFG_NAS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NAS" - [ "$CFG_NIS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NIS" - [ "$CFG_OPENSSL" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENSSL" - [ "$CFG_OPENSSL" = "linked" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LINKED_OPENSSL" + if [ "$XPLATFORM_SYMBIAN" = "no" ]; then + # Do not apply following negative X11/Unix/Mac only flags on Symbian, so that + # configuration matches with the one generated by configure executable tool +- [ "$CFG_CUPS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CUPS" +- [ "$CFG_GSTREAMER" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GSTREAMER" ++ %%CUPS%%[ "$CFG_CUPS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CUPS" + [ "$CFG_CLOCK_MONOTONIC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CLOCK_MONOTONIC" + [ "$CFG_MREMAP" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MREMAP" + [ "$CFG_GETADDRINFO" = "no" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETADDRINFO" + [ "$CFG_IPV6IFNAME" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6IFNAME" + [ "$CFG_GETIFADDRS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETIFADDRS" + [ "$CFG_INOTIFY" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_INOTIFY" +- [ "$CFG_NAS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NAS" ++ %%NAS%%[ "$CFG_NAS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NAS" + [ "$CFG_NIS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NIS" + [ "$CFG_OPENSSL" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENSSL" + [ "$CFG_OPENSSL" = "linked" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LINKED_OPENSSL" --[ "$CFG_SM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SESSIONMANAGER" --[ "$CFG_XCURSOR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XCURSOR" --[ "$CFG_XFIXES" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XFIXES" --[ "$CFG_FONTCONFIG" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FONTCONFIG" --[ "$CFG_XINERAMA" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINERAMA" --[ "$CFG_XKB" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XKB" --[ "$CFG_XRANDR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRANDR" --[ "$CFG_XRENDER" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRENDER" --[ "$CFG_MITSHM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MITSHM" --[ "$CFG_XSHAPE" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SHAPE" --[ "$CFG_XVIDEO" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XVIDEO" --[ "$CFG_XSYNC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XSYNC" --[ "$CFG_XINPUT" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINPUT QT_NO_TABLET" +- [ "$CFG_SM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SESSIONMANAGER" +- [ "$CFG_XCURSOR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XCURSOR" +- [ "$CFG_XFIXES" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XFIXES" +- [ "$CFG_FONTCONFIG" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FONTCONFIG" +- [ "$CFG_XINERAMA" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINERAMA" +- [ "$CFG_XKB" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XKB" +- [ "$CFG_XRANDR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRANDR" +- [ "$CFG_XRENDER" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRENDER" +- [ "$CFG_MITSHM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MITSHM" +- [ "$CFG_XSHAPE" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SHAPE" +- [ "$CFG_XVIDEO" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XVIDEO" +- [ "$CFG_XSYNC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XSYNC" +- [ "$CFG_XINPUT" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINPUT QT_NO_TABLET" - [ "$CFG_XCURSOR" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XCURSOR" - [ "$CFG_XINERAMA" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINERAMA" + [ "$CFG_XCURSOR" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XCURSOR" + [ "$CFG_XINERAMA" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINERAMA" Property changes on: head/devel/qt4-corelib/files/patch-configure ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/devel/qt4-corelib/pkg-message =================================================================== --- head/devel/qt4-corelib/pkg-message (revision 297366) +++ head/devel/qt4-corelib/pkg-message (revision 297367) @@ -1,16 +1,16 @@ -===================================================================== +====================================================================== Qt 4 can be built with optional support for: - Common UNIX Printing System (CUPS) - Network Audio System (NAS) - Qt style that renders using GTK (QGTKSTYLE) In order to enable them, you have to add QT4_OPTIONS= CUPS NAS QGTKSTYLE to your /etc/make.conf and compile devel/qt4-corelib and x11-toolkits/qt4-gui ports. Attention! Whenever you change the QT4_OPTIONS both devel/qt4-corelib and x11-toolkits/qt4-gui ports must be rebuilt! -===================================================================== +====================================================================== Property changes on: head/devel/qt4-corelib/pkg-message ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/devel/qt4-corelib/pkg-plist =================================================================== --- head/devel/qt4-corelib/pkg-plist (revision 297366) +++ head/devel/qt4-corelib/pkg-plist (revision 297367) @@ -1,623 +1,638 @@ include/qt4/Qt/QtCore include/qt4/Qt/qabstractanimation.h include/qt4/Qt/qabstracteventdispatcher.h include/qt4/Qt/qabstractfileengine.h include/qt4/Qt/qabstractitemmodel.h include/qt4/Qt/qabstractstate.h include/qt4/Qt/qabstracttransition.h include/qt4/Qt/qalgorithms.h include/qt4/Qt/qanimationgroup.h include/qt4/Qt/qatomic.h include/qt4/Qt/qatomic_alpha.h include/qt4/Qt/qatomic_arch.h include/qt4/Qt/qatomic_arm.h +include/qt4/Qt/qatomic_armv5.h include/qt4/Qt/qatomic_armv6.h +include/qt4/Qt/qatomic_armv7.h include/qt4/Qt/qatomic_avr32.h include/qt4/Qt/qatomic_bfin.h include/qt4/Qt/qatomic_bootstrap.h include/qt4/Qt/qatomic_generic.h include/qt4/Qt/qatomic_i386.h include/qt4/Qt/qatomic_ia64.h +include/qt4/Qt/qatomic_integrity.h include/qt4/Qt/qatomic_macosx.h include/qt4/Qt/qatomic_mips.h include/qt4/Qt/qatomic_parisc.h include/qt4/Qt/qatomic_powerpc.h include/qt4/Qt/qatomic_s390.h include/qt4/Qt/qatomic_sh.h include/qt4/Qt/qatomic_sh4a.h include/qt4/Qt/qatomic_sparc.h include/qt4/Qt/qatomic_symbian.h include/qt4/Qt/qatomic_vxworks.h include/qt4/Qt/qatomic_windows.h include/qt4/Qt/qatomic_windowsce.h include/qt4/Qt/qatomic_x86_64.h include/qt4/Qt/qbasicatomic.h include/qt4/Qt/qbasictimer.h include/qt4/Qt/qbitarray.h include/qt4/Qt/qbuffer.h include/qt4/Qt/qbytearray.h include/qt4/Qt/qbytearraymatcher.h include/qt4/Qt/qcache.h include/qt4/Qt/qchar.h include/qt4/Qt/qconfig-dist.h include/qt4/Qt/qconfig-large.h include/qt4/Qt/qconfig-medium.h include/qt4/Qt/qconfig-minimal.h +include/qt4/Qt/qconfig-nacl.h include/qt4/Qt/qconfig-small.h include/qt4/Qt/qconfig.h include/qt4/Qt/qcontainerfwd.h include/qt4/Qt/qcontiguouscache.h include/qt4/Qt/qcoreapplication.h include/qt4/Qt/qcoreevent.h include/qt4/Qt/qcryptographichash.h include/qt4/Qt/qdatastream.h include/qt4/Qt/qdatetime.h include/qt4/Qt/qdebug.h include/qt4/Qt/qdir.h include/qt4/Qt/qdiriterator.h include/qt4/Qt/qeasingcurve.h include/qt4/Qt/qelapsedtimer.h include/qt4/Qt/qendian.h include/qt4/Qt/qeventloop.h include/qt4/Qt/qeventtransition.h include/qt4/Qt/qfactoryinterface.h include/qt4/Qt/qfeatures.h include/qt4/Qt/qfile.h include/qt4/Qt/qfileinfo.h include/qt4/Qt/qfilesystemwatcher.h include/qt4/Qt/qfinalstate.h include/qt4/Qt/qfsfileengine.h +include/qt4/Qt/qfunctions_nacl.h include/qt4/Qt/qfunctions_vxworks.h include/qt4/Qt/qfunctions_wince.h include/qt4/Qt/qfuture.h include/qt4/Qt/qfutureinterface.h include/qt4/Qt/qfuturesynchronizer.h include/qt4/Qt/qfuturewatcher.h include/qt4/Qt/qglobal.h include/qt4/Qt/qhash.h include/qt4/Qt/qhistorystate.h include/qt4/Qt/qiodevice.h include/qt4/Qt/qiterator.h include/qt4/Qt/qlibrary.h include/qt4/Qt/qlibraryinfo.h include/qt4/Qt/qline.h include/qt4/Qt/qlinkedlist.h include/qt4/Qt/qlist.h include/qt4/Qt/qlocale.h include/qt4/Qt/qmap.h include/qt4/Qt/qmargins.h include/qt4/Qt/qmath.h include/qt4/Qt/qmetaobject.h include/qt4/Qt/qmetatype.h include/qt4/Qt/qmimedata.h include/qt4/Qt/qmutex.h include/qt4/Qt/qnamespace.h include/qt4/Qt/qnumeric.h include/qt4/Qt/qobject.h include/qt4/Qt/qobjectcleanuphandler.h include/qt4/Qt/qobjectdefs.h include/qt4/Qt/qpair.h include/qt4/Qt/qparallelanimationgroup.h include/qt4/Qt/qpauseanimation.h include/qt4/Qt/qplugin.h include/qt4/Qt/qpluginloader.h include/qt4/Qt/qpoint.h include/qt4/Qt/qpointer.h include/qt4/Qt/qprocess.h include/qt4/Qt/qpropertyanimation.h include/qt4/Qt/qqueue.h include/qt4/Qt/qreadwritelock.h include/qt4/Qt/qrect.h include/qt4/Qt/qregexp.h include/qt4/Qt/qresource.h include/qt4/Qt/qrunnable.h include/qt4/Qt/qscopedpointer.h +include/qt4/Qt/qscopedvaluerollback.h include/qt4/Qt/qsemaphore.h include/qt4/Qt/qsequentialanimationgroup.h include/qt4/Qt/qset.h include/qt4/Qt/qsettings.h include/qt4/Qt/qshareddata.h include/qt4/Qt/qsharedmemory.h include/qt4/Qt/qsharedpointer.h include/qt4/Qt/qsharedpointer_impl.h include/qt4/Qt/qsignalmapper.h include/qt4/Qt/qsignaltransition.h include/qt4/Qt/qsize.h include/qt4/Qt/qsocketnotifier.h include/qt4/Qt/qstack.h include/qt4/Qt/qstate.h include/qt4/Qt/qstatemachine.h include/qt4/Qt/qstring.h include/qt4/Qt/qstringbuilder.h include/qt4/Qt/qstringlist.h include/qt4/Qt/qstringmatcher.h include/qt4/Qt/qsystemsemaphore.h include/qt4/Qt/qt_windows.h include/qt4/Qt/qtconcurrentcompilertest.h include/qt4/Qt/qtconcurrentexception.h include/qt4/Qt/qtconcurrentfilter.h include/qt4/Qt/qtconcurrentfilterkernel.h include/qt4/Qt/qtconcurrentfunctionwrappers.h include/qt4/Qt/qtconcurrentiteratekernel.h include/qt4/Qt/qtconcurrentmap.h include/qt4/Qt/qtconcurrentmapkernel.h include/qt4/Qt/qtconcurrentmedian.h include/qt4/Qt/qtconcurrentreducekernel.h include/qt4/Qt/qtconcurrentresultstore.h include/qt4/Qt/qtconcurrentrun.h include/qt4/Qt/qtconcurrentrunbase.h include/qt4/Qt/qtconcurrentstoredfunctioncall.h include/qt4/Qt/qtconcurrentthreadengine.h include/qt4/Qt/qtemporaryfile.h include/qt4/Qt/qtextboundaryfinder.h include/qt4/Qt/qtextcodec.h include/qt4/Qt/qtextcodecplugin.h include/qt4/Qt/qtextstream.h include/qt4/Qt/qthread.h include/qt4/Qt/qthreadpool.h include/qt4/Qt/qthreadstorage.h include/qt4/Qt/qtimeline.h include/qt4/Qt/qtimer.h include/qt4/Qt/qtranslator.h include/qt4/Qt/qurl.h include/qt4/Qt/quuid.h include/qt4/Qt/qvariant.h include/qt4/Qt/qvariantanimation.h include/qt4/Qt/qvarlengtharray.h include/qt4/Qt/qvector.h include/qt4/Qt/qwaitcondition.h include/qt4/Qt/qxmlstream.h include/qt4/QtCore/QAbstractAnimation include/qt4/QtCore/QAbstractConcatenable include/qt4/QtCore/QAbstractEventDispatcher include/qt4/QtCore/QAbstractFileEngine include/qt4/QtCore/QAbstractFileEngineHandler include/qt4/QtCore/QAbstractFileEngineIterator include/qt4/QtCore/QAbstractItemModel include/qt4/QtCore/QAbstractListModel include/qt4/QtCore/QAbstractState include/qt4/QtCore/QAbstractTableModel include/qt4/QtCore/QAbstractTransition +include/qt4/QtCore/QAnimationDriver include/qt4/QtCore/QAnimationGroup include/qt4/QtCore/QArgument include/qt4/QtCore/QAtomicInt include/qt4/QtCore/QAtomicPointer include/qt4/QtCore/QBasicAtomicInt include/qt4/QtCore/QBasicAtomicPointer include/qt4/QtCore/QBasicTimer include/qt4/QtCore/QBitArray include/qt4/QtCore/QBitRef include/qt4/QtCore/QBool include/qt4/QtCore/QBuffer include/qt4/QtCore/QByteArray include/qt4/QtCore/QByteArrayMatcher include/qt4/QtCore/QByteRef include/qt4/QtCore/QCOORD include/qt4/QtCore/QCache include/qt4/QtCore/QChar include/qt4/QtCore/QCharRef include/qt4/QtCore/QChildEvent include/qt4/QtCore/QConcatenable include/qt4/QtCore/QConstString include/qt4/QtCore/QContiguousCache include/qt4/QtCore/QContiguousCacheData include/qt4/QtCore/QContiguousCacheTypedData include/qt4/QtCore/QCoreApplication include/qt4/QtCore/QCryptographicHash include/qt4/QtCore/QCustomEvent include/qt4/QtCore/QDataStream include/qt4/QtCore/QDate include/qt4/QtCore/QDateTime include/qt4/QtCore/QDebug include/qt4/QtCore/QDir include/qt4/QtCore/QDirIterator include/qt4/QtCore/QDynamicPropertyChangeEvent include/qt4/QtCore/QEasingCurve include/qt4/QtCore/QElapsedTimer include/qt4/QtCore/QEvent include/qt4/QtCore/QEventLoop include/qt4/QtCore/QEventTransition include/qt4/QtCore/QExplicitlySharedDataPointer include/qt4/QtCore/QFSFileEngine include/qt4/QtCore/QFactoryInterface include/qt4/QtCore/QFile include/qt4/QtCore/QFileInfo include/qt4/QtCore/QFileInfoList include/qt4/QtCore/QFileInfoListIterator include/qt4/QtCore/QFileSystemWatcher include/qt4/QtCore/QFinalState include/qt4/QtCore/QFlag include/qt4/QtCore/QFlags include/qt4/QtCore/QForeachContainer include/qt4/QtCore/QForeachContainerBase include/qt4/QtCore/QFuture include/qt4/QtCore/QFutureInterface include/qt4/QtCore/QFutureInterfaceBase include/qt4/QtCore/QFutureIterator include/qt4/QtCore/QFutureSynchronizer include/qt4/QtCore/QFutureWatcher include/qt4/QtCore/QFutureWatcherBase include/qt4/QtCore/QGenericArgument include/qt4/QtCore/QGenericReturnArgument include/qt4/QtCore/QGlobalStatic include/qt4/QtCore/QGlobalStaticDeleter include/qt4/QtCore/QHash include/qt4/QtCore/QHashData include/qt4/QtCore/QHashDummyNode include/qt4/QtCore/QHashDummyValue include/qt4/QtCore/QHashIterator include/qt4/QtCore/QHashNode include/qt4/QtCore/QHistoryState include/qt4/QtCore/QIODevice include/qt4/QtCore/QIncompatibleFlag include/qt4/QtCore/QIntegerForSize include/qt4/QtCore/QInternal include/qt4/QtCore/QLatin1Char include/qt4/QtCore/QLatin1Literal include/qt4/QtCore/QLatin1String include/qt4/QtCore/QLibrary include/qt4/QtCore/QLibraryInfo include/qt4/QtCore/QLine include/qt4/QtCore/QLineF include/qt4/QtCore/QLinkedList include/qt4/QtCore/QLinkedListData include/qt4/QtCore/QLinkedListIterator include/qt4/QtCore/QLinkedListNode include/qt4/QtCore/QList include/qt4/QtCore/QListData include/qt4/QtCore/QListIterator include/qt4/QtCore/QLocale include/qt4/QtCore/QMap include/qt4/QtCore/QMapData include/qt4/QtCore/QMapIterator include/qt4/QtCore/QMapNode include/qt4/QtCore/QMapPayloadNode include/qt4/QtCore/QMargins include/qt4/QtCore/QMetaClassInfo include/qt4/QtCore/QMetaEnum include/qt4/QtCore/QMetaMethod include/qt4/QtCore/QMetaObject include/qt4/QtCore/QMetaObjectAccessor include/qt4/QtCore/QMetaObjectExtraData include/qt4/QtCore/QMetaProperty include/qt4/QtCore/QMetaType include/qt4/QtCore/QMetaTypeId include/qt4/QtCore/QMetaTypeId2 include/qt4/QtCore/QMimeData include/qt4/QtCore/QModelIndex include/qt4/QtCore/QModelIndexList include/qt4/QtCore/QMultiHash include/qt4/QtCore/QMultiMap include/qt4/QtCore/QMutableFutureIterator include/qt4/QtCore/QMutableHashIterator include/qt4/QtCore/QMutableLinkedListIterator include/qt4/QtCore/QMutableListIterator include/qt4/QtCore/QMutableMapIterator include/qt4/QtCore/QMutableSetIterator include/qt4/QtCore/QMutableStringListIterator include/qt4/QtCore/QMutableVectorIterator include/qt4/QtCore/QMutex +include/qt4/QtCore/QMutexData include/qt4/QtCore/QMutexLocker include/qt4/QtCore/QNoDebug include/qt4/QtCore/QNoImplicitBoolCast include/qt4/QtCore/QObject include/qt4/QtCore/QObjectCleanupHandler include/qt4/QtCore/QObjectData include/qt4/QtCore/QObjectList include/qt4/QtCore/QObjectUserData include/qt4/QtCore/QPair include/qt4/QtCore/QParallelAnimationGroup include/qt4/QtCore/QPauseAnimation include/qt4/QtCore/QPersistentModelIndex include/qt4/QtCore/QPluginLoader include/qt4/QtCore/QPoint include/qt4/QtCore/QPointF include/qt4/QtCore/QPointer include/qt4/QtCore/QProcess include/qt4/QtCore/QProcessEnvironment include/qt4/QtCore/QPropertyAnimation include/qt4/QtCore/QQueue include/qt4/QtCore/QReadLocker include/qt4/QtCore/QReadWriteLock include/qt4/QtCore/QRect include/qt4/QtCore/QRectF include/qt4/QtCore/QRegExp include/qt4/QtCore/QResource include/qt4/QtCore/QReturnArgument include/qt4/QtCore/QRunnable include/qt4/QtCore/QScopedArrayPointer include/qt4/QtCore/QScopedPointer include/qt4/QtCore/QScopedPointerArrayDeleter include/qt4/QtCore/QScopedPointerDeleter include/qt4/QtCore/QScopedPointerPodDeleter +include/qt4/QtCore/QScopedValueRollback include/qt4/QtCore/QSemaphore include/qt4/QtCore/QSequentialAnimationGroup include/qt4/QtCore/QSet include/qt4/QtCore/QSetIterator include/qt4/QtCore/QSettings include/qt4/QtCore/QSharedData include/qt4/QtCore/QSharedDataPointer include/qt4/QtCore/QSharedMemory include/qt4/QtCore/QSharedPointer include/qt4/QtCore/QSignalMapper include/qt4/QtCore/QSignalTransition include/qt4/QtCore/QSize include/qt4/QtCore/QSizeF include/qt4/QtCore/QSocketNotifier include/qt4/QtCore/QStack include/qt4/QtCore/QState include/qt4/QtCore/QStateMachine include/qt4/QtCore/QStdWString include/qt4/QtCore/QString include/qt4/QtCore/QStringBuilder include/qt4/QtCore/QStringList include/qt4/QtCore/QStringListIterator include/qt4/QtCore/QStringMatcher include/qt4/QtCore/QStringRef include/qt4/QtCore/QSysInfo include/qt4/QtCore/QSystemLocale include/qt4/QtCore/QSystemSemaphore include/qt4/QtCore/QTS include/qt4/QtCore/QTemporaryFile include/qt4/QtCore/QTextBoundaryFinder include/qt4/QtCore/QTextCodec include/qt4/QtCore/QTextCodecFactoryInterface include/qt4/QtCore/QTextCodecPlugin include/qt4/QtCore/QTextDecoder include/qt4/QtCore/QTextEncoder include/qt4/QtCore/QTextIStream include/qt4/QtCore/QTextOStream include/qt4/QtCore/QTextStream include/qt4/QtCore/QTextStreamFunction include/qt4/QtCore/QTextStreamManipulator include/qt4/QtCore/QThread include/qt4/QtCore/QThreadPool include/qt4/QtCore/QThreadStorage include/qt4/QtCore/QThreadStorageData include/qt4/QtCore/QTime include/qt4/QtCore/QTimeLine include/qt4/QtCore/QTimer include/qt4/QtCore/QTimerEvent include/qt4/QtCore/QTranslator include/qt4/QtCore/QTypeInfo include/qt4/QtCore/QUrl include/qt4/QtCore/QUuid include/qt4/QtCore/QVarLengthArray include/qt4/QtCore/QVariant include/qt4/QtCore/QVariantAnimation include/qt4/QtCore/QVariantComparisonHelper include/qt4/QtCore/QVariantHash include/qt4/QtCore/QVariantList include/qt4/QtCore/QVariantMap include/qt4/QtCore/QVector include/qt4/QtCore/QVectorData include/qt4/QtCore/QVectorIterator include/qt4/QtCore/QVectorTypedData include/qt4/QtCore/QWaitCondition include/qt4/QtCore/QWeakPointer include/qt4/QtCore/QWriteLocker include/qt4/QtCore/QXmlStreamAttribute include/qt4/QtCore/QXmlStreamAttributes include/qt4/QtCore/QXmlStreamEntityDeclaration include/qt4/QtCore/QXmlStreamEntityDeclarations include/qt4/QtCore/QXmlStreamEntityResolver include/qt4/QtCore/QXmlStreamNamespaceDeclaration include/qt4/QtCore/QXmlStreamNamespaceDeclarations include/qt4/QtCore/QXmlStreamNotationDeclaration include/qt4/QtCore/QXmlStreamNotationDeclarations include/qt4/QtCore/QXmlStreamReader include/qt4/QtCore/QXmlStreamStringRef include/qt4/QtCore/QXmlStreamWriter include/qt4/QtCore/Q_INT16 include/qt4/QtCore/Q_INT32 include/qt4/QtCore/Q_INT64 include/qt4/QtCore/Q_INT8 include/qt4/QtCore/Q_LLONG include/qt4/QtCore/Q_LONG include/qt4/QtCore/Q_PID include/qt4/QtCore/Q_UINT16 include/qt4/QtCore/Q_UINT32 include/qt4/QtCore/Q_UINT64 include/qt4/QtCore/Q_UINT8 include/qt4/QtCore/Q_ULLONG include/qt4/QtCore/Q_ULONG include/qt4/QtCore/Qt include/qt4/QtCore/QtAlgorithms include/qt4/QtCore/QtCleanUpFunction include/qt4/QtCore/QtConcurrentFilter include/qt4/QtCore/QtConcurrentMap include/qt4/QtCore/QtConcurrentRun include/qt4/QtCore/QtConfig include/qt4/QtCore/QtContainerFwd include/qt4/QtCore/QtCore include/qt4/QtCore/QtDebug include/qt4/QtCore/QtEndian include/qt4/QtCore/QtGlobal include/qt4/QtCore/QtMsgHandler include/qt4/QtCore/QtPlugin include/qt4/QtCore/QtPluginInstanceFunction include/qt4/QtCore/qabstractanimation.h include/qt4/QtCore/qabstracteventdispatcher.h include/qt4/QtCore/qabstractfileengine.h include/qt4/QtCore/qabstractitemmodel.h include/qt4/QtCore/qabstractstate.h include/qt4/QtCore/qabstracttransition.h include/qt4/QtCore/qalgorithms.h include/qt4/QtCore/qanimationgroup.h include/qt4/QtCore/qatomic.h include/qt4/QtCore/qatomic_alpha.h include/qt4/QtCore/qatomic_arch.h include/qt4/QtCore/qatomic_arm.h +include/qt4/QtCore/qatomic_armv5.h include/qt4/QtCore/qatomic_armv6.h +include/qt4/QtCore/qatomic_armv7.h include/qt4/QtCore/qatomic_avr32.h include/qt4/QtCore/qatomic_bfin.h include/qt4/QtCore/qatomic_bootstrap.h include/qt4/QtCore/qatomic_generic.h include/qt4/QtCore/qatomic_i386.h include/qt4/QtCore/qatomic_ia64.h +include/qt4/QtCore/qatomic_integrity.h include/qt4/QtCore/qatomic_macosx.h include/qt4/QtCore/qatomic_mips.h include/qt4/QtCore/qatomic_parisc.h include/qt4/QtCore/qatomic_powerpc.h include/qt4/QtCore/qatomic_s390.h include/qt4/QtCore/qatomic_sh.h include/qt4/QtCore/qatomic_sh4a.h include/qt4/QtCore/qatomic_sparc.h include/qt4/QtCore/qatomic_symbian.h include/qt4/QtCore/qatomic_vxworks.h include/qt4/QtCore/qatomic_windows.h include/qt4/QtCore/qatomic_windowsce.h include/qt4/QtCore/qatomic_x86_64.h include/qt4/QtCore/qbasicatomic.h include/qt4/QtCore/qbasictimer.h include/qt4/QtCore/qbitarray.h include/qt4/QtCore/qbuffer.h include/qt4/QtCore/qbytearray.h include/qt4/QtCore/qbytearraymatcher.h include/qt4/QtCore/qcache.h include/qt4/QtCore/qchar.h include/qt4/QtCore/qconfig-dist.h include/qt4/QtCore/qconfig-large.h include/qt4/QtCore/qconfig-medium.h include/qt4/QtCore/qconfig-minimal.h +include/qt4/QtCore/qconfig-nacl.h include/qt4/QtCore/qconfig-small.h include/qt4/QtCore/qconfig.h include/qt4/QtCore/qcontainerfwd.h include/qt4/QtCore/qcontiguouscache.h include/qt4/QtCore/qcoreapplication.h include/qt4/QtCore/qcoreevent.h include/qt4/QtCore/qcryptographichash.h include/qt4/QtCore/qdatastream.h include/qt4/QtCore/qdatetime.h include/qt4/QtCore/qdebug.h include/qt4/QtCore/qdir.h include/qt4/QtCore/qdiriterator.h include/qt4/QtCore/qeasingcurve.h include/qt4/QtCore/qelapsedtimer.h include/qt4/QtCore/qendian.h include/qt4/QtCore/qeventloop.h include/qt4/QtCore/qeventtransition.h include/qt4/QtCore/qfactoryinterface.h include/qt4/QtCore/qfeatures.h include/qt4/QtCore/qfile.h include/qt4/QtCore/qfileinfo.h include/qt4/QtCore/qfilesystemwatcher.h include/qt4/QtCore/qfinalstate.h include/qt4/QtCore/qfsfileengine.h +include/qt4/QtCore/qfunctions_nacl.h include/qt4/QtCore/qfunctions_vxworks.h include/qt4/QtCore/qfunctions_wince.h include/qt4/QtCore/qfuture.h include/qt4/QtCore/qfutureinterface.h include/qt4/QtCore/qfuturesynchronizer.h include/qt4/QtCore/qfuturewatcher.h include/qt4/QtCore/qglobal.h include/qt4/QtCore/qhash.h include/qt4/QtCore/qhistorystate.h include/qt4/QtCore/qiodevice.h include/qt4/QtCore/qiterator.h include/qt4/QtCore/qlibrary.h include/qt4/QtCore/qlibraryinfo.h include/qt4/QtCore/qline.h include/qt4/QtCore/qlinkedlist.h include/qt4/QtCore/qlist.h include/qt4/QtCore/qlocale.h include/qt4/QtCore/qmap.h include/qt4/QtCore/qmargins.h include/qt4/QtCore/qmath.h include/qt4/QtCore/qmetaobject.h include/qt4/QtCore/qmetatype.h include/qt4/QtCore/qmimedata.h include/qt4/QtCore/qmutex.h include/qt4/QtCore/qnamespace.h include/qt4/QtCore/qnumeric.h include/qt4/QtCore/qobject.h include/qt4/QtCore/qobjectcleanuphandler.h include/qt4/QtCore/qobjectdefs.h include/qt4/QtCore/qpair.h include/qt4/QtCore/qparallelanimationgroup.h include/qt4/QtCore/qpauseanimation.h include/qt4/QtCore/qplugin.h include/qt4/QtCore/qpluginloader.h include/qt4/QtCore/qpoint.h include/qt4/QtCore/qpointer.h include/qt4/QtCore/qprocess.h include/qt4/QtCore/qpropertyanimation.h include/qt4/QtCore/qqueue.h include/qt4/QtCore/qreadwritelock.h include/qt4/QtCore/qrect.h include/qt4/QtCore/qregexp.h include/qt4/QtCore/qresource.h include/qt4/QtCore/qrunnable.h include/qt4/QtCore/qscopedpointer.h +include/qt4/QtCore/qscopedvaluerollback.h include/qt4/QtCore/qsemaphore.h include/qt4/QtCore/qsequentialanimationgroup.h include/qt4/QtCore/qset.h include/qt4/QtCore/qsettings.h include/qt4/QtCore/qshareddata.h include/qt4/QtCore/qsharedmemory.h include/qt4/QtCore/qsharedpointer.h include/qt4/QtCore/qsharedpointer_impl.h include/qt4/QtCore/qsignalmapper.h include/qt4/QtCore/qsignaltransition.h include/qt4/QtCore/qsize.h include/qt4/QtCore/qsocketnotifier.h include/qt4/QtCore/qstack.h include/qt4/QtCore/qstate.h include/qt4/QtCore/qstatemachine.h include/qt4/QtCore/qstring.h include/qt4/QtCore/qstringbuilder.h include/qt4/QtCore/qstringlist.h include/qt4/QtCore/qstringmatcher.h include/qt4/QtCore/qsystemsemaphore.h include/qt4/QtCore/qt_windows.h include/qt4/QtCore/qtconcurrentcompilertest.h include/qt4/QtCore/qtconcurrentexception.h include/qt4/QtCore/qtconcurrentfilter.h include/qt4/QtCore/qtconcurrentfilterkernel.h include/qt4/QtCore/qtconcurrentfunctionwrappers.h include/qt4/QtCore/qtconcurrentiteratekernel.h include/qt4/QtCore/qtconcurrentmap.h include/qt4/QtCore/qtconcurrentmapkernel.h include/qt4/QtCore/qtconcurrentmedian.h include/qt4/QtCore/qtconcurrentreducekernel.h include/qt4/QtCore/qtconcurrentresultstore.h include/qt4/QtCore/qtconcurrentrun.h include/qt4/QtCore/qtconcurrentrunbase.h include/qt4/QtCore/qtconcurrentstoredfunctioncall.h include/qt4/QtCore/qtconcurrentthreadengine.h include/qt4/QtCore/qtemporaryfile.h include/qt4/QtCore/qtextboundaryfinder.h include/qt4/QtCore/qtextcodec.h include/qt4/QtCore/qtextcodecplugin.h include/qt4/QtCore/qtextstream.h include/qt4/QtCore/qthread.h include/qt4/QtCore/qthreadpool.h include/qt4/QtCore/qthreadstorage.h include/qt4/QtCore/qtimeline.h include/qt4/QtCore/qtimer.h include/qt4/QtCore/qtranslator.h include/qt4/QtCore/qurl.h include/qt4/QtCore/quuid.h include/qt4/QtCore/qvariant.h include/qt4/QtCore/qvariantanimation.h include/qt4/QtCore/qvarlengtharray.h include/qt4/QtCore/qvector.h include/qt4/QtCore/qwaitcondition.h include/qt4/QtCore/qxmlstream.h lib/qt4/libQtCore.la lib/qt4/libQtCore.prl lib/qt4/libQtCore.so lib/qt4/libQtCore.so.4 lib/qt4/libQtCore.so.%%SHLIB_SHVER%% lib/qt4/libQtCore.so.%%SHLIB_VER%% %%DEBUG%%lib/qt4/libQtCore.so.%%SHLIB_VER%%.debug %%QT_PLUGINDIR_REL%%/.keep_me libdata/pkgconfig/QtCore.pc share/qt4/mkspecs/qconfig.pri @dirrmtry share/qt4/mkspecs @dirrmtry share/qt4 @dirrmtry %%QT_PLUGINDIR_REL%% @dirrmtry lib/qt4 @dirrm include/qt4/QtCore @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/devel/qt4-corelib/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.14 \ No newline at end of property +1.15 \ No newline at end of property Index: head/devel/qt4-declarative/pkg-plist =================================================================== --- head/devel/qt4-declarative/pkg-plist (revision 297366) +++ head/devel/qt4-declarative/pkg-plist (revision 297367) @@ -1,79 +1,82 @@ include/qt4/Qt/QtDeclarative include/qt4/Qt/qdeclarative.h include/qt4/Qt/qdeclarativecomponent.h include/qt4/Qt/qdeclarativecontext.h +include/qt4/Qt/qdeclarativedebug.h include/qt4/Qt/qdeclarativeengine.h include/qt4/Qt/qdeclarativeerror.h include/qt4/Qt/qdeclarativeexpression.h include/qt4/Qt/qdeclarativeextensioninterface.h include/qt4/Qt/qdeclarativeextensionplugin.h include/qt4/Qt/qdeclarativeimageprovider.h include/qt4/Qt/qdeclarativeinfo.h include/qt4/Qt/qdeclarativeitem.h include/qt4/Qt/qdeclarativelist.h include/qt4/Qt/qdeclarativenetworkaccessmanagerfactory.h include/qt4/Qt/qdeclarativeparserstatus.h include/qt4/Qt/qdeclarativeprivate.h include/qt4/Qt/qdeclarativeproperty.h include/qt4/Qt/qdeclarativepropertymap.h include/qt4/Qt/qdeclarativepropertyvalueinterceptor.h include/qt4/Qt/qdeclarativepropertyvaluesource.h include/qt4/Qt/qdeclarativescriptstring.h include/qt4/Qt/qdeclarativeview.h include/qt4/QtDeclarative/QDeclarativeAttachedPropertiesFunc include/qt4/QtDeclarative/QDeclarativeComponent include/qt4/QtDeclarative/QDeclarativeContext +include/qt4/QtDeclarative/QDeclarativeDebuggingEnabler include/qt4/QtDeclarative/QDeclarativeEngine include/qt4/QtDeclarative/QDeclarativeError include/qt4/QtDeclarative/QDeclarativeExpression include/qt4/QtDeclarative/QDeclarativeExtensionInterface include/qt4/QtDeclarative/QDeclarativeExtensionPlugin include/qt4/QtDeclarative/QDeclarativeImageProvider include/qt4/QtDeclarative/QDeclarativeInfo include/qt4/QtDeclarative/QDeclarativeItem include/qt4/QtDeclarative/QDeclarativeListProperty include/qt4/QtDeclarative/QDeclarativeListReference include/qt4/QtDeclarative/QDeclarativeNetworkAccessManagerFactory include/qt4/QtDeclarative/QDeclarativeParserStatus include/qt4/QtDeclarative/QDeclarativeProperties include/qt4/QtDeclarative/QDeclarativeProperty include/qt4/QtDeclarative/QDeclarativePropertyMap include/qt4/QtDeclarative/QDeclarativePropertyValueInterceptor include/qt4/QtDeclarative/QDeclarativePropertyValueSource include/qt4/QtDeclarative/QDeclarativeScriptString include/qt4/QtDeclarative/QDeclarativeTypeInfo include/qt4/QtDeclarative/QDeclarativeView include/qt4/QtDeclarative/QtDeclarative include/qt4/QtDeclarative/qdeclarative.h include/qt4/QtDeclarative/qdeclarativecomponent.h include/qt4/QtDeclarative/qdeclarativecontext.h +include/qt4/QtDeclarative/qdeclarativedebug.h include/qt4/QtDeclarative/qdeclarativeengine.h include/qt4/QtDeclarative/qdeclarativeerror.h include/qt4/QtDeclarative/qdeclarativeexpression.h include/qt4/QtDeclarative/qdeclarativeextensioninterface.h include/qt4/QtDeclarative/qdeclarativeextensionplugin.h include/qt4/QtDeclarative/qdeclarativeimageprovider.h include/qt4/QtDeclarative/qdeclarativeinfo.h include/qt4/QtDeclarative/qdeclarativeitem.h include/qt4/QtDeclarative/qdeclarativelist.h include/qt4/QtDeclarative/qdeclarativenetworkaccessmanagerfactory.h include/qt4/QtDeclarative/qdeclarativeparserstatus.h include/qt4/QtDeclarative/qdeclarativeprivate.h include/qt4/QtDeclarative/qdeclarativeproperty.h include/qt4/QtDeclarative/qdeclarativepropertymap.h include/qt4/QtDeclarative/qdeclarativepropertyvalueinterceptor.h include/qt4/QtDeclarative/qdeclarativepropertyvaluesource.h include/qt4/QtDeclarative/qdeclarativescriptstring.h include/qt4/QtDeclarative/qdeclarativeview.h lib/qt4/libQtDeclarative.la lib/qt4/libQtDeclarative.prl lib/qt4/libQtDeclarative.so lib/qt4/libQtDeclarative.so.4 lib/qt4/libQtDeclarative.so.%%SHLIB_SHVER%% lib/qt4/libQtDeclarative.so.%%SHLIB_VER%% %%DEBUG%%lib/qt4/libQtDeclarative.so.%%SHLIB_VER%%.debug libdata/pkgconfig/QtDeclarative.pc @dirrmtry lib/qt4 @dirrm include/qt4/QtDeclarative @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/devel/qt4-declarative/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/devel/qt4-designer/Makefile =================================================================== --- head/devel/qt4-designer/Makefile (revision 297366) +++ head/devel/qt4-designer/Makefile (revision 297367) @@ -1,84 +1,83 @@ ### -*-mode: makefile-*- # New ports collection makefile for: qt40 # Date created: Wed Jun 29 11:49:42 CEST 2005 # Whom: lofi@freebsd.org # # $FreeBSD$ # PORTNAME= designer DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES?= devel PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt ui editor USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build rcc_build uic_build assistant_run \ qt3support corelib declarative gui network script sql xml \ - webkit + webkit phonon QT_NONSTANDARD= yes QT_DIST= yes MAKE_JOBS_SAFE= yes HAS_CONFIGURE= yes #Try to fix linking when previous version is installed CONFIGURE_ARGS+= -L${WRKSRC}/lib 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:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DESKTOP_ENTRIES="Qt Designer" "${COMMENT}" \ "${PREFIX}/share/pixmaps/designer-qt4.png" \ "${PREFIX}/bin/designer-qt4" "" false DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ src/activeqt src/dbus src/multimedia src/opengl src/openvg \ src/s60installs src/s60main src/scripttools src/sql src/svg \ src/testlib src/winmain src/xmlpatterns src/3rdparty/clucene \ src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \ src/3rdparty/libpng src/3rdparty/libtiff EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure pre-configure: ${REINPLACE_CMD} -e 's|^TARGET.*|TARGET=designer-qt4|g' \ ${BUILD_WRKSRC}/src/${PORTNAME}/${PORTNAME}.pro # fix build when previous version is installed ${REINPLACE_CMD} -e '/^CONFIG/s|depend_prl||' \ ${BUILD_WRKSRC}/src/components/lib/lib.pro ${MKDIR} ${WRKSRC}/mkspecs/modules ${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 pre-install: ${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/QtUiTools.pc \ ${WRKSRC}/lib/pkgconfig/QtDesigner.pc \ ${WRKSRC}/lib/pkgconfig/QtDesignerComponents.pc ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ ${BUILD_WRKSRC}/src/lib/Makefile \ ${BUILD_WRKSRC}/src/uitools/Makefile \ ${BUILD_WRKSRC}/src/components/lib/Makefile post-install: ${INSTALL_DATA} ${BUILD_WRKSRC}/src/designer/images/designer.png \ ${PREFIX}/share/pixmaps/designer-qt4.png .include Property changes on: head/devel/qt4-designer/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.25 \ No newline at end of property +1.26 \ No newline at end of property Index: head/devel/qt4-linguist/Makefile =================================================================== --- head/devel/qt4-linguist/Makefile (revision 297366) +++ head/devel/qt4-linguist/Makefile (revision 297367) @@ -1,68 +1,67 @@ # -*-mode: makefile-*- # New ports collection makefile for: qt40 # Date created: Wed Jun 29 11:49:42 CEST 2005 # Whom: lofi@freebsd.org # # $FreeBSD$ # PORTNAME= linguist DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES?= devel PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt localisation tool USE_QT_VER= 4 QT_COMPONENTS= qmake_build designer_build moc_build rcc_build uic_build \ assistant_run gui network xml QT_NONSTANDARD= yes QT_DIST= yes MAKE_JOBS_SAFE= yes HAS_CONFIGURE= yes ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DESKTOP_ENTRIES="Qt Linguist" "${COMMENT}" \ "${PREFIX}/share/pixmaps/linguist-qt4.png" \ "${PREFIX}/bin/linguist-qt4" "" false DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ src/activeqt src/dbus src/multimedia src/network src/opengl \ src/openvg src/phonon src/qt3support src/s60installs \ src/s60main src/script src/scripttools src/sql src/svg \ src/testlib src/tools src/winmain src/xmlpatterns \ src/3rdparty/clucene src/3rdparty/freetype \ src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \ src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure pre-configure: ${REINPLACE_CMD} -E -e 's|^TARGET[[:blank:]]*=[[:blank:]]*([a-z]+)|TARGET=\1-qt4|g' \ ${BUILD_WRKSRC}/${PORTNAME}.pro ${BUILD_WRKSRC}/${PORTNAME}/${PORTNAME}.pro \ ${BUILD_WRKSRC}/lrelease/lrelease.pro ${BUILD_WRKSRC}/lupdate/lupdate.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 post-install: ${INSTALL_DATA} ${BUILD_WRKSRC}/linguist/images/icons/linguist-128-32.png \ ${PREFIX}/share/pixmaps/linguist-qt4.png .include Property changes on: head/devel/qt4-linguist/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.22 \ No newline at end of property +1.23 \ No newline at end of property Index: head/devel/qt4-qdoc3/Makefile =================================================================== --- head/devel/qt4-qdoc3/Makefile (revision 297366) +++ head/devel/qt4-qdoc3/Makefile (revision 297367) @@ -1,47 +1,45 @@ # New ports collection makefile for: qdoc3 # Date created: 2009-08-20 # Whom: Maxim Ignatenko # # $FreeBSD$ # PORTNAME= qdoc3 DISTVERSION= ${QT4_VERSION} CATEGORIES= devel textproc PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt documentation generator USE_QT_VER= 4 QT_COMPONENTS= qmake_build corelib gui 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:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DO_NOT_EXTRACT= demos doc examples mkspecs qmake translations \ src/activeqt src/dbus src/multimedia src/opengl src/openvg \ src/s60installs src/s60main src/scripttools src/sql src/svg \ src/testlib src/winmain src/xmlpatterns EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure -PLIST_FILES= bin/${PORTNAME} - BUILD_WRKSRC= ${WRKSRC}/tools/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} pre-configure: ${MKDIR} ${WRKSRC}/mkspecs/modules ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/bin/qmake .include Property changes on: head/devel/qt4-qdoc3/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/devel/qt4-qdoc3/pkg-plist =================================================================== --- head/devel/qt4-qdoc3/pkg-plist (nonexistent) +++ head/devel/qt4-qdoc3/pkg-plist (revision 297367) @@ -0,0 +1,2 @@ +bin/qdoc3 +%%DEBUG%%bin/qdoc3.debug Property changes on: head/devel/qt4-qdoc3/pkg-plist ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/qt4-qvfb/files/patch-tools__qvfb__qvfb.pro =================================================================== --- head/devel/qt4-qvfb/files/patch-tools__qvfb__qvfb.pro (nonexistent) +++ head/devel/qt4-qvfb/files/patch-tools__qvfb__qvfb.pro (revision 297367) @@ -0,0 +1,11 @@ +--- ./tools/qvfb/qvfb.pro.orig 2012-01-08 16:32:17.921428981 +0100 ++++ ./tools/qvfb/qvfb.pro 2012-01-08 16:33:01.611355995 +0100 +@@ -38,8 +38,6 @@ + + !embedded { + DEFINES += QT_NO_QWS_SIGNALHANDLER +- HEADERS += ../../src/gui/embedded/qlock_p.h +- SOURCES += ../../src/gui/embedded/qlock.cpp + } + + include(../shared/deviceskin/deviceskin.pri) Property changes on: head/devel/qt4-qvfb/files/patch-tools__qvfb__qvfb.pro ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/devel/qt4-script/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__interpreter__Interpreter.cpp =================================================================== --- head/devel/qt4-script/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__interpreter__Interpreter.cpp (revision 297366) +++ head/devel/qt4-script/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__interpreter__Interpreter.cpp (revision 297367) @@ -1,13 +1,13 @@ ---- ./src/3rdparty/javascriptcore/JavaScriptCore/interpreter/Interpreter.cpp.orig 2011-06-30 00:17:41.495446920 +0200 -+++ ./src/3rdparty/javascriptcore/JavaScriptCore/interpreter/Interpreter.cpp 2011-06-30 00:19:46.885439368 +0200 +--- ./src/3rdparty/javascriptcore/JavaScriptCore/interpreter/Interpreter.cpp.orig 2011-06-30 00:43:03.155579428 +0200 ++++ ./src/3rdparty/javascriptcore/JavaScriptCore/interpreter/Interpreter.cpp 2011-06-30 00:43:34.275444696 +0200 @@ -2493,8 +2493,10 @@ vPC += OPCODE_LENGTH(op_get_by_pname); NEXT_INSTRUCTION(); } + { Identifier propertyName(callFrame, subscript.toString(callFrame)); result = baseValue.get(callFrame, propertyName); + } CHECK_FOR_EXCEPTION(); callFrame->r(dst) = result; vPC += OPCODE_LENGTH(op_get_by_pname); Property changes on: head/devel/qt4-script/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__interpreter__Interpreter.cpp ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/graphics/qt4-imageformats/pkg-plist =================================================================== --- head/graphics/qt4-imageformats/pkg-plist (revision 297366) +++ head/graphics/qt4-imageformats/pkg-plist (revision 297367) @@ -1,14 +1,16 @@ %%QT_PLUGINDIR_REL%%/imageformats/libqgif.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqgif.so.debug +%%QT_PLUGINDIR_REL%%/imageformats/libqico.so +%%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqico.so.debug %%QT_PLUGINDIR_REL%%/imageformats/libqjpeg.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqjpeg.so.debug %%QT_PLUGINDIR_REL%%/imageformats/libqmng.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqmng.so.debug %%QT_PLUGINDIR_REL%%/imageformats/libqsvg.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqsvg.so.debug +%%QT_PLUGINDIR_REL%%/imageformats/libqtga.so +%%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqtga.so.debug %%QT_PLUGINDIR_REL%%/imageformats/libqtiff.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqtiff.so.debug -%%QT_PLUGINDIR_REL%%/imageformats/libqico.so -%%DEBUG%%%%QT_PLUGINDIR_REL%%/imageformats/libqico.so.debug @dirrm %%QT_PLUGINDIR_REL%%/imageformats @dirrmtry %%QT_PLUGINDIR_REL%% Property changes on: head/graphics/qt4-imageformats/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/misc/qt4-doc/pkg-plist =================================================================== --- head/misc/qt4-doc/pkg-plist (revision 297366) +++ head/misc/qt4-doc/pkg-plist (revision 297367) @@ -1,7787 +1,8226 @@ %%DOCSDIR%%/html/3rdparty.html %%DOCSDIR%%/html/abstractwidgets.html %%DOCSDIR%%/html/accelerators.html %%DOCSDIR%%/html/accessibility.html %%DOCSDIR%%/html/accessible.html %%DOCSDIR%%/html/activeqt-comapp-comapp-pro.html %%DOCSDIR%%/html/activeqt-comapp-main-cpp.html %%DOCSDIR%%/html/activeqt-comapp.html %%DOCSDIR%%/html/activeqt-container.html %%DOCSDIR%%/html/activeqt-dotnet.html %%DOCSDIR%%/html/activeqt-dumpcpp.html %%DOCSDIR%%/html/activeqt-dumpdoc.html %%DOCSDIR%%/html/activeqt-hierarchy-hierarchy-pro.html %%DOCSDIR%%/html/activeqt-hierarchy-main-cpp.html %%DOCSDIR%%/html/activeqt-hierarchy-objects-cpp.html %%DOCSDIR%%/html/activeqt-hierarchy-objects-h.html %%DOCSDIR%%/html/activeqt-hierarchy.html %%DOCSDIR%%/html/activeqt-idc.html %%DOCSDIR%%/html/activeqt-menus-main-cpp.html %%DOCSDIR%%/html/activeqt-menus-menus-cpp.html %%DOCSDIR%%/html/activeqt-menus-menus-h.html %%DOCSDIR%%/html/activeqt-menus-menus-pro.html %%DOCSDIR%%/html/activeqt-menus.html %%DOCSDIR%%/html/activeqt-multiple-ax1-h.html %%DOCSDIR%%/html/activeqt-multiple-ax2-h.html %%DOCSDIR%%/html/activeqt-multiple-main-cpp.html %%DOCSDIR%%/html/activeqt-multiple-multiple-pro.html %%DOCSDIR%%/html/activeqt-multiple.html %%DOCSDIR%%/html/activeqt-opengl-glbox-cpp.html %%DOCSDIR%%/html/activeqt-opengl-glbox-h.html %%DOCSDIR%%/html/activeqt-opengl-globjwin-cpp.html %%DOCSDIR%%/html/activeqt-opengl-globjwin-h.html %%DOCSDIR%%/html/activeqt-opengl-main-cpp.html %%DOCSDIR%%/html/activeqt-opengl-opengl-pro.html %%DOCSDIR%%/html/activeqt-opengl.html %%DOCSDIR%%/html/activeqt-qutlook-addressview-cpp.html %%DOCSDIR%%/html/activeqt-qutlook-addressview-h.html %%DOCSDIR%%/html/activeqt-qutlook-main-cpp.html %%DOCSDIR%%/html/activeqt-qutlook-qutlook-pro.html %%DOCSDIR%%/html/activeqt-qutlook.html %%DOCSDIR%%/html/activeqt-server.html %%DOCSDIR%%/html/activeqt-simple-main-cpp.html %%DOCSDIR%%/html/activeqt-simple-simple-pro.html %%DOCSDIR%%/html/activeqt-simple.html %%DOCSDIR%%/html/activeqt-testcon.html %%DOCSDIR%%/html/activeqt-tools.html %%DOCSDIR%%/html/activeqt-webbrowser-main-cpp.html %%DOCSDIR%%/html/activeqt-webbrowser-mainwindow-ui.html %%DOCSDIR%%/html/activeqt-webbrowser-mainwindow-windowsmobile-ui.html %%DOCSDIR%%/html/activeqt-webbrowser-webaxwidget-h.html %%DOCSDIR%%/html/activeqt-webbrowser-webbrowser-pro.html %%DOCSDIR%%/html/activeqt-webbrowser.html %%DOCSDIR%%/html/activeqt-wrapper-main-cpp.html %%DOCSDIR%%/html/activeqt-wrapper-wrapper-pro.html %%DOCSDIR%%/html/activeqt-wrapper.html %%DOCSDIR%%/html/activeqt.html %%DOCSDIR%%/html/advanced.html %%DOCSDIR%%/html/all-examples.html %%DOCSDIR%%/html/animation-animatedtiles-animatedtiles-pro.html %%DOCSDIR%%/html/animation-animatedtiles-animatedtiles-qrc.html %%DOCSDIR%%/html/animation-animatedtiles-main-cpp.html %%DOCSDIR%%/html/animation-animatedtiles.html %%DOCSDIR%%/html/animation-appchooser-appchooser-pro.html %%DOCSDIR%%/html/animation-appchooser-appchooser-qrc.html %%DOCSDIR%%/html/animation-appchooser-main-cpp.html %%DOCSDIR%%/html/animation-appchooser.html %%DOCSDIR%%/html/animation-easing-animation-h.html %%DOCSDIR%%/html/animation-easing-easing-pro.html %%DOCSDIR%%/html/animation-easing-easing-qrc.html %%DOCSDIR%%/html/animation-easing-form-ui.html %%DOCSDIR%%/html/animation-easing-main-cpp.html %%DOCSDIR%%/html/animation-easing-window-cpp.html %%DOCSDIR%%/html/animation-easing-window-h.html %%DOCSDIR%%/html/animation-easing.html %%DOCSDIR%%/html/animation-moveblocks-main-cpp.html %%DOCSDIR%%/html/animation-moveblocks-moveblocks-pro.html %%DOCSDIR%%/html/animation-moveblocks.html %%DOCSDIR%%/html/animation-overview.html %%DOCSDIR%%/html/animation-states-main-cpp.html %%DOCSDIR%%/html/animation-states-states-pro.html %%DOCSDIR%%/html/animation-states-states-qrc.html %%DOCSDIR%%/html/animation-states.html %%DOCSDIR%%/html/animation-stickman-animation-cpp.html %%DOCSDIR%%/html/animation-stickman-animation-h.html %%DOCSDIR%%/html/animation-stickman-graphicsview-cpp.html %%DOCSDIR%%/html/animation-stickman-graphicsview-h.html %%DOCSDIR%%/html/animation-stickman-lifecycle-cpp.html %%DOCSDIR%%/html/animation-stickman-lifecycle-h.html %%DOCSDIR%%/html/animation-stickman-main-cpp.html %%DOCSDIR%%/html/animation-stickman-node-cpp.html %%DOCSDIR%%/html/animation-stickman-node-h.html +%%DOCSDIR%%/html/animation-stickman-rectbutton-cpp.html +%%DOCSDIR%%/html/animation-stickman-rectbutton-h.html %%DOCSDIR%%/html/animation-stickman-stickman-cpp.html %%DOCSDIR%%/html/animation-stickman-stickman-h.html %%DOCSDIR%%/html/animation-stickman-stickman-pro.html %%DOCSDIR%%/html/animation-stickman-stickman-qrc.html %%DOCSDIR%%/html/animation-stickman.html %%DOCSDIR%%/html/animation.html %%DOCSDIR%%/html/annotated.html %%DOCSDIR%%/html/appearance.html %%DOCSDIR%%/html/appicon.html %%DOCSDIR%%/html/application-windows.html %%DOCSDIR%%/html/assistant-custom-help-viewer.html %%DOCSDIR%%/html/assistant-details.html %%DOCSDIR%%/html/assistant-manual.html %%DOCSDIR%%/html/atomic-operations.html %%DOCSDIR%%/html/basicwidgets.html %%DOCSDIR%%/html/bearer-management.html %%DOCSDIR%%/html/best-practices.html %%DOCSDIR%%/html/bughowto.html %%DOCSDIR%%/html/catharon-license.html %%DOCSDIR%%/html/classes.html %%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/commercialedition.html %%DOCSDIR%%/html/compatclasses.html -%%DOCSDIR%%/html/compiler-notes.html %%DOCSDIR%%/html/configure-options.html %%DOCSDIR%%/html/containers.html %%DOCSDIR%%/html/coordsys.html %%DOCSDIR%%/html/credits.html %%DOCSDIR%%/html/custom-types.html %%DOCSDIR%%/html/database.html %%DOCSDIR%%/html/datastreamformat.html %%DOCSDIR%%/html/dbus-complexpingpong-complexping-cpp.html %%DOCSDIR%%/html/dbus-complexpingpong-complexping-h.html %%DOCSDIR%%/html/dbus-complexpingpong-complexping-pro.html %%DOCSDIR%%/html/dbus-complexpingpong-complexpingpong-pro.html %%DOCSDIR%%/html/dbus-complexpingpong-complexpong-cpp.html %%DOCSDIR%%/html/dbus-complexpingpong-complexpong-h.html %%DOCSDIR%%/html/dbus-complexpingpong-complexpong-pro.html %%DOCSDIR%%/html/dbus-complexpingpong-ping-common-h.html %%DOCSDIR%%/html/dbus-complexpingpong.html %%DOCSDIR%%/html/dbus-dbus-chat-chat-adaptor-cpp.html %%DOCSDIR%%/html/dbus-dbus-chat-chat-adaptor-h.html %%DOCSDIR%%/html/dbus-dbus-chat-chat-cpp.html %%DOCSDIR%%/html/dbus-dbus-chat-chat-h.html %%DOCSDIR%%/html/dbus-dbus-chat-chat-interface-cpp.html %%DOCSDIR%%/html/dbus-dbus-chat-chat-interface-h.html %%DOCSDIR%%/html/dbus-dbus-chat-chatmainwindow-ui.html %%DOCSDIR%%/html/dbus-dbus-chat-chatsetnickname-ui.html %%DOCSDIR%%/html/dbus-dbus-chat-com-trolltech-chat-xml.html %%DOCSDIR%%/html/dbus-dbus-chat-dbus-chat-pro.html %%DOCSDIR%%/html/dbus-dbus-chat.html %%DOCSDIR%%/html/dbus-listnames-listnames-cpp.html %%DOCSDIR%%/html/dbus-listnames-listnames-pro.html %%DOCSDIR%%/html/dbus-listnames.html %%DOCSDIR%%/html/dbus-pingpong-ping-common-h.html %%DOCSDIR%%/html/dbus-pingpong-ping-cpp.html %%DOCSDIR%%/html/dbus-pingpong-ping-pro.html %%DOCSDIR%%/html/dbus-pingpong-pingpong-pro.html %%DOCSDIR%%/html/dbus-pingpong-pong-cpp.html %%DOCSDIR%%/html/dbus-pingpong-pong-h.html %%DOCSDIR%%/html/dbus-pingpong-pong-pro.html %%DOCSDIR%%/html/dbus-pingpong.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-car-car-adaptor-cpp.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-car-car-adaptor-h.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-car-car-cpp.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-car-car-h.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-car-car-pro.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-car-car-xml.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-car-main-cpp.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-controller-car-interface-cpp.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-controller-car-interface-h.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-controller-car-xml.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-controller-controller-cpp.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-controller-controller-h.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-controller-controller-pro.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-controller-controller-ui.html %%DOCSDIR%%/html/dbus-remotecontrolledcar-remotecontrolledcar-pro.html %%DOCSDIR%%/html/dbus-remotecontrolledcar.html %%DOCSDIR%%/html/debug.html -%%DOCSDIR%%/html/declarative-animation-basics-color-animation-qml.html -%%DOCSDIR%%/html/declarative-animation-basics-property-animation-qml.html -%%DOCSDIR%%/html/declarative-animation-basics.html -%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example-qml.html -%%DOCSDIR%%/html/declarative-animation-behaviors-siderect-qml.html -%%DOCSDIR%%/html/declarative-animation-behaviors-wigglytext-qml.html -%%DOCSDIR%%/html/declarative-animation-behaviors.html -%%DOCSDIR%%/html/declarative-animation-easing-content-quitbutton-qml.html +%%DOCSDIR%%/html/declarative-animation-basics-color-animation-basics-qmlproject.html +%%DOCSDIR%%/html/declarative-animation-basics-color-animation-color-animation-pro.html +%%DOCSDIR%%/html/declarative-animation-basics-color-animation-color-animation-svg.html +%%DOCSDIR%%/html/declarative-animation-basics-color-animation-main-cpp.html +%%DOCSDIR%%/html/declarative-animation-basics-color-animation-qml-color-animation-color-animation-qml.html +%%DOCSDIR%%/html/declarative-animation-basics-color-animation.html +%%DOCSDIR%%/html/declarative-animation-basics-property-animation-main-cpp.html +%%DOCSDIR%%/html/declarative-animation-basics-property-animation-property-animation-pro.html +%%DOCSDIR%%/html/declarative-animation-basics-property-animation-property-animation-svg.html +%%DOCSDIR%%/html/declarative-animation-basics-property-animation-property-qmlproject.html +%%DOCSDIR%%/html/declarative-animation-basics-property-animation-qml-property-animation-property-animation-qml.html +%%DOCSDIR%%/html/declarative-animation-basics-property-animation.html +%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example-behavior-example-pro.html +%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example-behavior-example-svg.html +%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example-behaviors-qmlproject.html +%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example-main-cpp.html +%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example-qml-behaviours-behavior-example-qml.html +%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example-qml-behaviours-siderect-qml.html +%%DOCSDIR%%/html/declarative-animation-behaviors-behavior-example.html +%%DOCSDIR%%/html/declarative-animation-behaviors-wigglytext-main-cpp.html +%%DOCSDIR%%/html/declarative-animation-behaviors-wigglytext-qml-wigglytext-wigglytext-qml.html +%%DOCSDIR%%/html/declarative-animation-behaviors-wigglytext-wigglytext-pro.html +%%DOCSDIR%%/html/declarative-animation-behaviors-wigglytext-wigglytext-qmlproject.html +%%DOCSDIR%%/html/declarative-animation-behaviors-wigglytext-wigglytext-svg.html +%%DOCSDIR%%/html/declarative-animation-behaviors-wigglytext.html +%%DOCSDIR%%/html/declarative-animation-easing-easing-pro.html %%DOCSDIR%%/html/declarative-animation-easing-easing-qml.html +%%DOCSDIR%%/html/declarative-animation-easing-easing-qmlproject.html +%%DOCSDIR%%/html/declarative-animation-easing-easing-svg.html +%%DOCSDIR%%/html/declarative-animation-easing-main-cpp.html +%%DOCSDIR%%/html/declarative-animation-easing-qml-easing-content-quitbutton-qml.html +%%DOCSDIR%%/html/declarative-animation-easing-qml-easing-easing-qml.html %%DOCSDIR%%/html/declarative-animation-easing.html -%%DOCSDIR%%/html/declarative-animation-states-states-qml.html -%%DOCSDIR%%/html/declarative-animation-states-transitions-qml.html +%%DOCSDIR%%/html/declarative-animation-states-main-cpp.html +%%DOCSDIR%%/html/declarative-animation-states-qml-states-states-qml.html +%%DOCSDIR%%/html/declarative-animation-states-qml-states-transitions-qml.html +%%DOCSDIR%%/html/declarative-animation-states-states-pro.html +%%DOCSDIR%%/html/declarative-animation-states-states-qmlproject.html +%%DOCSDIR%%/html/declarative-animation-states-states-svg.html %%DOCSDIR%%/html/declarative-animation-states.html %%DOCSDIR%%/html/declarative-cppextensions-imageprovider-imageprovider-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-imageprovider-imageprovider-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-imageprovider-imageprovider-pro.html +%%DOCSDIR%%/html/declarative-cppextensions-imageprovider-imageprovider-qmlproject.html %%DOCSDIR%%/html/declarative-cppextensions-imageprovider-imageprovidercore-qmldir.html %%DOCSDIR%%/html/declarative-cppextensions-imageprovider.html %%DOCSDIR%%/html/declarative-cppextensions-networkaccessmanagerfactory-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-networkaccessmanagerfactory-networkaccessmanagerfactory-pro.html +%%DOCSDIR%%/html/declarative-cppextensions-networkaccessmanagerfactory-networkaccessmanagerfactory-qmlproject.html %%DOCSDIR%%/html/declarative-cppextensions-networkaccessmanagerfactory-networkaccessmanagerfactory-qrc.html -%%DOCSDIR%%/html/declarative-cppextensions-networkaccessmanagerfactory-view-qml.html +%%DOCSDIR%%/html/declarative-cppextensions-networkaccessmanagerfactory-qml-networkaccessmanagerfactory-view-qml.html %%DOCSDIR%%/html/declarative-cppextensions-networkaccessmanagerfactory.html %%DOCSDIR%%/html/declarative-cppextensions-plugins-com-nokia-timeexample-clock-qml.html %%DOCSDIR%%/html/declarative-cppextensions-plugins-com-nokia-timeexample-qmldir.html %%DOCSDIR%%/html/declarative-cppextensions-plugins-plugin-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-plugins-plugins-pro.html %%DOCSDIR%%/html/declarative-cppextensions-plugins-plugins-qml.html +%%DOCSDIR%%/html/declarative-cppextensions-plugins-plugins-qmlproject.html %%DOCSDIR%%/html/declarative-cppextensions-plugins.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-layoutitem-layoutitem-pro.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-layoutitem-layoutitem-qml.html +%%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-layoutitem-layoutitem-qmlproject.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-layoutitem-layoutitem-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-layoutitem-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-layoutitem.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout-gridlayout-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout-gridlayout-h.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout-gridlayout-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout-qgraphicsgridlayout-pro.html -%%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout-qgraphicsgridlayout-qml.html +%%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout-qml-qgraphicsgridlayout-qgraphicsgridlayout-qml.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicsgridlayout.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout-linearlayout-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout-linearlayout-h.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout-linearlayout-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout-qgraphicslinearlayout-pro.html -%%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout-qgraphicslinearlayout-qml.html +%%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout-qml-qgraphicslinearlayout-qgraphicslinearlayout-qml.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts-qgraphicslinearlayout.html %%DOCSDIR%%/html/declarative-cppextensions-qgraphicslayouts.html %%DOCSDIR%%/html/declarative-cppextensions-qwidgets-qwidgets-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-qwidgets-qwidgets-pro.html %%DOCSDIR%%/html/declarative-cppextensions-qwidgets-qwidgets-qml.html %%DOCSDIR%%/html/declarative-cppextensions-qwidgets-qwidgets-qmldir.html +%%DOCSDIR%%/html/declarative-cppextensions-qwidgets-qwidgets-qmlproject.html %%DOCSDIR%%/html/declarative-cppextensions-qwidgets.html %%DOCSDIR%%/html/declarative-cppextensions-reference.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-adding-adding-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-adding-adding-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-adding-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-adding-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-adding-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-adding-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-adding.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-attached-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-attached-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-attached.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-binding-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-binding-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-happybirthdaysong-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-happybirthdaysong-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-binding.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-coercion-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-coercion-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-coercion.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-default-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-default-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-default.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-grouped-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-grouped-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-grouped.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-methods-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-methods-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-methods.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-properties-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties-properties-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-properties.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-signal-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal-signal-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-signal.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-birthdayparty-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-birthdayparty-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-example-qml.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-happybirthdaysong-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-happybirthdaysong-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-main-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-person-cpp.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-person-h.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-valuesource-pro.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource-valuesource-qrc.html %%DOCSDIR%%/html/declarative-cppextensions-referenceexamples-valuesource.html -%%DOCSDIR%%/html/declarative-i18n-i18n-qml.html +%%DOCSDIR%%/html/declarative-i18n-i18n-pro.html +%%DOCSDIR%%/html/declarative-i18n-i18n-qmlproject.html +%%DOCSDIR%%/html/declarative-i18n-i18n-svg.html +%%DOCSDIR%%/html/declarative-i18n-main-cpp.html +%%DOCSDIR%%/html/declarative-i18n-qml-i18n-i18n-qml.html %%DOCSDIR%%/html/declarative-i18n.html -%%DOCSDIR%%/html/declarative-imageelements-borderimage-borderimage-qml.html -%%DOCSDIR%%/html/declarative-imageelements-borderimage-content-myborderimage-qml.html -%%DOCSDIR%%/html/declarative-imageelements-borderimage-content-shadowrectangle-qml.html -%%DOCSDIR%%/html/declarative-imageelements-borderimage-shadows-qml.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-borderimage-pro.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-borderimage-qmlproject.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-borderimage-svg.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-main-cpp.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-qml-borderimage-borderimage-qml.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-qml-borderimage-content-myborderimage-qml.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-qml-borderimage-content-shadowrectangle-qml.html +%%DOCSDIR%%/html/declarative-imageelements-borderimage-qml-borderimage-shadows-qml.html %%DOCSDIR%%/html/declarative-imageelements-borderimage.html -%%DOCSDIR%%/html/declarative-imageelements-image-image-qml.html -%%DOCSDIR%%/html/declarative-imageelements-image-imagecell-qml.html +%%DOCSDIR%%/html/declarative-imageelements-image-image-pro.html +%%DOCSDIR%%/html/declarative-imageelements-image-image-qmlproject.html +%%DOCSDIR%%/html/declarative-imageelements-image-image-svg.html +%%DOCSDIR%%/html/declarative-imageelements-image-main-cpp.html +%%DOCSDIR%%/html/declarative-imageelements-image-qml-image-image-qml.html +%%DOCSDIR%%/html/declarative-imageelements-image-qml-image-imagecell-qml.html %%DOCSDIR%%/html/declarative-imageelements-image.html -%%DOCSDIR%%/html/declarative-keyinteraction-focus-core-contextmenu-qml.html -%%DOCSDIR%%/html/declarative-keyinteraction-focus-core-gridmenu-qml.html -%%DOCSDIR%%/html/declarative-keyinteraction-focus-core-listmenu-qml.html -%%DOCSDIR%%/html/declarative-keyinteraction-focus-core-listviewdelegate-qml.html -%%DOCSDIR%%/html/declarative-keyinteraction-focus-focus-qml.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-main-cpp.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-qml-shadows-borderimage-qml.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-qml-shadows-content-myborderimage-qml.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-qml-shadows-content-shadowrectangle-qml.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-qml-shadows-shadows-qml.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-shadows-pro.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-shadows-qmlproject.html +%%DOCSDIR%%/html/declarative-imageelements-shadows-shadows-svg.html +%%DOCSDIR%%/html/declarative-imageelements-shadows.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-focus-pro.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-focus-qmlproject.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-focus-svg.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-main-cpp.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-qml-focus-focus-qml.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-qml-focus-focuscore-contextmenu-qml.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-qml-focus-focuscore-gridmenu-qml.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-qml-focus-focuscore-listmenu-qml.html +%%DOCSDIR%%/html/declarative-keyinteraction-focus-qml-focus-focuscore-listviewdelegate-qml.html %%DOCSDIR%%/html/declarative-keyinteraction-focus.html %%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel-abstractitemmodel-pro.html -%%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel-abstractitemmodel-qrc.html %%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel-main-cpp.html %%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel-model-cpp.html %%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel-model-h.html -%%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel-view-qml.html +%%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel-qml-abstractitemmodel-view-qml.html %%DOCSDIR%%/html/declarative-modelviews-abstractitemmodel.html -%%DOCSDIR%%/html/declarative-modelviews-gridview-gridview-example-qml.html +%%DOCSDIR%%/html/declarative-modelviews-gridview-gridview-pro.html +%%DOCSDIR%%/html/declarative-modelviews-gridview-gridview-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-gridview-gridview-svg.html +%%DOCSDIR%%/html/declarative-modelviews-gridview-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-gridview-qml-gridview-example-gridview-example-qml.html %%DOCSDIR%%/html/declarative-modelviews-gridview.html -%%DOCSDIR%%/html/declarative-modelviews-listview-content-petsmodel-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-content-pressandholdbutton-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-content-recipesmodel-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-content-textbutton-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml.html -%%DOCSDIR%%/html/declarative-modelviews-listview.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-dynamiclist-pro.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-dynamiclist-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-dynamiclist-svg.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-content-petsmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-content-pressandholdbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-content-recipesmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-content-textbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-dynamiclist-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-expandingdelegates-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-highlight-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-highlightranges-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist-qml-dynamic-sections-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-dynamiclist.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-expandingdelegates-pro.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-expandingdelegates-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-expandingdelegates-svg.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-content-petsmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-content-pressandholdbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-content-recipesmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-content-textbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-dynamiclist-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-expandingdelegates-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-highlight-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-highlightranges-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates-qml-expandingdelegates-sections-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-expandingdelegates.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-highlight-pro.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-highlight-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-highlight-svg.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-content-petsmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-content-pressandholdbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-content-recipesmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-content-textbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-dynamiclist-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-expandingdelegates-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-highlight-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-highlightranges-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight-qml-highlight-sections-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlight.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-highlightranges-pro.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-highlightranges-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-highlightranges-svg.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-content-petsmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-content-pressandholdbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-content-recipesmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-content-textbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-dynamiclist-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-expandingdelegates-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-highlight-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-highlightranges-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges-qml-highlightranges-sections-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-highlightranges.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-content-petsmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-content-pressandholdbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-content-recipesmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-content-textbutton-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-dynamiclist-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-expandingdelegates-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-highlight-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-highlightranges-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-qml-sections-sections-qml.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-sections-pro.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-sections-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections-sections-svg.html +%%DOCSDIR%%/html/declarative-modelviews-listview-sections.html %%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-dataobject-cpp.html %%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-dataobject-h.html %%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-main-cpp.html %%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-objectlistmodel-pro.html -%%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-objectlistmodel-qrc.html -%%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-view-qml.html +%%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-objectlistmodel-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-objectlistmodel-qml-objectlistmodel-view-qml.html %%DOCSDIR%%/html/declarative-modelviews-objectlistmodel.html -%%DOCSDIR%%/html/declarative-modelviews-package-delegate-qml.html -%%DOCSDIR%%/html/declarative-modelviews-package-view-qml.html +%%DOCSDIR%%/html/declarative-modelviews-package-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-package-package-pro.html +%%DOCSDIR%%/html/declarative-modelviews-package-package-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-package-qml-package-delegate-qml.html +%%DOCSDIR%%/html/declarative-modelviews-package-qml-package-view-qml.html %%DOCSDIR%%/html/declarative-modelviews-package.html -%%DOCSDIR%%/html/declarative-modelviews-parallax-parallax-qml.html -%%DOCSDIR%%/html/declarative-modelviews-parallax-pics-home-page-svg.html -%%DOCSDIR%%/html/declarative-modelviews-parallax-qml-parallaxview-qml.html -%%DOCSDIR%%/html/declarative-modelviews-parallax-qml-smiley-qml.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-parallax-pro.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-parallax-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-parallax-svg.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-qml-parallax-clock-qml.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-qml-parallax-parallax-qml.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-qml-parallax-parallaxview-qml.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-qml-parallax-pics-home-page-svg.html +%%DOCSDIR%%/html/declarative-modelviews-parallax-qml-parallax-smiley-qml.html %%DOCSDIR%%/html/declarative-modelviews-parallax.html -%%DOCSDIR%%/html/declarative-modelviews-pathview-pathview-example-qml.html +%%DOCSDIR%%/html/declarative-modelviews-pathview-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-pathview-pathview-pro.html +%%DOCSDIR%%/html/declarative-modelviews-pathview-pathview-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-pathview-pathview-svg.html +%%DOCSDIR%%/html/declarative-modelviews-pathview-qml-pathview-example-pathview-example-qml.html %%DOCSDIR%%/html/declarative-modelviews-pathview.html %%DOCSDIR%%/html/declarative-modelviews-stringlistmodel-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-stringlistmodel-qml-stringlistmodel-view-qml.html %%DOCSDIR%%/html/declarative-modelviews-stringlistmodel-stringlistmodel-pro.html -%%DOCSDIR%%/html/declarative-modelviews-stringlistmodel-stringlistmodel-qrc.html -%%DOCSDIR%%/html/declarative-modelviews-stringlistmodel-view-qml.html %%DOCSDIR%%/html/declarative-modelviews-stringlistmodel.html -%%DOCSDIR%%/html/declarative-modelviews-visualitemmodel-visualitemmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-visualitemmodel-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-visualitemmodel-qml-visualitemmodel-visualitemmodel-qml.html +%%DOCSDIR%%/html/declarative-modelviews-visualitemmodel-visualitemmodel-pro.html +%%DOCSDIR%%/html/declarative-modelviews-visualitemmodel-visualitemmodel-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-visualitemmodel-visualitemmodel-svg.html %%DOCSDIR%%/html/declarative-modelviews-visualitemmodel.html -%%DOCSDIR%%/html/declarative-modelviews-webview-alerts-qml.html -%%DOCSDIR%%/html/declarative-modelviews-webview-autosize-qml.html -%%DOCSDIR%%/html/declarative-modelviews-webview-content-mapping-map-qml.html -%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps-qml.html -%%DOCSDIR%%/html/declarative-modelviews-webview-inlinehtml-qml.html -%%DOCSDIR%%/html/declarative-modelviews-webview-newwindows-qml.html -%%DOCSDIR%%/html/declarative-modelviews-webview.html -%%DOCSDIR%%/html/declarative-positioners-button-qml.html -%%DOCSDIR%%/html/declarative-positioners-positioners-qml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-alerts-alerts-pro.html +%%DOCSDIR%%/html/declarative-modelviews-webview-alerts-alerts-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-webview-alerts-alerts-svg.html +%%DOCSDIR%%/html/declarative-modelviews-webview-alerts-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-webview-alerts-qml-alerts-alerts-qml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-alerts.html +%%DOCSDIR%%/html/declarative-modelviews-webview-autosize-autosize-pro.html +%%DOCSDIR%%/html/declarative-modelviews-webview-autosize-autosize-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-webview-autosize-autosize-svg.html +%%DOCSDIR%%/html/declarative-modelviews-webview-autosize-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-webview-autosize-qml-autosize-autosize-qml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-autosize.html +%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps-googlemaps-pro.html +%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps-googlemaps-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps-googlemaps-svg.html +%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps-qml-googlemaps-content-mapping-map-qml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps-qml-googlemaps-googlemaps-qml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-googlemaps.html +%%DOCSDIR%%/html/declarative-modelviews-webview-inlinehtml-inlinehtml-pro.html +%%DOCSDIR%%/html/declarative-modelviews-webview-inlinehtml-inlinehtml-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-webview-inlinehtml-inlinehtml-svg.html +%%DOCSDIR%%/html/declarative-modelviews-webview-inlinehtml-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-webview-inlinehtml-qml-inlinehtml-inlinehtml-qml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-inlinehtml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-newwindows-main-cpp.html +%%DOCSDIR%%/html/declarative-modelviews-webview-newwindows-newwindows-pro.html +%%DOCSDIR%%/html/declarative-modelviews-webview-newwindows-newwindows-qmlproject.html +%%DOCSDIR%%/html/declarative-modelviews-webview-newwindows-newwindows-svg.html +%%DOCSDIR%%/html/declarative-modelviews-webview-newwindows-qml-newwindows-newwindows-qml.html +%%DOCSDIR%%/html/declarative-modelviews-webview-newwindows.html +%%DOCSDIR%%/html/declarative-positioners-main-cpp.html +%%DOCSDIR%%/html/declarative-positioners-positioners-pro.html +%%DOCSDIR%%/html/declarative-positioners-positioners-qmlproject.html +%%DOCSDIR%%/html/declarative-positioners-positioners-svg.html +%%DOCSDIR%%/html/declarative-positioners-qml-positioners-button-qml.html +%%DOCSDIR%%/html/declarative-positioners-qml-positioners-positioners-qml.html %%DOCSDIR%%/html/declarative-positioners.html -%%DOCSDIR%%/html/declarative-righttoleft-layoutdirection-layoutdirection-qml.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutdirection-layoutdirection-pro.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutdirection-layoutdirection-qmlproject.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutdirection-layoutdirection-svg.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutdirection-main-cpp.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutdirection-qml-layoutdirection-layoutdirection-qml.html %%DOCSDIR%%/html/declarative-righttoleft-layoutdirection.html -%%DOCSDIR%%/html/declarative-righttoleft-layoutmirroring-layoutmirroring-qml.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutmirroring-layoutmirroring-pro.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutmirroring-layoutmirroring-qmlproject.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutmirroring-layoutmirroring-svg.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutmirroring-main-cpp.html +%%DOCSDIR%%/html/declarative-righttoleft-layoutmirroring-qml-layoutmirroring-layoutmirroring-qml.html %%DOCSDIR%%/html/declarative-righttoleft-layoutmirroring.html -%%DOCSDIR%%/html/declarative-righttoleft-textalignment-textalignment-qml.html +%%DOCSDIR%%/html/declarative-righttoleft-textalignment-main-cpp.html +%%DOCSDIR%%/html/declarative-righttoleft-textalignment-qml-textalignment-textalignment-qml.html +%%DOCSDIR%%/html/declarative-righttoleft-textalignment-textalignment-pro.html +%%DOCSDIR%%/html/declarative-righttoleft-textalignment-textalignment-qmlproject.html +%%DOCSDIR%%/html/declarative-righttoleft-textalignment-textalignment-svg.html %%DOCSDIR%%/html/declarative-righttoleft-textalignment.html %%DOCSDIR%%/html/declarative-screenorientation-core-bubble-qml.html %%DOCSDIR%%/html/declarative-screenorientation-core-button-qml.html %%DOCSDIR%%/html/declarative-screenorientation-core-screenorientation-js.html %%DOCSDIR%%/html/declarative-screenorientation-screenorientation-qml.html +%%DOCSDIR%%/html/declarative-screenorientation-screenorientation-qmlproject.html %%DOCSDIR%%/html/declarative-screenorientation.html %%DOCSDIR%%/html/declarative-shadereffects-main-cpp.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-curtain-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-curtaineffect-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-dropshadow-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-dropshadoweffect-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-grayscale-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-grayscaleeffect-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-imagemask-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-imagemaskeffect-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-main-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-radialwave-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-radialwaveeffect-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-water-qml.html -%%DOCSDIR%%/html/declarative-shadereffects-qml-watereffect-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-curtain-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-curtaineffect-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-dropshadow-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-dropshadoweffect-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-grayscale-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-grayscaleeffect-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-imagemask-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-imagemaskeffect-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-main-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-radialwave-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-radialwaveeffect-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-water-qml.html +%%DOCSDIR%%/html/declarative-shadereffects-qml-shadereffects-watereffect-qml.html %%DOCSDIR%%/html/declarative-shadereffects-shadereffects-pro.html +%%DOCSDIR%%/html/declarative-shadereffects-shadereffects-qmlproject.html %%DOCSDIR%%/html/declarative-shadereffects.html -%%DOCSDIR%%/html/declarative-sqllocalstorage-hello-qml.html +%%DOCSDIR%%/html/declarative-sqllocalstorage-main-cpp.html +%%DOCSDIR%%/html/declarative-sqllocalstorage-qml-sqllocalstorage-hello-qml.html +%%DOCSDIR%%/html/declarative-sqllocalstorage-sqllocalstorage-pro.html +%%DOCSDIR%%/html/declarative-sqllocalstorage-sqllocalstorage-qmlproject.html +%%DOCSDIR%%/html/declarative-sqllocalstorage-sqllocalstorage-svg.html %%DOCSDIR%%/html/declarative-sqllocalstorage.html -%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-qml.html -%%DOCSDIR%%/html/declarative-text-fonts-banner-qml.html -%%DOCSDIR%%/html/declarative-text-fonts-fonts-qml.html -%%DOCSDIR%%/html/declarative-text-fonts-hello-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-availablefonts-pro.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-availablefonts-qmlproject.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-availablefonts-svg.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-main-cpp.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-qml-availablefonts-availablefonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-qml-availablefonts-banner-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-qml-availablefonts-fonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-availablefonts-qml-availablefonts-hello-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-banner-pro.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-banner-qmlproject.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-banner-svg.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-main-cpp.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-qml-banner-availablefonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-qml-banner-banner-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-qml-banner-fonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-banner-qml-banner-hello-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-banner.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-fonts-pro.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-fonts-qmlproject.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-fonts-svg.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-main-cpp.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-pro.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-qml-fonts-qml-availablefonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-qml-fonts-qml-banner-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-qml-fonts-qml-fonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts-qml-fonts-qml-hello-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-fonts.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-hello-pro.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-hello-qmlproject.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-hello-svg.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-main-cpp.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-qml-hello-availablefonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-qml-hello-banner-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-qml-hello-fonts-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-hello-qml-hello-hello-qml.html +%%DOCSDIR%%/html/declarative-text-fonts-hello.html %%DOCSDIR%%/html/declarative-text-fonts.html -%%DOCSDIR%%/html/declarative-text-textselection-textselection-qml.html +%%DOCSDIR%%/html/declarative-text-textselection-main-cpp.html +%%DOCSDIR%%/html/declarative-text-textselection-qml-textselection-textselection-qml.html +%%DOCSDIR%%/html/declarative-text-textselection-textselection-pro.html +%%DOCSDIR%%/html/declarative-text-textselection-textselection-qmlproject.html +%%DOCSDIR%%/html/declarative-text-textselection-textselection-svg.html %%DOCSDIR%%/html/declarative-text-textselection.html -%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-dataloader-js.html -%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-timedisplay-qml.html +%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-main-cpp.html +%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-qml-threadedlistmodel-dataloader-js.html +%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-qml-threadedlistmodel-timedisplay-qml.html +%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-threadedlistmodel-pro.html +%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-threadedlistmodel-qmlproject.html +%%DOCSDIR%%/html/declarative-threading-threadedlistmodel-threadedlistmodel-svg.html %%DOCSDIR%%/html/declarative-threading-threadedlistmodel.html -%%DOCSDIR%%/html/declarative-threading-workerscript-workerscript-js.html -%%DOCSDIR%%/html/declarative-threading-workerscript-workerscript-qml.html +%%DOCSDIR%%/html/declarative-threading-workerscript-main-cpp.html +%%DOCSDIR%%/html/declarative-threading-workerscript-qml-workerscript-workerscript-js.html +%%DOCSDIR%%/html/declarative-threading-workerscript-qml-workerscript-workerscript-qml.html +%%DOCSDIR%%/html/declarative-threading-workerscript-workerscript-pro.html +%%DOCSDIR%%/html/declarative-threading-workerscript-workerscript-qmlproject.html +%%DOCSDIR%%/html/declarative-threading-workerscript-workerscript-svg.html %%DOCSDIR%%/html/declarative-threading-workerscript.html -%%DOCSDIR%%/html/declarative-touchinteraction-mousearea-mousearea-example-qml.html +%%DOCSDIR%%/html/declarative-touchinteraction-gestures.html %%DOCSDIR%%/html/declarative-touchinteraction-mousearea.html -%%DOCSDIR%%/html/declarative-toys-clocks-clocks-qml.html -%%DOCSDIR%%/html/declarative-toys-clocks-content-clock-qml.html -%%DOCSDIR%%/html/declarative-toys-clocks-content-quitbutton-qml.html +%%DOCSDIR%%/html/declarative-toys-clocks-clocks-pro.html +%%DOCSDIR%%/html/declarative-toys-clocks-clocks-qmlproject.html +%%DOCSDIR%%/html/declarative-toys-clocks-clocks-svg.html +%%DOCSDIR%%/html/declarative-toys-clocks-main-cpp.html +%%DOCSDIR%%/html/declarative-toys-clocks-qml-clocks-clocks-qml.html +%%DOCSDIR%%/html/declarative-toys-clocks-qml-clocks-content-clock-qml.html +%%DOCSDIR%%/html/declarative-toys-clocks-qml-clocks-content-quitbutton-qml.html %%DOCSDIR%%/html/declarative-toys-clocks.html -%%DOCSDIR%%/html/declarative-toys-corkboards-corkboards-qml.html -%%DOCSDIR%%/html/declarative-toys-corkboards-day-qml.html +%%DOCSDIR%%/html/declarative-toys-corkboards-corkboards-pro.html +%%DOCSDIR%%/html/declarative-toys-corkboards-corkboards-qmlproject.html +%%DOCSDIR%%/html/declarative-toys-corkboards-corkboards-svg.html +%%DOCSDIR%%/html/declarative-toys-corkboards-main-cpp.html +%%DOCSDIR%%/html/declarative-toys-corkboards-qml-corkboards-corkboards-qml.html +%%DOCSDIR%%/html/declarative-toys-corkboards-qml-corkboards-day-qml.html %%DOCSDIR%%/html/declarative-toys-corkboards.html -%%DOCSDIR%%/html/declarative-toys-dynamicscene-dynamicscene-qml.html -%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-button-qml.html -%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-genericsceneitem-qml.html -%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-itemcreation-js.html -%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-paletteitem-qml.html -%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-perspectiveitem-qml.html -%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-sun-qml.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-dynamicscene-pro.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-dynamicscene-qmlproject.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-dynamicscene-svg.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-main-cpp.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-dynamicscene-button-qml.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-dynamicscene-dynamicscene-qml.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-dynamicscene-genericsceneitem-qml.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-dynamicscene-itemcreation-js.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-dynamicscene-paletteitem-qml.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-dynamicscene-perspectiveitem-qml.html +%%DOCSDIR%%/html/declarative-toys-dynamicscene-qml-dynamicscene-sun-qml.html %%DOCSDIR%%/html/declarative-toys-dynamicscene.html -%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-content-button-qml.html -%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-content-tic-tac-toe-js.html -%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-content-tictac-qml.html -%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-tic-tac-toe-qml.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-main-cpp.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-qml-tic-tac-toe-content-button-qml.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-qml-tic-tac-toe-content-tic-tac-toe-js.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-qml-tic-tac-toe-content-tictac-qml.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-qml-tic-tac-toe-tic-tac-toe-qml.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-tic-tac-toe-qmlproject.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-tictactoe-pro.html +%%DOCSDIR%%/html/declarative-toys-tic-tac-toe-tictactoe-svg.html %%DOCSDIR%%/html/declarative-toys-tic-tac-toe.html -%%DOCSDIR%%/html/declarative-toys-tvtennis-tvtennis-qml.html +%%DOCSDIR%%/html/declarative-toys-tvtennis-main-cpp.html +%%DOCSDIR%%/html/declarative-toys-tvtennis-qml-tvtennis-tvtennis-qml.html +%%DOCSDIR%%/html/declarative-toys-tvtennis-tvtennis-pro.html +%%DOCSDIR%%/html/declarative-toys-tvtennis-tvtennis-qmlproject.html +%%DOCSDIR%%/html/declarative-toys-tvtennis-tvtennis-svg.html %%DOCSDIR%%/html/declarative-toys-tvtennis.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter1-basics-app-qml.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter1-basics-chapter1-basics-pro.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter1-basics-main-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter1-basics-piechart-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter1-basics-piechart-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter1-basics.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter2-methods-app-qml.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter2-methods-chapter2-methods-pro.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter2-methods-main-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter2-methods-piechart-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter2-methods-piechart-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter2-methods.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter3-bindings-app-qml.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter3-bindings-chapter3-bindings-pro.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter3-bindings-main-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter3-bindings-piechart-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter3-bindings-piechart-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter3-bindings.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes-app-qml.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes-chapter4-custompropertytypes-pro.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes-main-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes-piechart-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes-piechart-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes-pieslice-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes-pieslice-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter4-custompropertytypes.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties-app-qml.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties-chapter5-listproperties-pro.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties-main-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties-piechart-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties-piechart-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties-pieslice-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties-pieslice-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter5-listproperties.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-app-qml.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-chapter6-plugins-pro.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-chartsplugin-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-chartsplugin-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-piechart-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-piechart-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-pieslice-cpp.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-pieslice-h.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins-qmldir.html %%DOCSDIR%%/html/declarative-tutorials-extending-chapter6-plugins.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame1-block-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame1-button-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame1-samegame-qml.html +%%DOCSDIR%%/html/declarative-tutorials-samegame-samegame1-samegame1-qmlproject.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame1.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame2-block-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame2-button-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame2-samegame-js.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame2-samegame-qml.html +%%DOCSDIR%%/html/declarative-tutorials-samegame-samegame2-samegame2-qmlproject.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame2.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame3-block-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame3-button-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame3-dialog-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame3-samegame-js.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame3-samegame-qml.html +%%DOCSDIR%%/html/declarative-tutorials-samegame-samegame3-samegame3-qmlproject.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame3.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4-content-boomblock-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4-content-button-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4-content-dialog-qml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4-content-samegame-js.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4-highscores-score-data-xml.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4-samegame-qml.html +%%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4-samegame4-qmlproject.html %%DOCSDIR%%/html/declarative-tutorials-samegame-samegame4.html -%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-content-dial-qml.html -%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-content-quitbutton-qml.html -%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-dialcontrol-qml.html +%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-dialcontrol-pro.html +%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-dialcontrol-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-dialcontrol-svg.html +%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-qml-dialcontrol-content-dial-qml.html +%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-qml-dialcontrol-content-quitbutton-qml.html +%%DOCSDIR%%/html/declarative-ui-components-dialcontrol-qml-dialcontrol-dialcontrol-qml.html %%DOCSDIR%%/html/declarative-ui-components-dialcontrol.html -%%DOCSDIR%%/html/declarative-ui-components-flipable-content-card-qml.html -%%DOCSDIR%%/html/declarative-ui-components-flipable-flipable-qml.html +%%DOCSDIR%%/html/declarative-ui-components-flipable-flipable-pro.html +%%DOCSDIR%%/html/declarative-ui-components-flipable-flipable-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-flipable-flipable-svg.html +%%DOCSDIR%%/html/declarative-ui-components-flipable-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-flipable-qml-flipable-content-card-qml.html +%%DOCSDIR%%/html/declarative-ui-components-flipable-qml-flipable-flipable-qml.html %%DOCSDIR%%/html/declarative-ui-components-flipable.html -%%DOCSDIR%%/html/declarative-ui-components-progressbar-content-progressbar-qml.html -%%DOCSDIR%%/html/declarative-ui-components-progressbar-main-qml.html +%%DOCSDIR%%/html/declarative-ui-components-progressbar-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-progressbar-progressbar-pro.html +%%DOCSDIR%%/html/declarative-ui-components-progressbar-progressbar-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-progressbar-progressbar-svg.html +%%DOCSDIR%%/html/declarative-ui-components-progressbar-qml-progressbar-content-progressbar-qml.html +%%DOCSDIR%%/html/declarative-ui-components-progressbar-qml-progressbar-main-qml.html %%DOCSDIR%%/html/declarative-ui-components-progressbar.html -%%DOCSDIR%%/html/declarative-ui-components-scrollbar-main-qml.html -%%DOCSDIR%%/html/declarative-ui-components-scrollbar-scrollbar-qml.html +%%DOCSDIR%%/html/declarative-ui-components-scrollbar-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-scrollbar-qml-scrollbar-main-qml.html +%%DOCSDIR%%/html/declarative-ui-components-scrollbar-qml-scrollbar-scrollbar-qml.html +%%DOCSDIR%%/html/declarative-ui-components-scrollbar-scrollbar-pro.html +%%DOCSDIR%%/html/declarative-ui-components-scrollbar-scrollbar-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-scrollbar-scrollbar-svg.html %%DOCSDIR%%/html/declarative-ui-components-scrollbar.html -%%DOCSDIR%%/html/declarative-ui-components-searchbox-main-qml.html -%%DOCSDIR%%/html/declarative-ui-components-searchbox-searchbox-qml.html +%%DOCSDIR%%/html/declarative-ui-components-searchbox-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-searchbox-qml-searchbox-main-qml.html +%%DOCSDIR%%/html/declarative-ui-components-searchbox-qml-searchbox-searchbox-qml.html +%%DOCSDIR%%/html/declarative-ui-components-searchbox-searchbox-pro.html +%%DOCSDIR%%/html/declarative-ui-components-searchbox-searchbox-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-searchbox-searchbox-svg.html %%DOCSDIR%%/html/declarative-ui-components-searchbox.html -%%DOCSDIR%%/html/declarative-ui-components-slideswitch-content-background-svg.html -%%DOCSDIR%%/html/declarative-ui-components-slideswitch-content-knob-svg.html -%%DOCSDIR%%/html/declarative-ui-components-slideswitch-content-switch-qml.html -%%DOCSDIR%%/html/declarative-ui-components-slideswitch-slideswitch-qml.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-qml-slideswitch-content-background-svg.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-qml-slideswitch-content-knob-svg.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-qml-slideswitch-content-switch-qml.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-qml-slideswitch-slideswitch-qml.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-slideswitch-pro.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-slideswitch-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-slideswitch-slideswitch-svg.html %%DOCSDIR%%/html/declarative-ui-components-slideswitch.html -%%DOCSDIR%%/html/declarative-ui-components-spinner-content-spinner-qml.html -%%DOCSDIR%%/html/declarative-ui-components-spinner-main-qml.html +%%DOCSDIR%%/html/declarative-ui-components-spinner-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-spinner-qml-spinner-main-qml.html +%%DOCSDIR%%/html/declarative-ui-components-spinner-spinner-pro.html +%%DOCSDIR%%/html/declarative-ui-components-spinner-spinner-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-spinner-spinner-svg.html %%DOCSDIR%%/html/declarative-ui-components-spinner.html -%%DOCSDIR%%/html/declarative-ui-components-tabwidget-main-qml.html -%%DOCSDIR%%/html/declarative-ui-components-tabwidget-tabwidget-qml.html +%%DOCSDIR%%/html/declarative-ui-components-tabwidget-main-cpp.html +%%DOCSDIR%%/html/declarative-ui-components-tabwidget-qml-tabwidget-main-qml.html +%%DOCSDIR%%/html/declarative-ui-components-tabwidget-qml-tabwidget-tabwidget-qml.html +%%DOCSDIR%%/html/declarative-ui-components-tabwidget-tabwidget-pro.html +%%DOCSDIR%%/html/declarative-ui-components-tabwidget-tabwidget-qmlproject.html +%%DOCSDIR%%/html/declarative-ui-components-tabwidget-tabwidget-svg.html %%DOCSDIR%%/html/declarative-ui-components-tabwidget.html -%%DOCSDIR%%/html/declarative-xml-xmlhttprequest-data-xml.html %%DOCSDIR%%/html/declarative-xml-xmlhttprequest-xmlhttprequest-example-qml.html +%%DOCSDIR%%/html/declarative-xml-xmlhttprequest-xmlhttprequest-qmlproject.html %%DOCSDIR%%/html/declarative-xml-xmlhttprequest.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-boxes-3rdparty-fbm-h.html %%DOCSDIR%%/html/demos-boxes-boxes-pro.html %%DOCSDIR%%/html/demos-boxes-boxes-qrc.html %%DOCSDIR%%/html/demos-boxes-glbuffers-cpp.html %%DOCSDIR%%/html/demos-boxes-glbuffers-h.html %%DOCSDIR%%/html/demos-boxes-glextensions-cpp.html %%DOCSDIR%%/html/demos-boxes-glextensions-h.html %%DOCSDIR%%/html/demos-boxes-gltrianglemesh-h.html %%DOCSDIR%%/html/demos-boxes-main-cpp.html %%DOCSDIR%%/html/demos-boxes-qtbox-cpp.html %%DOCSDIR%%/html/demos-boxes-qtbox-h.html %%DOCSDIR%%/html/demos-boxes-roundedbox-cpp.html %%DOCSDIR%%/html/demos-boxes-roundedbox-h.html %%DOCSDIR%%/html/demos-boxes-scene-cpp.html %%DOCSDIR%%/html/demos-boxes-scene-h.html %%DOCSDIR%%/html/demos-boxes-trackball-cpp.html %%DOCSDIR%%/html/demos-boxes-trackball-h.html %%DOCSDIR%%/html/demos-boxes.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-declarative-calculator-calculator-qml.html -%%DOCSDIR%%/html/demos-declarative-calculator-core-button-qml.html -%%DOCSDIR%%/html/demos-declarative-calculator-core-calculator-js.html -%%DOCSDIR%%/html/demos-declarative-calculator-core-display-qml.html -%%DOCSDIR%%/html/demos-declarative-calculator-core-qmldir.html +%%DOCSDIR%%/html/demos-declarative-calculator-calculator-pro.html +%%DOCSDIR%%/html/demos-declarative-calculator-calculator-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-calculator-calculator-svg.html +%%DOCSDIR%%/html/demos-declarative-calculator-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-calculator-qml-calculator-calculator-qml.html +%%DOCSDIR%%/html/demos-declarative-calculator-qml-calculator-calculatorcore-button-qml.html +%%DOCSDIR%%/html/demos-declarative-calculator-qml-calculator-calculatorcore-calculator-js.html +%%DOCSDIR%%/html/demos-declarative-calculator-qml-calculator-calculatorcore-display-qml.html +%%DOCSDIR%%/html/demos-declarative-calculator-qml-calculator-calculatorcore-qmldir.html %%DOCSDIR%%/html/demos-declarative-calculator.html -%%DOCSDIR%%/html/demos-declarative-flickr-common-progress-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-common-qmldir.html -%%DOCSDIR%%/html/demos-declarative-flickr-common-rssmodel-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-common-scrollbar-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-common-slider-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-flickr-90-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-flickr-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-mobile-button-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-mobile-griddelegate-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-mobile-imagedetails-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-mobile-listdelegate-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-mobile-titlebar-qml.html -%%DOCSDIR%%/html/demos-declarative-flickr-mobile-toolbar-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-flickr-pro.html +%%DOCSDIR%%/html/demos-declarative-flickr-flickr-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-flickr-flickr-svg.html +%%DOCSDIR%%/html/demos-declarative-flickr-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-common-progress-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-common-qmldir.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-common-rssmodel-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-common-scrollbar-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-common-slider-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-flickr-90-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-flickr-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-mobile-button-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-mobile-griddelegate-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-mobile-imagedetails-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-mobile-listdelegate-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-mobile-titlebar-qml.html +%%DOCSDIR%%/html/demos-declarative-flickr-qml-flickr-mobile-toolbar-qml.html %%DOCSDIR%%/html/demos-declarative-flickr.html %%DOCSDIR%%/html/demos-declarative-minehunt-main-cpp.html %%DOCSDIR%%/html/demos-declarative-minehunt-minehunt-cpp.html %%DOCSDIR%%/html/demos-declarative-minehunt-minehunt-h.html %%DOCSDIR%%/html/demos-declarative-minehunt-minehunt-pro.html -%%DOCSDIR%%/html/demos-declarative-minehunt-minehunt-qml.html +%%DOCSDIR%%/html/demos-declarative-minehunt-minehunt-qmlproject.html %%DOCSDIR%%/html/demos-declarative-minehunt-minehunt-qrc.html -%%DOCSDIR%%/html/demos-declarative-minehunt-minehuntcore-explosion-qml.html -%%DOCSDIR%%/html/demos-declarative-minehunt-minehuntcore-qmldir.html -%%DOCSDIR%%/html/demos-declarative-minehunt-minehuntcore-tile-qml.html +%%DOCSDIR%%/html/demos-declarative-minehunt-qml-minehunt-minehunt-qml.html +%%DOCSDIR%%/html/demos-declarative-minehunt-qml-minehunt-minehuntcore-explosion-qml.html +%%DOCSDIR%%/html/demos-declarative-minehunt-qml-minehunt-minehuntcore-tile-qml.html %%DOCSDIR%%/html/demos-declarative-minehunt.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewer-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-albumdelegate-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-busyindicator-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-button-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-editablebutton-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-photodelegate-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-progressbar-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-qmldir.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-rssmodel-qml.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-script-script-js.html -%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewercore-tag-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewer-pro.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewer-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-photoviewer-svg.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewer-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-albumdelegate-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-busyindicator-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-button-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-editablebutton-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-photodelegate-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-progressbar-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-qmldir.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-rssmodel-qml.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-script-script-js.html +%%DOCSDIR%%/html/demos-declarative-photoviewer-qml-photoviewer-photoviewercore-tag-qml.html %%DOCSDIR%%/html/demos-declarative-photoviewer.html -%%DOCSDIR%%/html/demos-declarative-rssnews-content-busyindicator-qml.html -%%DOCSDIR%%/html/demos-declarative-rssnews-content-categorydelegate-qml.html -%%DOCSDIR%%/html/demos-declarative-rssnews-content-newsdelegate-qml.html -%%DOCSDIR%%/html/demos-declarative-rssnews-content-rssfeeds-qml.html -%%DOCSDIR%%/html/demos-declarative-rssnews-content-scrollbar-qml.html -%%DOCSDIR%%/html/demos-declarative-rssnews-rssnews-qml.html +%%DOCSDIR%%/html/demos-declarative-rssnews-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-rssnews-qml-rssnews-content-busyindicator-qml.html +%%DOCSDIR%%/html/demos-declarative-rssnews-qml-rssnews-content-categorydelegate-qml.html +%%DOCSDIR%%/html/demos-declarative-rssnews-qml-rssnews-content-newsdelegate-qml.html +%%DOCSDIR%%/html/demos-declarative-rssnews-qml-rssnews-content-rssfeeds-qml.html +%%DOCSDIR%%/html/demos-declarative-rssnews-qml-rssnews-content-scrollbar-qml.html +%%DOCSDIR%%/html/demos-declarative-rssnews-qml-rssnews-rssnews-qml.html +%%DOCSDIR%%/html/demos-declarative-rssnews-rssnews-pro.html +%%DOCSDIR%%/html/demos-declarative-rssnews-rssnews-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-rssnews-rssnews-svg.html %%DOCSDIR%%/html/demos-declarative-rssnews.html -%%DOCSDIR%%/html/demos-declarative-samegame-highscores-score-data-xml.html -%%DOCSDIR%%/html/demos-declarative-samegame-samegame-qml.html -%%DOCSDIR%%/html/demos-declarative-samegame-samegamecore-boomblock-qml.html -%%DOCSDIR%%/html/demos-declarative-samegame-samegamecore-button-qml.html -%%DOCSDIR%%/html/demos-declarative-samegame-samegamecore-dialog-qml.html -%%DOCSDIR%%/html/demos-declarative-samegame-samegamecore-qmldir.html -%%DOCSDIR%%/html/demos-declarative-samegame-samegamecore-samegame-js.html +%%DOCSDIR%%/html/demos-declarative-samegame-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-samegame-qml-samegame-highscores-score-data-xml.html +%%DOCSDIR%%/html/demos-declarative-samegame-qml-samegame-samegame-qml.html +%%DOCSDIR%%/html/demos-declarative-samegame-qml-samegame-samegamecore-boomblock-qml.html +%%DOCSDIR%%/html/demos-declarative-samegame-qml-samegame-samegamecore-button-qml.html +%%DOCSDIR%%/html/demos-declarative-samegame-qml-samegame-samegamecore-dialog-qml.html +%%DOCSDIR%%/html/demos-declarative-samegame-qml-samegame-samegamecore-qmldir.html +%%DOCSDIR%%/html/demos-declarative-samegame-qml-samegame-samegamecore-samegame-js.html +%%DOCSDIR%%/html/demos-declarative-samegame-samegame-pro.html +%%DOCSDIR%%/html/demos-declarative-samegame-samegame-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-samegame-samegame-svg.html %%DOCSDIR%%/html/demos-declarative-samegame.html -%%DOCSDIR%%/html/demos-declarative-snake-content-button-qml.html -%%DOCSDIR%%/html/demos-declarative-snake-content-cookie-qml.html -%%DOCSDIR%%/html/demos-declarative-snake-content-highscoremodel-qml.html -%%DOCSDIR%%/html/demos-declarative-snake-content-link-qml.html -%%DOCSDIR%%/html/demos-declarative-snake-content-pics-eyes-svg.html -%%DOCSDIR%%/html/demos-declarative-snake-content-pics-head-svg.html -%%DOCSDIR%%/html/demos-declarative-snake-content-skull-qml.html -%%DOCSDIR%%/html/demos-declarative-snake-content-snake-js.html -%%DOCSDIR%%/html/demos-declarative-snake-snake-qml.html +%%DOCSDIR%%/html/demos-declarative-snake-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-button-qml.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-cookie-qml.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-highscoremodel-qml.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-link-qml.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-pics-eyes-svg.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-pics-head-svg.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-skull-qml.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-content-snake-js.html +%%DOCSDIR%%/html/demos-declarative-snake-qml-snake-snake-qml.html +%%DOCSDIR%%/html/demos-declarative-snake-snake-pro.html +%%DOCSDIR%%/html/demos-declarative-snake-snake-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-snake-snake-svg.html %%DOCSDIR%%/html/demos-declarative-snake.html -%%DOCSDIR%%/html/demos-declarative-twitter-twitter-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-button-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-fatdelegate-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-input-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-loading-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-multititlebar-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-qmldir.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-rssmodel-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-searchview-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-titlebar-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-toolbar-qml.html -%%DOCSDIR%%/html/demos-declarative-twitter-twittercore-usermodel-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twitter-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-button-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-fatdelegate-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-input-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-loading-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-multititlebar-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-qmldir.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-rssmodel-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-searchview-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-titlebar-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-toolbar-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-qml-twitter-twittercore-usermodel-qml.html +%%DOCSDIR%%/html/demos-declarative-twitter-twitter-pro.html +%%DOCSDIR%%/html/demos-declarative-twitter-twitter-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-twitter-twitter-svg.html %%DOCSDIR%%/html/demos-declarative-twitter.html -%%DOCSDIR%%/html/demos-declarative-webbrowser-content-button-qml.html -%%DOCSDIR%%/html/demos-declarative-webbrowser-content-flickablewebview-qml.html -%%DOCSDIR%%/html/demos-declarative-webbrowser-content-header-qml.html -%%DOCSDIR%%/html/demos-declarative-webbrowser-content-scrollbar-qml.html -%%DOCSDIR%%/html/demos-declarative-webbrowser-content-urlinput-qml.html -%%DOCSDIR%%/html/demos-declarative-webbrowser-webbrowser-qml.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-main-cpp.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-qml-webbrowser-content-button-qml.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-qml-webbrowser-content-flickablewebview-qml.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-qml-webbrowser-content-header-qml.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-qml-webbrowser-content-scrollbar-qml.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-qml-webbrowser-content-urlinput-qml.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-qml-webbrowser-webbrowser-qml.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-webbrowser-pro.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-webbrowser-qmlproject.html +%%DOCSDIR%%/html/demos-declarative-webbrowser-webbrowser-svg.html %%DOCSDIR%%/html/demos-declarative-webbrowser.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-embedded-anomaly-anomaly-pro.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-addressbar-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-addressbar-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-anomaly-qrc.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-bookmarksview-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-bookmarksview-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-browserview-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-browserview-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-browserwindow-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-browserwindow-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-controlstrip-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-controlstrip-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-flickcharm-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-flickcharm-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-homeview-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-homeview-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-main-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-titlebar-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-titlebar-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-webview-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-webview-h.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-zoomstrip-cpp.html %%DOCSDIR%%/html/demos-embedded-anomaly-src-zoomstrip-h.html %%DOCSDIR%%/html/demos-embedded-anomaly.html %%DOCSDIR%%/html/demos-embedded-desktopservices-contenttab-cpp.html %%DOCSDIR%%/html/demos-embedded-desktopservices-contenttab-h.html %%DOCSDIR%%/html/demos-embedded-desktopservices-desktopservices-pro.html %%DOCSDIR%%/html/demos-embedded-desktopservices-desktopservices-qrc.html %%DOCSDIR%%/html/demos-embedded-desktopservices-desktopwidget-cpp.html %%DOCSDIR%%/html/demos-embedded-desktopservices-desktopwidget-h.html %%DOCSDIR%%/html/demos-embedded-desktopservices-linktab-cpp.html %%DOCSDIR%%/html/demos-embedded-desktopservices-linktab-h.html %%DOCSDIR%%/html/demos-embedded-desktopservices-main-cpp.html %%DOCSDIR%%/html/demos-embedded-desktopservices-resources-heart-svg.html %%DOCSDIR%%/html/demos-embedded-desktopservices.html %%DOCSDIR%%/html/demos-embedded-digiflip-digiflip-cpp.html %%DOCSDIR%%/html/demos-embedded-digiflip-digiflip-pro.html %%DOCSDIR%%/html/demos-embedded-digiflip.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-embeddedsvgviewer-cpp.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-embeddedsvgviewer-h.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-embeddedsvgviewer-pro.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-embeddedsvgviewer-qrc.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-files-default-svg.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-files-v-slider-handle-svg.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-main-cpp.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-shapes-svg.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer-spheres-svg.html %%DOCSDIR%%/html/demos-embedded-embeddedsvgviewer.html %%DOCSDIR%%/html/demos-embedded-flickable-flickable-cpp.html %%DOCSDIR%%/html/demos-embedded-flickable-flickable-h.html %%DOCSDIR%%/html/demos-embedded-flickable-flickable-pro.html %%DOCSDIR%%/html/demos-embedded-flickable-main-cpp.html %%DOCSDIR%%/html/demos-embedded-flickable.html %%DOCSDIR%%/html/demos-embedded-flightinfo-flightinfo-cpp.html %%DOCSDIR%%/html/demos-embedded-flightinfo-flightinfo-pro.html %%DOCSDIR%%/html/demos-embedded-flightinfo-flightinfo-qrc.html %%DOCSDIR%%/html/demos-embedded-flightinfo-form-ui.html %%DOCSDIR%%/html/demos-embedded-flightinfo.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-backup-registration-xml.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-config-s60-config-xml.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-config-wince-config-xml.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-config-xml.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-demoapplication-cpp.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-demoapplication-h.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-fluidlauncher-cpp.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-fluidlauncher-h.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-fluidlauncher-pro.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-main-cpp.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-pictureflow-cpp.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-pictureflow-h.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-slideshow-cpp.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher-slideshow-h.html %%DOCSDIR%%/html/demos-embedded-fluidlauncher.html %%DOCSDIR%%/html/demos-embedded-lightmaps-lightmaps-cpp.html %%DOCSDIR%%/html/demos-embedded-lightmaps-lightmaps-h.html %%DOCSDIR%%/html/demos-embedded-lightmaps-lightmaps-pro.html %%DOCSDIR%%/html/demos-embedded-lightmaps-main-cpp.html %%DOCSDIR%%/html/demos-embedded-lightmaps-mapzoom-cpp.html %%DOCSDIR%%/html/demos-embedded-lightmaps-mapzoom-h.html %%DOCSDIR%%/html/demos-embedded-lightmaps-slippymap-cpp.html %%DOCSDIR%%/html/demos-embedded-lightmaps-slippymap-h.html %%DOCSDIR%%/html/demos-embedded-lightmaps.html %%DOCSDIR%%/html/demos-embedded-raycasting-raycasting-cpp.html %%DOCSDIR%%/html/demos-embedded-raycasting-raycasting-pro.html %%DOCSDIR%%/html/demos-embedded-raycasting-raycasting-qrc.html %%DOCSDIR%%/html/demos-embedded-raycasting.html %%DOCSDIR%%/html/demos-embedded-styledemo-main-cpp.html %%DOCSDIR%%/html/demos-embedded-styledemo-styledemo-pro.html %%DOCSDIR%%/html/demos-embedded-styledemo-styledemo-qrc.html %%DOCSDIR%%/html/demos-embedded-styledemo-stylewidget-cpp.html %%DOCSDIR%%/html/demos-embedded-styledemo-stylewidget-h.html %%DOCSDIR%%/html/demos-embedded-styledemo-stylewidget-ui.html %%DOCSDIR%%/html/demos-embedded-styledemo.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-few-clouds-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-fog-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-haze-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-icy-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-overcast-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-showers-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-sleet-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-snow-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-storm-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-sunny-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-sunny-very-few-clouds-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-icons-weather-thundershower-svg.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-weatherinfo-cpp.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-weatherinfo-pro.html %%DOCSDIR%%/html/demos-embedded-weatherinfo-weatherinfo-qrc.html %%DOCSDIR%%/html/demos-embedded-weatherinfo.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-glhypnotizer-glhypnotizer-pro.html +%%DOCSDIR%%/html/demos-glhypnotizer-hypnotizer-qrc.html +%%DOCSDIR%%/html/demos-glhypnotizer-main-cpp.html +%%DOCSDIR%%/html/demos-glhypnotizer-spiral-svg.html +%%DOCSDIR%%/html/demos-glhypnotizer.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-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-manifest.xml %%DOCSDIR%%/html/demos-mobile-guitartuner-guitartuner-pro.html %%DOCSDIR%%/html/demos-mobile-guitartuner-guitartuner-qrc.html %%DOCSDIR%%/html/demos-mobile-guitartuner-images-guitartab-svg.html %%DOCSDIR%%/html/demos-mobile-guitartuner-images-guitartuner-icon-svg.html %%DOCSDIR%%/html/demos-mobile-guitartuner-images-inputmode-svg.html %%DOCSDIR%%/html/demos-mobile-guitartuner-images-note-svg.html %%DOCSDIR%%/html/demos-mobile-guitartuner-images-noteno-svg.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-application-qml.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-constants-h.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-fastfouriertransformer-cpp.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-fastfouriertransformer-h.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-guitartuner-cpp.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-guitartuner-h.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-guitartuner-ui.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-guitartunerui-cpp.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-guitartunerui-h.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-guitartunerui-ui.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-main-cpp.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-mycomponents-adjustbars-js.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-mycomponents-adjuster-qml.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-mycomponents-meter-qml.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-mycomponents-notebuttonview-qml.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-mycomponents-notesmodel-qml.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-mycomponents-togglebutton-qml.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-voiceanalyzer-cpp.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-voiceanalyzer-h.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-voicegenerator-cpp.html %%DOCSDIR%%/html/demos-mobile-guitartuner-src-voicegenerator-h.html %%DOCSDIR%%/html/demos-mobile-guitartuner.html %%DOCSDIR%%/html/demos-mobile-qcamera-businesscardhandling-cpp.html %%DOCSDIR%%/html/demos-mobile-qcamera-businesscardhandling-h.html %%DOCSDIR%%/html/demos-mobile-qcamera-button-cpp.html %%DOCSDIR%%/html/demos-mobile-qcamera-button-h.html %%DOCSDIR%%/html/demos-mobile-qcamera-cameraexample-cpp.html %%DOCSDIR%%/html/demos-mobile-qcamera-cameraexample-h.html %%DOCSDIR%%/html/demos-mobile-qcamera-contactsdlg-cpp.html %%DOCSDIR%%/html/demos-mobile-qcamera-contactsdlg-h.html %%DOCSDIR%%/html/demos-mobile-qcamera-icons-cameramms-icon-svg.html %%DOCSDIR%%/html/demos-mobile-qcamera-main-cpp.html %%DOCSDIR%%/html/demos-mobile-qcamera-messagehandling-cpp.html %%DOCSDIR%%/html/demos-mobile-qcamera-messagehandling-h.html %%DOCSDIR%%/html/demos-mobile-qcamera-qcamera-pro.html %%DOCSDIR%%/html/demos-mobile-qcamera-resources-qrc.html %%DOCSDIR%%/html/demos-mobile-qcamera.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-accelerometerfilter-cpp.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-accelerometerfilter-h.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-icons-bubblelevel-svg.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-main-cpp.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-qml-bubblelevel-qml.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-qml-button-qml.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-qml-tube-qml.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-qtbubblelevel-pro.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-resources-qrc.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-settings-h.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-taskswitcher-cpp.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel-taskswitcher-h.html %%DOCSDIR%%/html/demos-mobile-qtbubblelevel.html %%DOCSDIR%%/html/demos-mobile-quickhit-button-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-ga-src-geaudiobuffer-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-ga-src-geaudiobuffer-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-ga-src-geaudioout-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-ga-src-geaudioout-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-ga-src-geinterfaces-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-ga-src-geinterfaces-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-game-js.html %%DOCSDIR%%/html/demos-mobile-quickhit-game-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-gameengine-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-gameengine-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-icon-svg.html %%DOCSDIR%%/html/demos-mobile-quickhit-invsounds-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-invsounds-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-main-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-mainwindow-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-mainwindow-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-menu-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-menuitem-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-message-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-missile-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-myeventfilter-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-myeventfilter-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-myship-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-levelone-level-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-levelone-levelone-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-levelone-levelone-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-levelone-levelone-pro.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-levelplugininterface-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltemplate-leveltemplate-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltemplate-leveltemplate-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltemplate-leveltemplate-pro.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltemplate-qml-enemy-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltemplate-qml-level-js.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltemplate-qml-level-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltwo-leveltwo-cpp.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltwo-leveltwo-h.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltwo-leveltwo-pro.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltwo-qml-enemy-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltwo-qml-level-js.html %%DOCSDIR%%/html/demos-mobile-quickhit-plugins-leveltwo-qml-level-qml.html %%DOCSDIR%%/html/demos-mobile-quickhit-quickhit-pro.html %%DOCSDIR%%/html/demos-mobile-quickhit-resources-qrc.html %%DOCSDIR%%/html/demos-mobile-quickhit.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-qmediaplayer-main-cpp.html %%DOCSDIR%%/html/demos-qmediaplayer-mediaplayer-cpp.html %%DOCSDIR%%/html/demos-qmediaplayer-mediaplayer-h.html %%DOCSDIR%%/html/demos-qmediaplayer-mediaplayer-qrc.html %%DOCSDIR%%/html/demos-qmediaplayer-qmediaplayer-pro.html %%DOCSDIR%%/html/demos-qmediaplayer-settings-ui.html %%DOCSDIR%%/html/demos-qmediaplayer.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-array-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-def-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-dynarray-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftreal-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftreal-pro.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftreal-wrapper-cpp.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftreal-wrapper-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftrealfixlen-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftrealfixlenparam-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftrealpassdirect-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftrealpassinverse-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftrealselect-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-fftrealusetrigo-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-oscsincos-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-stopwatch-clockcyclecounter-cpp.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-stopwatch-clockcyclecounter-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-stopwatch-def-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-stopwatch-fnc-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-stopwatch-int64-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-stopwatch-stopwatch-cpp.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-stopwatch-stopwatch-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-test-cpp.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-test-fnc-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-test-settings-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-testaccuracy-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-testhelperfixlen-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-testhelpernormal-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-testspeed-h.html %%DOCSDIR%%/html/demos-spectrum-3rdparty-fftreal-testwhitenoisegen-h.html %%DOCSDIR%%/html/demos-spectrum-app-app-pro.html %%DOCSDIR%%/html/demos-spectrum-app-engine-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-engine-h.html %%DOCSDIR%%/html/demos-spectrum-app-frequencyspectrum-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-frequencyspectrum-h.html %%DOCSDIR%%/html/demos-spectrum-app-levelmeter-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-levelmeter-h.html %%DOCSDIR%%/html/demos-spectrum-app-main-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-mainwidget-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-mainwidget-h.html %%DOCSDIR%%/html/demos-spectrum-app-progressbar-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-progressbar-h.html %%DOCSDIR%%/html/demos-spectrum-app-settingsdialog-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-settingsdialog-h.html %%DOCSDIR%%/html/demos-spectrum-app-spectrograph-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-spectrograph-h.html %%DOCSDIR%%/html/demos-spectrum-app-spectrum-h.html %%DOCSDIR%%/html/demos-spectrum-app-spectrum-qrc.html %%DOCSDIR%%/html/demos-spectrum-app-spectrumanalyser-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-spectrumanalyser-h.html %%DOCSDIR%%/html/demos-spectrum-app-tonegenerator-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-tonegenerator-h.html %%DOCSDIR%%/html/demos-spectrum-app-tonegeneratordialog-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-tonegeneratordialog-h.html %%DOCSDIR%%/html/demos-spectrum-app-utils-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-utils-h.html %%DOCSDIR%%/html/demos-spectrum-app-waveform-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-waveform-h.html %%DOCSDIR%%/html/demos-spectrum-app-wavfile-cpp.html %%DOCSDIR%%/html/demos-spectrum-app-wavfile-h.html %%DOCSDIR%%/html/demos-spectrum-spectrum-pro.html %%DOCSDIR%%/html/demos-spectrum.html %%DOCSDIR%%/html/demos-spreadsheet-main-cpp.html %%DOCSDIR%%/html/demos-spreadsheet-printview-cpp.html %%DOCSDIR%%/html/demos-spreadsheet-printview-h.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheet-cpp.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheet-h.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheet-pro.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheet-qrc.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheetdelegate-cpp.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheetdelegate-h.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheetitem-cpp.html %%DOCSDIR%%/html/demos-spreadsheet-spreadsheetitem-h.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-sub-attaq-animationmanager-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-animationmanager-h.html %%DOCSDIR%%/html/demos-sub-attaq-boat-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-boat-h.html %%DOCSDIR%%/html/demos-sub-attaq-boat-p-h.html %%DOCSDIR%%/html/demos-sub-attaq-bomb-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-bomb-h.html %%DOCSDIR%%/html/demos-sub-attaq-data-xml.html %%DOCSDIR%%/html/demos-sub-attaq-graphicsscene-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-graphicsscene-h.html %%DOCSDIR%%/html/demos-sub-attaq-main-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-mainwindow-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-mainwindow-h.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-background-n810-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-background-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-boat-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-bomb-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-sand-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-see-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-sky-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-sub-attaq-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-submarine-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-surface-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pics-scalable-torpedo-svg.html %%DOCSDIR%%/html/demos-sub-attaq-pixmapitem-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-pixmapitem-h.html %%DOCSDIR%%/html/demos-sub-attaq-progressitem-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-progressitem-h.html %%DOCSDIR%%/html/demos-sub-attaq-qanimationstate-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-qanimationstate-h.html %%DOCSDIR%%/html/demos-sub-attaq-states-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-states-h.html %%DOCSDIR%%/html/demos-sub-attaq-sub-attaq-pro.html %%DOCSDIR%%/html/demos-sub-attaq-subattaq-qrc.html %%DOCSDIR%%/html/demos-sub-attaq-submarine-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-submarine-h.html %%DOCSDIR%%/html/demos-sub-attaq-submarine-p-h.html %%DOCSDIR%%/html/demos-sub-attaq-textinformationitem-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-textinformationitem-h.html %%DOCSDIR%%/html/demos-sub-attaq-torpedo-cpp.html %%DOCSDIR%%/html/demos-sub-attaq-torpedo-h.html %%DOCSDIR%%/html/demos-sub-attaq.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-plugins.html %%DOCSDIR%%/html/deployment-symbian.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-editing-mode.html %%DOCSDIR%%/html/designer-layouts.html %%DOCSDIR%%/html/designer-manual.html %%DOCSDIR%%/html/designer-preview.html %%DOCSDIR%%/html/designer-quick-start.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-to-know.html %%DOCSDIR%%/html/designer-ui-file-format.html %%DOCSDIR%%/html/designer-using-a-ui-file.html %%DOCSDIR%%/html/designer-using-containers.html %%DOCSDIR%%/html/designer-using-custom-widgets.html %%DOCSDIR%%/html/designer-widget-mode.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/desktop-integration.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/developing-on-mac.html %%DOCSDIR%%/html/developing-with-qt.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-delayedencoding-delayedencoding-pro.html %%DOCSDIR%%/html/draganddrop-delayedencoding-delayedencoding-qrc.html %%DOCSDIR%%/html/draganddrop-delayedencoding-images-example-svg.html %%DOCSDIR%%/html/draganddrop-delayedencoding-main-cpp.html %%DOCSDIR%%/html/draganddrop-delayedencoding-mimedata-cpp.html %%DOCSDIR%%/html/draganddrop-delayedencoding-mimedata-h.html %%DOCSDIR%%/html/draganddrop-delayedencoding-sourcewidget-cpp.html %%DOCSDIR%%/html/draganddrop-delayedencoding-sourcewidget-h.html %%DOCSDIR%%/html/draganddrop-delayedencoding.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/ecmascript.html %%DOCSDIR%%/html/editions.html %%DOCSDIR%%/html/effects-blurpicker-blureffect-cpp.html %%DOCSDIR%%/html/effects-blurpicker-blureffect-h.html %%DOCSDIR%%/html/effects-blurpicker-blurpicker-cpp.html %%DOCSDIR%%/html/effects-blurpicker-blurpicker-h.html %%DOCSDIR%%/html/effects-blurpicker-blurpicker-pro.html %%DOCSDIR%%/html/effects-blurpicker-blurpicker-qrc.html %%DOCSDIR%%/html/effects-blurpicker-main-cpp.html %%DOCSDIR%%/html/effects-blurpicker.html %%DOCSDIR%%/html/effects-fademessage-fademessage-cpp.html %%DOCSDIR%%/html/effects-fademessage-fademessage-h.html %%DOCSDIR%%/html/effects-fademessage-fademessage-pro.html %%DOCSDIR%%/html/effects-fademessage-fademessage-qrc.html %%DOCSDIR%%/html/effects-fademessage-main-cpp.html %%DOCSDIR%%/html/effects-fademessage.html %%DOCSDIR%%/html/effects-lighting-lighting-cpp.html %%DOCSDIR%%/html/effects-lighting-lighting-h.html %%DOCSDIR%%/html/effects-lighting-lighting-pro.html %%DOCSDIR%%/html/effects-lighting-main-cpp.html %%DOCSDIR%%/html/effects-lighting.html %%DOCSDIR%%/html/embeddedlinux-support.html %%DOCSDIR%%/html/events.html %%DOCSDIR%%/html/eventsandfilters.html %%DOCSDIR%%/html/examples-activeqt.html %%DOCSDIR%%/html/examples-animation.html %%DOCSDIR%%/html/examples-dbus.html %%DOCSDIR%%/html/examples-designer.html %%DOCSDIR%%/html/examples-desktop.html %%DOCSDIR%%/html/examples-dialogs.html %%DOCSDIR%%/html/examples-draganddrop.html %%DOCSDIR%%/html/examples-embeddedlinux.html %%DOCSDIR%%/html/examples-gestures.html %%DOCSDIR%%/html/examples-graphicsview.html %%DOCSDIR%%/html/examples-helpsystem.html %%DOCSDIR%%/html/examples-ipc.html %%DOCSDIR%%/html/examples-itemviews.html %%DOCSDIR%%/html/examples-layouts.html %%DOCSDIR%%/html/examples-linguist.html %%DOCSDIR%%/html/examples-mainwindow.html +%%DOCSDIR%%/html/examples-manifest.xml %%DOCSDIR%%/html/examples-multimedia.html %%DOCSDIR%%/html/examples-network.html %%DOCSDIR%%/html/examples-opengl.html %%DOCSDIR%%/html/examples-openvg.html %%DOCSDIR%%/html/examples-painting.html %%DOCSDIR%%/html/examples-richtext.html %%DOCSDIR%%/html/examples-script.html %%DOCSDIR%%/html/examples-sql.html %%DOCSDIR%%/html/examples-statemachine.html %%DOCSDIR%%/html/examples-threadandconcurrent.html %%DOCSDIR%%/html/examples-tools.html %%DOCSDIR%%/html/examples-touch.html %%DOCSDIR%%/html/examples-uitools.html %%DOCSDIR%%/html/examples-webkit.html %%DOCSDIR%%/html/examples-widgets.html %%DOCSDIR%%/html/examples-xml.html %%DOCSDIR%%/html/exceptionsafety.html %%DOCSDIR%%/html/exportedfunctions.html %%DOCSDIR%%/html/fine-tuning-features.html %%DOCSDIR%%/html/focus.html %%DOCSDIR%%/html/functions.html %%DOCSDIR%%/html/gallery-cde.html %%DOCSDIR%%/html/gallery-cleanlooks.html %%DOCSDIR%%/html/gallery-gtk.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/gestures-imagegestures-imagegestures-pro.html %%DOCSDIR%%/html/gestures-imagegestures-imagewidget-cpp.html %%DOCSDIR%%/html/gestures-imagegestures-imagewidget-h.html %%DOCSDIR%%/html/gestures-imagegestures-main-cpp.html %%DOCSDIR%%/html/gestures-imagegestures-mainwidget-cpp.html %%DOCSDIR%%/html/gestures-imagegestures-mainwidget-h.html %%DOCSDIR%%/html/gestures-imagegestures.html %%DOCSDIR%%/html/gestures-overview.html %%DOCSDIR%%/html/gettingstarted-develop.html %%DOCSDIR%%/html/gettingstarted.html %%DOCSDIR%%/html/gettingstartedqml.html %%DOCSDIR%%/html/gettingstartedqt.html %%DOCSDIR%%/html/gpl.html %%DOCSDIR%%/html/graphicsview-anchorlayout-anchorlayout-pro.html %%DOCSDIR%%/html/graphicsview-anchorlayout-main-cpp.html %%DOCSDIR%%/html/graphicsview-anchorlayout.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-flowlayout-flowlayout-cpp.html %%DOCSDIR%%/html/graphicsview-flowlayout-flowlayout-h.html %%DOCSDIR%%/html/graphicsview-flowlayout-flowlayout-pro.html %%DOCSDIR%%/html/graphicsview-flowlayout-main-cpp.html %%DOCSDIR%%/html/graphicsview-flowlayout-window-cpp.html %%DOCSDIR%%/html/graphicsview-flowlayout-window-h.html %%DOCSDIR%%/html/graphicsview-flowlayout.html %%DOCSDIR%%/html/graphicsview-padnavigator-flippablepad-cpp.html %%DOCSDIR%%/html/graphicsview-padnavigator-flippablepad-h.html %%DOCSDIR%%/html/graphicsview-padnavigator-form-ui.html %%DOCSDIR%%/html/graphicsview-padnavigator-main-cpp.html %%DOCSDIR%%/html/graphicsview-padnavigator-padnavigator-cpp.html %%DOCSDIR%%/html/graphicsview-padnavigator-padnavigator-h.html %%DOCSDIR%%/html/graphicsview-padnavigator-padnavigator-pro.html %%DOCSDIR%%/html/graphicsview-padnavigator-padnavigator-qrc.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-simpleanchorlayout-main-cpp.html %%DOCSDIR%%/html/graphicsview-simpleanchorlayout-simpleanchorlayout-pro.html %%DOCSDIR%%/html/graphicsview-simpleanchorlayout.html %%DOCSDIR%%/html/graphicsview-weatheranchorlayout-main-cpp.html %%DOCSDIR%%/html/graphicsview-weatheranchorlayout-weatheranchorlayout-pro.html %%DOCSDIR%%/html/graphicsview-weatheranchorlayout-weatheranchorlayout-qrc.html %%DOCSDIR%%/html/graphicsview-weatheranchorlayout.html %%DOCSDIR%%/html/graphicsview.html %%DOCSDIR%%/html/groups.html %%DOCSDIR%%/html/guibooks.html %%DOCSDIR%%/html/help-contextsensitivehelp-contextsensitivehelp-pro.html %%DOCSDIR%%/html/help-contextsensitivehelp-doc-wateringmachine-qhcp.html %%DOCSDIR%%/html/help-contextsensitivehelp-doc-wateringmachine-qhp.html %%DOCSDIR%%/html/help-contextsensitivehelp-helpbrowser-cpp.html %%DOCSDIR%%/html/help-contextsensitivehelp-helpbrowser-h.html %%DOCSDIR%%/html/help-contextsensitivehelp-main-cpp.html %%DOCSDIR%%/html/help-contextsensitivehelp-wateringconfigdialog-cpp.html %%DOCSDIR%%/html/help-contextsensitivehelp-wateringconfigdialog-h.html %%DOCSDIR%%/html/help-contextsensitivehelp-wateringconfigdialog-ui.html %%DOCSDIR%%/html/help-contextsensitivehelp.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/hwacc-rendering.html -%%DOCSDIR%%/html/i18n-plural-rules.html %%DOCSDIR%%/html/i18n-source-translation.html %%DOCSDIR%%/html/i18n.html %%DOCSDIR%%/html/images/2dpainting-example.png %%DOCSDIR%%/html/images/3d-rotation-axis.png %%DOCSDIR%%/html/images/ListViewHorizontal.png %%DOCSDIR%%/html/images/abstract-connections.png %%DOCSDIR%%/html/images/accessibilityarchitecture.png %%DOCSDIR%%/html/images/accessibleobjecttree.png %%DOCSDIR%%/html/images/activeqt-examples.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/anatomy-component.png %%DOCSDIR%%/html/images/anchorchanges.png %%DOCSDIR%%/html/images/animatedimageitem.gif %%DOCSDIR%%/html/images/animatedtiles-example.png %%DOCSDIR%%/html/images/animation-examples.png %%DOCSDIR%%/html/images/animations-architecture.png %%DOCSDIR%%/html/images/anomaly-demo.png %%DOCSDIR%%/html/images/antialiased.png %%DOCSDIR%%/html/images/appchooser-example.png +%%DOCSDIR%%/html/images/appicon_packagecontents.png +%%DOCSDIR%%/html/images/appicon_screenshot.png %%DOCSDIR%%/html/images/application-menus.png %%DOCSDIR%%/html/images/application.png +%%DOCSDIR%%/html/images/arrow.png %%DOCSDIR%%/html/images/arrow_down.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-preferences-options.png %%DOCSDIR%%/html/images/assistant-search.png %%DOCSDIR%%/html/images/assistant-toolbar.png %%DOCSDIR%%/html/images/audiodevices-example.png %%DOCSDIR%%/html/images/audioinput-example.png %%DOCSDIR%%/html/images/audiooutput-example.png %%DOCSDIR%%/html/images/axisrotation.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/bearercloud-example.png %%DOCSDIR%%/html/images/bearermonitor-example.png %%DOCSDIR%%/html/images/bearings.png +%%DOCSDIR%%/html/images/bgrContent.png %%DOCSDIR%%/html/images/blockingfortuneclient-example.png +%%DOCSDIR%%/html/images/blu_dot.png %%DOCSDIR%%/html/images/blurpickereffect-example.png %%DOCSDIR%%/html/images/books-demo.png %%DOCSDIR%%/html/images/borderlayout-example.png %%DOCSDIR%%/html/images/boxes-demo.png %%DOCSDIR%%/html/images/branchindicatorimage.png %%DOCSDIR%%/html/images/breadcrumb.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/btn_next.png +%%DOCSDIR%%/html/images/btn_prev.png %%DOCSDIR%%/html/images/bullet_dn.png %%DOCSDIR%%/html/images/bullet_gt.png %%DOCSDIR%%/html/images/bullet_sq.png %%DOCSDIR%%/html/images/bullet_up.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-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/canvas_arcTo.png %%DOCSDIR%%/html/images/canvas_arcTo2.png %%DOCSDIR%%/html/images/canvas_clip-complex.png %%DOCSDIR%%/html/images/canvas_closepath.gif %%DOCSDIR%%/html/images/canvas_composite.png %%DOCSDIR%%/html/images/canvas_context.gif %%DOCSDIR%%/html/images/canvas_lineStrokeTo.gif %%DOCSDIR%%/html/images/canvas_linecap.png %%DOCSDIR%%/html/images/canvas_math.png %%DOCSDIR%%/html/images/canvas_math_rotate.png %%DOCSDIR%%/html/images/canvas_pattern.png %%DOCSDIR%%/html/images/canvas_rectangles.gif %%DOCSDIR%%/html/images/canvas_rotate.png %%DOCSDIR%%/html/images/canvas_scale.png %%DOCSDIR%%/html/images/canvas_scalex.png %%DOCSDIR%%/html/images/canvas_scaley.png %%DOCSDIR%%/html/images/canvas_skewx.png %%DOCSDIR%%/html/images/canvas_skewy.png %%DOCSDIR%%/html/images/canvas_startAngle.png %%DOCSDIR%%/html/images/canvas_text.png %%DOCSDIR%%/html/images/canvas_translate.png %%DOCSDIR%%/html/images/canvas_translatey.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/checkbox.png %%DOCSDIR%%/html/images/checkboxes-exclusive.png %%DOCSDIR%%/html/images/checkboxes-non-exclusive.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/clock.png %%DOCSDIR%%/html/images/codecs-example.png %%DOCSDIR%%/html/images/codeeditor-example.png %%DOCSDIR%%/html/images/collidingmice-example.png %%DOCSDIR%%/html/images/coloreditorfactoryimage.png %%DOCSDIR%%/html/images/columnview.png %%DOCSDIR%%/html/images/combobox.png %%DOCSDIR%%/html/images/comboboximage.png %%DOCSDIR%%/html/images/combowidgetmapper-example.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-smileysmile.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/cube.png +%%DOCSDIR%%/html/images/cube_faces.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/customtypesending-example.png %%DOCSDIR%%/html/images/customwidgetplugin-example.png %%DOCSDIR%%/html/images/datetimewidgets.png %%DOCSDIR%%/html/images/dbus-chat-example.png %%DOCSDIR%%/html/images/declarative-adv-tutorial1.png %%DOCSDIR%%/html/images/declarative-adv-tutorial2.png %%DOCSDIR%%/html/images/declarative-adv-tutorial3.png %%DOCSDIR%%/html/images/declarative-adv-tutorial4.gif %%DOCSDIR%%/html/images/declarative-anchors_example.png %%DOCSDIR%%/html/images/declarative-anchors_example2.png %%DOCSDIR%%/html/images/declarative-colors.png %%DOCSDIR%%/html/images/declarative-folderlistmodel.png %%DOCSDIR%%/html/images/declarative-item_opacity1.png %%DOCSDIR%%/html/images/declarative-item_opacity2.png %%DOCSDIR%%/html/images/declarative-item_stacking1.png %%DOCSDIR%%/html/images/declarative-item_stacking2.png %%DOCSDIR%%/html/images/declarative-item_stacking3.png %%DOCSDIR%%/html/images/declarative-item_stacking4.png %%DOCSDIR%%/html/images/declarative-nopercent.png %%DOCSDIR%%/html/images/declarative-pathattribute.png %%DOCSDIR%%/html/images/declarative-pathcubic.png %%DOCSDIR%%/html/images/declarative-pathquad.png %%DOCSDIR%%/html/images/declarative-percent.png %%DOCSDIR%%/html/images/declarative-qmlfocus1.png %%DOCSDIR%%/html/images/declarative-qmlfocus2.png %%DOCSDIR%%/html/images/declarative-qmlfocus3.png %%DOCSDIR%%/html/images/declarative-qmlfocus4.png %%DOCSDIR%%/html/images/declarative-qmlfocus5.png %%DOCSDIR%%/html/images/declarative-qtlogo-preserveaspectcrop.png %%DOCSDIR%%/html/images/declarative-qtlogo-preserveaspectfit.png %%DOCSDIR%%/html/images/declarative-qtlogo-stretch.png %%DOCSDIR%%/html/images/declarative-qtlogo-tile.png %%DOCSDIR%%/html/images/declarative-qtlogo-tilehorizontally.png %%DOCSDIR%%/html/images/declarative-qtlogo-tilevertically.png %%DOCSDIR%%/html/images/declarative-qtlogo.png %%DOCSDIR%%/html/images/declarative-rect.png %%DOCSDIR%%/html/images/declarative-rect_gradient.png %%DOCSDIR%%/html/images/declarative-rect_tint.png %%DOCSDIR%%/html/images/declarative-rotation.png %%DOCSDIR%%/html/images/declarative-samegame.png %%DOCSDIR%%/html/images/declarative-scale.png %%DOCSDIR%%/html/images/declarative-scalegrid.png %%DOCSDIR%%/html/images/declarative-text.png %%DOCSDIR%%/html/images/declarative-textedit.gif %%DOCSDIR%%/html/images/declarative-textformat.png %%DOCSDIR%%/html/images/declarative-textstyle.png %%DOCSDIR%%/html/images/declarative-transformorigin.png %%DOCSDIR%%/html/images/declarative-tutorial1.png %%DOCSDIR%%/html/images/declarative-tutorial2.png %%DOCSDIR%%/html/images/declarative-tutorial3_animation.gif %%DOCSDIR%%/html/images/defaultprototypes-example.png %%DOCSDIR%%/html/images/deform-demo.png %%DOCSDIR%%/html/images/delayedecoding-example.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-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-creating-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-english-dialog.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-french-dialog.png %%DOCSDIR%%/html/images/designer-layout-inserting.png %%DOCSDIR%%/html/images/designer-main-window.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-multiple-screenshot.png %%DOCSDIR%%/html/images/designer-object-inspector.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-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-resource-entry-button.png %%DOCSDIR%%/html/images/designer-removing-toolbar-action.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-screenshot.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-morph.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/dummy_tree.png %%DOCSDIR%%/html/images/easing-example.png %%DOCSDIR%%/html/images/echopluginexample.png %%DOCSDIR%%/html/images/edge1.png %%DOCSDIR%%/html/images/edge2.png %%DOCSDIR%%/html/images/edge3.png %%DOCSDIR%%/html/images/edge4.png %%DOCSDIR%%/html/images/edges_qml.png +%%DOCSDIR%%/html/images/editbreaklayout.png %%DOCSDIR%%/html/images/effectwidget.png %%DOCSDIR%%/html/images/elasticnodes-example.png +%%DOCSDIR%%/html/images/elidedlabel-example.png %%DOCSDIR%%/html/images/embedded-simpledecoration-example-styles.png %%DOCSDIR%%/html/images/embedded-simpledecoration-example.png %%DOCSDIR%%/html/images/embeddeddesktopservices-demo.png %%DOCSDIR%%/html/images/embeddeddialogs-demo.png %%DOCSDIR%%/html/images/embeddedsvgviewer-demo.png %%DOCSDIR%%/html/images/example_model.png %%DOCSDIR%%/html/images/extending-tutorial-chapter1.png %%DOCSDIR%%/html/images/extending-tutorial-chapter2.png %%DOCSDIR%%/html/images/extending-tutorial-chapter3.png %%DOCSDIR%%/html/images/extending-tutorial-chapter5.png %%DOCSDIR%%/html/images/extension-example.png %%DOCSDIR%%/html/images/extension_more.png %%DOCSDIR%%/html/images/factorial-example.png %%DOCSDIR%%/html/images/fademessageeffect-example-faded.png %%DOCSDIR%%/html/images/fademessageeffect-example.png %%DOCSDIR%%/html/images/fancybrowser-example.png %%DOCSDIR%%/html/images/fetchmore-example.png %%DOCSDIR%%/html/images/filedialogurls.png %%DOCSDIR%%/html/images/filetree_1-example.png %%DOCSDIR%%/html/images/filetree_2-example.png %%DOCSDIR%%/html/images/findfiles-example.png %%DOCSDIR%%/html/images/findfiles_progress_dialog.png %%DOCSDIR%%/html/images/flickable-demo.png %%DOCSDIR%%/html/images/flickable.gif %%DOCSDIR%%/html/images/flightinfo-demo.png %%DOCSDIR%%/html/images/flipable.gif %%DOCSDIR%%/html/images/flowlayout-example.png %%DOCSDIR%%/html/images/fluidlauncher-demo.png %%DOCSDIR%%/html/images/fontsampler-example.png %%DOCSDIR%%/html/images/foreignkeys.png %%DOCSDIR%%/html/images/formextractor-example.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/frozencolumn-example.png %%DOCSDIR%%/html/images/frozencolumn-tableview.png %%DOCSDIR%%/html/images/ftp-example.png %%DOCSDIR%%/html/images/geometry.png %%DOCSDIR%%/html/images/gestures.png +%%DOCSDIR%%/html/images/glhypnotizer-demo.png %%DOCSDIR%%/html/images/googlechat-example.png %%DOCSDIR%%/html/images/googlesuggest-example.png %%DOCSDIR%%/html/images/grabber-example.png %%DOCSDIR%%/html/images/gradient.png %%DOCSDIR%%/html/images/gradientText.png %%DOCSDIR%%/html/images/gradients-demo.png %%DOCSDIR%%/html/images/graphicseffect-blur.png %%DOCSDIR%%/html/images/graphicseffect-colorize.png %%DOCSDIR%%/html/images/graphicseffect-drop-shadow.png %%DOCSDIR%%/html/images/graphicseffect-opacity.png %%DOCSDIR%%/html/images/graphicseffect-plain.png %%DOCSDIR%%/html/images/graphicseffect-widget.png %%DOCSDIR%%/html/images/graphicsview-ellipseitem-pie.png %%DOCSDIR%%/html/images/graphicsview-ellipseitem.png %%DOCSDIR%%/html/images/graphicsview-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_example.png %%DOCSDIR%%/html/images/gridlayout.png %%DOCSDIR%%/html/images/gridview-highlight.png %%DOCSDIR%%/html/images/gridview-simple.png %%DOCSDIR%%/html/images/groupbox-example.png %%DOCSDIR%%/html/images/groupbox.png %%DOCSDIR%%/html/images/groupboximage.png %%DOCSDIR%%/html/images/gs1.png %%DOCSDIR%%/html/images/gs2.png %%DOCSDIR%%/html/images/gs3.png %%DOCSDIR%%/html/images/gs4.png %%DOCSDIR%%/html/images/gs5.png %%DOCSDIR%%/html/images/gtk-calendarwidget.png %%DOCSDIR%%/html/images/gtk-checkbox.png %%DOCSDIR%%/html/images/gtk-combobox.png %%DOCSDIR%%/html/images/gtk-dateedit.png %%DOCSDIR%%/html/images/gtk-datetimeedit.png %%DOCSDIR%%/html/images/gtk-dial.png %%DOCSDIR%%/html/images/gtk-doublespinbox.png %%DOCSDIR%%/html/images/gtk-fontcombobox.png %%DOCSDIR%%/html/images/gtk-frame.png %%DOCSDIR%%/html/images/gtk-groupbox.png %%DOCSDIR%%/html/images/gtk-horizontalscrollbar.png %%DOCSDIR%%/html/images/gtk-label.png %%DOCSDIR%%/html/images/gtk-lcdnumber.png %%DOCSDIR%%/html/images/gtk-lineedit.png %%DOCSDIR%%/html/images/gtk-listview.png %%DOCSDIR%%/html/images/gtk-progressbar.png %%DOCSDIR%%/html/images/gtk-pushbutton.png %%DOCSDIR%%/html/images/gtk-radiobutton.png %%DOCSDIR%%/html/images/gtk-slider.png %%DOCSDIR%%/html/images/gtk-spinbox.png %%DOCSDIR%%/html/images/gtk-tableview.png %%DOCSDIR%%/html/images/gtk-tabwidget.png %%DOCSDIR%%/html/images/gtk-textedit.png %%DOCSDIR%%/html/images/gtk-timeedit.png %%DOCSDIR%%/html/images/gtk-toolbox.png %%DOCSDIR%%/html/images/gtk-toolbutton.png %%DOCSDIR%%/html/images/gtk-treeview.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/home.png %%DOCSDIR%%/html/images/horBar.png %%DOCSDIR%%/html/images/horizontalpositioner_example.png %%DOCSDIR%%/html/images/hoverevents.png %%DOCSDIR%%/html/images/http-example.png %%DOCSDIR%%/html/images/httpstack.png %%DOCSDIR%%/html/images/i18n-example.png +%%DOCSDIR%%/html/images/ico_note.png +%%DOCSDIR%%/html/images/ico_note_attention.png +%%DOCSDIR%%/html/images/ico_out.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_qt_extended_16x16.png %%DOCSDIR%%/html/images/icons_qt_extended_17x17.png %%DOCSDIR%%/html/images/icons_qt_extended_32x32.png %%DOCSDIR%%/html/images/icons_qt_extended_33x33.png %%DOCSDIR%%/html/images/icons_qt_extended_48x48.png %%DOCSDIR%%/html/images/icons_qt_extended_64x64.png %%DOCSDIR%%/html/images/icons_qt_extended_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/imageprovider.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/inputpanel-example.png %%DOCSDIR%%/html/images/insertrowinmodelview.png %%DOCSDIR%%/html/images/interview-demo.png %%DOCSDIR%%/html/images/interview-shareddirmodel.png %%DOCSDIR%%/html/images/ipc-examples.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/layoutmirroring.png %%DOCSDIR%%/html/images/licensewizard-example.png %%DOCSDIR%%/html/images/licensewizard-flow.png %%DOCSDIR%%/html/images/lightingeffect-example.png %%DOCSDIR%%/html/images/lightmaps-demo.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-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-linguist_2.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/list_table_tree.png %%DOCSDIR%%/html/images/listmodel-nested.png %%DOCSDIR%%/html/images/listmodel.png %%DOCSDIR%%/html/images/listview-decorations.png %%DOCSDIR%%/html/images/listview-highlight.png %%DOCSDIR%%/html/images/listview-section.png %%DOCSDIR%%/html/images/listview-setup.png %%DOCSDIR%%/html/images/listview-simple.png %%DOCSDIR%%/html/images/listview.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/maemovibration-example.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/margins_qml.png %%DOCSDIR%%/html/images/mask0.png %%DOCSDIR%%/html/images/mask1.png %%DOCSDIR%%/html/images/masterdetail-example.png %%DOCSDIR%%/html/images/mdi-cascade.png %%DOCSDIR%%/html/images/mdi-example.png %%DOCSDIR%%/html/images/mdi-tile.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-combobox.png %%DOCSDIR%%/html/images/modelview-header.png %%DOCSDIR%%/html/images/modelview-models.png %%DOCSDIR%%/html/images/modelview-move-rows-1.png %%DOCSDIR%%/html/images/modelview-move-rows-2.png %%DOCSDIR%%/html/images/modelview-move-rows-3.png %%DOCSDIR%%/html/images/modelview-move-rows-4.png %%DOCSDIR%%/html/images/modelview-overview.png %%DOCSDIR%%/html/images/modelview-roles.png %%DOCSDIR%%/html/images/modelview-tablemodel.png %%DOCSDIR%%/html/images/modelview-treemodel.png %%DOCSDIR%%/html/images/modelview.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/move-blocks-chart.png %%DOCSDIR%%/html/images/moveblocks-example.png %%DOCSDIR%%/html/images/movie-example.png %%DOCSDIR%%/html/images/msgbox1.png %%DOCSDIR%%/html/images/msgbox2.png %%DOCSDIR%%/html/images/msgbox3.png %%DOCSDIR%%/html/images/msgbox4.png +%%DOCSDIR%%/html/images/multicastreceiver-example.png +%%DOCSDIR%%/html/images/multicastsender-example.png %%DOCSDIR%%/html/images/multipleinheritance-example.png %%DOCSDIR%%/html/images/musicplayer.png %%DOCSDIR%%/html/images/network-chat-example.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/orientation-landscape-ui.png +%%DOCSDIR%%/html/images/orientation-landscape.png +%%DOCSDIR%%/html/images/orientation-portrait-ui.png +%%DOCSDIR%%/html/images/orientation-portrait.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/pangesture.png %%DOCSDIR%%/html/images/parent-child-widgets.png %%DOCSDIR%%/html/images/parentchange.png %%DOCSDIR%%/html/images/particles.gif %%DOCSDIR%%/html/images/pathexample.png %%DOCSDIR%%/html/images/pathstroke-demo.png %%DOCSDIR%%/html/images/pathview.gif %%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/pinchgesture.png %%DOCSDIR%%/html/images/pingpong-example.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/platformHWAcc.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/positioner-move.gif %%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/qcameraexample.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/qcompleter.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/qeasingcurve-inback.png %%DOCSDIR%%/html/images/qeasingcurve-inbounce.png %%DOCSDIR%%/html/images/qeasingcurve-incirc.png %%DOCSDIR%%/html/images/qeasingcurve-incubic.png %%DOCSDIR%%/html/images/qeasingcurve-inelastic.png %%DOCSDIR%%/html/images/qeasingcurve-inexpo.png %%DOCSDIR%%/html/images/qeasingcurve-inoutback.png %%DOCSDIR%%/html/images/qeasingcurve-inoutbounce.png %%DOCSDIR%%/html/images/qeasingcurve-inoutcirc.png %%DOCSDIR%%/html/images/qeasingcurve-inoutcubic.png %%DOCSDIR%%/html/images/qeasingcurve-inoutelastic.png %%DOCSDIR%%/html/images/qeasingcurve-inoutexpo.png %%DOCSDIR%%/html/images/qeasingcurve-inoutquad.png %%DOCSDIR%%/html/images/qeasingcurve-inoutquart.png %%DOCSDIR%%/html/images/qeasingcurve-inoutquint.png %%DOCSDIR%%/html/images/qeasingcurve-inoutsine.png %%DOCSDIR%%/html/images/qeasingcurve-inquad.png %%DOCSDIR%%/html/images/qeasingcurve-inquart.png %%DOCSDIR%%/html/images/qeasingcurve-inquint.png %%DOCSDIR%%/html/images/qeasingcurve-insine.png %%DOCSDIR%%/html/images/qeasingcurve-linear.png %%DOCSDIR%%/html/images/qeasingcurve-outback.png %%DOCSDIR%%/html/images/qeasingcurve-outbounce.png %%DOCSDIR%%/html/images/qeasingcurve-outcirc.png %%DOCSDIR%%/html/images/qeasingcurve-outcubic.png %%DOCSDIR%%/html/images/qeasingcurve-outelastic.png %%DOCSDIR%%/html/images/qeasingcurve-outexpo.png %%DOCSDIR%%/html/images/qeasingcurve-outinback.png %%DOCSDIR%%/html/images/qeasingcurve-outinbounce.png %%DOCSDIR%%/html/images/qeasingcurve-outincirc.png %%DOCSDIR%%/html/images/qeasingcurve-outincubic.png %%DOCSDIR%%/html/images/qeasingcurve-outinelastic.png %%DOCSDIR%%/html/images/qeasingcurve-outinexpo.png %%DOCSDIR%%/html/images/qeasingcurve-outinquad.png %%DOCSDIR%%/html/images/qeasingcurve-outinquart.png %%DOCSDIR%%/html/images/qeasingcurve-outinquint.png %%DOCSDIR%%/html/images/qeasingcurve-outinsine.png %%DOCSDIR%%/html/images/qeasingcurve-outquad.png %%DOCSDIR%%/html/images/qeasingcurve-outquart.png %%DOCSDIR%%/html/images/qeasingcurve-outquint.png %%DOCSDIR%%/html/images/qeasingcurve-outsine.png %%DOCSDIR%%/html/images/qerrormessage.png %%DOCSDIR%%/html/images/qformlayout-kde.png %%DOCSDIR%%/html/images/qformlayout-mac.png %%DOCSDIR%%/html/images/qformlayout-qpe.png %%DOCSDIR%%/html/images/qformlayout-win.png %%DOCSDIR%%/html/images/qformlayout-with-6-children.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/qmacstyle.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/qmdisubwindowlayout.png %%DOCSDIR%%/html/images/qmediaplayer-demo.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/qml-abstractitemmodel-example.png %%DOCSDIR%%/html/images/qml-behaviors-example.png %%DOCSDIR%%/html/images/qml-borderimage-example.png %%DOCSDIR%%/html/images/qml-borderimage-normal-image.png %%DOCSDIR%%/html/images/qml-borderimage-scaled.png %%DOCSDIR%%/html/images/qml-borderimage-shadows-example.png %%DOCSDIR%%/html/images/qml-borderimage-tiled.png %%DOCSDIR%%/html/images/qml-calculator-example-small.png %%DOCSDIR%%/html/images/qml-calculator-example.png %%DOCSDIR%%/html/images/qml-clocks-example.png %%DOCSDIR%%/html/images/qml-coloranim-example.png %%DOCSDIR%%/html/images/qml-column.png %%DOCSDIR%%/html/images/qml-corkboards-example.png %%DOCSDIR%%/html/images/qml-dialcontrol-example.png %%DOCSDIR%%/html/images/qml-dynamicscene-example.png %%DOCSDIR%%/html/images/qml-easing-example.png %%DOCSDIR%%/html/images/qml-flickr-demo-small.png %%DOCSDIR%%/html/images/qml-flickr-demo.png %%DOCSDIR%%/html/images/qml-flipable-example.png %%DOCSDIR%%/html/images/qml-flow-snippet.png %%DOCSDIR%%/html/images/qml-flow-text1.png %%DOCSDIR%%/html/images/qml-flow-text2.png %%DOCSDIR%%/html/images/qml-focus-example.png %%DOCSDIR%%/html/images/qml-fonts-availableFonts-example.png %%DOCSDIR%%/html/images/qml-fonts-banner-example.png %%DOCSDIR%%/html/images/qml-fonts-fonts-example.png %%DOCSDIR%%/html/images/qml-fonts-hello-example.png %%DOCSDIR%%/html/images/qml-gradient.png %%DOCSDIR%%/html/images/qml-grid-no-spacing.png %%DOCSDIR%%/html/images/qml-grid-spacing.png %%DOCSDIR%%/html/images/qml-gridview-example.png %%DOCSDIR%%/html/images/qml-guitartuner-example.png %%DOCSDIR%%/html/images/qml-i18n-example.png %%DOCSDIR%%/html/images/qml-image-example.png %%DOCSDIR%%/html/images/qml-imageprovider-example.png %%DOCSDIR%%/html/images/qml-layoutitem-example.png %%DOCSDIR%%/html/images/qml-listview-dynamiclist-example.png %%DOCSDIR%%/html/images/qml-listview-expandingdelegates-example.png %%DOCSDIR%%/html/images/qml-listview-highlight-example.png %%DOCSDIR%%/html/images/qml-listview-highlightranges-example.png %%DOCSDIR%%/html/images/qml-listview-sections-example.png +%%DOCSDIR%%/html/images/qml-listview-snippet.png %%DOCSDIR%%/html/images/qml-minehunt-demo-small.png %%DOCSDIR%%/html/images/qml-minehunt-demo.png %%DOCSDIR%%/html/images/qml-mousearea-example.png %%DOCSDIR%%/html/images/qml-mousearea-snippet.png %%DOCSDIR%%/html/images/qml-objectlistmodel-example.png %%DOCSDIR%%/html/images/qml-package-example.png %%DOCSDIR%%/html/images/qml-parallax-example.png %%DOCSDIR%%/html/images/qml-pathview-example.png %%DOCSDIR%%/html/images/qml-photoviewer-demo-small.png %%DOCSDIR%%/html/images/qml-photoviewer-demo.png %%DOCSDIR%%/html/images/qml-plugins-example.png %%DOCSDIR%%/html/images/qml-positioners-example.png %%DOCSDIR%%/html/images/qml-progressbar-example.png %%DOCSDIR%%/html/images/qml-propertyanim-example.png %%DOCSDIR%%/html/images/qml-qgraphicsgridlayout-example.png %%DOCSDIR%%/html/images/qml-qgraphicslinearlayout-example.png %%DOCSDIR%%/html/images/qml-qtbubblelevel-demo.png %%DOCSDIR%%/html/images/qml-qwidgets-example.png %%DOCSDIR%%/html/images/qml-repeater-grid-index.png %%DOCSDIR%%/html/images/qml-righttoleft-layoutdirection-example.png %%DOCSDIR%%/html/images/qml-righttoleft-layoutmirroring-example.png %%DOCSDIR%%/html/images/qml-row.png %%DOCSDIR%%/html/images/qml-rssnews-demo-small.png %%DOCSDIR%%/html/images/qml-rssnews-demo.png %%DOCSDIR%%/html/images/qml-samegame-demo-small.png %%DOCSDIR%%/html/images/qml-samegame-demo.png %%DOCSDIR%%/html/images/qml-scrollbar-example.png %%DOCSDIR%%/html/images/qml-searchbox-example.png %%DOCSDIR%%/html/images/qml-shadereffects-example.png %%DOCSDIR%%/html/images/qml-slideswitch-example.png %%DOCSDIR%%/html/images/qml-snake-demo-small.png %%DOCSDIR%%/html/images/qml-snake-demo.png %%DOCSDIR%%/html/images/qml-spinner-example.png %%DOCSDIR%%/html/images/qml-states-example.png %%DOCSDIR%%/html/images/qml-stringlistmodel-example.png %%DOCSDIR%%/html/images/qml-tabwidget-example.png %%DOCSDIR%%/html/images/qml-texteditor1_button.png %%DOCSDIR%%/html/images/qml-texteditor1_editmenu.png %%DOCSDIR%%/html/images/qml-texteditor1_filemenu.png %%DOCSDIR%%/html/images/qml-texteditor1_simplebutton.png %%DOCSDIR%%/html/images/qml-texteditor2_menubar.png %%DOCSDIR%%/html/images/qml-texteditor3_texteditor.png %%DOCSDIR%%/html/images/qml-texteditor4_texteditor.png %%DOCSDIR%%/html/images/qml-texteditor5_editmenu.png %%DOCSDIR%%/html/images/qml-texteditor5_filemenu.png %%DOCSDIR%%/html/images/qml-texteditor5_newfile.png %%DOCSDIR%%/html/images/qml-textselection-example.png %%DOCSDIR%%/html/images/qml-tic-tac-toe-example.png %%DOCSDIR%%/html/images/qml-transitions-example.png %%DOCSDIR%%/html/images/qml-tvtennis-example.png %%DOCSDIR%%/html/images/qml-twitter-demo-small.png %%DOCSDIR%%/html/images/qml-twitter-demo.png %%DOCSDIR%%/html/images/qml-visualitemmodel-example.png %%DOCSDIR%%/html/images/qml-webbrowser-demo-small.png %%DOCSDIR%%/html/images/qml-webbrowser-demo.png %%DOCSDIR%%/html/images/qml-webview-alert-example.png %%DOCSDIR%%/html/images/qml-webview-autosize-example.png %%DOCSDIR%%/html/images/qml-webview-googlemaps-example.png %%DOCSDIR%%/html/images/qml-webview-inlinehtml-example.png %%DOCSDIR%%/html/images/qml-webview-newwindows-example.png %%DOCSDIR%%/html/images/qml-xmlhttprequest-example.png %%DOCSDIR%%/html/images/qml-xmllistmodel-example.png %%DOCSDIR%%/html/images/qmldesigner-visual-editor.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-dashpattern.png %%DOCSDIR%%/html/images/qpen-demo.png %%DOCSDIR%%/html/images/qpen-dot.png %%DOCSDIR%%/html/images/qpen-flat.png %%DOCSDIR%%/html/images/qpen-miter.png %%DOCSDIR%%/html/images/qpen-miterlimit.png %%DOCSDIR%%/html/images/qpen-roundcap.png %%DOCSDIR%%/html/images/qpen-roundjoin.png %%DOCSDIR%%/html/images/qpen-solid.png %%DOCSDIR%%/html/images/qpen-square.png %%DOCSDIR%%/html/images/qplastiquestyle.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-linux-architecture.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-embedded-vnc-screen.png %%DOCSDIR%%/html/images/qt-fillrule-oddeven.png %%DOCSDIR%%/html/images/qt-fillrule-winding.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/qtcreator-target-selector.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-representation.png %%DOCSDIR%%/html/images/qtransform-simpletransformation.png %%DOCSDIR%%/html/images/qtscript-calculator-example.png %%DOCSDIR%%/html/images/qtscript-context2d.png %%DOCSDIR%%/html/images/qtscript-debugger.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/queuedcustomtype-example.png %%DOCSDIR%%/html/images/quick_screens.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/qwsserver_keyboardfilter.png %%DOCSDIR%%/html/images/radialGradient.png %%DOCSDIR%%/html/images/raycasting-demo.png %%DOCSDIR%%/html/images/readonlytable_role.png %%DOCSDIR%%/html/images/recentfiles-example.png %%DOCSDIR%%/html/images/recipes-example.png %%DOCSDIR%%/html/images/rect-border-width.png %%DOCSDIR%%/html/images/rect-color.png %%DOCSDIR%%/html/images/rect-smooth.png %%DOCSDIR%%/html/images/regexp-example.png %%DOCSDIR%%/html/images/relationaltable.png %%DOCSDIR%%/html/images/relationaltablemodel-example.png %%DOCSDIR%%/html/images/remotecontrolledcar-car-example.png %%DOCSDIR%%/html/images/repeater-index.png %%DOCSDIR%%/html/images/repeater-modeldata.png %%DOCSDIR%%/html/images/repeater-simple.png %%DOCSDIR%%/html/images/repeater.png %%DOCSDIR%%/html/images/resources.png %%DOCSDIR%%/html/images/rgbController-arrangement.png %%DOCSDIR%%/html/images/rgbController-configure-connection1.png %%DOCSDIR%%/html/images/rgbController-configure-connection2.png %%DOCSDIR%%/html/images/rgbController-final-layout.png %%DOCSDIR%%/html/images/rgbController-form-gridLayout.png %%DOCSDIR%%/html/images/rgbController-no-toplevel-layout.png %%DOCSDIR%%/html/images/rgbController-property-editing.png %%DOCSDIR%%/html/images/rgbController-screenshot.png %%DOCSDIR%%/html/images/rgbController-selectForLayout.png %%DOCSDIR%%/html/images/rgbController-signalsAndSlots.png %%DOCSDIR%%/html/images/richtext-document.png %%DOCSDIR%%/html/images/richtext-examples.png %%DOCSDIR%%/html/images/rintersect.png %%DOCSDIR%%/html/images/roaming-states.png %%DOCSDIR%%/html/images/rogue-example.png %%DOCSDIR%%/html/images/rogue-statechart.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/schema-example.png %%DOCSDIR%%/html/images/scr_anim_accord.png %%DOCSDIR%%/html/images/scr_anim_demo-rotate.png %%DOCSDIR%%/html/images/scr_anim_demo-scale.png %%DOCSDIR%%/html/images/scr_anim_demo-skew.png %%DOCSDIR%%/html/images/scr_anim_gallery.png %%DOCSDIR%%/html/images/scr_anim_panel.png %%DOCSDIR%%/html/images/scr_anim_pulse.png %%DOCSDIR%%/html/images/scr_anim_skew.png %%DOCSDIR%%/html/images/scr_anim_slide1.png %%DOCSDIR%%/html/images/scr_anim_tabbedSkew.png %%DOCSDIR%%/html/images/scr_css3_backgrounds.png %%DOCSDIR%%/html/images/scr_css3_border-img.png %%DOCSDIR%%/html/images/scr_css3_grad-radial.png %%DOCSDIR%%/html/images/scr_css3_gradientBack.png %%DOCSDIR%%/html/images/scr_css3_gradientBackStop.png %%DOCSDIR%%/html/images/scr_css3_gradientButton.png %%DOCSDIR%%/html/images/scr_css3_mask-grad.png %%DOCSDIR%%/html/images/scr_css3_mask-img.png %%DOCSDIR%%/html/images/scr_css3_multicol.png %%DOCSDIR%%/html/images/scr_css3_reflect.png %%DOCSDIR%%/html/images/scr_css3_scroll.png %%DOCSDIR%%/html/images/scr_css3_sel-nth.png %%DOCSDIR%%/html/images/scr_css3_text-overflow.png %%DOCSDIR%%/html/images/scr_css3_text-shadow.png %%DOCSDIR%%/html/images/scr_css3_text-stroke.png %%DOCSDIR%%/html/images/scr_form_tapper.png %%DOCSDIR%%/html/images/scr_form_toggler.png %%DOCSDIR%%/html/images/scr_layout_link-fmt.png %%DOCSDIR%%/html/images/scr_layout_tbl-keyhole.png %%DOCSDIR%%/html/images/scr_mob_condjs.png %%DOCSDIR%%/html/images/scr_mob_layout.png %%DOCSDIR%%/html/images/scr_mob_mediaquery.png %%DOCSDIR%%/html/images/scr_storage.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/selection2.png %%DOCSDIR%%/html/images/session.png %%DOCSDIR%%/html/images/settingseditor-example.png %%DOCSDIR%%/html/images/shaderexample.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/simpleanchorlayout-example.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/spectrum-demo.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/sprites-combined.png %%DOCSDIR%%/html/images/sql-examples.png %%DOCSDIR%%/html/images/sql-widget-mapper.png %%DOCSDIR%%/html/images/sqlbrowser-demo.png %%DOCSDIR%%/html/images/standard-views.png %%DOCSDIR%%/html/images/standarddialogs-example.png %%DOCSDIR%%/html/images/standardwidget.png %%DOCSDIR%%/html/images/stardelegate.png %%DOCSDIR%%/html/images/statemachine-button-history.png %%DOCSDIR%%/html/images/statemachine-button-nested.png %%DOCSDIR%%/html/images/statemachine-button.png %%DOCSDIR%%/html/images/statemachine-customevents.png %%DOCSDIR%%/html/images/statemachine-customevents2.png %%DOCSDIR%%/html/images/statemachine-examples.png %%DOCSDIR%%/html/images/statemachine-finished.png %%DOCSDIR%%/html/images/statemachine-nonparallel.png %%DOCSDIR%%/html/images/statemachine-parallel.png %%DOCSDIR%%/html/images/states-example.png %%DOCSDIR%%/html/images/stickman-example.png %%DOCSDIR%%/html/images/stickman-example1.png %%DOCSDIR%%/html/images/stickman-example2.png %%DOCSDIR%%/html/images/stickman-example3.png %%DOCSDIR%%/html/images/stliterators1.png %%DOCSDIR%%/html/images/stringlistmodel.png %%DOCSDIR%%/html/images/styledemo-demo.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-cleanlooks.png %%DOCSDIR%%/html/images/stylesheet-coffee-xp.png %%DOCSDIR%%/html/images/stylesheet-pagefold-mac.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/sub-attaq-demo.png %%DOCSDIR%%/html/images/svg-image.png %%DOCSDIR%%/html/images/svggenerator-example.png %%DOCSDIR%%/html/images/svgviewer-example.png %%DOCSDIR%%/html/images/swipegesture.png %%DOCSDIR%%/html/images/symbian-draw-pixmap-sequence.png %%DOCSDIR%%/html/images/symbian-qt-draw-pixmap-sequence.png %%DOCSDIR%%/html/images/symbian-qt-rendering-stack-non-screenplay.png %%DOCSDIR%%/html/images/symbian-rendering-stack-non-screenplay.png +%%DOCSDIR%%/html/images/symbianvibration-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/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/tableview.png %%DOCSDIR%%/html/images/tabwidget.png %%DOCSDIR%%/html/images/taskmenuextension-dialog.png %%DOCSDIR%%/html/images/taskmenuextension-example-faded.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/textobject-example.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/thread_clock.png %%DOCSDIR%%/html/images/threadedfortuneserver-example.png %%DOCSDIR%%/html/images/threadsandobjects.png %%DOCSDIR%%/html/images/threadvisual-example.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/touch-dials-example.png %%DOCSDIR%%/html/images/touch-fingerpaint-example.png %%DOCSDIR%%/html/images/touch-knobs-example.png %%DOCSDIR%%/html/images/touch-pinchzoom-example.png %%DOCSDIR%%/html/images/trafficinfo-example.png %%DOCSDIR%%/html/images/trafficlight-example.png %%DOCSDIR%%/html/images/trafficlight-example1.png %%DOCSDIR%%/html/images/trafficlight-example2.png %%DOCSDIR%%/html/images/transformations-example.png %%DOCSDIR%%/html/images/translate.png %%DOCSDIR%%/html/images/tree_2_with_algorithm.png %%DOCSDIR%%/html/images/treemodel-structure.png %%DOCSDIR%%/html/images/treemodelcompleter-example.png %%DOCSDIR%%/html/images/treeview.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/udppackets.png %%DOCSDIR%%/html/images/uitools-examples.png %%DOCSDIR%%/html/images/undodemo.png %%DOCSDIR%%/html/images/undoframeworkexample.png %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles/images/centered.png %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles/images/ellipse.png %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles/images/figure8.png %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles/images/kinetic.png %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles/images/random.png %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles/images/tile.png %%DOCSDIR%%/html/images/used-in-examples/animation/easing/images/qt-logo.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/animation/basics/images/face-smile.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/animation/basics/images/moon.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/animation/basics/images/shadow.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/animation/basics/images/star.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/animation/basics/images/sun.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images/face-smile.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images/moon.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images/rabbit_brown.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images/rabbit_bw.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images/star.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images/sun.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images/tree_s.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/ui-components/searchbox/images/clear.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/ui-components/searchbox/images/lineedit-bg-focus.png -%%DOCSDIR%%/html/images/used-in-examples/declarative/ui-components/searchbox/images/lineedit-bg.png %%DOCSDIR%%/html/images/used-in-examples/demos/books/images/star.png %%DOCSDIR%%/html/images/used-in-examples/demos/interview/images/folder.png %%DOCSDIR%%/html/images/used-in-examples/demos/interview/images/interview.png %%DOCSDIR%%/html/images/used-in-examples/demos/interview/images/services.png %%DOCSDIR%%/html/images/used-in-examples/demos/qmediaplayer/images/screen.png %%DOCSDIR%%/html/images/used-in-examples/demos/spreadsheet/images/interview.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/logo32.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/editcopy.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/editcut.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/editpaste.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/editredo.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/editundo.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/exportpdf.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/filenew.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/fileopen.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/fileprint.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/filesave.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/textbold.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/textcenter.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/textitalic.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/textjustify.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/textleft.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/textright.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/textunder.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/zoomin.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac/zoomout.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/editcopy.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/editcut.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/editpaste.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/editredo.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/editundo.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/exportpdf.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/filenew.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/fileopen.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/fileprint.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/filesave.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/textbold.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/textcenter.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/textitalic.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/textjustify.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/textleft.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/textright.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/textunder.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/zoomin.png %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win/zoomout.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images/background.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images/banner.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images/logo1.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images/logo2.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images/logo3.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images/watermark1.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images/watermark2.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/configdialog/images/config.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/configdialog/images/query.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/configdialog/images/update.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/licensewizard/images/logo.png %%DOCSDIR%%/html/images/used-in-examples/dialogs/licensewizard/images/watermark.png %%DOCSDIR%%/html/images/used-in-examples/draganddrop/delayedencoding/images/drag.png %%DOCSDIR%%/html/images/used-in-examples/draganddrop/draggableicons/images/boat.png %%DOCSDIR%%/html/images/used-in-examples/draganddrop/draggableicons/images/car.png %%DOCSDIR%%/html/images/used-in-examples/draganddrop/draggableicons/images/house.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/accessories-calculator.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/accessories-text-editor.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/help-browser.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/internet-group-chat.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/internet-mail.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/internet-web-browser.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/office-calendar.png %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images/system-users.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/basicgraphicslayouts/images/block.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/background1.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/background2.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/background3.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/background4.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/bold.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/bringtofront.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/delete.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/floodfill.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/italic.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/linecolor.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/linepointer.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/pointer.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/sendtoback.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/textpointer.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images/underline.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/dragdroprobot/images/head.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/artsfftscope.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/kontact_contacts.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/kontact_journal.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/kontact_mail.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/kontact_notes.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/kopeteavailable.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/metacontact_online.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images/minitools.png %%DOCSDIR%%/html/images/used-in-examples/graphicsview/weatheranchorlayout/images/weather-few-clouds.png %%DOCSDIR%%/html/images/used-in-examples/itemviews/pixelator/images/qt.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application/images/copy.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application/images/cut.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application/images/new.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application/images/open.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application/images/paste.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application/images/save.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/dockwidgets/images/new.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/dockwidgets/images/print.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/dockwidgets/images/save.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/dockwidgets/images/undo.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi/images/copy.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi/images/cut.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi/images/new.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi/images/open.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi/images/paste.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi/images/save.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi/images/copy.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi/images/cut.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi/images/new.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi/images/open.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi/images/paste.png %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi/images/save.png %%DOCSDIR%%/html/images/used-in-examples/network/qftp/images/cdtoparent.png %%DOCSDIR%%/html/images/used-in-examples/network/qftp/images/dir.png %%DOCSDIR%%/html/images/used-in-examples/network/qftp/images/file.png %%DOCSDIR%%/html/images/used-in-examples/opengl/textures/images/side1.png %%DOCSDIR%%/html/images/used-in-examples/opengl/textures/images/side2.png %%DOCSDIR%%/html/images/used-in-examples/opengl/textures/images/side3.png %%DOCSDIR%%/html/images/used-in-examples/opengl/textures/images/side4.png %%DOCSDIR%%/html/images/used-in-examples/opengl/textures/images/side5.png %%DOCSDIR%%/html/images/used-in-examples/opengl/textures/images/side6.png %%DOCSDIR%%/html/images/used-in-examples/painting/basicdrawing/images/brick.png %%DOCSDIR%%/html/images/used-in-examples/painting/basicdrawing/images/qt-logo.png %%DOCSDIR%%/html/images/used-in-examples/painting/imagecomposition/images/background.png %%DOCSDIR%%/html/images/used-in-examples/painting/imagecomposition/images/blackrectangle.png %%DOCSDIR%%/html/images/used-in-examples/painting/imagecomposition/images/butterfly.png %%DOCSDIR%%/html/images/used-in-examples/painting/imagecomposition/images/checker.png %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown/images/beijing.png %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown/images/berlin.png %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown/images/brisbane.png %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown/images/munich.png %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown/images/oslo.png %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown/images/redwood.png %%DOCSDIR%%/html/images/used-in-examples/sql/masterdetail/images/icon.png %%DOCSDIR%%/html/images/used-in-examples/sql/masterdetail/images/image.png %%DOCSDIR%%/html/images/used-in-examples/tools/undoframework/images/cross.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/designer.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/find_disabled.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/find_normal.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_off_128x128.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_off_16x16.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_off_32x32.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_off_64x64.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_on_128x128.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_on_16x16.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_on_32x32.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/monkey_on_64x64.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/qt_extended_16x16.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/qt_extended_32x32.png %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images/qt_extended_48x48.png %%DOCSDIR%%/html/images/used-in-examples/widgets/styles/images/woodbackground.png %%DOCSDIR%%/html/images/used-in-examples/widgets/styles/images/woodbutton.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/checkbox_checked.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/checkbox_checked_hover.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/checkbox_checked_pressed.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked_hover.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/checkbox_unchecked_pressed.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/down_arrow.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/down_arrow_disabled.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/frame.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/pagefold.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/pushbutton.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/pushbutton_hover.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/pushbutton_pressed.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked_hover.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/radiobutton_checked_pressed.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked_hover.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/radiobutton_unchecked_pressed.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/sizegrip.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spindown.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spindown_hover.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spindown_off.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spindown_pressed.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spinup.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spinup_hover.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spinup_off.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/spinup_pressed.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/up_arrow.png %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images/up_arrow_disabled.png %%DOCSDIR%%/html/images/used-in-examples/widgets/tooltips/images/circle.png %%DOCSDIR%%/html/images/used-in-examples/widgets/tooltips/images/square.png %%DOCSDIR%%/html/images/used-in-examples/widgets/tooltips/images/triangle.png %%DOCSDIR%%/html/images/verticalpositioner_example.png %%DOCSDIR%%/html/images/verticalpositioner_transition.gif %%DOCSDIR%%/html/images/video-videographicsitem.png %%DOCSDIR%%/html/images/video-videowidget.png %%DOCSDIR%%/html/images/visualitemmodel.png %%DOCSDIR%%/html/images/wVista-Cert-border-small.png %%DOCSDIR%%/html/images/weatherinfo-demo.png %%DOCSDIR%%/html/images/webkit-domtraversal.png %%DOCSDIR%%/html/images/webkit-examples.png %%DOCSDIR%%/html/images/webkit-imageanalyzer-complete.png %%DOCSDIR%%/html/images/webkit-imageanalyzer-progress.png %%DOCSDIR%%/html/images/webkit-imageanalyzer-screenshot.png %%DOCSDIR%%/html/images/webkit-simpleselector.png +%%DOCSDIR%%/html/images/webkit-webftpclient.png +%%DOCSDIR%%/html/images/webkit-webplugin.png %%DOCSDIR%%/html/images/webview.png %%DOCSDIR%%/html/images/whatsnewanimatedtiles.png %%DOCSDIR%%/html/images/whatsthis.png %%DOCSDIR%%/html/images/widget-examples.png %%DOCSDIR%%/html/images/widgetdelegate.png %%DOCSDIR%%/html/images/widgetmapper-combo-mapping.png %%DOCSDIR%%/html/images/widgetmapper-simple-mapping.png %%DOCSDIR%%/html/images/widgetmapper-sql-mapping-table.png %%DOCSDIR%%/html/images/widgetmapper-sql-mapping.png %%DOCSDIR%%/html/images/widgetmapper.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/xml-schema.png %%DOCSDIR%%/html/images/xmlstreamexample-filemenu.png %%DOCSDIR%%/html/images/xmlstreamexample-helpmenu.png %%DOCSDIR%%/html/images/xmlstreamexample-screenshot.png %%DOCSDIR%%/html/implicit-sharing.html %%DOCSDIR%%/html/index.html %%DOCSDIR%%/html/install-mac.html %%DOCSDIR%%/html/install-symbian-installer.html %%DOCSDIR%%/html/install-symbian-linux.html %%DOCSDIR%%/html/install-symbian.html %%DOCSDIR%%/html/install-win.html %%DOCSDIR%%/html/install-wince.html %%DOCSDIR%%/html/install-x11.html %%DOCSDIR%%/html/installation.html %%DOCSDIR%%/html/internationalization.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-combowidgetmapper-combowidgetmapper-pro.html %%DOCSDIR%%/html/itemviews-combowidgetmapper-main-cpp.html %%DOCSDIR%%/html/itemviews-combowidgetmapper-window-cpp.html %%DOCSDIR%%/html/itemviews-combowidgetmapper-window-h.html %%DOCSDIR%%/html/itemviews-combowidgetmapper.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-fetchmore-fetchmore-pro.html %%DOCSDIR%%/html/itemviews-fetchmore-filelistmodel-cpp.html %%DOCSDIR%%/html/itemviews-fetchmore-filelistmodel-h.html %%DOCSDIR%%/html/itemviews-fetchmore-main-cpp.html %%DOCSDIR%%/html/itemviews-fetchmore-window-cpp.html %%DOCSDIR%%/html/itemviews-fetchmore-window-h.html %%DOCSDIR%%/html/itemviews-fetchmore.html %%DOCSDIR%%/html/itemviews-frozencolumn-freezetablewidget-cpp.html %%DOCSDIR%%/html/itemviews-frozencolumn-freezetablewidget-h.html %%DOCSDIR%%/html/itemviews-frozencolumn-frozencolumn-pro.html %%DOCSDIR%%/html/itemviews-frozencolumn-grades-qrc.html %%DOCSDIR%%/html/itemviews-frozencolumn-main-cpp.html %%DOCSDIR%%/html/itemviews-frozencolumn.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/legal-easing.html %%DOCSDIR%%/html/lgpl.html %%DOCSDIR%%/html/licenses-fonts.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/linuxx11-support.html %%DOCSDIR%%/html/mac-differences.html %%DOCSDIR%%/html/mac-support.html -%%DOCSDIR%%/html/maemo-support.html %%DOCSDIR%%/html/mainwindow-classes.html %%DOCSDIR%%/html/mainwindow.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/meego-support.html %%DOCSDIR%%/html/metaobjects.html %%DOCSDIR%%/html/moc.html %%DOCSDIR%%/html/model-view-programming.html %%DOCSDIR%%/html/model-view.html %%DOCSDIR%%/html/modelview-part2-main-cpp.html %%DOCSDIR%%/html/modelview.html %%DOCSDIR%%/html/modules.html %%DOCSDIR%%/html/mouseevents.html %%DOCSDIR%%/html/multimedia-audiodevices-audiodevices-cpp.html %%DOCSDIR%%/html/multimedia-audiodevices-audiodevices-h.html %%DOCSDIR%%/html/multimedia-audiodevices-audiodevices-pro.html %%DOCSDIR%%/html/multimedia-audiodevices-audiodevicesbase-ui.html %%DOCSDIR%%/html/multimedia-audiodevices-main-cpp.html %%DOCSDIR%%/html/multimedia-audiodevices.html %%DOCSDIR%%/html/multimedia-audioinput-audioinput-cpp.html %%DOCSDIR%%/html/multimedia-audioinput-audioinput-h.html %%DOCSDIR%%/html/multimedia-audioinput-audioinput-pro.html %%DOCSDIR%%/html/multimedia-audioinput-main-cpp.html %%DOCSDIR%%/html/multimedia-audioinput.html %%DOCSDIR%%/html/multimedia-audiooutput-audiooutput-cpp.html %%DOCSDIR%%/html/multimedia-audiooutput-audiooutput-h.html %%DOCSDIR%%/html/multimedia-audiooutput-audiooutput-pro.html %%DOCSDIR%%/html/multimedia-audiooutput-main-cpp.html %%DOCSDIR%%/html/multimedia-audiooutput.html %%DOCSDIR%%/html/multimedia-videographicsitem-main-cpp.html %%DOCSDIR%%/html/multimedia-videographicsitem-videographicsitem-pro.html %%DOCSDIR%%/html/multimedia-videographicsitem-videoitem-cpp.html %%DOCSDIR%%/html/multimedia-videographicsitem-videoitem-h.html %%DOCSDIR%%/html/multimedia-videographicsitem-videoplayer-cpp.html %%DOCSDIR%%/html/multimedia-videographicsitem-videoplayer-h.html %%DOCSDIR%%/html/multimedia-videographicsitem.html %%DOCSDIR%%/html/multimedia-videowidget-main-cpp.html %%DOCSDIR%%/html/multimedia-videowidget-videoplayer-cpp.html %%DOCSDIR%%/html/multimedia-videowidget-videoplayer-h.html %%DOCSDIR%%/html/multimedia-videowidget-videowidget-cpp.html %%DOCSDIR%%/html/multimedia-videowidget-videowidget-h.html %%DOCSDIR%%/html/multimedia-videowidget-videowidget-pro.html %%DOCSDIR%%/html/multimedia-videowidget-videowidgetsurface-cpp.html %%DOCSDIR%%/html/multimedia-videowidget-videowidgetsurface-h.html %%DOCSDIR%%/html/multimedia-videowidget.html %%DOCSDIR%%/html/namespaces.html %%DOCSDIR%%/html/network-bearercloud-bearercloud-cpp.html %%DOCSDIR%%/html/network-bearercloud-bearercloud-h.html %%DOCSDIR%%/html/network-bearercloud-bearercloud-pro.html %%DOCSDIR%%/html/network-bearercloud-bluetooth-svg.html %%DOCSDIR%%/html/network-bearercloud-cell-svg.html %%DOCSDIR%%/html/network-bearercloud-cloud-cpp.html %%DOCSDIR%%/html/network-bearercloud-cloud-h.html %%DOCSDIR%%/html/network-bearercloud-gprs-svg.html %%DOCSDIR%%/html/network-bearercloud-icons-qrc.html %%DOCSDIR%%/html/network-bearercloud-lan-svg.html %%DOCSDIR%%/html/network-bearercloud-main-cpp.html %%DOCSDIR%%/html/network-bearercloud-umts-svg.html %%DOCSDIR%%/html/network-bearercloud-unknown-svg.html %%DOCSDIR%%/html/network-bearercloud-wlan-svg.html %%DOCSDIR%%/html/network-bearercloud.html %%DOCSDIR%%/html/network-bearermonitor-bearermonitor-240-320-ui.html %%DOCSDIR%%/html/network-bearermonitor-bearermonitor-640-480-ui.html %%DOCSDIR%%/html/network-bearermonitor-bearermonitor-cpp.html %%DOCSDIR%%/html/network-bearermonitor-bearermonitor-h.html %%DOCSDIR%%/html/network-bearermonitor-bearermonitor-maemo-ui.html %%DOCSDIR%%/html/network-bearermonitor-bearermonitor-pro.html %%DOCSDIR%%/html/network-bearermonitor-main-cpp.html %%DOCSDIR%%/html/network-bearermonitor-sessionwidget-cpp.html %%DOCSDIR%%/html/network-bearermonitor-sessionwidget-h.html %%DOCSDIR%%/html/network-bearermonitor-sessionwidget-maemo-ui.html %%DOCSDIR%%/html/network-bearermonitor-sessionwidget-ui.html %%DOCSDIR%%/html/network-bearermonitor.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-download-download-pro.html %%DOCSDIR%%/html/network-download-main-cpp.html %%DOCSDIR%%/html/network-download.html %%DOCSDIR%%/html/network-downloadmanager-downloadmanager-cpp.html %%DOCSDIR%%/html/network-downloadmanager-downloadmanager-h.html %%DOCSDIR%%/html/network-downloadmanager-downloadmanager-pro.html %%DOCSDIR%%/html/network-downloadmanager-main-cpp.html %%DOCSDIR%%/html/network-downloadmanager-textprogressbar-cpp.html %%DOCSDIR%%/html/network-downloadmanager-textprogressbar-h.html %%DOCSDIR%%/html/network-downloadmanager.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-googlesuggest-googlesuggest-cpp.html %%DOCSDIR%%/html/network-googlesuggest-googlesuggest-h.html %%DOCSDIR%%/html/network-googlesuggest-googlesuggest-pro.html %%DOCSDIR%%/html/network-googlesuggest-main-cpp.html %%DOCSDIR%%/html/network-googlesuggest-searchbox-cpp.html %%DOCSDIR%%/html/network-googlesuggest-searchbox-h.html %%DOCSDIR%%/html/network-googlesuggest.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-multicastreceiver-main-cpp.html +%%DOCSDIR%%/html/network-multicastreceiver-multicastreceiver-pro.html +%%DOCSDIR%%/html/network-multicastreceiver-receiver-cpp.html +%%DOCSDIR%%/html/network-multicastreceiver-receiver-h.html +%%DOCSDIR%%/html/network-multicastreceiver.html +%%DOCSDIR%%/html/network-multicastsender-main-cpp.html +%%DOCSDIR%%/html/network-multicastsender-multicastsender-pro.html +%%DOCSDIR%%/html/network-multicastsender-sender-cpp.html +%%DOCSDIR%%/html/network-multicastsender-sender-h.html +%%DOCSDIR%%/html/network-multicastsender.html %%DOCSDIR%%/html/network-network-chat-chatdialog-cpp.html %%DOCSDIR%%/html/network-network-chat-chatdialog-h.html %%DOCSDIR%%/html/network-network-chat-chatdialog-ui.html %%DOCSDIR%%/html/network-network-chat-client-cpp.html %%DOCSDIR%%/html/network-network-chat-client-h.html %%DOCSDIR%%/html/network-network-chat-connection-cpp.html %%DOCSDIR%%/html/network-network-chat-connection-h.html %%DOCSDIR%%/html/network-network-chat-main-cpp.html %%DOCSDIR%%/html/network-network-chat-network-chat-pro.html %%DOCSDIR%%/html/network-network-chat-peermanager-cpp.html %%DOCSDIR%%/html/network-network-chat-peermanager-h.html %%DOCSDIR%%/html/network-network-chat-server-cpp.html %%DOCSDIR%%/html/network-network-chat-server-h.html %%DOCSDIR%%/html/network-network-chat.html %%DOCSDIR%%/html/network-programming.html %%DOCSDIR%%/html/network-qftp-ftp-qrc.html %%DOCSDIR%%/html/network-qftp-ftpwindow-cpp.html %%DOCSDIR%%/html/network-qftp-ftpwindow-h.html %%DOCSDIR%%/html/network-qftp-main-cpp.html %%DOCSDIR%%/html/network-qftp-qftp-pro.html %%DOCSDIR%%/html/network-qftp.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-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/network.html %%DOCSDIR%%/html/object.html %%DOCSDIR%%/html/objecttrees.html %%DOCSDIR%%/html/obsoleteclasses.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-cube-cube-pro.html +%%DOCSDIR%%/html/opengl-cube-geometryengine-cpp.html +%%DOCSDIR%%/html/opengl-cube-geometryengine-h.html +%%DOCSDIR%%/html/opengl-cube-main-cpp.html +%%DOCSDIR%%/html/opengl-cube-mainwidget-cpp.html +%%DOCSDIR%%/html/opengl-cube-mainwidget-h.html +%%DOCSDIR%%/html/opengl-cube-shaders-qrc.html +%%DOCSDIR%%/html/opengl-cube-textures-qrc.html +%%DOCSDIR%%/html/opengl-cube.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-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-cube-cpp.html %%DOCSDIR%%/html/opengl-pbuffers-cube-h.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/openvg-star-main-cpp.html %%DOCSDIR%%/html/openvg-star-star-pro.html %%DOCSDIR%%/html/openvg-star-starwidget-cpp.html %%DOCSDIR%%/html/openvg-star-starwidget-h.html %%DOCSDIR%%/html/openvg-star.html %%DOCSDIR%%/html/openvg.html %%DOCSDIR%%/html/organizers.html %%DOCSDIR%%/html/overviews.html %%DOCSDIR%%/html/painting-3d.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-svggenerator-displaywidget-cpp.html %%DOCSDIR%%/html/painting-svggenerator-displaywidget-h.html %%DOCSDIR%%/html/painting-svggenerator-forms-window-ui.html %%DOCSDIR%%/html/painting-svggenerator-main-cpp.html %%DOCSDIR%%/html/painting-svggenerator-svggenerator-pro.html %%DOCSDIR%%/html/painting-svggenerator-svggenerator-qrc.html %%DOCSDIR%%/html/painting-svggenerator-window-cpp.html %%DOCSDIR%%/html/painting-svggenerator-window-h.html %%DOCSDIR%%/html/painting-svggenerator.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.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/painting.html %%DOCSDIR%%/html/paintsystem-devices.html %%DOCSDIR%%/html/paintsystem-drawing.html %%DOCSDIR%%/html/paintsystem-images.html %%DOCSDIR%%/html/paintsystem-styling.html %%DOCSDIR%%/html/paintsystem.html %%DOCSDIR%%/html/pdf-licensing.html %%DOCSDIR%%/html/phonon-audiodataoutput-members.html %%DOCSDIR%%/html/phonon-audiodataoutput.html -%%DOCSDIR%%/html/phonon-audiodataoutputinterface-members.html -%%DOCSDIR%%/html/phonon-audiodataoutputinterface.html -%%DOCSDIR%%/html/phonon-audiodataoutputprivate-members.html -%%DOCSDIR%%/html/phonon-audiodataoutputprivate.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-globalconfigprivate-members.html -%%DOCSDIR%%/html/phonon-globalconfigprivate.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-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-qmusicplayer-main-cpp.html %%DOCSDIR%%/html/phonon-qmusicplayer-mainwindow-cpp.html %%DOCSDIR%%/html/phonon-qmusicplayer-mainwindow-h.html %%DOCSDIR%%/html/phonon-qmusicplayer-qmusicplayer-pro.html %%DOCSDIR%%/html/phonon-qmusicplayer.html %%DOCSDIR%%/html/phonon-seekslider-members.html %%DOCSDIR%%/html/phonon-seekslider.html -%%DOCSDIR%%/html/phonon-swiftslider-members.html -%%DOCSDIR%%/html/phonon-swiftslider.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-videowidgetinterface44-members.html %%DOCSDIR%%/html/phonon-videowidgetinterface44.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-qnx.html %%DOCSDIR%%/html/platform-notes-symbian.html -%%DOCSDIR%%/html/platform-notes-vxworks.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/platform-specific.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/propertybinding.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-mailserver-members.html %%DOCSDIR%%/html/q3dns-mailserver.html %%DOCSDIR%%/html/q3dns-members.html %%DOCSDIR%%/html/q3dns-server-members.html %%DOCSDIR%%/html/q3dns-server.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/qabstractanimation-members.html %%DOCSDIR%%/html/qabstractanimation.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/qabstractfontengine-fixedpoint-members.html %%DOCSDIR%%/html/qabstractfontengine-fixedpoint.html %%DOCSDIR%%/html/qabstractfontengine-glyphmetrics-members.html %%DOCSDIR%%/html/qabstractfontengine-glyphmetrics.html %%DOCSDIR%%/html/qabstractfontengine-members.html %%DOCSDIR%%/html/qabstractfontengine.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/qabstractnetworkcache-members.html %%DOCSDIR%%/html/qabstractnetworkcache.html %%DOCSDIR%%/html/qabstractprintdialog-members.html %%DOCSDIR%%/html/qabstractprintdialog-obsolete.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/qabstractstate-members.html %%DOCSDIR%%/html/qabstractstate.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/qabstracttransition-members.html %%DOCSDIR%%/html/qabstracttransition.html %%DOCSDIR%%/html/qabstracturiresolver-members.html %%DOCSDIR%%/html/qabstracturiresolver.html %%DOCSDIR%%/html/qabstractvideobuffer-members.html %%DOCSDIR%%/html/qabstractvideobuffer.html %%DOCSDIR%%/html/qabstractvideosurface-members.html %%DOCSDIR%%/html/qabstractvideosurface.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/qanimationgroup-members.html %%DOCSDIR%%/html/qanimationgroup.html %%DOCSDIR%%/html/qapplication-members.html %%DOCSDIR%%/html/qapplication-qt3.html %%DOCSDIR%%/html/qapplication.html %%DOCSDIR%%/html/qatomicint-members.html %%DOCSDIR%%/html/qatomicint.html %%DOCSDIR%%/html/qatomicpointer-members.html %%DOCSDIR%%/html/qatomicpointer.html %%DOCSDIR%%/html/qaudio.html %%DOCSDIR%%/html/qaudiodeviceinfo-members.html %%DOCSDIR%%/html/qaudiodeviceinfo-obsolete.html %%DOCSDIR%%/html/qaudiodeviceinfo.html %%DOCSDIR%%/html/qaudioformat-members.html %%DOCSDIR%%/html/qaudioformat-obsolete.html %%DOCSDIR%%/html/qaudioformat.html %%DOCSDIR%%/html/qaudioinput-members.html %%DOCSDIR%%/html/qaudioinput.html %%DOCSDIR%%/html/qaudiooutput-members.html %%DOCSDIR%%/html/qaudiooutput.html %%DOCSDIR%%/html/qauthenticator-members.html %%DOCSDIR%%/html/qauthenticator.html %%DOCSDIR%%/html/qaxaggregated-members.html %%DOCSDIR%%/html/qaxaggregated.html %%DOCSDIR%%/html/qaxbase-members.html %%DOCSDIR%%/html/qaxbase.html %%DOCSDIR%%/html/qaxbindable-members.html %%DOCSDIR%%/html/qaxbindable.html %%DOCSDIR%%/html/qaxcontainer.html %%DOCSDIR%%/html/qaxfactory-members.html %%DOCSDIR%%/html/qaxfactory.html %%DOCSDIR%%/html/qaxobject-members.html %%DOCSDIR%%/html/qaxobject.html %%DOCSDIR%%/html/qaxscript-members.html %%DOCSDIR%%/html/qaxscript.html %%DOCSDIR%%/html/qaxscriptengine-members.html %%DOCSDIR%%/html/qaxscriptengine.html %%DOCSDIR%%/html/qaxscriptmanager-members.html %%DOCSDIR%%/html/qaxscriptmanager.html %%DOCSDIR%%/html/qaxserver-demo-hierarchy.html %%DOCSDIR%%/html/qaxserver-demo-menus.html %%DOCSDIR%%/html/qaxserver-demo-multiple.html %%DOCSDIR%%/html/qaxserver-demo-opengl.html %%DOCSDIR%%/html/qaxserver-demo-simple.html %%DOCSDIR%%/html/qaxserver-demo-wrapper.html %%DOCSDIR%%/html/qaxserver.html %%DOCSDIR%%/html/qaxwidget-members.html %%DOCSDIR%%/html/qaxwidget.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-obsolete.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-obsolete.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/qcontiguouscache-members.html %%DOCSDIR%%/html/qcontiguouscache.html %%DOCSDIR%%/html/qcopchannel-members.html %%DOCSDIR%%/html/qcopchannel-qt3.html %%DOCSDIR%%/html/qcopchannel.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/qdbuspendingcall-members.html %%DOCSDIR%%/html/qdbuspendingcall.html %%DOCSDIR%%/html/qdbuspendingcallwatcher-members.html %%DOCSDIR%%/html/qdbuspendingcallwatcher.html %%DOCSDIR%%/html/qdbuspendingreply-members.html %%DOCSDIR%%/html/qdbuspendingreply.html %%DOCSDIR%%/html/qdbusreply-members.html %%DOCSDIR%%/html/qdbusreply.html %%DOCSDIR%%/html/qdbusservicewatcher-members.html %%DOCSDIR%%/html/qdbusservicewatcher.html %%DOCSDIR%%/html/qdbussignature-members.html %%DOCSDIR%%/html/qdbussignature.html %%DOCSDIR%%/html/qdbustypesystem.html +%%DOCSDIR%%/html/qdbusunixfiledescriptor-members.html +%%DOCSDIR%%/html/qdbusunixfiledescriptor.html %%DOCSDIR%%/html/qdbusvariant-members.html %%DOCSDIR%%/html/qdbusvariant.html %%DOCSDIR%%/html/qdbusviewer.html %%DOCSDIR%%/html/qdbusxml2cpp.html %%DOCSDIR%%/html/qdebug-members.html %%DOCSDIR%%/html/qdebug.html %%DOCSDIR%%/html/qdeclarativeanimation.html %%DOCSDIR%%/html/qdeclarativebasictypes.html %%DOCSDIR%%/html/qdeclarativecomponent-members.html %%DOCSDIR%%/html/qdeclarativecomponent.html %%DOCSDIR%%/html/qdeclarativecontext-members.html %%DOCSDIR%%/html/qdeclarativecontext.html %%DOCSDIR%%/html/qdeclarativedebugging.html %%DOCSDIR%%/html/qdeclarativedocuments.html %%DOCSDIR%%/html/qdeclarativedynamicobjects.html %%DOCSDIR%%/html/qdeclarativeelements.html %%DOCSDIR%%/html/qdeclarativeengine-members.html %%DOCSDIR%%/html/qdeclarativeengine.html %%DOCSDIR%%/html/qdeclarativeerror-members.html %%DOCSDIR%%/html/qdeclarativeerror.html %%DOCSDIR%%/html/qdeclarativeexamples.html %%DOCSDIR%%/html/qdeclarativeexampletoggleswitch.html %%DOCSDIR%%/html/qdeclarativeexpression-members.html %%DOCSDIR%%/html/qdeclarativeexpression.html %%DOCSDIR%%/html/qdeclarativeextensionplugin-members.html %%DOCSDIR%%/html/qdeclarativeextensionplugin.html %%DOCSDIR%%/html/qdeclarativefocus.html %%DOCSDIR%%/html/qdeclarativeglobalobject.html %%DOCSDIR%%/html/qdeclarativei18n.html %%DOCSDIR%%/html/qdeclarativeimageprovider-members.html %%DOCSDIR%%/html/qdeclarativeimageprovider.html %%DOCSDIR%%/html/qdeclarativeintroduction.html %%DOCSDIR%%/html/qdeclarativeitem-members.html %%DOCSDIR%%/html/qdeclarativeitem.html %%DOCSDIR%%/html/qdeclarativejavascript.html %%DOCSDIR%%/html/qdeclarativelistproperty-members.html %%DOCSDIR%%/html/qdeclarativelistproperty.html %%DOCSDIR%%/html/qdeclarativelistreference-members.html %%DOCSDIR%%/html/qdeclarativelistreference.html %%DOCSDIR%%/html/qdeclarativemodels.html %%DOCSDIR%%/html/qdeclarativemodules.html %%DOCSDIR%%/html/qdeclarativenetwork.html %%DOCSDIR%%/html/qdeclarativenetworkaccessmanagerfactory-members.html %%DOCSDIR%%/html/qdeclarativenetworkaccessmanagerfactory.html %%DOCSDIR%%/html/qdeclarativeparserstatus-members.html %%DOCSDIR%%/html/qdeclarativeparserstatus.html %%DOCSDIR%%/html/qdeclarativeperformance.html %%DOCSDIR%%/html/qdeclarativeproperty-members.html %%DOCSDIR%%/html/qdeclarativeproperty.html %%DOCSDIR%%/html/qdeclarativepropertymap-members.html %%DOCSDIR%%/html/qdeclarativepropertymap.html %%DOCSDIR%%/html/qdeclarativepropertyvaluesource-members.html %%DOCSDIR%%/html/qdeclarativepropertyvaluesource.html %%DOCSDIR%%/html/qdeclarativescope.html %%DOCSDIR%%/html/qdeclarativescriptstring-members.html %%DOCSDIR%%/html/qdeclarativescriptstring.html %%DOCSDIR%%/html/qdeclarativesecurity.html %%DOCSDIR%%/html/qdeclarativestates.html -%%DOCSDIR%%/html/qdeclarativetypeloader-members.html -%%DOCSDIR%%/html/qdeclarativetypeloader.html %%DOCSDIR%%/html/qdeclarativeview-members.html %%DOCSDIR%%/html/qdeclarativeview.html %%DOCSDIR%%/html/qdecoration-members.html %%DOCSDIR%%/html/qdecoration.html %%DOCSDIR%%/html/qdecorationdefault-members.html %%DOCSDIR%%/html/qdecorationdefault.html %%DOCSDIR%%/html/qdecorationfactory-members.html %%DOCSDIR%%/html/qdecorationfactory.html %%DOCSDIR%%/html/qdecorationplugin-members.html %%DOCSDIR%%/html/qdecorationplugin.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-obsolete.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/qdirectpainter-members.html %%DOCSDIR%%/html/qdirectpainter-obsolete.html %%DOCSDIR%%/html/qdirectpainter.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/qdrawutil-h.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/qeasingcurve-members.html %%DOCSDIR%%/html/qeasingcurve.html %%DOCSDIR%%/html/qelapsedtimer-members.html %%DOCSDIR%%/html/qelapsedtimer.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/qeventtransition-members.html %%DOCSDIR%%/html/qeventtransition.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-obsolete.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/qfinalstate-members.html %%DOCSDIR%%/html/qfinalstate.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/qfontengineinfo-members.html %%DOCSDIR%%/html/qfontengineinfo.html %%DOCSDIR%%/html/qfontengineplugin-members.html %%DOCSDIR%%/html/qfontengineplugin.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/qgenericmatrix-members.html %%DOCSDIR%%/html/qgenericmatrix.html +%%DOCSDIR%%/html/qgenericplugin-members.html +%%DOCSDIR%%/html/qgenericplugin.html +%%DOCSDIR%%/html/qgenericpluginfactory-members.html +%%DOCSDIR%%/html/qgenericpluginfactory.html %%DOCSDIR%%/html/qgenericreturnargument-members.html %%DOCSDIR%%/html/qgenericreturnargument.html %%DOCSDIR%%/html/qgesture-members.html %%DOCSDIR%%/html/qgesture.html %%DOCSDIR%%/html/qgestureevent-members.html %%DOCSDIR%%/html/qgestureevent.html %%DOCSDIR%%/html/qgesturerecognizer-members.html %%DOCSDIR%%/html/qgesturerecognizer.html %%DOCSDIR%%/html/qgl.html %%DOCSDIR%%/html/qglbuffer-members.html %%DOCSDIR%%/html/qglbuffer.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/qglframebufferobjectformat-members.html %%DOCSDIR%%/html/qglframebufferobjectformat.html +%%DOCSDIR%%/html/qglfunctions-members.html +%%DOCSDIR%%/html/qglfunctions.html %%DOCSDIR%%/html/qglpixelbuffer-members.html %%DOCSDIR%%/html/qglpixelbuffer.html %%DOCSDIR%%/html/qglshader-members.html %%DOCSDIR%%/html/qglshader.html %%DOCSDIR%%/html/qglshaderprogram-members.html %%DOCSDIR%%/html/qglshaderprogram.html %%DOCSDIR%%/html/qglwidget-members.html %%DOCSDIR%%/html/qglwidget-obsolete.html %%DOCSDIR%%/html/qglwidget-qt3.html %%DOCSDIR%%/html/qglwidget.html +%%DOCSDIR%%/html/qglyphrun-members.html +%%DOCSDIR%%/html/qglyphrun.html %%DOCSDIR%%/html/qgradient-members.html %%DOCSDIR%%/html/qgradient.html %%DOCSDIR%%/html/qgraphicsanchor-members.html %%DOCSDIR%%/html/qgraphicsanchor.html %%DOCSDIR%%/html/qgraphicsanchorlayout-members.html %%DOCSDIR%%/html/qgraphicsanchorlayout.html %%DOCSDIR%%/html/qgraphicsblureffect-members.html %%DOCSDIR%%/html/qgraphicsblureffect.html %%DOCSDIR%%/html/qgraphicscolorizeeffect-members.html %%DOCSDIR%%/html/qgraphicscolorizeeffect.html %%DOCSDIR%%/html/qgraphicsdropshadoweffect-members.html %%DOCSDIR%%/html/qgraphicsdropshadoweffect.html %%DOCSDIR%%/html/qgraphicseffect-members.html %%DOCSDIR%%/html/qgraphicseffect.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/qgraphicsobject-members.html %%DOCSDIR%%/html/qgraphicsobject.html %%DOCSDIR%%/html/qgraphicsopacityeffect-members.html %%DOCSDIR%%/html/qgraphicsopacityeffect.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/qgraphicsrotation-members.html %%DOCSDIR%%/html/qgraphicsrotation.html %%DOCSDIR%%/html/qgraphicsscale-members.html %%DOCSDIR%%/html/qgraphicsscale.html %%DOCSDIR%%/html/qgraphicsscene-members.html %%DOCSDIR%%/html/qgraphicsscene-obsolete.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/qgraphicstransform-members.html %%DOCSDIR%%/html/qgraphicstransform.html %%DOCSDIR%%/html/qgraphicsview-members.html %%DOCSDIR%%/html/qgraphicsview-obsolete.html %%DOCSDIR%%/html/qgraphicsview.html %%DOCSDIR%%/html/qgraphicswebview-members.html %%DOCSDIR%%/html/qgraphicswebview.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/qgtkstyle-members.html %%DOCSDIR%%/html/qgtkstyle.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-qt3.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/qhistorystate-members.html %%DOCSDIR%%/html/qhistorystate.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/qhttpmultipart-members.html +%%DOCSDIR%%/html/qhttpmultipart.html +%%DOCSDIR%%/html/qhttppart-members.html +%%DOCSDIR%%/html/qhttppart.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-availablesizesargument-members.html %%DOCSDIR%%/html/qiconenginev2-availablesizesargument.html %%DOCSDIR%%/html/qiconenginev2-members.html %%DOCSDIR%%/html/qiconenginev2.html +%%DOCSDIR%%/html/qidentityproxymodel-members.html +%%DOCSDIR%%/html/qidentityproxymodel.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-obsolete.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/qkbddriverfactory-members.html %%DOCSDIR%%/html/qkbddriverfactory.html %%DOCSDIR%%/html/qkbddriverplugin-members.html %%DOCSDIR%%/html/qkbddriverplugin.html %%DOCSDIR%%/html/qkeyevent-members.html %%DOCSDIR%%/html/qkeyevent-qt3.html %%DOCSDIR%%/html/qkeyevent.html %%DOCSDIR%%/html/qkeyeventtransition-members.html %%DOCSDIR%%/html/qkeyeventtransition.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-obsolete.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/qmaccocoaviewcontainer-members.html %%DOCSDIR%%/html/qmaccocoaviewcontainer.html %%DOCSDIR%%/html/qmacnativewidget-members.html %%DOCSDIR%%/html/qmacnativewidget.html %%DOCSDIR%%/html/qmacpasteboardmime-members.html %%DOCSDIR%%/html/qmacpasteboardmime.html %%DOCSDIR%%/html/qmacstyle-members.html %%DOCSDIR%%/html/qmacstyle-obsolete.html %%DOCSDIR%%/html/qmacstyle.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/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/qmargins-members.html %%DOCSDIR%%/html/qmargins.html %%DOCSDIR%%/html/qmatrix-members.html %%DOCSDIR%%/html/qmatrix-qt3.html %%DOCSDIR%%/html/qmatrix.html %%DOCSDIR%%/html/qmatrix4x4-members.html +%%DOCSDIR%%/html/qmatrix4x4-qt3.html %%DOCSDIR%%/html/qmatrix4x4.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/qml-action.html %%DOCSDIR%%/html/qml-advtutorial.html %%DOCSDIR%%/html/qml-anchor-layout.html %%DOCSDIR%%/html/qml-anchoranimation-members.html %%DOCSDIR%%/html/qml-anchoranimation.html %%DOCSDIR%%/html/qml-anchorchanges-members.html %%DOCSDIR%%/html/qml-anchorchanges.html %%DOCSDIR%%/html/qml-animatedimage-members.html %%DOCSDIR%%/html/qml-animatedimage.html %%DOCSDIR%%/html/qml-animation-members.html %%DOCSDIR%%/html/qml-animation-transition.html %%DOCSDIR%%/html/qml-animation.html %%DOCSDIR%%/html/qml-architecture.html %%DOCSDIR%%/html/qml-basic-interaction-elements.html %%DOCSDIR%%/html/qml-basic-visual-elements.html %%DOCSDIR%%/html/qml-behavior-members.html %%DOCSDIR%%/html/qml-behavior.html %%DOCSDIR%%/html/qml-behaviors-and-states.html %%DOCSDIR%%/html/qml-best-practices-coding.html %%DOCSDIR%%/html/qml-best-practices-datatypes.html %%DOCSDIR%%/html/qml-best-practices.html %%DOCSDIR%%/html/qml-binding-members.html %%DOCSDIR%%/html/qml-binding.html %%DOCSDIR%%/html/qml-bool.html %%DOCSDIR%%/html/qml-borderimage-members.html %%DOCSDIR%%/html/qml-borderimage.html %%DOCSDIR%%/html/qml-coding-conventions.html %%DOCSDIR%%/html/qml-color.html %%DOCSDIR%%/html/qml-coloranimation-members.html %%DOCSDIR%%/html/qml-coloranimation.html %%DOCSDIR%%/html/qml-column-members.html %%DOCSDIR%%/html/qml-column.html %%DOCSDIR%%/html/qml-component-members.html %%DOCSDIR%%/html/qml-component.html %%DOCSDIR%%/html/qml-connections-members.html %%DOCSDIR%%/html/qml-connections.html %%DOCSDIR%%/html/qml-date.html %%DOCSDIR%%/html/qml-double.html %%DOCSDIR%%/html/qml-doublevalidator-members.html %%DOCSDIR%%/html/qml-doublevalidator.html %%DOCSDIR%%/html/qml-enumeration.html %%DOCSDIR%%/html/qml-event-elements.html %%DOCSDIR%%/html/qml-extending-tutorial-index.html %%DOCSDIR%%/html/qml-extending-tutorial7.html %%DOCSDIR%%/html/qml-extending.html %%DOCSDIR%%/html/qml-features.html %%DOCSDIR%%/html/qml-flickable-members.html %%DOCSDIR%%/html/qml-flickable.html %%DOCSDIR%%/html/qml-flipable-members.html %%DOCSDIR%%/html/qml-flipable.html %%DOCSDIR%%/html/qml-flow-members.html %%DOCSDIR%%/html/qml-flow.html %%DOCSDIR%%/html/qml-focuspanel-members.html %%DOCSDIR%%/html/qml-focuspanel.html %%DOCSDIR%%/html/qml-focusscope-members.html %%DOCSDIR%%/html/qml-focusscope.html %%DOCSDIR%%/html/qml-folderlistmodel-members.html %%DOCSDIR%%/html/qml-folderlistmodel.html %%DOCSDIR%%/html/qml-font.html %%DOCSDIR%%/html/qml-fontloader-members.html %%DOCSDIR%%/html/qml-fontloader.html %%DOCSDIR%%/html/qml-gesturearea-members.html %%DOCSDIR%%/html/qml-gesturearea.html %%DOCSDIR%%/html/qml-gradient-members.html %%DOCSDIR%%/html/qml-gradient.html %%DOCSDIR%%/html/qml-gradientstop-members.html %%DOCSDIR%%/html/qml-gradientstop.html %%DOCSDIR%%/html/qml-grid-members.html %%DOCSDIR%%/html/qml-grid.html %%DOCSDIR%%/html/qml-gridview-members.html %%DOCSDIR%%/html/qml-gridview.html %%DOCSDIR%%/html/qml-groups.html %%DOCSDIR%%/html/qml-image-members.html %%DOCSDIR%%/html/qml-image.html %%DOCSDIR%%/html/qml-int.html %%DOCSDIR%%/html/qml-integration.html %%DOCSDIR%%/html/qml-intro.html %%DOCSDIR%%/html/qml-intvalidator-members.html %%DOCSDIR%%/html/qml-intvalidator.html %%DOCSDIR%%/html/qml-item-members.html %%DOCSDIR%%/html/qml-item.html %%DOCSDIR%%/html/qml-keyevent-members.html %%DOCSDIR%%/html/qml-keyevent.html %%DOCSDIR%%/html/qml-keynavigation-members.html %%DOCSDIR%%/html/qml-keynavigation.html %%DOCSDIR%%/html/qml-keys-members.html %%DOCSDIR%%/html/qml-keys.html %%DOCSDIR%%/html/qml-layoutitem-members.html %%DOCSDIR%%/html/qml-layoutitem.html %%DOCSDIR%%/html/qml-layoutmirroring-members.html %%DOCSDIR%%/html/qml-layoutmirroring.html %%DOCSDIR%%/html/qml-list.html %%DOCSDIR%%/html/qml-listelement.html %%DOCSDIR%%/html/qml-listmodel-members.html %%DOCSDIR%%/html/qml-listmodel.html +%%DOCSDIR%%/html/qml-listview-examples.html %%DOCSDIR%%/html/qml-listview-members.html %%DOCSDIR%%/html/qml-listview.html %%DOCSDIR%%/html/qml-loader-members.html %%DOCSDIR%%/html/qml-loader.html %%DOCSDIR%%/html/qml-mousearea-members.html %%DOCSDIR%%/html/qml-mousearea.html %%DOCSDIR%%/html/qml-mouseevent-members.html %%DOCSDIR%%/html/qml-mouseevent.html %%DOCSDIR%%/html/qml-numberanimation-members.html %%DOCSDIR%%/html/qml-numberanimation.html %%DOCSDIR%%/html/qml-package-members.html %%DOCSDIR%%/html/qml-package.html %%DOCSDIR%%/html/qml-parallelanimation-members.html %%DOCSDIR%%/html/qml-parallelanimation.html %%DOCSDIR%%/html/qml-parentanimation-members.html %%DOCSDIR%%/html/qml-parentanimation.html %%DOCSDIR%%/html/qml-parentchange-members.html %%DOCSDIR%%/html/qml-parentchange.html %%DOCSDIR%%/html/qml-particle-elements.html %%DOCSDIR%%/html/qml-particlemotiongravity-members.html %%DOCSDIR%%/html/qml-particlemotiongravity.html %%DOCSDIR%%/html/qml-particlemotionlinear.html %%DOCSDIR%%/html/qml-particlemotionwander-members.html %%DOCSDIR%%/html/qml-particlemotionwander.html %%DOCSDIR%%/html/qml-particles-members.html %%DOCSDIR%%/html/qml-particles.html %%DOCSDIR%%/html/qml-path-members.html %%DOCSDIR%%/html/qml-path.html %%DOCSDIR%%/html/qml-pathattribute-members.html %%DOCSDIR%%/html/qml-pathattribute.html %%DOCSDIR%%/html/qml-pathcubic-members.html %%DOCSDIR%%/html/qml-pathcubic.html %%DOCSDIR%%/html/qml-pathelement.html %%DOCSDIR%%/html/qml-pathline-members.html %%DOCSDIR%%/html/qml-pathline.html %%DOCSDIR%%/html/qml-pathpercent-members.html %%DOCSDIR%%/html/qml-pathpercent.html %%DOCSDIR%%/html/qml-pathquad-members.html %%DOCSDIR%%/html/qml-pathquad.html %%DOCSDIR%%/html/qml-pathview-members.html %%DOCSDIR%%/html/qml-pathview.html %%DOCSDIR%%/html/qml-pauseanimation-members.html %%DOCSDIR%%/html/qml-pauseanimation.html %%DOCSDIR%%/html/qml-pincharea-members.html %%DOCSDIR%%/html/qml-pincharea.html %%DOCSDIR%%/html/qml-pinchevent-members.html %%DOCSDIR%%/html/qml-pinchevent.html %%DOCSDIR%%/html/qml-point.html %%DOCSDIR%%/html/qml-positioners.html %%DOCSDIR%%/html/qml-positioning-elements.html +%%DOCSDIR%%/html/qml-presenting-data.html %%DOCSDIR%%/html/qml-propertyaction-members.html %%DOCSDIR%%/html/qml-propertyaction.html %%DOCSDIR%%/html/qml-propertyanimation-members.html %%DOCSDIR%%/html/qml-propertyanimation.html %%DOCSDIR%%/html/qml-propertychanges-members.html %%DOCSDIR%%/html/qml-propertychanges.html %%DOCSDIR%%/html/qml-qt-members.html %%DOCSDIR%%/html/qml-qt.html %%DOCSDIR%%/html/qml-qtobject-members.html %%DOCSDIR%%/html/qml-qtobject.html %%DOCSDIR%%/html/qml-real.html %%DOCSDIR%%/html/qml-rect.html %%DOCSDIR%%/html/qml-rectangle-members.html %%DOCSDIR%%/html/qml-rectangle.html %%DOCSDIR%%/html/qml-regexpvalidator-members.html %%DOCSDIR%%/html/qml-regexpvalidator.html %%DOCSDIR%%/html/qml-repeater-members.html %%DOCSDIR%%/html/qml-repeater.html %%DOCSDIR%%/html/qml-righttoleft.html %%DOCSDIR%%/html/qml-rotation-members.html %%DOCSDIR%%/html/qml-rotation.html %%DOCSDIR%%/html/qml-rotationanimation-members.html %%DOCSDIR%%/html/qml-rotationanimation.html %%DOCSDIR%%/html/qml-row-members.html %%DOCSDIR%%/html/qml-row.html %%DOCSDIR%%/html/qml-scale-members.html %%DOCSDIR%%/html/qml-scale.html %%DOCSDIR%%/html/qml-scriptaction-members.html %%DOCSDIR%%/html/qml-scriptaction.html %%DOCSDIR%%/html/qml-sequentialanimation-members.html %%DOCSDIR%%/html/qml-sequentialanimation.html %%DOCSDIR%%/html/qml-shader-elements.html %%DOCSDIR%%/html/qml-shadereffectitem-members.html %%DOCSDIR%%/html/qml-shadereffectitem.html %%DOCSDIR%%/html/qml-shadereffectsource-members.html %%DOCSDIR%%/html/qml-shadereffectsource.html %%DOCSDIR%%/html/qml-size.html %%DOCSDIR%%/html/qml-smoothedanimation-members.html %%DOCSDIR%%/html/qml-smoothedanimation.html %%DOCSDIR%%/html/qml-springanimation-members.html %%DOCSDIR%%/html/qml-springanimation.html %%DOCSDIR%%/html/qml-state-elements.html %%DOCSDIR%%/html/qml-state-members.html %%DOCSDIR%%/html/qml-state.html %%DOCSDIR%%/html/qml-statechangescript-members.html %%DOCSDIR%%/html/qml-statechangescript.html %%DOCSDIR%%/html/qml-stategroup-members.html %%DOCSDIR%%/html/qml-stategroup.html %%DOCSDIR%%/html/qml-string.html %%DOCSDIR%%/html/qml-systempalette-members.html %%DOCSDIR%%/html/qml-systempalette.html %%DOCSDIR%%/html/qml-text-members.html %%DOCSDIR%%/html/qml-text.html %%DOCSDIR%%/html/qml-textedit-members.html %%DOCSDIR%%/html/qml-textedit.html %%DOCSDIR%%/html/qml-textinput-members.html %%DOCSDIR%%/html/qml-textinput.html %%DOCSDIR%%/html/qml-time.html %%DOCSDIR%%/html/qml-timer-members.html %%DOCSDIR%%/html/qml-timer.html %%DOCSDIR%%/html/qml-transform-elements.html %%DOCSDIR%%/html/qml-transform.html %%DOCSDIR%%/html/qml-transition-members.html %%DOCSDIR%%/html/qml-transition.html %%DOCSDIR%%/html/qml-translate-members.html %%DOCSDIR%%/html/qml-translate.html %%DOCSDIR%%/html/qml-tutorial.html %%DOCSDIR%%/html/qml-tutorial1.html %%DOCSDIR%%/html/qml-tutorial2.html %%DOCSDIR%%/html/qml-tutorial3.html %%DOCSDIR%%/html/qml-url.html %%DOCSDIR%%/html/qml-utility-elements.html %%DOCSDIR%%/html/qml-variant.html %%DOCSDIR%%/html/qml-vector3d.html %%DOCSDIR%%/html/qml-vector3danimation-members.html %%DOCSDIR%%/html/qml-vector3danimation.html %%DOCSDIR%%/html/qml-view-elements.html %%DOCSDIR%%/html/qml-views.html %%DOCSDIR%%/html/qml-visualdatamodel-members.html %%DOCSDIR%%/html/qml-visualdatamodel.html %%DOCSDIR%%/html/qml-visualitemmodel-members.html %%DOCSDIR%%/html/qml-visualitemmodel.html +%%DOCSDIR%%/html/qml-webview-examples.html %%DOCSDIR%%/html/qml-webview-members.html %%DOCSDIR%%/html/qml-webview.html %%DOCSDIR%%/html/qml-workerscript-members.html %%DOCSDIR%%/html/qml-workerscript.html %%DOCSDIR%%/html/qml-working-with-data.html %%DOCSDIR%%/html/qml-xmllistmodel-members.html %%DOCSDIR%%/html/qml-xmllistmodel.html %%DOCSDIR%%/html/qml-xmlrole-members.html %%DOCSDIR%%/html/qml-xmlrole.html %%DOCSDIR%%/html/qmlbasicelements.html %%DOCSDIR%%/html/qmlevents.html %%DOCSDIR%%/html/qmlinuse.html %%DOCSDIR%%/html/qmlreusablecomponents.html %%DOCSDIR%%/html/qmlruntime.html %%DOCSDIR%%/html/qmlsyntax.html %%DOCSDIR%%/html/qmlviewer.html %%DOCSDIR%%/html/qmlwebkit.html %%DOCSDIR%%/html/qmodelindex-members.html %%DOCSDIR%%/html/qmodelindex.html %%DOCSDIR%%/html/qmotifstyle-members.html %%DOCSDIR%%/html/qmotifstyle.html %%DOCSDIR%%/html/qmousedriverfactory-members.html %%DOCSDIR%%/html/qmousedriverfactory.html %%DOCSDIR%%/html/qmousedriverplugin-members.html %%DOCSDIR%%/html/qmousedriverplugin.html %%DOCSDIR%%/html/qmouseevent-members.html %%DOCSDIR%%/html/qmouseevent-qt3.html %%DOCSDIR%%/html/qmouseevent.html %%DOCSDIR%%/html/qmouseeventtransition-members.html %%DOCSDIR%%/html/qmouseeventtransition.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/qnetworkcachemetadata-members.html %%DOCSDIR%%/html/qnetworkcachemetadata.html %%DOCSDIR%%/html/qnetworkconfiguration-members.html %%DOCSDIR%%/html/qnetworkconfiguration.html %%DOCSDIR%%/html/qnetworkconfigurationmanager-members.html %%DOCSDIR%%/html/qnetworkconfigurationmanager.html %%DOCSDIR%%/html/qnetworkcookie-members.html %%DOCSDIR%%/html/qnetworkcookie.html %%DOCSDIR%%/html/qnetworkcookiejar-members.html %%DOCSDIR%%/html/qnetworkcookiejar.html %%DOCSDIR%%/html/qnetworkdiskcache-members.html %%DOCSDIR%%/html/qnetworkdiskcache.html %%DOCSDIR%%/html/qnetworkinterface-members.html %%DOCSDIR%%/html/qnetworkinterface.html %%DOCSDIR%%/html/qnetworkproxy-members.html %%DOCSDIR%%/html/qnetworkproxy.html %%DOCSDIR%%/html/qnetworkproxyfactory-members.html %%DOCSDIR%%/html/qnetworkproxyfactory.html %%DOCSDIR%%/html/qnetworkproxyquery-members.html %%DOCSDIR%%/html/qnetworkproxyquery.html %%DOCSDIR%%/html/qnetworkreply-members.html %%DOCSDIR%%/html/qnetworkreply.html %%DOCSDIR%%/html/qnetworkrequest-members.html %%DOCSDIR%%/html/qnetworkrequest.html %%DOCSDIR%%/html/qnetworksession-members.html %%DOCSDIR%%/html/qnetworksession.html %%DOCSDIR%%/html/qobject-members.html +%%DOCSDIR%%/html/qobject-obsolete.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-obsolete.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-obsolete.html %%DOCSDIR%%/html/qpaintenginestate.html %%DOCSDIR%%/html/qpainter-members.html %%DOCSDIR%%/html/qpainter-obsolete.html %%DOCSDIR%%/html/qpainter-pixmapfragment-members.html %%DOCSDIR%%/html/qpainter-pixmapfragment.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/qpangesture-members.html %%DOCSDIR%%/html/qpangesture.html %%DOCSDIR%%/html/qparallelanimationgroup-members.html %%DOCSDIR%%/html/qparallelanimationgroup.html %%DOCSDIR%%/html/qpauseanimation-members.html %%DOCSDIR%%/html/qpauseanimation.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/qpinchgesture-members.html %%DOCSDIR%%/html/qpinchgesture.html %%DOCSDIR%%/html/qpixmap-members.html -%%DOCSDIR%%/html/qpixmap-obsolete.html %%DOCSDIR%%/html/qpixmap-qt3.html %%DOCSDIR%%/html/qpixmap.html %%DOCSDIR%%/html/qpixmapcache-key-members.html %%DOCSDIR%%/html/qpixmapcache-key.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/qplatformcursor-members.html +%%DOCSDIR%%/html/qplatformcursor.html +%%DOCSDIR%%/html/qplatformcursorimage-members.html +%%DOCSDIR%%/html/qplatformcursorimage.html +%%DOCSDIR%%/html/qplatformfontdatabase-members.html +%%DOCSDIR%%/html/qplatformfontdatabase.html +%%DOCSDIR%%/html/qplatformwindowformat-members.html +%%DOCSDIR%%/html/qplatformwindowformat.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-qt3.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-qt3.html %%DOCSDIR%%/html/qprintpreviewwidget.html %%DOCSDIR%%/html/qprocess-members.html %%DOCSDIR%%/html/qprocess-obsolete.html %%DOCSDIR%%/html/qprocess.html %%DOCSDIR%%/html/qprocessenvironment-members.html %%DOCSDIR%%/html/qprocessenvironment.html %%DOCSDIR%%/html/qprogressbar-members.html %%DOCSDIR%%/html/qprogressbar.html %%DOCSDIR%%/html/qprogressdialog-members.html %%DOCSDIR%%/html/qprogressdialog.html %%DOCSDIR%%/html/qpropertyanimation-members.html %%DOCSDIR%%/html/qpropertyanimation.html %%DOCSDIR%%/html/qproxymodel-members.html %%DOCSDIR%%/html/qproxymodel.html %%DOCSDIR%%/html/qproxyscreen-members.html %%DOCSDIR%%/html/qproxyscreen.html %%DOCSDIR%%/html/qproxyscreencursor-members.html %%DOCSDIR%%/html/qproxyscreencursor.html %%DOCSDIR%%/html/qproxystyle-members.html %%DOCSDIR%%/html/qproxystyle.html %%DOCSDIR%%/html/qpushbutton-members.html %%DOCSDIR%%/html/qpushbutton-qt3.html %%DOCSDIR%%/html/qpushbutton.html %%DOCSDIR%%/html/qquaternion-members.html %%DOCSDIR%%/html/qquaternion.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/qrawfont-members.html +%%DOCSDIR%%/html/qrawfont.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/qs60mainapplication-members.html %%DOCSDIR%%/html/qs60mainapplication.html %%DOCSDIR%%/html/qs60mainappui-members.html %%DOCSDIR%%/html/qs60mainappui.html %%DOCSDIR%%/html/qs60maindocument-members.html %%DOCSDIR%%/html/qs60maindocument.html %%DOCSDIR%%/html/qs60style-members.html %%DOCSDIR%%/html/qs60style.html %%DOCSDIR%%/html/qscopedarraypointer-members.html %%DOCSDIR%%/html/qscopedarraypointer.html %%DOCSDIR%%/html/qscopedpointer-members.html %%DOCSDIR%%/html/qscopedpointer.html +%%DOCSDIR%%/html/qscopedvaluerollback-members.html +%%DOCSDIR%%/html/qscopedvaluerollback.html %%DOCSDIR%%/html/qscreen-members.html %%DOCSDIR%%/html/qscreen-qt3.html %%DOCSDIR%%/html/qscreen.html %%DOCSDIR%%/html/qscreencursor-members.html %%DOCSDIR%%/html/qscreencursor.html %%DOCSDIR%%/html/qscreendriverfactory-members.html %%DOCSDIR%%/html/qscreendriverfactory.html %%DOCSDIR%%/html/qscreendriverplugin-members.html %%DOCSDIR%%/html/qscreendriverplugin.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-qt3.html %%DOCSDIR%%/html/qscriptcontextinfo.html %%DOCSDIR%%/html/qscriptengine-members.html %%DOCSDIR%%/html/qscriptengine-obsolete.html +%%DOCSDIR%%/html/qscriptengine-qt3.html %%DOCSDIR%%/html/qscriptengine.html %%DOCSDIR%%/html/qscriptengineagent-members.html %%DOCSDIR%%/html/qscriptengineagent.html %%DOCSDIR%%/html/qscriptenginedebugger-members.html %%DOCSDIR%%/html/qscriptenginedebugger.html %%DOCSDIR%%/html/qscriptextensionplugin-members.html %%DOCSDIR%%/html/qscriptextensionplugin.html %%DOCSDIR%%/html/qscriptprogram-members.html %%DOCSDIR%%/html/qscriptprogram.html %%DOCSDIR%%/html/qscriptstring-members.html %%DOCSDIR%%/html/qscriptstring.html %%DOCSDIR%%/html/qscriptsyntaxcheckresult-members.html %%DOCSDIR%%/html/qscriptsyntaxcheckresult.html %%DOCSDIR%%/html/qscriptvalue-members.html %%DOCSDIR%%/html/qscriptvalue-obsolete.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/qsequentialanimationgroup-members.html %%DOCSDIR%%/html/qsequentialanimationgroup.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/qsharedpointer-members.html %%DOCSDIR%%/html/qsharedpointer.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/qsignaltransition-members.html %%DOCSDIR%%/html/qsignaltransition.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/qstate-members.html %%DOCSDIR%%/html/qstate.html %%DOCSDIR%%/html/qstatemachine-members.html %%DOCSDIR%%/html/qstatemachine-signalevent-members.html %%DOCSDIR%%/html/qstatemachine-signalevent.html %%DOCSDIR%%/html/qstatemachine-wrappedevent-members.html %%DOCSDIR%%/html/qstatemachine-wrappedevent.html %%DOCSDIR%%/html/qstatemachine.html %%DOCSDIR%%/html/qstatictext-members.html %%DOCSDIR%%/html/qstatictext.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/qstyleoptionframev3-members.html %%DOCSDIR%%/html/qstyleoptionframev3.html %%DOCSDIR%%/html/qstyleoptiongraphicsitem-members.html %%DOCSDIR%%/html/qstyleoptiongraphicsitem-obsolete.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/qstyleoptiontabbarbasev2-members.html %%DOCSDIR%%/html/qstyleoptiontabbarbasev2.html %%DOCSDIR%%/html/qstyleoptiontabv2-members.html %%DOCSDIR%%/html/qstyleoptiontabv2.html %%DOCSDIR%%/html/qstyleoptiontabv3-members.html %%DOCSDIR%%/html/qstyleoptiontabv3.html %%DOCSDIR%%/html/qstyleoptiontabwidgetframe-members.html %%DOCSDIR%%/html/qstyleoptiontabwidgetframe.html %%DOCSDIR%%/html/qstyleoptiontabwidgetframev2-members.html %%DOCSDIR%%/html/qstyleoptiontabwidgetframev2.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/qstyleoptionviewitemv3-members.html %%DOCSDIR%%/html/qstyleoptionviewitemv3.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/qsupportedwritingsystems-members.html +%%DOCSDIR%%/html/qsupportedwritingsystems.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/qswipegesture-members.html %%DOCSDIR%%/html/qswipegesture.html %%DOCSDIR%%/html/qsymbianevent-members.html %%DOCSDIR%%/html/qsymbianevent.html +%%DOCSDIR%%/html/qsymbiangraphicssystemhelper-members.html +%%DOCSDIR%%/html/qsymbiangraphicssystemhelper.html %%DOCSDIR%%/html/qsyntaxhighlighter-members.html %%DOCSDIR%%/html/qsyntaxhighlighter.html %%DOCSDIR%%/html/qsysinfo-members.html %%DOCSDIR%%/html/qsysinfo.html +%%DOCSDIR%%/html/qsystemlocale-currencytostringargument-members.html +%%DOCSDIR%%/html/qsystemlocale-currencytostringargument.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-activex.html %%DOCSDIR%%/html/qt-basic-concepts.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-fonts.html %%DOCSDIR%%/html/qt-embedded-install.html %%DOCSDIR%%/html/qt-embedded-kmap2qmap.html %%DOCSDIR%%/html/qt-embedded-linux.html %%DOCSDIR%%/html/qt-embedded-makeqpf.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-embeddedlinux-accel.html %%DOCSDIR%%/html/qt-embeddedlinux-directfb.html %%DOCSDIR%%/html/qt-embeddedlinux-opengl.html %%DOCSDIR%%/html/qt-embeddedlinux-openvg.html %%DOCSDIR%%/html/qt-embeddedwince-accel.html %%DOCSDIR%%/html/qt-graphics.html %%DOCSDIR%%/html/qt-gui-concepts.html %%DOCSDIR%%/html/qt-mac-cocoa-licensing.html %%DOCSDIR%%/html/qt-network.html %%DOCSDIR%%/html/qt-overview.html %%DOCSDIR%%/html/qt-performance.html %%DOCSDIR%%/html/qt-qt3.html %%DOCSDIR%%/html/qt-resources.html %%DOCSDIR%%/html/qt-sql.html %%DOCSDIR%%/html/qt.html %%DOCSDIR%%/html/qt.index %%DOCSDIR%%/html/qt.pageindex %%DOCSDIR%%/html/qt.tags %%DOCSDIR%%/html/qt3support.html %%DOCSDIR%%/html/qt3to4-treewalker.html %%DOCSDIR%%/html/qt3to4.html %%DOCSDIR%%/html/qt4-6-intro.html %%DOCSDIR%%/html/qt4-7-intro.html +%%DOCSDIR%%/html/qt4-8-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/qtapandholdgesture-members.html %%DOCSDIR%%/html/qtapandholdgesture.html %%DOCSDIR%%/html/qtapgesture-members.html %%DOCSDIR%%/html/qtapgesture.html %%DOCSDIR%%/html/qtbinding.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-qmath-h.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/qtdeclarative.html %%DOCSDIR%%/html/qtdemo.html %%DOCSDIR%%/html/qtdesigner-components.html %%DOCSDIR%%/html/qtdesigner.html %%DOCSDIR%%/html/qtdevelopment-steps.html %%DOCSDIR%%/html/qtemporaryfile-members.html %%DOCSDIR%%/html/qtemporaryfile.html %%DOCSDIR%%/html/qtendian.html %%DOCSDIR%%/html/qtest-qtoucheventsequence-members.html %%DOCSDIR%%/html/qtest-qtoucheventsequence.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/qtestlib-tutorial5-benchmarking-cpp.html %%DOCSDIR%%/html/qtestlib-tutorial5-containers-cpp.html %%DOCSDIR%%/html/qtestlib-tutorial5-tutorial5-pro.html %%DOCSDIR%%/html/qtestlib-tutorial5.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/qtextdocumentwriter-members.html %%DOCSDIR%%/html/qtextdocumentwriter.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-qt3.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/qtextobjectinterface-members.html %%DOCSDIR%%/html/qtextobjectinterface.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-framework.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/qtilerules-members.html %%DOCSDIR%%/html/qtilerules.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/qtmain.html %%DOCSDIR%%/html/qtmultimedia.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/qtopenvg.html %%DOCSDIR%%/html/qtouchevent-members.html %%DOCSDIR%%/html/qtouchevent-touchpoint-members.html %%DOCSDIR%%/html/qtouchevent-touchpoint.html %%DOCSDIR%%/html/qtouchevent.html %%DOCSDIR%%/html/qtplugin-obsolete.html %%DOCSDIR%%/html/qtplugin.html %%DOCSDIR%%/html/qtprogrammers.html %%DOCSDIR%%/html/qtquick-whatsnew.html %%DOCSDIR%%/html/qtquick.html %%DOCSDIR%%/html/qtquicklicense.html %%DOCSDIR%%/html/qtransform-members.html %%DOCSDIR%%/html/qtransform-obsolete.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/qtscriptdebugger-manual.html %%DOCSDIR%%/html/qtscriptextensions.html %%DOCSDIR%%/html/qtscripttools.html %%DOCSDIR%%/html/qtsql.html %%DOCSDIR%%/html/qtsvg.html %%DOCSDIR%%/html/qtsymbian.html %%DOCSDIR%%/html/qttest.html %%DOCSDIR%%/html/qttools.html %%DOCSDIR%%/html/qtuitools.html %%DOCSDIR%%/html/qtwebkit-bridge.html +%%DOCSDIR%%/html/qtwebkit-goes-mobile.html %%DOCSDIR%%/html/qtwebkit-guide-cache.html %%DOCSDIR%%/html/qtwebkit-guide-canvas.html %%DOCSDIR%%/html/qtwebkit-guide-css.html %%DOCSDIR%%/html/qtwebkit-guide.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-obsolete.html %%DOCSDIR%%/html/qvariant-qt3.html %%DOCSDIR%%/html/qvariant.html %%DOCSDIR%%/html/qvariantanimation-members.html %%DOCSDIR%%/html/qvariantanimation.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/qvector2d-members.html %%DOCSDIR%%/html/qvector2d.html %%DOCSDIR%%/html/qvector3d-members.html %%DOCSDIR%%/html/qvector3d.html %%DOCSDIR%%/html/qvector4d-members.html %%DOCSDIR%%/html/qvector4d.html %%DOCSDIR%%/html/qvectoriterator-members.html %%DOCSDIR%%/html/qvectoriterator.html %%DOCSDIR%%/html/qvfb.html %%DOCSDIR%%/html/qvideoframe-members.html %%DOCSDIR%%/html/qvideoframe.html %%DOCSDIR%%/html/qvideosurfaceformat-members.html %%DOCSDIR%%/html/qvideosurfaceformat.html %%DOCSDIR%%/html/qwaitcondition-members.html %%DOCSDIR%%/html/qwaitcondition.html %%DOCSDIR%%/html/qweakpointer-members.html %%DOCSDIR%%/html/qweakpointer.html %%DOCSDIR%%/html/qwebdatabase-members.html %%DOCSDIR%%/html/qwebdatabase.html %%DOCSDIR%%/html/qwebelement-members.html %%DOCSDIR%%/html/qwebelement.html %%DOCSDIR%%/html/qwebelementcollection-const-iterator-members.html %%DOCSDIR%%/html/qwebelementcollection-const-iterator.html %%DOCSDIR%%/html/qwebelementcollection-iterator-members.html %%DOCSDIR%%/html/qwebelementcollection-iterator.html %%DOCSDIR%%/html/qwebelementcollection-members.html %%DOCSDIR%%/html/qwebelementcollection.html %%DOCSDIR%%/html/qwebframe-members.html %%DOCSDIR%%/html/qwebframe-obsolete.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/qwebinspector-members.html %%DOCSDIR%%/html/qwebinspector.html %%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionoption-members.html %%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionoption.html %%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionreturn-members.html %%DOCSDIR%%/html/qwebpage-choosemultiplefilesextensionreturn.html %%DOCSDIR%%/html/qwebpage-errorpageextensionoption-members.html %%DOCSDIR%%/html/qwebpage-errorpageextensionoption.html %%DOCSDIR%%/html/qwebpage-errorpageextensionreturn-members.html %%DOCSDIR%%/html/qwebpage-errorpageextensionreturn.html %%DOCSDIR%%/html/qwebpage-extensionoption.html %%DOCSDIR%%/html/qwebpage-extensionreturn.html %%DOCSDIR%%/html/qwebpage-members.html +%%DOCSDIR%%/html/qwebpage-viewportattributes-members.html +%%DOCSDIR%%/html/qwebpage-viewportattributes.html %%DOCSDIR%%/html/qwebpage.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/qwebsecurityorigin-members.html %%DOCSDIR%%/html/qwebsecurityorigin.html %%DOCSDIR%%/html/qwebsettings-members.html %%DOCSDIR%%/html/qwebsettings.html %%DOCSDIR%%/html/qwebview-members.html %%DOCSDIR%%/html/qwebview-obsolete.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/qwindowsmime-members.html %%DOCSDIR%%/html/qwindowsmime.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-dbscreen-dbscreen-cpp.html %%DOCSDIR%%/html/qws-dbscreen-dbscreen-h.html %%DOCSDIR%%/html/qws-dbscreen-dbscreen-pro.html %%DOCSDIR%%/html/qws-dbscreen-dbscreendriverplugin-cpp.html %%DOCSDIR%%/html/qws-dbscreen.html %%DOCSDIR%%/html/qws-mousecalibration-calibration-cpp.html %%DOCSDIR%%/html/qws-mousecalibration-calibration-h.html %%DOCSDIR%%/html/qws-mousecalibration-main-cpp.html %%DOCSDIR%%/html/qws-mousecalibration-mousecalibration-pro.html %%DOCSDIR%%/html/qws-mousecalibration-scribblewidget-cpp.html %%DOCSDIR%%/html/qws-mousecalibration-scribblewidget-h.html %%DOCSDIR%%/html/qws-mousecalibration.html %%DOCSDIR%%/html/qws-simpledecoration-analogclock-cpp.html %%DOCSDIR%%/html/qws-simpledecoration-analogclock-h.html %%DOCSDIR%%/html/qws-simpledecoration-main-cpp.html %%DOCSDIR%%/html/qws-simpledecoration-mydecoration-cpp.html %%DOCSDIR%%/html/qws-simpledecoration-mydecoration-h.html %%DOCSDIR%%/html/qws-simpledecoration-simpledecoration-pro.html %%DOCSDIR%%/html/qws-simpledecoration.html %%DOCSDIR%%/html/qws-svgalib-svgalib-pro.html %%DOCSDIR%%/html/qws-svgalib-svgalibpaintdevice-cpp.html %%DOCSDIR%%/html/qws-svgalib-svgalibpaintdevice-h.html %%DOCSDIR%%/html/qws-svgalib-svgalibpaintengine-cpp.html %%DOCSDIR%%/html/qws-svgalib-svgalibpaintengine-h.html %%DOCSDIR%%/html/qws-svgalib-svgalibplugin-cpp.html %%DOCSDIR%%/html/qws-svgalib-svgalibscreen-cpp.html %%DOCSDIR%%/html/qws-svgalib-svgalibscreen-h.html %%DOCSDIR%%/html/qws-svgalib-svgalibsurface-cpp.html %%DOCSDIR%%/html/qws-svgalib-svgalibsurface-h.html %%DOCSDIR%%/html/qws-svgalib.html %%DOCSDIR%%/html/qws.html %%DOCSDIR%%/html/qwscalibratedmousehandler-members.html %%DOCSDIR%%/html/qwscalibratedmousehandler.html %%DOCSDIR%%/html/qwsclient-members.html %%DOCSDIR%%/html/qwsclient.html %%DOCSDIR%%/html/qwsembedwidget-members.html %%DOCSDIR%%/html/qwsembedwidget.html %%DOCSDIR%%/html/qwsevent-members.html %%DOCSDIR%%/html/qwsevent.html %%DOCSDIR%%/html/qwsglwindowsurface-members.html %%DOCSDIR%%/html/qwsglwindowsurface.html %%DOCSDIR%%/html/qwsinputmethod-members.html %%DOCSDIR%%/html/qwsinputmethod-obsolete.html %%DOCSDIR%%/html/qwsinputmethod.html %%DOCSDIR%%/html/qwskeyboardhandler-members.html %%DOCSDIR%%/html/qwskeyboardhandler.html %%DOCSDIR%%/html/qwsmousehandler-members.html %%DOCSDIR%%/html/qwsmousehandler.html %%DOCSDIR%%/html/qwspointercalibrationdata-members.html %%DOCSDIR%%/html/qwspointercalibrationdata.html %%DOCSDIR%%/html/qwsscreensaver-members.html %%DOCSDIR%%/html/qwsscreensaver.html %%DOCSDIR%%/html/qwsserver-keyboardfilter-members.html %%DOCSDIR%%/html/qwsserver-keyboardfilter.html %%DOCSDIR%%/html/qwsserver-members.html %%DOCSDIR%%/html/qwsserver-obsolete.html %%DOCSDIR%%/html/qwsserver-qt3.html %%DOCSDIR%%/html/qwsserver.html %%DOCSDIR%%/html/qwswindow-members.html %%DOCSDIR%%/html/qwswindow.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/qxmlschema-members.html %%DOCSDIR%%/html/qxmlschema.html %%DOCSDIR%%/html/qxmlschemavalidator-members.html %%DOCSDIR%%/html/qxmlschemavalidator.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-symbian.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/restoring-geometry.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-layouts.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-processing.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-textobject-files-heart-svg.html %%DOCSDIR%%/html/richtext-textobject-main-cpp.html +%%DOCSDIR%%/html/richtext-textobject-resources-qrc.html %%DOCSDIR%%/html/richtext-textobject-svgtextobject-cpp.html %%DOCSDIR%%/html/richtext-textobject-svgtextobject-h.html %%DOCSDIR%%/html/richtext-textobject-textobject-pro.html %%DOCSDIR%%/html/richtext-textobject-window-cpp.html %%DOCSDIR%%/html/richtext-textobject-window-h.html %%DOCSDIR%%/html/richtext-textobject.html %%DOCSDIR%%/html/richtext.html %%DOCSDIR%%/html/scalability.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-environment-cpp.html %%DOCSDIR%%/html/script-context2d-environment-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-js.html %%DOCSDIR%%/html/script-helloscript-helloscript-pro.html %%DOCSDIR%%/html/script-helloscript-helloscript-qrc.html %%DOCSDIR%%/html/script-helloscript-main-cpp.html %%DOCSDIR%%/html/script-helloscript.html %%DOCSDIR%%/html/script-marshal-main-cpp.html %%DOCSDIR%%/html/script-marshal-marshal-pro.html %%DOCSDIR%%/html/script-marshal.html %%DOCSDIR%%/html/script-qscript-main-cpp.html %%DOCSDIR%%/html/script-qscript-qscript-pro.html %%DOCSDIR%%/html/script-qscript.html %%DOCSDIR%%/html/script-qsdbg-example-js.html %%DOCSDIR%%/html/script-qsdbg-main-cpp.html %%DOCSDIR%%/html/script-qsdbg-qsdbg-pro.html %%DOCSDIR%%/html/script-qsdbg-scriptbreakpointmanager-cpp.html %%DOCSDIR%%/html/script-qsdbg-scriptbreakpointmanager-h.html %%DOCSDIR%%/html/script-qsdbg-scriptdebugger-cpp.html %%DOCSDIR%%/html/script-qsdbg-scriptdebugger-h.html %%DOCSDIR%%/html/script-qsdbg.html %%DOCSDIR%%/html/script-qstetrix-main-cpp.html %%DOCSDIR%%/html/script-qstetrix-qstetrix-pro.html %%DOCSDIR%%/html/script-qstetrix-tetrix-qrc.html %%DOCSDIR%%/html/script-qstetrix-tetrixboard-cpp.html %%DOCSDIR%%/html/script-qstetrix-tetrixboard-h.html %%DOCSDIR%%/html/script-qstetrix-tetrixboard-js.html %%DOCSDIR%%/html/script-qstetrix-tetrixpiece-js.html %%DOCSDIR%%/html/script-qstetrix-tetrixwindow-js.html %%DOCSDIR%%/html/script-qstetrix-tetrixwindow-ui.html %%DOCSDIR%%/html/script-qstetrix.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/sharedlibrary.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-connecting.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-forms.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-model.html %%DOCSDIR%%/html/sql-presenting.html %%DOCSDIR%%/html/sql-programming.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-sqlstatements.html %%DOCSDIR%%/html/sql-sqlwidgetmapper-main-cpp.html %%DOCSDIR%%/html/sql-sqlwidgetmapper-sqlwidgetmapper-pro.html %%DOCSDIR%%/html/sql-sqlwidgetmapper-window-cpp.html %%DOCSDIR%%/html/sql-sqlwidgetmapper-window-h.html %%DOCSDIR%%/html/sql-sqlwidgetmapper.html %%DOCSDIR%%/html/sql-tablemodel-tablemodel-cpp.html %%DOCSDIR%%/html/sql-tablemodel-tablemodel-pro.html %%DOCSDIR%%/html/sql-tablemodel.html %%DOCSDIR%%/html/sql-types.html %%DOCSDIR%%/html/src-imports-folderlistmodel-folderlistmodel-pro.html %%DOCSDIR%%/html/src-imports-folderlistmodel-plugin-cpp.html %%DOCSDIR%%/html/src-imports-folderlistmodel-qdeclarativefolderlistmodel-cpp.html %%DOCSDIR%%/html/src-imports-folderlistmodel-qdeclarativefolderlistmodel-h.html %%DOCSDIR%%/html/src-imports-folderlistmodel-qmldir.html %%DOCSDIR%%/html/src-imports-folderlistmodel.html %%DOCSDIR%%/html/ssl.html %%DOCSDIR%%/html/standard-dialogs.html %%DOCSDIR%%/html/statemachine-api.html %%DOCSDIR%%/html/statemachine-eventtransitions-eventtransitions-pro.html %%DOCSDIR%%/html/statemachine-eventtransitions-main-cpp.html %%DOCSDIR%%/html/statemachine-eventtransitions.html %%DOCSDIR%%/html/statemachine-factorial-factorial-pro.html %%DOCSDIR%%/html/statemachine-factorial-main-cpp.html %%DOCSDIR%%/html/statemachine-factorial.html %%DOCSDIR%%/html/statemachine-pingpong-main-cpp.html %%DOCSDIR%%/html/statemachine-pingpong-pingpong-pro.html %%DOCSDIR%%/html/statemachine-pingpong.html %%DOCSDIR%%/html/statemachine-rogue-main-cpp.html %%DOCSDIR%%/html/statemachine-rogue-movementtransition-h.html %%DOCSDIR%%/html/statemachine-rogue-rogue-pro.html %%DOCSDIR%%/html/statemachine-rogue-window-cpp.html %%DOCSDIR%%/html/statemachine-rogue-window-h.html %%DOCSDIR%%/html/statemachine-rogue.html %%DOCSDIR%%/html/statemachine-trafficlight-main-cpp.html %%DOCSDIR%%/html/statemachine-trafficlight-trafficlight-pro.html %%DOCSDIR%%/html/statemachine-trafficlight.html %%DOCSDIR%%/html/statemachine-twowaybutton-main-cpp.html %%DOCSDIR%%/html/statemachine-twowaybutton-twowaybutton-pro.html %%DOCSDIR%%/html/statemachine-twowaybutton.html %%DOCSDIR%%/html/statemachine.html %%DOCSDIR%%/html/string-processing.html %%DOCSDIR%%/html/style-reference.html %%DOCSDIR%%/html/style/offline.css %%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/symbian-platform-security-requirements.html %%DOCSDIR%%/html/symbian-support.html %%DOCSDIR%%/html/symbian-with-qt-introduction.html %%DOCSDIR%%/html/symbianexceptionsafety.html %%DOCSDIR%%/html/technology-apis.html %%DOCSDIR%%/html/templates.html %%DOCSDIR%%/html/texthandling.html %%DOCSDIR%%/html/thread-basics.html %%DOCSDIR%%/html/thread.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-modules.html %%DOCSDIR%%/html/threads-qobject.html %%DOCSDIR%%/html/threads-qtconcurrent.html %%DOCSDIR%%/html/threads-queuedcustomtype-block-cpp.html %%DOCSDIR%%/html/threads-queuedcustomtype-block-h.html %%DOCSDIR%%/html/threads-queuedcustomtype-main-cpp.html %%DOCSDIR%%/html/threads-queuedcustomtype-queuedcustomtype-pro.html %%DOCSDIR%%/html/threads-queuedcustomtype-renderthread-cpp.html %%DOCSDIR%%/html/threads-queuedcustomtype-renderthread-h.html %%DOCSDIR%%/html/threads-queuedcustomtype-window-cpp.html %%DOCSDIR%%/html/threads-queuedcustomtype-window-h.html %%DOCSDIR%%/html/threads-queuedcustomtype.html %%DOCSDIR%%/html/threads-reentrancy.html %%DOCSDIR%%/html/threads-semaphores-semaphores-cpp.html %%DOCSDIR%%/html/threads-semaphores-semaphores-pro.html %%DOCSDIR%%/html/threads-semaphores.html %%DOCSDIR%%/html/threads-starting.html %%DOCSDIR%%/html/threads-synchronizing.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/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-fsmodel-cpp.html %%DOCSDIR%%/html/tools-completer-fsmodel-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-contiguouscache-contiguouscache-pro.html %%DOCSDIR%%/html/tools-contiguouscache-main-cpp.html %%DOCSDIR%%/html/tools-contiguouscache-randomlistmodel-cpp.html %%DOCSDIR%%/html/tools-contiguouscache-randomlistmodel-h.html %%DOCSDIR%%/html/tools-contiguouscache.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-customtype-customtype-pro.html %%DOCSDIR%%/html/tools-customtype-main-cpp.html %%DOCSDIR%%/html/tools-customtype-message-cpp.html %%DOCSDIR%%/html/tools-customtype-message-h.html %%DOCSDIR%%/html/tools-customtype.html %%DOCSDIR%%/html/tools-customtypesending-customtypesending-pro.html %%DOCSDIR%%/html/tools-customtypesending-main-cpp.html %%DOCSDIR%%/html/tools-customtypesending-message-cpp.html %%DOCSDIR%%/html/tools-customtypesending-message-h.html %%DOCSDIR%%/html/tools-customtypesending-window-cpp.html %%DOCSDIR%%/html/tools-customtypesending-window-h.html %%DOCSDIR%%/html/tools-customtypesending.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-inputpanel-inputpanel-pro.html %%DOCSDIR%%/html/tools-inputpanel-main-cpp.html %%DOCSDIR%%/html/tools-inputpanel-mainform-ui.html %%DOCSDIR%%/html/tools-inputpanel-myinputpanel-cpp.html %%DOCSDIR%%/html/tools-inputpanel-myinputpanel-h.html %%DOCSDIR%%/html/tools-inputpanel-myinputpanelcontext-cpp.html %%DOCSDIR%%/html/tools-inputpanel-myinputpanelcontext-h.html %%DOCSDIR%%/html/tools-inputpanel-myinputpanelform-ui.html %%DOCSDIR%%/html/tools-inputpanel.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/touch-dials-dials-pro.html %%DOCSDIR%%/html/touch-dials-dials-ui.html %%DOCSDIR%%/html/touch-dials-main-cpp.html %%DOCSDIR%%/html/touch-dials.html %%DOCSDIR%%/html/touch-fingerpaint-fingerpaint-pro.html %%DOCSDIR%%/html/touch-fingerpaint-main-cpp.html %%DOCSDIR%%/html/touch-fingerpaint-mainwindow-cpp.html %%DOCSDIR%%/html/touch-fingerpaint-mainwindow-h.html %%DOCSDIR%%/html/touch-fingerpaint-scribblearea-cpp.html %%DOCSDIR%%/html/touch-fingerpaint-scribblearea-h.html %%DOCSDIR%%/html/touch-fingerpaint.html %%DOCSDIR%%/html/touch-knobs-knob-cpp.html %%DOCSDIR%%/html/touch-knobs-knob-h.html %%DOCSDIR%%/html/touch-knobs-knobs-pro.html %%DOCSDIR%%/html/touch-knobs-main-cpp.html %%DOCSDIR%%/html/touch-knobs.html %%DOCSDIR%%/html/touch-pinchzoom-graphicsview-cpp.html %%DOCSDIR%%/html/touch-pinchzoom-graphicsview-h.html %%DOCSDIR%%/html/touch-pinchzoom-main-cpp.html %%DOCSDIR%%/html/touch-pinchzoom-mice-qrc.html %%DOCSDIR%%/html/touch-pinchzoom-mouse-cpp.html %%DOCSDIR%%/html/touch-pinchzoom-mouse-h.html %%DOCSDIR%%/html/touch-pinchzoom-pinchzoom-pro.html %%DOCSDIR%%/html/touch-pinchzoom.html %%DOCSDIR%%/html/trademarks.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part1-addressbook-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part1-addressbook-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part1-main-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part1-part1-pro.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part1.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part2-addressbook-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part2-addressbook-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part2-main-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part2-part2-pro.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part2.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part3-addressbook-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part3-addressbook-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part3-main-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part3-part3-pro.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part3.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part4-addressbook-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part4-addressbook-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part4-main-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part4-part4-pro.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part4.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part5-addressbook-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part5-addressbook-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part5-finddialog-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part5-finddialog-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part5-main-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part5-part5-pro.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part5.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part6-addressbook-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part6-addressbook-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part6-finddialog-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part6-finddialog-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part6-main-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part6-part6-pro.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part6.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part7-addressbook-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part7-addressbook-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part7-finddialog-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part7-finddialog-h.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part7-main-cpp.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part7-part7-pro.html %%DOCSDIR%%/html/tutorials-addressbook-fr-part7.html %%DOCSDIR%%/html/tutorials-addressbook-fr.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-widgets-childwidget-childwidget-pro.html %%DOCSDIR%%/html/tutorials-widgets-childwidget-main-cpp.html %%DOCSDIR%%/html/tutorials-widgets-childwidget.html %%DOCSDIR%%/html/tutorials-widgets-nestedlayouts-main-cpp.html %%DOCSDIR%%/html/tutorials-widgets-nestedlayouts-nestedlayouts-pro.html %%DOCSDIR%%/html/tutorials-widgets-nestedlayouts.html %%DOCSDIR%%/html/tutorials-widgets-toplevel-main-cpp.html %%DOCSDIR%%/html/tutorials-widgets-toplevel-toplevel-pro.html %%DOCSDIR%%/html/tutorials-widgets-toplevel.html %%DOCSDIR%%/html/tutorials-widgets-windowlayout-main-cpp.html %%DOCSDIR%%/html/tutorials-widgets-windowlayout-windowlayout-pro.html %%DOCSDIR%%/html/tutorials-widgets-windowlayout.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-domtraversal-domtraversal-pro.html %%DOCSDIR%%/html/webkit-domtraversal-main-cpp.html %%DOCSDIR%%/html/webkit-domtraversal-window-cpp.html %%DOCSDIR%%/html/webkit-domtraversal-window-h.html +%%DOCSDIR%%/html/webkit-domtraversal-window-mobiles-ui.html %%DOCSDIR%%/html/webkit-domtraversal-window-ui.html %%DOCSDIR%%/html/webkit-domtraversal.html %%DOCSDIR%%/html/webkit-fancybrowser-fancybrowser-pro.html %%DOCSDIR%%/html/webkit-fancybrowser-jquery-min-js.html %%DOCSDIR%%/html/webkit-fancybrowser-jquery-qrc.html %%DOCSDIR%%/html/webkit-fancybrowser-main-cpp.html %%DOCSDIR%%/html/webkit-fancybrowser-mainwindow-cpp.html %%DOCSDIR%%/html/webkit-fancybrowser-mainwindow-h.html %%DOCSDIR%%/html/webkit-fancybrowser.html %%DOCSDIR%%/html/webkit-formextractor-formextractor-cpp.html %%DOCSDIR%%/html/webkit-formextractor-formextractor-h.html +%%DOCSDIR%%/html/webkit-formextractor-formextractor-mobiles-ui.html %%DOCSDIR%%/html/webkit-formextractor-formextractor-pro.html %%DOCSDIR%%/html/webkit-formextractor-formextractor-qrc.html %%DOCSDIR%%/html/webkit-formextractor-formextractor-ui.html %%DOCSDIR%%/html/webkit-formextractor-main-cpp.html %%DOCSDIR%%/html/webkit-formextractor-mainwindow-cpp.html %%DOCSDIR%%/html/webkit-formextractor-mainwindow-h.html %%DOCSDIR%%/html/webkit-formextractor.html %%DOCSDIR%%/html/webkit-framecapture-framecapture-cpp.html %%DOCSDIR%%/html/webkit-framecapture-framecapture-h.html %%DOCSDIR%%/html/webkit-framecapture-framecapture-pro.html %%DOCSDIR%%/html/webkit-framecapture-main-cpp.html %%DOCSDIR%%/html/webkit-framecapture.html %%DOCSDIR%%/html/webkit-googlechat-form-ui.html %%DOCSDIR%%/html/webkit-googlechat-googlechat-cpp.html %%DOCSDIR%%/html/webkit-googlechat-googlechat-h.html %%DOCSDIR%%/html/webkit-googlechat-googlechat-pro.html %%DOCSDIR%%/html/webkit-googlechat-main-cpp.html %%DOCSDIR%%/html/webkit-googlechat.html %%DOCSDIR%%/html/webkit-imageanalyzer-imageanalyzer-cpp.html %%DOCSDIR%%/html/webkit-imageanalyzer-imageanalyzer-h.html %%DOCSDIR%%/html/webkit-imageanalyzer-imageanalyzer-pro.html %%DOCSDIR%%/html/webkit-imageanalyzer-main-cpp.html %%DOCSDIR%%/html/webkit-imageanalyzer-mainwindow-cpp.html %%DOCSDIR%%/html/webkit-imageanalyzer-mainwindow-h.html %%DOCSDIR%%/html/webkit-imageanalyzer-resources-imageanalyzer-qrc.html %%DOCSDIR%%/html/webkit-imageanalyzer.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-mobiles-ui.html %%DOCSDIR%%/html/webkit-previewer-previewer-pro.html %%DOCSDIR%%/html/webkit-previewer-previewer-ui.html %%DOCSDIR%%/html/webkit-previewer.html %%DOCSDIR%%/html/webkit-simpleselector-main-cpp.html %%DOCSDIR%%/html/webkit-simpleselector-simpleselector-pro.html %%DOCSDIR%%/html/webkit-simpleselector-window-cpp.html %%DOCSDIR%%/html/webkit-simpleselector-window-h.html %%DOCSDIR%%/html/webkit-simpleselector-window-ui.html %%DOCSDIR%%/html/webkit-simpleselector.html +%%DOCSDIR%%/html/webkit-simplewebplugin-csvfactory-cpp.html +%%DOCSDIR%%/html/webkit-simplewebplugin-csvfactory-h.html +%%DOCSDIR%%/html/webkit-simplewebplugin-csvview-cpp.html +%%DOCSDIR%%/html/webkit-simplewebplugin-csvview-h.html +%%DOCSDIR%%/html/webkit-simplewebplugin-main-cpp.html +%%DOCSDIR%%/html/webkit-simplewebplugin-mainwindow-cpp.html +%%DOCSDIR%%/html/webkit-simplewebplugin-mainwindow-h.html +%%DOCSDIR%%/html/webkit-simplewebplugin-simplewebplugin-pro.html +%%DOCSDIR%%/html/webkit-simplewebplugin-simplewebplugin-qrc.html +%%DOCSDIR%%/html/webkit-simplewebplugin.html +%%DOCSDIR%%/html/webkit-webftpclient-downloader-cpp.html +%%DOCSDIR%%/html/webkit-webftpclient-downloader-h.html +%%DOCSDIR%%/html/webkit-webftpclient-ftpreply-cpp.html +%%DOCSDIR%%/html/webkit-webftpclient-ftpreply-h.html +%%DOCSDIR%%/html/webkit-webftpclient-ftpview-cpp.html +%%DOCSDIR%%/html/webkit-webftpclient-ftpview-h.html +%%DOCSDIR%%/html/webkit-webftpclient-main-cpp.html +%%DOCSDIR%%/html/webkit-webftpclient-networkaccessmanager-cpp.html +%%DOCSDIR%%/html/webkit-webftpclient-networkaccessmanager-h.html +%%DOCSDIR%%/html/webkit-webftpclient-webftpclient-pro.html +%%DOCSDIR%%/html/webkit-webftpclient.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-accord-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-demo-rotate-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-demo-scale-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-demo-skew-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-gallery-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-panel-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-pulse-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-skew-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-slide-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-anim-tabbedskew-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-backgrounds-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-border-img-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-grad-radial-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-gradientback-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-gradientbackstop-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-gradientbutton-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-mask-grad-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-mask-img-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-multicol-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-reflect-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-scroll-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-sel-nth-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-shadow-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-shadowblur-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-text-overflow-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-text-shadow-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-css3-text-stroke-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-form-tapper-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-form-toggler-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-layout-link-fmt-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-layout-tbl-keyhole-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mob-condjs-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mob-mediaquery-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mobile-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mq-desktop-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mq-mobile-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mq-touch-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mqlayout-desktop-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mqlayout-mobile-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-mqlayout-touch-css.html %%DOCSDIR%%/html/webkit-webkit-guide-css-storage-css.html %%DOCSDIR%%/html/webkit-webkit-guide-js-anim-accord-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-anim-gallery-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-anim-panel-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-anim-skew-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-css3-backgrounds-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-css3-border-img-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-css3-grad-radial-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-css3-mask-grad-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-css3-mask-img-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-css3-text-overflow-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-form-tapper-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-mob-condjs-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-mobile-js.html %%DOCSDIR%%/html/webkit-webkit-guide-js-storage-js.html %%DOCSDIR%%/html/webkit-webkit-guide-webkit-guide-pro.html %%DOCSDIR%%/html/webkit-webkit-guide.html +%%DOCSDIR%%/html/webkit-webplugin-csvfactory-cpp.html +%%DOCSDIR%%/html/webkit-webplugin-csvfactory-h.html +%%DOCSDIR%%/html/webkit-webplugin-csvview-cpp.html +%%DOCSDIR%%/html/webkit-webplugin-csvview-h.html +%%DOCSDIR%%/html/webkit-webplugin-main-cpp.html +%%DOCSDIR%%/html/webkit-webplugin-mainwindow-cpp.html +%%DOCSDIR%%/html/webkit-webplugin-mainwindow-h.html +%%DOCSDIR%%/html/webkit-webplugin-webplugin-pro.html +%%DOCSDIR%%/html/webkit-webplugin-webplugin-qrc.html +%%DOCSDIR%%/html/webkit-webplugin.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-and-layouts.html +%%DOCSDIR%%/html/widgets-applicationicon-applicationicon-pro.html +%%DOCSDIR%%/html/widgets-applicationicon-applicationicon-svg.html +%%DOCSDIR%%/html/widgets-applicationicon-main-cpp.html +%%DOCSDIR%%/html/widgets-applicationicon.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-codeeditor-codeeditor-cpp.html %%DOCSDIR%%/html/widgets-codeeditor-codeeditor-h.html %%DOCSDIR%%/html/widgets-codeeditor-codeeditor-pro.html %%DOCSDIR%%/html/widgets-codeeditor-main-cpp.html %%DOCSDIR%%/html/widgets-codeeditor.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-elidedlabel-elidedlabel-cpp.html +%%DOCSDIR%%/html/widgets-elidedlabel-elidedlabel-h.html +%%DOCSDIR%%/html/widgets-elidedlabel-elidedlabel-pro.html +%%DOCSDIR%%/html/widgets-elidedlabel-main-cpp.html +%%DOCSDIR%%/html/widgets-elidedlabel-testwidget-cpp.html +%%DOCSDIR%%/html/widgets-elidedlabel-testwidget-h.html +%%DOCSDIR%%/html/widgets-elidedlabel.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-maemovibration-buttonwidget-cpp.html +%%DOCSDIR%%/html/widgets-maemovibration-buttonwidget-h.html +%%DOCSDIR%%/html/widgets-maemovibration-maemovibration-pro.html +%%DOCSDIR%%/html/widgets-maemovibration-main-cpp.html +%%DOCSDIR%%/html/widgets-maemovibration-mcevibrator-cpp.html +%%DOCSDIR%%/html/widgets-maemovibration-mcevibrator-h.html +%%DOCSDIR%%/html/widgets-maemovibration.html %%DOCSDIR%%/html/widgets-movie-main-cpp.html %%DOCSDIR%%/html/widgets-movie-movie-pro.html %%DOCSDIR%%/html/widgets-movie-movieplayer-cpp.html %%DOCSDIR%%/html/widgets-movie-movieplayer-h.html %%DOCSDIR%%/html/widgets-movie.html +%%DOCSDIR%%/html/widgets-orientation-images-qrc.html +%%DOCSDIR%%/html/widgets-orientation-landscape-ui.html +%%DOCSDIR%%/html/widgets-orientation-main-cpp.html +%%DOCSDIR%%/html/widgets-orientation-mainwindow-cpp.html +%%DOCSDIR%%/html/widgets-orientation-mainwindow-h.html +%%DOCSDIR%%/html/widgets-orientation-orientation-pro.html +%%DOCSDIR%%/html/widgets-orientation-portrait-ui.html +%%DOCSDIR%%/html/widgets-orientation.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-softkeys-main-cpp.html %%DOCSDIR%%/html/widgets-softkeys-softkeys-cpp.html %%DOCSDIR%%/html/widgets-softkeys-softkeys-h.html %%DOCSDIR%%/html/widgets-softkeys-softkeys-pro.html %%DOCSDIR%%/html/widgets-softkeys.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-symbianvibration-main-cpp.html +%%DOCSDIR%%/html/widgets-symbianvibration-mainwindow-cpp.html +%%DOCSDIR%%/html/widgets-symbianvibration-mainwindow-h.html +%%DOCSDIR%%/html/widgets-symbianvibration-symbianvibration-pro.html +%%DOCSDIR%%/html/widgets-symbianvibration-vibrationsurface-cpp.html +%%DOCSDIR%%/html/widgets-symbianvibration-vibrationsurface-h.html +%%DOCSDIR%%/html/widgets-symbianvibration-xqvibra-cpp.html +%%DOCSDIR%%/html/widgets-symbianvibration-xqvibra-h.html +%%DOCSDIR%%/html/widgets-symbianvibration-xqvibra-p-cpp.html +%%DOCSDIR%%/html/widgets-symbianvibration-xqvibra-p-h.html +%%DOCSDIR%%/html/widgets-symbianvibration.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-validators-ledwidget-cpp.html %%DOCSDIR%%/html/widgets-validators-ledwidget-h.html %%DOCSDIR%%/html/widgets-validators-localeselector-cpp.html %%DOCSDIR%%/html/widgets-validators-localeselector-h.html %%DOCSDIR%%/html/widgets-validators-main-cpp.html %%DOCSDIR%%/html/widgets-validators-validators-pro.html %%DOCSDIR%%/html/widgets-validators-validators-qrc.html %%DOCSDIR%%/html/widgets-validators-validators-ui.html %%DOCSDIR%%/html/widgets-validators.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/windows-support.html %%DOCSDIR%%/html/windowsce-customization.html -%%DOCSDIR%%/html/windowsce-mobile-support.html %%DOCSDIR%%/html/windowsce-opengl.html %%DOCSDIR%%/html/windowsce-openvg.html %%DOCSDIR%%/html/windowsce-signing.html %%DOCSDIR%%/html/winsystem.html %%DOCSDIR%%/html/x11overlays.html %%DOCSDIR%%/html/xml-dom-tml.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-htmlinfo-htmlinfo-pro.html %%DOCSDIR%%/html/xml-htmlinfo-main-cpp.html +%%DOCSDIR%%/html/xml-htmlinfo-resources-qrc.html %%DOCSDIR%%/html/xml-htmlinfo.html %%DOCSDIR%%/html/xml-namespaces.html %%DOCSDIR%%/html/xml-processing.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-sax.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-streaming.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-mobiles-ui.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-schema-files-invalid-contact-xml.html %%DOCSDIR%%/html/xmlpatterns-schema-files-invalid-order-xml.html %%DOCSDIR%%/html/xmlpatterns-schema-files-invalid-recipe-xml.html %%DOCSDIR%%/html/xmlpatterns-schema-files-valid-contact-xml.html %%DOCSDIR%%/html/xmlpatterns-schema-files-valid-order-xml.html %%DOCSDIR%%/html/xmlpatterns-schema-files-valid-recipe-xml.html %%DOCSDIR%%/html/xmlpatterns-schema-main-cpp.html %%DOCSDIR%%/html/xmlpatterns-schema-mainwindow-cpp.html %%DOCSDIR%%/html/xmlpatterns-schema-mainwindow-h.html +%%DOCSDIR%%/html/xmlpatterns-schema-schema-mobiles-ui.html %%DOCSDIR%%/html/xmlpatterns-schema-schema-pro.html %%DOCSDIR%%/html/xmlpatterns-schema-schema-qrc.html %%DOCSDIR%%/html/xmlpatterns-schema-schema-ui.html %%DOCSDIR%%/html/xmlpatterns-schema.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-main-cpp.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-mainwindow-cpp.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-mainwindow-h.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-stationdialog-cpp.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-stationdialog-h.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-stationdialog-ui.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-stationquery-cpp.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-stationquery-h.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-timequery-cpp.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-timequery-h.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo-trafficinfo-pro.html %%DOCSDIR%%/html/xmlpatterns-trafficinfo.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/xmlprocessing.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/style @exec mkdir -p %D/%%DOCSDIR%%/html/scripts @dirrm %%DOCSDIR%%/html/scripts @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/tooltips/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/tooltips @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/stylesheet @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/styles/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/styles @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/icons/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets/icons @dirrm %%DOCSDIR%%/html/images/used-in-examples/widgets @dirrm %%DOCSDIR%%/html/images/used-in-examples/tools/undoframework/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/tools/undoframework @dirrm %%DOCSDIR%%/html/images/used-in-examples/tools @dirrm %%DOCSDIR%%/html/images/used-in-examples/sql/masterdetail/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/sql/masterdetail @dirrm %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/sql/drilldown @dirrm %%DOCSDIR%%/html/images/used-in-examples/sql @dirrm %%DOCSDIR%%/html/images/used-in-examples/painting/imagecomposition/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/painting/imagecomposition @dirrm %%DOCSDIR%%/html/images/used-in-examples/painting/basicdrawing/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/painting/basicdrawing @dirrm %%DOCSDIR%%/html/images/used-in-examples/painting @dirrm %%DOCSDIR%%/html/images/used-in-examples/opengl/textures/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/opengl/textures @dirrm %%DOCSDIR%%/html/images/used-in-examples/opengl @dirrm %%DOCSDIR%%/html/images/used-in-examples/network/qftp/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/network/qftp @dirrm %%DOCSDIR%%/html/images/used-in-examples/network @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/sdi @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/mdi @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/dockwidgets/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/dockwidgets @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows/application @dirrm %%DOCSDIR%%/html/images/used-in-examples/mainwindows @dirrm %%DOCSDIR%%/html/images/used-in-examples/itemviews/pixelator/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/itemviews/pixelator @dirrm %%DOCSDIR%%/html/images/used-in-examples/itemviews @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/weatheranchorlayout/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/weatheranchorlayout @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/padnavigator @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/dragdroprobot/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/dragdroprobot @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/diagramscene @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/basicgraphicslayouts/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview/basicgraphicslayouts @dirrm %%DOCSDIR%%/html/images/used-in-examples/graphicsview @dirrm %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/effects/blurpicker @dirrm %%DOCSDIR%%/html/images/used-in-examples/effects @dirrm %%DOCSDIR%%/html/images/used-in-examples/draganddrop/draggableicons/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/draganddrop/draggableicons @dirrm %%DOCSDIR%%/html/images/used-in-examples/draganddrop/delayedencoding/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/draganddrop/delayedencoding @dirrm %%DOCSDIR%%/html/images/used-in-examples/draganddrop @dirrm %%DOCSDIR%%/html/images/used-in-examples/dialogs/licensewizard/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/dialogs/licensewizard @dirrm %%DOCSDIR%%/html/images/used-in-examples/dialogs/configdialog/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/dialogs/configdialog @dirrm %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/dialogs/classwizard @dirrm %%DOCSDIR%%/html/images/used-in-examples/dialogs @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/win @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images/mac @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/textedit/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/textedit @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/spreadsheet/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/spreadsheet @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/qmediaplayer/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/qmediaplayer @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/interview/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/interview @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/books/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos/books @dirrm %%DOCSDIR%%/html/images/used-in-examples/demos -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/ui-components/searchbox/images -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/ui-components/searchbox -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/ui-components -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene/images -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/toys/dynamicscene -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/toys -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/animation/basics/images -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/animation/basics -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative/animation -@dirrm %%DOCSDIR%%/html/images/used-in-examples/declarative @dirrm %%DOCSDIR%%/html/images/used-in-examples/animation/easing/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/animation/easing @dirrm %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles/images @dirrm %%DOCSDIR%%/html/images/used-in-examples/animation/animatedtiles @dirrm %%DOCSDIR%%/html/images/used-in-examples/animation @dirrm %%DOCSDIR%%/html/images/used-in-examples @dirrm %%DOCSDIR%%/html/images @dirrm %%DOCSDIR%%/html @dirrm %%DOCSDIR%% Property changes on: head/misc/qt4-doc/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/misc/qt4-l10n/pkg-plist =================================================================== --- head/misc/qt4-l10n/pkg-plist (revision 297366) +++ head/misc/qt4-l10n/pkg-plist (revision 297367) @@ -1,92 +1,93 @@ share/qt4/translations/assistant_cs.qm share/qt4/translations/assistant_da.qm share/qt4/translations/assistant_de.qm share/qt4/translations/assistant_fr.qm share/qt4/translations/assistant_hu.qm share/qt4/translations/assistant_ja.qm share/qt4/translations/assistant_ko.qm share/qt4/translations/assistant_pl.qm share/qt4/translations/assistant_ru.qm share/qt4/translations/assistant_sl.qm share/qt4/translations/assistant_uk.qm share/qt4/translations/assistant_zh_CN.qm share/qt4/translations/assistant_zh_TW.qm share/qt4/translations/designer_cs.qm share/qt4/translations/designer_de.qm share/qt4/translations/designer_fr.qm share/qt4/translations/designer_hu.qm share/qt4/translations/designer_ja.qm share/qt4/translations/designer_ko.qm share/qt4/translations/designer_pl.qm share/qt4/translations/designer_ru.qm share/qt4/translations/designer_sl.qm share/qt4/translations/designer_uk.qm share/qt4/translations/designer_zh_CN.qm share/qt4/translations/designer_zh_TW.qm share/qt4/translations/linguist_cs.qm share/qt4/translations/linguist_de.qm share/qt4/translations/linguist_fr.qm share/qt4/translations/linguist_hu.qm share/qt4/translations/linguist_ja.qm share/qt4/translations/linguist_ko.qm share/qt4/translations/linguist_pl.qm share/qt4/translations/linguist_ru.qm share/qt4/translations/linguist_sl.qm share/qt4/translations/linguist_uk.qm share/qt4/translations/linguist_zh_CN.qm share/qt4/translations/linguist_zh_TW.qm share/qt4/translations/qt_ar.qm share/qt4/translations/qt_cs.qm share/qt4/translations/qt_da.qm share/qt4/translations/qt_de.qm share/qt4/translations/qt_es.qm share/qt4/translations/qt_fa.qm share/qt4/translations/qt_fr.qm share/qt4/translations/qt_gl.qm share/qt4/translations/qt_he.qm share/qt4/translations/qt_help_cs.qm share/qt4/translations/qt_help_da.qm share/qt4/translations/qt_help_de.qm share/qt4/translations/qt_help_fr.qm share/qt4/translations/qt_help_gl.qm share/qt4/translations/qt_help_hu.qm share/qt4/translations/qt_help_ja.qm share/qt4/translations/qt_help_ko.qm share/qt4/translations/qt_help_pl.qm share/qt4/translations/qt_help_ru.qm share/qt4/translations/qt_help_sl.qm share/qt4/translations/qt_help_uk.qm share/qt4/translations/qt_help_zh_CN.qm share/qt4/translations/qt_help_zh_TW.qm share/qt4/translations/qt_hu.qm share/qt4/translations/qt_ja.qm share/qt4/translations/qt_ko.qm +share/qt4/translations/qt_lt.qm share/qt4/translations/qt_pl.qm share/qt4/translations/qt_pt.qm share/qt4/translations/qt_ru.qm share/qt4/translations/qt_sk.qm share/qt4/translations/qt_sl.qm share/qt4/translations/qt_sv.qm share/qt4/translations/qt_uk.qm share/qt4/translations/qt_zh_CN.qm share/qt4/translations/qt_zh_TW.qm share/qt4/translations/qtconfig_hu.qm share/qt4/translations/qtconfig_ja.qm share/qt4/translations/qtconfig_ko.qm share/qt4/translations/qtconfig_pl.qm share/qt4/translations/qtconfig_ru.qm share/qt4/translations/qtconfig_sl.qm share/qt4/translations/qtconfig_uk.qm share/qt4/translations/qtconfig_zh_CN.qm share/qt4/translations/qtconfig_zh_TW.qm share/qt4/translations/qvfb_hu.qm share/qt4/translations/qvfb_ja.qm share/qt4/translations/qvfb_ko.qm share/qt4/translations/qvfb_pl.qm share/qt4/translations/qvfb_ru.qm share/qt4/translations/qvfb_sl.qm share/qt4/translations/qvfb_uk.qm share/qt4/translations/qvfb_zh_CN.qm share/qt4/translations/qvfb_zh_TW.qm @dirrm share/qt4/translations @dirrmtry share/qt4 Property changes on: head/misc/qt4-l10n/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/misc/qt4-qtdemo/pkg-plist =================================================================== --- head/misc/qt4-qtdemo/pkg-plist (revision 297366) +++ head/misc/qt4-qtdemo/pkg-plist (revision 297367) @@ -1,4247 +1,4971 @@ bin/qtdemo %%DEBUG%%bin/qtdemo.debug %%QT_PLUGINDIR_REL%%/designer/libarthurplugin.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/designer/libarthurplugin.so.debug %%QT_PLUGINDIR_REL%%/designer/libcontainerextension.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/designer/libcontainerextension.so.debug %%QT_PLUGINDIR_REL%%/designer/libcustomwidgetplugin.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/designer/libcustomwidgetplugin.so.debug %%QT_PLUGINDIR_REL%%/designer/libtaskmenuextension.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/designer/libtaskmenuextension.so.debug %%QT_PLUGINDIR_REL%%/designer/libworldtimeclockplugin.so %%DEBUG%%%%QT_PLUGINDIR_REL%%/designer/libworldtimeclockplugin.so.debug 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/boxes/3rdparty/fbm.c share/examples/qt4/demos/boxes/3rdparty/fbm.h share/examples/qt4/demos/boxes/basic.fsh share/examples/qt4/demos/boxes/basic.vsh share/examples/qt4/demos/boxes/boxes %%DEBUG%%share/examples/qt4/demos/boxes/boxes.debug share/examples/qt4/demos/boxes/boxes.pro share/examples/qt4/demos/boxes/boxes.qrc share/examples/qt4/demos/boxes/cubemap_negx.jpg share/examples/qt4/demos/boxes/cubemap_negy.jpg share/examples/qt4/demos/boxes/cubemap_negz.jpg share/examples/qt4/demos/boxes/cubemap_posx.jpg share/examples/qt4/demos/boxes/cubemap_posy.jpg share/examples/qt4/demos/boxes/cubemap_posz.jpg share/examples/qt4/demos/boxes/dotted.fsh share/examples/qt4/demos/boxes/fresnel.fsh share/examples/qt4/demos/boxes/glass.fsh share/examples/qt4/demos/boxes/glbuffers.cpp share/examples/qt4/demos/boxes/glbuffers.h share/examples/qt4/demos/boxes/glextensions.cpp share/examples/qt4/demos/boxes/glextensions.h share/examples/qt4/demos/boxes/gltrianglemesh.h share/examples/qt4/demos/boxes/granite.fsh share/examples/qt4/demos/boxes/main.cpp share/examples/qt4/demos/boxes/marble.fsh share/examples/qt4/demos/boxes/parameters.par share/examples/qt4/demos/boxes/qt-logo.jpg share/examples/qt4/demos/boxes/qt-logo.png share/examples/qt4/demos/boxes/qtbox.cpp share/examples/qt4/demos/boxes/qtbox.h share/examples/qt4/demos/boxes/reflection.fsh share/examples/qt4/demos/boxes/refraction.fsh share/examples/qt4/demos/boxes/roundedbox.cpp share/examples/qt4/demos/boxes/roundedbox.h share/examples/qt4/demos/boxes/scene.cpp share/examples/qt4/demos/boxes/scene.h share/examples/qt4/demos/boxes/smiley.png share/examples/qt4/demos/boxes/square.jpg share/examples/qt4/demos/boxes/trackball.cpp share/examples/qt4/demos/boxes/trackball.h share/examples/qt4/demos/boxes/wood.fsh share/examples/qt4/demos/browser/Info_mac.plist 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/data/addtab.png share/examples/qt4/demos/browser/data/browser.svg share/examples/qt4/demos/browser/data/closetab.png share/examples/qt4/demos/browser/data/data.qrc share/examples/qt4/demos/browser/data/defaultbookmarks.xbel share/examples/qt4/demos/browser/data/defaulticon.png share/examples/qt4/demos/browser/data/history.png share/examples/qt4/demos/browser/data/loading.gif 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/declarative/calculator/Core/Button.qml -share/examples/qt4/demos/declarative/calculator/Core/Display.qml -share/examples/qt4/demos/declarative/calculator/Core/calculator.js -share/examples/qt4/demos/declarative/calculator/Core/images/button-.png -share/examples/qt4/demos/declarative/calculator/Core/images/button-blue.png -share/examples/qt4/demos/declarative/calculator/Core/images/button-green.png -share/examples/qt4/demos/declarative/calculator/Core/images/button-purple.png -share/examples/qt4/demos/declarative/calculator/Core/images/button-red.png -share/examples/qt4/demos/declarative/calculator/Core/images/display.png -share/examples/qt4/demos/declarative/calculator/Core/qmldir -share/examples/qt4/demos/declarative/calculator/calculator.qml +share/examples/qt4/demos/declarative/calculator/calculator +%%DEBUG%%share/examples/qt4/demos/declarative/calculator/calculator.debug +share/examples/qt4/demos/declarative/calculator/calculator.desktop +share/examples/qt4/demos/declarative/calculator/calculator.pro share/examples/qt4/demos/declarative/calculator/calculator.qmlproject -share/examples/qt4/demos/declarative/flickr/common/Progress.qml -share/examples/qt4/demos/declarative/flickr/common/RssModel.qml -share/examples/qt4/demos/declarative/flickr/common/ScrollBar.qml -share/examples/qt4/demos/declarative/flickr/common/Slider.qml -share/examples/qt4/demos/declarative/flickr/common/qmldir -share/examples/qt4/demos/declarative/flickr/flickr-90.qml -share/examples/qt4/demos/declarative/flickr/flickr.qml +share/examples/qt4/demos/declarative/calculator/calculator.svg +share/examples/qt4/demos/declarative/calculator/calculator64.png +share/examples/qt4/demos/declarative/calculator/calculator80.png +share/examples/qt4/demos/declarative/calculator/calculator_harmattan.desktop +share/examples/qt4/demos/declarative/calculator/main.cpp +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/Button.qml +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/Display.qml +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/calculator.js +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/images/button-.png +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/images/button-blue.png +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/images/button-green.png +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/images/button-purple.png +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/images/button-red.png +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/images/display.png +share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/qmldir +share/examples/qt4/demos/declarative/calculator/qml/calculator/calculator.qml +share/examples/qt4/demos/declarative/flickr/flickr +%%DEBUG%%share/examples/qt4/demos/declarative/flickr/flickr.debug +share/examples/qt4/demos/declarative/flickr/flickr.desktop +share/examples/qt4/demos/declarative/flickr/flickr.pro share/examples/qt4/demos/declarative/flickr/flickr.qmlproject -share/examples/qt4/demos/declarative/flickr/mobile/Button.qml -share/examples/qt4/demos/declarative/flickr/mobile/GridDelegate.qml -share/examples/qt4/demos/declarative/flickr/mobile/ImageDetails.qml -share/examples/qt4/demos/declarative/flickr/mobile/ListDelegate.qml -share/examples/qt4/demos/declarative/flickr/mobile/TitleBar.qml -share/examples/qt4/demos/declarative/flickr/mobile/ToolBar.qml -share/examples/qt4/demos/declarative/flickr/mobile/images/gloss.png -share/examples/qt4/demos/declarative/flickr/mobile/images/lineedit.png -share/examples/qt4/demos/declarative/flickr/mobile/images/lineedit.sci -share/examples/qt4/demos/declarative/flickr/mobile/images/quit.png -share/examples/qt4/demos/declarative/flickr/mobile/images/stripes.png -share/examples/qt4/demos/declarative/flickr/mobile/images/titlebar.png -share/examples/qt4/demos/declarative/flickr/mobile/images/titlebar.sci -share/examples/qt4/demos/declarative/flickr/mobile/images/toolbutton.png -share/examples/qt4/demos/declarative/flickr/mobile/images/toolbutton.sci -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/Explosion.qml -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/Tile.qml -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/back.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/background.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/bomb-color.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/bomb.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/face-sad.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/face-smile-big.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/face-smile.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/flag-color.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/flag.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/front.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/quit.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics/star.png -share/examples/qt4/demos/declarative/minehunt/MinehuntCore/qmldir +share/examples/qt4/demos/declarative/flickr/flickr.svg +share/examples/qt4/demos/declarative/flickr/flickr64.png +share/examples/qt4/demos/declarative/flickr/flickr80.png +share/examples/qt4/demos/declarative/flickr/flickr_harmattan.desktop +share/examples/qt4/demos/declarative/flickr/main.cpp +share/examples/qt4/demos/declarative/flickr/qml/flickr/common/Progress.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/common/RssModel.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/common/ScrollBar.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/common/Slider.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/common/qmldir +share/examples/qt4/demos/declarative/flickr/qml/flickr/flickr-90.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/flickr.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/Button.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/GridDelegate.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/ImageDetails.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/ListDelegate.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/TitleBar.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/ToolBar.qml +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/gloss.png +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/lineedit.png +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/lineedit.sci +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/quit.png +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/stripes.png +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/titlebar.png +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/titlebar.sci +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/toolbutton.png +share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images/toolbutton.sci +share/examples/qt4/demos/declarative/minehunt/main.cpp share/examples/qt4/demos/declarative/minehunt/minehunt +share/examples/qt4/demos/declarative/minehunt/minehunt.cpp %%DEBUG%%share/examples/qt4/demos/declarative/minehunt/minehunt.debug +share/examples/qt4/demos/declarative/minehunt/minehunt.h share/examples/qt4/demos/declarative/minehunt/minehunt.pro -share/examples/qt4/demos/declarative/minehunt/minehunt.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/Button.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/EditableButton.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/ProgressBar.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/RssModel.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/Tag.qml -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/images/box-shadow.png -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/images/busy.png -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/images/cardboard.png -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/qmldir -share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/script/script.js -share/examples/qt4/demos/declarative/photoviewer/i18n/base.ts -share/examples/qt4/demos/declarative/photoviewer/i18n/qml_fr.qm -share/examples/qt4/demos/declarative/photoviewer/i18n/qml_fr.ts -share/examples/qt4/demos/declarative/photoviewer/photoviewer.qml +share/examples/qt4/demos/declarative/minehunt/minehunt.qmlproject +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/Explosion.qml +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/Tile.qml +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/back.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/background.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/bomb-color.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/bomb.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/face-sad.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/face-smile-big.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/face-smile.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/flag-color.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/flag.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/front.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/quit.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics/star.png +share/examples/qt4/demos/declarative/minehunt/qml/minehunt/minehunt.qml +share/examples/qt4/demos/declarative/photoviewer/main.cpp +share/examples/qt4/demos/declarative/photoviewer/photoviewer +%%DEBUG%%share/examples/qt4/demos/declarative/photoviewer/photoviewer.debug +share/examples/qt4/demos/declarative/photoviewer/photoviewer.desktop +share/examples/qt4/demos/declarative/photoviewer/photoviewer.pro share/examples/qt4/demos/declarative/photoviewer/photoviewer.qmlproject -share/examples/qt4/demos/declarative/rssnews/content/BusyIndicator.qml -share/examples/qt4/demos/declarative/rssnews/content/CategoryDelegate.qml -share/examples/qt4/demos/declarative/rssnews/content/NewsDelegate.qml -share/examples/qt4/demos/declarative/rssnews/content/RssFeeds.qml -share/examples/qt4/demos/declarative/rssnews/content/ScrollBar.qml -share/examples/qt4/demos/declarative/rssnews/content/images/busy.png -share/examples/qt4/demos/declarative/rssnews/content/images/scrollbar.png -share/examples/qt4/demos/declarative/rssnews/rssnews.qml +share/examples/qt4/demos/declarative/photoviewer/photoviewer.svg +share/examples/qt4/demos/declarative/photoviewer/photoviewer64.png +share/examples/qt4/demos/declarative/photoviewer/photoviewer80.png +share/examples/qt4/demos/declarative/photoviewer/photoviewer_harmattan.desktop +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/AlbumDelegate.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/BusyIndicator.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/Button.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/EditableButton.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/PhotoDelegate.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/ProgressBar.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/RssModel.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/Tag.qml +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/images/box-shadow.png +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/images/busy.png +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/images/cardboard.png +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/qmldir +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/script/script.js +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/i18n/base.ts +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/i18n/qml_fr.qm +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/i18n/qml_fr.ts +share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/photoviewer.qml +share/examples/qt4/demos/declarative/rssnews/main.cpp +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/BusyIndicator.qml +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/CategoryDelegate.qml +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/NewsDelegate.qml +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/RssFeeds.qml +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/ScrollBar.qml +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/images/busy.png +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/images/scrollbar.png +share/examples/qt4/demos/declarative/rssnews/qml/rssnews/rssnews.qml +share/examples/qt4/demos/declarative/rssnews/rssnews +%%DEBUG%%share/examples/qt4/demos/declarative/rssnews/rssnews.debug +share/examples/qt4/demos/declarative/rssnews/rssnews.desktop +share/examples/qt4/demos/declarative/rssnews/rssnews.pro share/examples/qt4/demos/declarative/rssnews/rssnews.qmlproject -share/examples/qt4/demos/declarative/samegame/SamegameCore/BoomBlock.qml -share/examples/qt4/demos/declarative/samegame/SamegameCore/Button.qml -share/examples/qt4/demos/declarative/samegame/SamegameCore/Dialog.qml -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/background.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/blueStar.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/blueStone.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/greenStar.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/greenStone.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/redStar.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/redStone.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/star.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/pics/yellowStone.png -share/examples/qt4/demos/declarative/samegame/SamegameCore/qmldir -share/examples/qt4/demos/declarative/samegame/SamegameCore/samegame.js -share/examples/qt4/demos/declarative/samegame/highscores/README -share/examples/qt4/demos/declarative/samegame/highscores/score_data.xml -share/examples/qt4/demos/declarative/samegame/highscores/score_style.xsl -share/examples/qt4/demos/declarative/samegame/highscores/scores.php -share/examples/qt4/demos/declarative/samegame/samegame.qml +share/examples/qt4/demos/declarative/rssnews/rssnews.svg +share/examples/qt4/demos/declarative/rssnews/rssnews64.png +share/examples/qt4/demos/declarative/rssnews/rssnews80.png +share/examples/qt4/demos/declarative/rssnews/rssnews_harmattan.desktop +share/examples/qt4/demos/declarative/samegame/main.cpp +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/BoomBlock.qml +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/Button.qml +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/Dialog.qml +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/background.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/blueStar.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/blueStone.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/greenStar.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/greenStone.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/redStar.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/redStone.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/star.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics/yellowStone.png +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/qmldir +share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/samegame.js +share/examples/qt4/demos/declarative/samegame/qml/samegame/highscores/README +share/examples/qt4/demos/declarative/samegame/qml/samegame/highscores/score_data.xml +share/examples/qt4/demos/declarative/samegame/qml/samegame/highscores/score_style.xsl +share/examples/qt4/demos/declarative/samegame/qml/samegame/highscores/scores.php +share/examples/qt4/demos/declarative/samegame/qml/samegame/samegame.qml +share/examples/qt4/demos/declarative/samegame/samegame +%%DEBUG%%share/examples/qt4/demos/declarative/samegame/samegame.debug +share/examples/qt4/demos/declarative/samegame/samegame.desktop +share/examples/qt4/demos/declarative/samegame/samegame.pro share/examples/qt4/demos/declarative/samegame/samegame.qmlproject -share/examples/qt4/demos/declarative/snake/content/Button.qml -share/examples/qt4/demos/declarative/snake/content/Cookie.qml -share/examples/qt4/demos/declarative/snake/content/HighScoreModel.qml -share/examples/qt4/demos/declarative/snake/content/Link.qml -share/examples/qt4/demos/declarative/snake/content/Skull.qml -share/examples/qt4/demos/declarative/snake/content/pics/README -share/examples/qt4/demos/declarative/snake/content/pics/background.png -share/examples/qt4/demos/declarative/snake/content/pics/blueStar.png -share/examples/qt4/demos/declarative/snake/content/pics/blueStone.png -share/examples/qt4/demos/declarative/snake/content/pics/cookie.png -share/examples/qt4/demos/declarative/snake/content/pics/eyes.svg -share/examples/qt4/demos/declarative/snake/content/pics/head.png -share/examples/qt4/demos/declarative/snake/content/pics/head.svg -share/examples/qt4/demos/declarative/snake/content/pics/pause.png -share/examples/qt4/demos/declarative/snake/content/pics/redStar.png -share/examples/qt4/demos/declarative/snake/content/pics/redStone.png -share/examples/qt4/demos/declarative/snake/content/pics/skull.png -share/examples/qt4/demos/declarative/snake/content/pics/snake.jpg -share/examples/qt4/demos/declarative/snake/content/pics/star.png -share/examples/qt4/demos/declarative/snake/content/pics/stoneShadow.png -share/examples/qt4/demos/declarative/snake/content/pics/yellowStar.png -share/examples/qt4/demos/declarative/snake/content/pics/yellowStone.png -share/examples/qt4/demos/declarative/snake/content/snake.js -share/examples/qt4/demos/declarative/snake/snake.qml +share/examples/qt4/demos/declarative/samegame/samegame.svg +share/examples/qt4/demos/declarative/samegame/samegame64.png +share/examples/qt4/demos/declarative/samegame/samegame80.png +share/examples/qt4/demos/declarative/samegame/samegame_harmattan.desktop +share/examples/qt4/demos/declarative/snake/main.cpp +share/examples/qt4/demos/declarative/snake/qml/snake/content/Button.qml +share/examples/qt4/demos/declarative/snake/qml/snake/content/Cookie.qml +share/examples/qt4/demos/declarative/snake/qml/snake/content/HighScoreModel.qml +share/examples/qt4/demos/declarative/snake/qml/snake/content/Link.qml +share/examples/qt4/demos/declarative/snake/qml/snake/content/Skull.qml +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/README +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/background.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/blueStar.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/blueStone.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/cookie.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/eyes.svg +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/head.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/head.svg +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/pause.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/redStar.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/redStone.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/skull.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/snake.jpg +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/star.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/stoneShadow.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/yellowStar.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/pics/yellowStone.png +share/examples/qt4/demos/declarative/snake/qml/snake/content/snake.js +share/examples/qt4/demos/declarative/snake/qml/snake/snake.qml +share/examples/qt4/demos/declarative/snake/snake +%%DEBUG%%share/examples/qt4/demos/declarative/snake/snake.debug +share/examples/qt4/demos/declarative/snake/snake.desktop +share/examples/qt4/demos/declarative/snake/snake.pro share/examples/qt4/demos/declarative/snake/snake.qmlproject -share/examples/qt4/demos/declarative/twitter/TwitterCore/Button.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/FatDelegate.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/Input.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/Loading.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/MultiTitleBar.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/RssModel.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/SearchView.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/TitleBar.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/ToolBar.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/UserModel.qml -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/gloss.png -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/lineedit.png -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/lineedit.sci -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/loading.png -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/quit.png -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/stripes.png -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/titlebar.png -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/titlebar.sci -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/toolbutton.png -share/examples/qt4/demos/declarative/twitter/TwitterCore/images/toolbutton.sci -share/examples/qt4/demos/declarative/twitter/TwitterCore/qmldir -share/examples/qt4/demos/declarative/twitter/twitter.qml +share/examples/qt4/demos/declarative/snake/snake.svg +share/examples/qt4/demos/declarative/snake/snake64.png +share/examples/qt4/demos/declarative/snake/snake80.png +share/examples/qt4/demos/declarative/snake/snake_harmattan.desktop +share/examples/qt4/demos/declarative/twitter/main.cpp +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/Button.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/FatDelegate.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/Input.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/Loading.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/MultiTitleBar.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/RssModel.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/SearchView.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/TitleBar.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/ToolBar.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/UserModel.qml +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/gloss.png +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/lineedit.png +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/lineedit.sci +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/loading.png +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/quit.png +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/stripes.png +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/titlebar.png +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/titlebar.sci +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/toolbutton.png +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images/toolbutton.sci +share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/qmldir +share/examples/qt4/demos/declarative/twitter/qml/twitter/twitter.qml +share/examples/qt4/demos/declarative/twitter/twitter +%%DEBUG%%share/examples/qt4/demos/declarative/twitter/twitter.debug +share/examples/qt4/demos/declarative/twitter/twitter.desktop +share/examples/qt4/demos/declarative/twitter/twitter.pro share/examples/qt4/demos/declarative/twitter/twitter.qmlproject -share/examples/qt4/demos/declarative/webbrowser/content/Button.qml -share/examples/qt4/demos/declarative/webbrowser/content/FlickableWebView.qml -share/examples/qt4/demos/declarative/webbrowser/content/Header.qml -share/examples/qt4/demos/declarative/webbrowser/content/ScrollBar.qml -share/examples/qt4/demos/declarative/webbrowser/content/UrlInput.qml -share/examples/qt4/demos/declarative/webbrowser/content/pics/display.png -share/examples/qt4/demos/declarative/webbrowser/content/pics/edit-delete.png -share/examples/qt4/demos/declarative/webbrowser/content/pics/go-jump-locationbar.png -share/examples/qt4/demos/declarative/webbrowser/content/pics/go-next-view.png -share/examples/qt4/demos/declarative/webbrowser/content/pics/go-previous-view.png -share/examples/qt4/demos/declarative/webbrowser/content/pics/scrollbar.png -share/examples/qt4/demos/declarative/webbrowser/content/pics/titlebar-bg.png -share/examples/qt4/demos/declarative/webbrowser/content/pics/view-refresh.png -share/examples/qt4/demos/declarative/webbrowser/webbrowser.qml +share/examples/qt4/demos/declarative/twitter/twitter.svg +share/examples/qt4/demos/declarative/twitter/twitter64.png +share/examples/qt4/demos/declarative/twitter/twitter80.png +share/examples/qt4/demos/declarative/twitter/twitter_harmattan.desktop +share/examples/qt4/demos/declarative/webbrowser/main.cpp +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/Button.qml +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/FlickableWebView.qml +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/Header.qml +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/ScrollBar.qml +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/UrlInput.qml +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/display.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/edit-delete.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/go-jump-locationbar.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/go-next-view.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/go-previous-view.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/scrollbar.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/titlebar-bg.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics/view-refresh.png +share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/webbrowser.qml +share/examples/qt4/demos/declarative/webbrowser/webbrowser +%%DEBUG%%share/examples/qt4/demos/declarative/webbrowser/webbrowser.debug +share/examples/qt4/demos/declarative/webbrowser/webbrowser.desktop +share/examples/qt4/demos/declarative/webbrowser/webbrowser.pro share/examples/qt4/demos/declarative/webbrowser/webbrowser.qmlproject +share/examples/qt4/demos/declarative/webbrowser/webbrowser.svg +share/examples/qt4/demos/declarative/webbrowser/webbrowser64.png +share/examples/qt4/demos/declarative/webbrowser/webbrowser80.png +share/examples/qt4/demos/declarative/webbrowser/webbrowser_harmattan.desktop 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/glhypnotizer/glhypnotizer +%%DEBUG%%share/examples/qt4/demos/glhypnotizer/glhypnotizer.debug +share/examples/qt4/demos/glhypnotizer/glhypnotizer.pro +share/examples/qt4/demos/glhypnotizer/hypnotizer.qrc +share/examples/qt4/demos/glhypnotizer/main.cpp +share/examples/qt4/demos/glhypnotizer/qt-logo.png +share/examples/qt4/demos/glhypnotizer/spiral.svg 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/helper/qmlapplicationviewer/qmlapplicationviewer.cpp +share/examples/qt4/demos/helper/qmlapplicationviewer/qmlapplicationviewer.h +share/examples/qt4/demos/helper/qmlapplicationviewer/qmlapplicationviewer.pri 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/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/qmediaplayer/images/screen.png share/examples/qt4/demos/qmediaplayer/main.cpp share/examples/qt4/demos/qmediaplayer/mediaplayer.cpp share/examples/qt4/demos/qmediaplayer/mediaplayer.h share/examples/qt4/demos/qmediaplayer/mediaplayer.qrc share/examples/qt4/demos/qmediaplayer/qmediaplayer %%DEBUG%%share/examples/qt4/demos/qmediaplayer/qmediaplayer.debug share/examples/qt4/demos/qmediaplayer/qmediaplayer.pro share/examples/qt4/demos/qmediaplayer/settings.ui share/examples/qt4/demos/qtdemo/Info_mac.plist 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/spectrum/3rdparty/fftreal/Array.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/Array.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/DynArray.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/DynArray.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealFixLen.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealFixLen.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealFixLenParam.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealPassDirect.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealPassDirect.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealPassInverse.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealPassInverse.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealSelect.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealSelect.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealUseTrigo.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/FFTRealUseTrigo.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/OscSinCos.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/OscSinCos.hpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/def.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/fftreal.pro share/examples/qt4/demos/spectrum/3rdparty/fftreal/fftreal_wrapper.cpp share/examples/qt4/demos/spectrum/3rdparty/fftreal/fftreal_wrapper.h share/examples/qt4/demos/spectrum/3rdparty/fftreal/license.txt share/examples/qt4/demos/spectrum/3rdparty/fftreal/readme.txt share/examples/qt4/demos/spectrum/README.txt share/examples/qt4/demos/spectrum/TODO.txt share/examples/qt4/demos/spectrum/app/app.pro share/examples/qt4/demos/spectrum/app/engine.cpp share/examples/qt4/demos/spectrum/app/engine.h share/examples/qt4/demos/spectrum/app/frequencyspectrum.cpp share/examples/qt4/demos/spectrum/app/frequencyspectrum.h share/examples/qt4/demos/spectrum/app/images/record.png share/examples/qt4/demos/spectrum/app/images/settings.png share/examples/qt4/demos/spectrum/app/levelmeter.cpp share/examples/qt4/demos/spectrum/app/levelmeter.h share/examples/qt4/demos/spectrum/app/main.cpp share/examples/qt4/demos/spectrum/app/mainwidget.cpp share/examples/qt4/demos/spectrum/app/mainwidget.h share/examples/qt4/demos/spectrum/app/progressbar.cpp share/examples/qt4/demos/spectrum/app/progressbar.h share/examples/qt4/demos/spectrum/app/settingsdialog.cpp share/examples/qt4/demos/spectrum/app/settingsdialog.h share/examples/qt4/demos/spectrum/app/spectrograph.cpp share/examples/qt4/demos/spectrum/app/spectrograph.h share/examples/qt4/demos/spectrum/app/spectrum.h share/examples/qt4/demos/spectrum/app/spectrum.qrc share/examples/qt4/demos/spectrum/app/spectrumanalyser.cpp share/examples/qt4/demos/spectrum/app/spectrumanalyser.h share/examples/qt4/demos/spectrum/app/tonegenerator.cpp share/examples/qt4/demos/spectrum/app/tonegenerator.h share/examples/qt4/demos/spectrum/app/tonegeneratordialog.cpp share/examples/qt4/demos/spectrum/app/tonegeneratordialog.h share/examples/qt4/demos/spectrum/app/utils.cpp share/examples/qt4/demos/spectrum/app/utils.h share/examples/qt4/demos/spectrum/app/waveform.cpp share/examples/qt4/demos/spectrum/app/waveform.h share/examples/qt4/demos/spectrum/app/wavfile.cpp share/examples/qt4/demos/spectrum/app/wavfile.h share/examples/qt4/demos/spectrum/spectrum.pri share/examples/qt4/demos/spectrum/spectrum.pro share/examples/qt4/demos/spreadsheet/images/interview.png share/examples/qt4/demos/spreadsheet/main.cpp share/examples/qt4/demos/spreadsheet/printview.cpp share/examples/qt4/demos/spreadsheet/printview.h share/examples/qt4/demos/spreadsheet/spreadsheet share/examples/qt4/demos/spreadsheet/spreadsheet.cpp %%DEBUG%%share/examples/qt4/demos/spreadsheet/spreadsheet.debug share/examples/qt4/demos/spreadsheet/spreadsheet.h share/examples/qt4/demos/spreadsheet/spreadsheet.pro share/examples/qt4/demos/spreadsheet/spreadsheet.qrc share/examples/qt4/demos/spreadsheet/spreadsheetdelegate.cpp share/examples/qt4/demos/spreadsheet/spreadsheetdelegate.h share/examples/qt4/demos/spreadsheet/spreadsheetitem.cpp share/examples/qt4/demos/spreadsheet/spreadsheetitem.h 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/sub-attaq/animationmanager.cpp share/examples/qt4/demos/sub-attaq/animationmanager.h share/examples/qt4/demos/sub-attaq/boat.cpp share/examples/qt4/demos/sub-attaq/boat.h share/examples/qt4/demos/sub-attaq/boat_p.h share/examples/qt4/demos/sub-attaq/bomb.cpp share/examples/qt4/demos/sub-attaq/bomb.h share/examples/qt4/demos/sub-attaq/graphicsscene.cpp share/examples/qt4/demos/sub-attaq/graphicsscene.h share/examples/qt4/demos/sub-attaq/main.cpp share/examples/qt4/demos/sub-attaq/mainwindow.cpp share/examples/qt4/demos/sub-attaq/mainwindow.h share/examples/qt4/demos/sub-attaq/pics/big/background.png share/examples/qt4/demos/sub-attaq/pics/big/boat.png share/examples/qt4/demos/sub-attaq/pics/big/bomb.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/boat/step1.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/boat/step2.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/boat/step3.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/boat/step4.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/submarine/step1.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/submarine/step2.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/submarine/step3.png share/examples/qt4/demos/sub-attaq/pics/big/explosion/submarine/step4.png share/examples/qt4/demos/sub-attaq/pics/big/submarine.png share/examples/qt4/demos/sub-attaq/pics/big/surface.png share/examples/qt4/demos/sub-attaq/pics/big/torpedo.png share/examples/qt4/demos/sub-attaq/pics/scalable/background-n810.svg share/examples/qt4/demos/sub-attaq/pics/scalable/background.svg share/examples/qt4/demos/sub-attaq/pics/scalable/boat.svg share/examples/qt4/demos/sub-attaq/pics/scalable/bomb.svg share/examples/qt4/demos/sub-attaq/pics/scalable/sand.svg share/examples/qt4/demos/sub-attaq/pics/scalable/see.svg share/examples/qt4/demos/sub-attaq/pics/scalable/sky.svg share/examples/qt4/demos/sub-attaq/pics/scalable/sub-attaq.svg share/examples/qt4/demos/sub-attaq/pics/scalable/submarine.svg share/examples/qt4/demos/sub-attaq/pics/scalable/surface.svg share/examples/qt4/demos/sub-attaq/pics/scalable/torpedo.svg share/examples/qt4/demos/sub-attaq/pics/small/background.png share/examples/qt4/demos/sub-attaq/pics/small/boat.png share/examples/qt4/demos/sub-attaq/pics/small/bomb.png share/examples/qt4/demos/sub-attaq/pics/small/submarine.png share/examples/qt4/demos/sub-attaq/pics/small/surface.png share/examples/qt4/demos/sub-attaq/pics/small/torpedo.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-a.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-a2.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-b.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-dash.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-excl.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-q.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-s.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-t.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-t2.png share/examples/qt4/demos/sub-attaq/pics/welcome/logo-u.png share/examples/qt4/demos/sub-attaq/pixmapitem.cpp share/examples/qt4/demos/sub-attaq/pixmapitem.h share/examples/qt4/demos/sub-attaq/progressitem.cpp share/examples/qt4/demos/sub-attaq/progressitem.h share/examples/qt4/demos/sub-attaq/qanimationstate.cpp share/examples/qt4/demos/sub-attaq/qanimationstate.h share/examples/qt4/demos/sub-attaq/states.cpp share/examples/qt4/demos/sub-attaq/states.h share/examples/qt4/demos/sub-attaq/sub-attaq %%DEBUG%%share/examples/qt4/demos/sub-attaq/sub-attaq.debug share/examples/qt4/demos/sub-attaq/sub-attaq.pro share/examples/qt4/demos/sub-attaq/subattaq.qrc share/examples/qt4/demos/sub-attaq/submarine.cpp share/examples/qt4/demos/sub-attaq/submarine.h share/examples/qt4/demos/sub-attaq/submarine_p.h share/examples/qt4/demos/sub-attaq/textinformationitem.cpp share/examples/qt4/demos/sub-attaq/textinformationitem.h share/examples/qt4/demos/sub-attaq/torpedo.cpp share/examples/qt4/demos/sub-attaq/torpedo.h 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.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/animation/README share/examples/qt4/examples/animation/animatedtiles/animatedtiles %%DEBUG%%share/examples/qt4/examples/animation/animatedtiles/animatedtiles.debug share/examples/qt4/examples/animation/animatedtiles/animatedtiles.pro share/examples/qt4/examples/animation/animatedtiles/animatedtiles.qrc share/examples/qt4/examples/animation/animatedtiles/images/Time-For-Lunch-2.jpg share/examples/qt4/examples/animation/animatedtiles/images/centered.png share/examples/qt4/examples/animation/animatedtiles/images/ellipse.png share/examples/qt4/examples/animation/animatedtiles/images/figure8.png share/examples/qt4/examples/animation/animatedtiles/images/kinetic.png share/examples/qt4/examples/animation/animatedtiles/images/random.png share/examples/qt4/examples/animation/animatedtiles/images/tile.png share/examples/qt4/examples/animation/animatedtiles/main.cpp share/examples/qt4/examples/animation/animation.pro share/examples/qt4/examples/animation/appchooser/appchooser %%DEBUG%%share/examples/qt4/examples/animation/appchooser/appchooser.debug share/examples/qt4/examples/animation/appchooser/appchooser.pro share/examples/qt4/examples/animation/appchooser/appchooser.qrc share/examples/qt4/examples/animation/appchooser/main.cpp share/examples/qt4/examples/animation/easing/animation.h share/examples/qt4/examples/animation/easing/easing %%DEBUG%%share/examples/qt4/examples/animation/easing/easing.debug share/examples/qt4/examples/animation/easing/easing.pro share/examples/qt4/examples/animation/easing/easing.qrc share/examples/qt4/examples/animation/easing/form.ui share/examples/qt4/examples/animation/easing/images/qt-logo.png share/examples/qt4/examples/animation/easing/main.cpp share/examples/qt4/examples/animation/easing/window.cpp share/examples/qt4/examples/animation/easing/window.h share/examples/qt4/examples/animation/moveblocks/main.cpp share/examples/qt4/examples/animation/moveblocks/moveblocks %%DEBUG%%share/examples/qt4/examples/animation/moveblocks/moveblocks.debug share/examples/qt4/examples/animation/moveblocks/moveblocks.pro share/examples/qt4/examples/animation/states/main.cpp share/examples/qt4/examples/animation/states/states %%DEBUG%%share/examples/qt4/examples/animation/states/states.debug share/examples/qt4/examples/animation/states/states.pro share/examples/qt4/examples/animation/states/states.qrc share/examples/qt4/examples/animation/stickman/animation.cpp share/examples/qt4/examples/animation/stickman/animation.h share/examples/qt4/examples/animation/stickman/graphicsview.cpp share/examples/qt4/examples/animation/stickman/graphicsview.h share/examples/qt4/examples/animation/stickman/lifecycle.cpp share/examples/qt4/examples/animation/stickman/lifecycle.h share/examples/qt4/examples/animation/stickman/main.cpp share/examples/qt4/examples/animation/stickman/node.cpp share/examples/qt4/examples/animation/stickman/node.h +share/examples/qt4/examples/animation/stickman/rectbutton.cpp +share/examples/qt4/examples/animation/stickman/rectbutton.h share/examples/qt4/examples/animation/stickman/stickman share/examples/qt4/examples/animation/stickman/stickman.cpp %%DEBUG%%share/examples/qt4/examples/animation/stickman/stickman.debug share/examples/qt4/examples/animation/stickman/stickman.h share/examples/qt4/examples/animation/stickman/stickman.pro share/examples/qt4/examples/animation/stickman/stickman.qrc share/examples/qt4/examples/dbus/chat/chat.cpp share/examples/qt4/examples/dbus/chat/chat.h 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/chat/dbus-chat %%DEBUG%%share/examples/qt4/examples/dbus/chat/dbus-chat.debug share/examples/qt4/examples/dbus/chat/dbus-chat.pro 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.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.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/declarative/animation/animation.qmlproject -share/examples/qt4/examples/declarative/animation/basics/basics.qmlproject -share/examples/qt4/examples/declarative/animation/basics/color-animation.qml -share/examples/qt4/examples/declarative/animation/basics/images/face-smile.png -share/examples/qt4/examples/declarative/animation/basics/images/moon.png -share/examples/qt4/examples/declarative/animation/basics/images/shadow.png -share/examples/qt4/examples/declarative/animation/basics/images/star.png -share/examples/qt4/examples/declarative/animation/basics/images/sun.png -share/examples/qt4/examples/declarative/animation/basics/property-animation.qml -share/examples/qt4/examples/declarative/animation/behaviors/SideRect.qml -share/examples/qt4/examples/declarative/animation/behaviors/behavior-example.qml -share/examples/qt4/examples/declarative/animation/behaviors/behaviors.qmlproject -share/examples/qt4/examples/declarative/animation/behaviors/wigglytext.qml -share/examples/qt4/examples/declarative/animation/easing/content/QuitButton.qml -share/examples/qt4/examples/declarative/animation/easing/content/quit.png +share/examples/qt4/examples/declarative/animation/basics/color-animation/basics.qmlproject +share/examples/qt4/examples/declarative/animation/basics/color-animation/color-animation +%%DEBUG%%share/examples/qt4/examples/declarative/animation/basics/color-animation/color-animation.debug +share/examples/qt4/examples/declarative/animation/basics/color-animation/color-animation.png +share/examples/qt4/examples/declarative/animation/basics/color-animation/color-animation.pro +share/examples/qt4/examples/declarative/animation/basics/color-animation/color-animation.svg +share/examples/qt4/examples/declarative/animation/basics/color-animation/main.cpp +share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation/color-animation.qml +share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation/images/face-smile.png +share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation/images/moon.png +share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation/images/shadow.png +share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation/images/star.png +share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation/images/sun.png +share/examples/qt4/examples/declarative/animation/basics/property-animation/main.cpp +share/examples/qt4/examples/declarative/animation/basics/property-animation/property-animation +%%DEBUG%%share/examples/qt4/examples/declarative/animation/basics/property-animation/property-animation.debug +share/examples/qt4/examples/declarative/animation/basics/property-animation/property-animation.png +share/examples/qt4/examples/declarative/animation/basics/property-animation/property-animation.pro +share/examples/qt4/examples/declarative/animation/basics/property-animation/property-animation.svg +share/examples/qt4/examples/declarative/animation/basics/property-animation/property.qmlproject +share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation/images/face-smile.png +share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation/images/moon.png +share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation/images/shadow.png +share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation/images/star.png +share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation/images/sun.png +share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation/property-animation.qml +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/behavior-example +%%DEBUG%%share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/behavior-example.debug +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/behavior-example.png +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/behavior-example.pro +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/behavior-example.svg +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/behaviors.qmlproject +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/main.cpp +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/qml/behaviours/SideRect.qml +share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/qml/behaviours/behavior-example.qml +share/examples/qt4/examples/declarative/animation/easing/easing +%%DEBUG%%share/examples/qt4/examples/declarative/animation/easing/easing.debug +share/examples/qt4/examples/declarative/animation/easing/easing.png +share/examples/qt4/examples/declarative/animation/easing/easing.pro share/examples/qt4/examples/declarative/animation/easing/easing.qml share/examples/qt4/examples/declarative/animation/easing/easing.qmlproject -share/examples/qt4/examples/declarative/animation/states/qt-logo.png -share/examples/qt4/examples/declarative/animation/states/states.qml +share/examples/qt4/examples/declarative/animation/easing/easing.svg +share/examples/qt4/examples/declarative/animation/easing/main.cpp +share/examples/qt4/examples/declarative/animation/easing/qml/easing/content/QuitButton.qml +share/examples/qt4/examples/declarative/animation/easing/qml/easing/content/quit.png +share/examples/qt4/examples/declarative/animation/easing/qml/easing/easing.qml +share/examples/qt4/examples/declarative/animation/states/main.cpp +share/examples/qt4/examples/declarative/animation/states/qml/states/qt-logo.png +share/examples/qt4/examples/declarative/animation/states/qml/states/states.qml +share/examples/qt4/examples/declarative/animation/states/qml/states/transitions.qml +share/examples/qt4/examples/declarative/animation/states/states +%%DEBUG%%share/examples/qt4/examples/declarative/animation/states/states.debug +share/examples/qt4/examples/declarative/animation/states/states.png +share/examples/qt4/examples/declarative/animation/states/states.pro share/examples/qt4/examples/declarative/animation/states/states.qmlproject -share/examples/qt4/examples/declarative/animation/states/transitions.qml +share/examples/qt4/examples/declarative/animation/states/states.svg share/examples/qt4/examples/declarative/cppextensions/Makefile share/examples/qt4/examples/declarative/cppextensions/cppextensions.pro share/examples/qt4/examples/declarative/cppextensions/cppextensions.qmlproject share/examples/qt4/examples/declarative/cppextensions/imageprovider/ImageProviderCore/libqmlimageproviderplugin.so %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/imageprovider/ImageProviderCore/libqmlimageproviderplugin.so.debug share/examples/qt4/examples/declarative/cppextensions/imageprovider/ImageProviderCore/qmldir share/examples/qt4/examples/declarative/cppextensions/imageprovider/Makefile share/examples/qt4/examples/declarative/cppextensions/imageprovider/imageprovider-example.qml share/examples/qt4/examples/declarative/cppextensions/imageprovider/imageprovider.cpp share/examples/qt4/examples/declarative/cppextensions/imageprovider/imageprovider.pro share/examples/qt4/examples/declarative/cppextensions/imageprovider/imageprovider.qmlproject share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/Makefile share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/main.cpp share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/networkaccessmanagerfactory %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/networkaccessmanagerfactory.debug share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/networkaccessmanagerfactory.pro share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/networkaccessmanagerfactory.qmlproject share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/networkaccessmanagerfactory.qrc -share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/view.qml +share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/qml/networkaccessmanagerfactory/view.qml share/examples/qt4/examples/declarative/cppextensions/plugins/Makefile share/examples/qt4/examples/declarative/cppextensions/plugins/README share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/Clock.qml share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/center.png share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/clock.png share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/hour.png share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/libqmlqtimeexampleplugin.so %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/libqmlqtimeexampleplugin.so.debug share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/minute.png share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample/qmldir +share/examples/qt4/examples/declarative/cppextensions/plugins/libqmlqwidgetsplugin.so +%%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/plugins/libqmlqwidgetsplugin.so.debug share/examples/qt4/examples/declarative/cppextensions/plugins/plugin.cpp share/examples/qt4/examples/declarative/cppextensions/plugins/plugins.pro share/examples/qt4/examples/declarative/cppextensions/plugins/plugins.qml share/examples/qt4/examples/declarative/cppextensions/plugins/plugins.qmlproject +share/examples/qt4/examples/declarative/cppextensions/plugins/qwidgets.cpp +share/examples/qt4/examples/declarative/cppextensions/plugins/qwidgets.pro +share/examples/qt4/examples/declarative/cppextensions/plugins/qwidgets.qml share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/Makefile share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/Makefile share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.debug share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.pro share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qml share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qmlproject share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/layoutitem.qrc share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem/main.cpp share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/Makefile share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.cpp share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.h share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/gridlayout.qrc share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/main.cpp share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.debug share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.pro -share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qgraphicsgridlayout.qml +share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qml/qgraphicsgridlayout/qgraphicsgridlayout.qml share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslayouts.pro share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslayouts.qmlproject share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/Makefile share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.cpp share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.h share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/linearlayout.qrc share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/main.cpp share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.debug share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.pro -share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qgraphicslinearlayout.qml +share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qml/qgraphicslinearlayout/qgraphicslinearlayout.qml share/examples/qt4/examples/declarative/cppextensions/qwidgets/Makefile share/examples/qt4/examples/declarative/cppextensions/qwidgets/QWidgets/libqmlqwidgetsplugin.so %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/qwidgets/QWidgets/libqmlqwidgetsplugin.so.debug share/examples/qt4/examples/declarative/cppextensions/qwidgets/QWidgets/qmldir share/examples/qt4/examples/declarative/cppextensions/qwidgets/README share/examples/qt4/examples/declarative/cppextensions/qwidgets/qwidgets.cpp share/examples/qt4/examples/declarative/cppextensions/qwidgets/qwidgets.pro share/examples/qt4/examples/declarative/cppextensions/qwidgets/qwidgets.qml share/examples/qt4/examples/declarative/cppextensions/qwidgets/qwidgets.qmlproject share/examples/qt4/examples/declarative/cppextensions/referenceexamples/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/adding %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/adding.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/adding.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/adding.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/attached %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/attached.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/attached.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/attached.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/binding %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/binding.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/binding.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/binding.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/happybirthdaysong.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/happybirthdaysong.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/coercion %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/coercion.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/coercion.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/coercion.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/default %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/default.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/default.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/default.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/extended %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/extended.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/extended.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/extended.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/lineedit.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/lineedit.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/grouped %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/grouped.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/grouped.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/grouped.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/methods %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/methods.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/methods.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/methods.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/properties %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/properties.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/properties.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties/properties.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/referenceexamples.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/referenceexamples.qmlproject share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/signal %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/signal.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/signal.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal/signal.qrc share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/Makefile share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/birthdayparty.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/birthdayparty.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/example.qml share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/happybirthdaysong.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/happybirthdaysong.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/main.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/person.cpp share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/person.h share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/valuesource %%DEBUG%%share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/valuesource.debug share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/valuesource.pro share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource/valuesource.qrc -share/examples/qt4/examples/declarative/extending/adding/adding -%%DEBUG%%share/examples/qt4/examples/declarative/extending/adding/adding.debug -share/examples/qt4/examples/declarative/extending/adding/adding.pro -share/examples/qt4/examples/declarative/extending/adding/adding.qrc -share/examples/qt4/examples/declarative/extending/adding/main.cpp -share/examples/qt4/examples/declarative/extending/adding/person.cpp -share/examples/qt4/examples/declarative/extending/adding/person.h -share/examples/qt4/examples/declarative/extending/attached/attached -%%DEBUG%%share/examples/qt4/examples/declarative/extending/attached/attached.debug -share/examples/qt4/examples/declarative/extending/attached/attached.pro -share/examples/qt4/examples/declarative/extending/attached/attached.qrc -share/examples/qt4/examples/declarative/extending/attached/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/attached/birthdayparty.h -share/examples/qt4/examples/declarative/extending/attached/main.cpp -share/examples/qt4/examples/declarative/extending/attached/person.cpp -share/examples/qt4/examples/declarative/extending/attached/person.h -share/examples/qt4/examples/declarative/extending/binding/binding -%%DEBUG%%share/examples/qt4/examples/declarative/extending/binding/binding.debug -share/examples/qt4/examples/declarative/extending/binding/binding.pro -share/examples/qt4/examples/declarative/extending/binding/binding.qrc -share/examples/qt4/examples/declarative/extending/binding/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/binding/birthdayparty.h -share/examples/qt4/examples/declarative/extending/binding/happybirthdaysong.cpp -share/examples/qt4/examples/declarative/extending/binding/happybirthdaysong.h -share/examples/qt4/examples/declarative/extending/binding/main.cpp -share/examples/qt4/examples/declarative/extending/binding/person.cpp -share/examples/qt4/examples/declarative/extending/binding/person.h -share/examples/qt4/examples/declarative/extending/coercion/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/coercion/birthdayparty.h -share/examples/qt4/examples/declarative/extending/coercion/coercion -%%DEBUG%%share/examples/qt4/examples/declarative/extending/coercion/coercion.debug -share/examples/qt4/examples/declarative/extending/coercion/coercion.pro -share/examples/qt4/examples/declarative/extending/coercion/coercion.qrc -share/examples/qt4/examples/declarative/extending/coercion/main.cpp -share/examples/qt4/examples/declarative/extending/coercion/person.cpp -share/examples/qt4/examples/declarative/extending/coercion/person.h -share/examples/qt4/examples/declarative/extending/default/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/default/birthdayparty.h -share/examples/qt4/examples/declarative/extending/default/default -%%DEBUG%%share/examples/qt4/examples/declarative/extending/default/default.debug -share/examples/qt4/examples/declarative/extending/default/default.pro -share/examples/qt4/examples/declarative/extending/default/default.qrc -share/examples/qt4/examples/declarative/extending/default/main.cpp -share/examples/qt4/examples/declarative/extending/default/person.cpp -share/examples/qt4/examples/declarative/extending/default/person.h -share/examples/qt4/examples/declarative/extending/extended/extended -%%DEBUG%%share/examples/qt4/examples/declarative/extending/extended/extended.debug -share/examples/qt4/examples/declarative/extending/extended/extended.pro -share/examples/qt4/examples/declarative/extending/extended/extended.qrc -share/examples/qt4/examples/declarative/extending/extended/lineedit.cpp -share/examples/qt4/examples/declarative/extending/extended/lineedit.h -share/examples/qt4/examples/declarative/extending/extended/main.cpp -share/examples/qt4/examples/declarative/extending/grouped/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/grouped/birthdayparty.h -share/examples/qt4/examples/declarative/extending/grouped/grouped -%%DEBUG%%share/examples/qt4/examples/declarative/extending/grouped/grouped.debug -share/examples/qt4/examples/declarative/extending/grouped/grouped.pro -share/examples/qt4/examples/declarative/extending/grouped/grouped.qrc -share/examples/qt4/examples/declarative/extending/grouped/main.cpp -share/examples/qt4/examples/declarative/extending/grouped/person.cpp -share/examples/qt4/examples/declarative/extending/grouped/person.h -share/examples/qt4/examples/declarative/extending/methods/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/methods/birthdayparty.h -share/examples/qt4/examples/declarative/extending/methods/main.cpp -share/examples/qt4/examples/declarative/extending/methods/methods -%%DEBUG%%share/examples/qt4/examples/declarative/extending/methods/methods.debug -share/examples/qt4/examples/declarative/extending/methods/methods.pro -share/examples/qt4/examples/declarative/extending/methods/methods.qrc -share/examples/qt4/examples/declarative/extending/methods/person.cpp -share/examples/qt4/examples/declarative/extending/methods/person.h -share/examples/qt4/examples/declarative/extending/properties/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/properties/birthdayparty.h -share/examples/qt4/examples/declarative/extending/properties/main.cpp -share/examples/qt4/examples/declarative/extending/properties/person.cpp -share/examples/qt4/examples/declarative/extending/properties/person.h -share/examples/qt4/examples/declarative/extending/properties/properties -%%DEBUG%%share/examples/qt4/examples/declarative/extending/properties/properties.debug -share/examples/qt4/examples/declarative/extending/properties/properties.pro -share/examples/qt4/examples/declarative/extending/properties/properties.qrc -share/examples/qt4/examples/declarative/extending/signal/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/signal/birthdayparty.h -share/examples/qt4/examples/declarative/extending/signal/main.cpp -share/examples/qt4/examples/declarative/extending/signal/person.cpp -share/examples/qt4/examples/declarative/extending/signal/person.h -share/examples/qt4/examples/declarative/extending/signal/signal -%%DEBUG%%share/examples/qt4/examples/declarative/extending/signal/signal.debug -share/examples/qt4/examples/declarative/extending/signal/signal.pro -share/examples/qt4/examples/declarative/extending/signal/signal.qrc -share/examples/qt4/examples/declarative/extending/valuesource/birthdayparty.cpp -share/examples/qt4/examples/declarative/extending/valuesource/birthdayparty.h -share/examples/qt4/examples/declarative/extending/valuesource/happybirthdaysong.cpp -share/examples/qt4/examples/declarative/extending/valuesource/happybirthdaysong.h -share/examples/qt4/examples/declarative/extending/valuesource/main.cpp -share/examples/qt4/examples/declarative/extending/valuesource/person.cpp -share/examples/qt4/examples/declarative/extending/valuesource/person.h -share/examples/qt4/examples/declarative/extending/valuesource/valuesource -%%DEBUG%%share/examples/qt4/examples/declarative/extending/valuesource/valuesource.debug -share/examples/qt4/examples/declarative/extending/valuesource/valuesource.pro -share/examples/qt4/examples/declarative/extending/valuesource/valuesource.qrc -share/examples/qt4/examples/declarative/i18n/i18n.qml +share/examples/qt4/examples/declarative/i18n/i18n +%%DEBUG%%share/examples/qt4/examples/declarative/i18n/i18n.debug +share/examples/qt4/examples/declarative/i18n/i18n.png +share/examples/qt4/examples/declarative/i18n/i18n.pro share/examples/qt4/examples/declarative/i18n/i18n.qmlproject -share/examples/qt4/examples/declarative/i18n/i18n/base.ts -share/examples/qt4/examples/declarative/i18n/i18n/qml_en_AU.qm -share/examples/qt4/examples/declarative/i18n/i18n/qml_en_AU.ts -share/examples/qt4/examples/declarative/i18n/i18n/qml_fr.qm -share/examples/qt4/examples/declarative/i18n/i18n/qml_fr.ts -share/examples/qt4/examples/declarative/imageelements/borderimage/borderimage.qml +share/examples/qt4/examples/declarative/i18n/i18n.svg +share/examples/qt4/examples/declarative/i18n/main.cpp +share/examples/qt4/examples/declarative/i18n/qml/i18n/base.ts +share/examples/qt4/examples/declarative/i18n/qml/i18n/i18n.qml +share/examples/qt4/examples/declarative/i18n/qml/i18n/qml_en_AU.ts +share/examples/qt4/examples/declarative/i18n/qml/i18n/qml_fr.ts +share/examples/qt4/examples/declarative/imageelements/borderimage/borderimage +%%DEBUG%%share/examples/qt4/examples/declarative/imageelements/borderimage/borderimage.debug +share/examples/qt4/examples/declarative/imageelements/borderimage/borderimage.png +share/examples/qt4/examples/declarative/imageelements/borderimage/borderimage.pro share/examples/qt4/examples/declarative/imageelements/borderimage/borderimage.qmlproject -share/examples/qt4/examples/declarative/imageelements/borderimage/content/MyBorderImage.qml -share/examples/qt4/examples/declarative/imageelements/borderimage/content/ShadowRectangle.qml -share/examples/qt4/examples/declarative/imageelements/borderimage/content/bw.png -share/examples/qt4/examples/declarative/imageelements/borderimage/content/colors-round.sci -share/examples/qt4/examples/declarative/imageelements/borderimage/content/colors-stretch.sci -share/examples/qt4/examples/declarative/imageelements/borderimage/content/colors.png -share/examples/qt4/examples/declarative/imageelements/borderimage/content/shadow.png -share/examples/qt4/examples/declarative/imageelements/borderimage/shadows.qml -share/examples/qt4/examples/declarative/imageelements/image/ImageCell.qml -share/examples/qt4/examples/declarative/imageelements/image/image.qml +share/examples/qt4/examples/declarative/imageelements/borderimage/borderimage.svg +share/examples/qt4/examples/declarative/imageelements/borderimage/main.cpp +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/borderimage.qml +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content/MyBorderImage.qml +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content/ShadowRectangle.qml +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content/bw.png +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content/colors-round.sci +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content/colors-stretch.sci +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content/colors.png +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content/shadow.png +share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/shadows.qml +share/examples/qt4/examples/declarative/imageelements/image/image +%%DEBUG%%share/examples/qt4/examples/declarative/imageelements/image/image.debug +share/examples/qt4/examples/declarative/imageelements/image/image.png +share/examples/qt4/examples/declarative/imageelements/image/image.pro share/examples/qt4/examples/declarative/imageelements/image/image.qmlproject -share/examples/qt4/examples/declarative/imageelements/image/qt-logo.png -share/examples/qt4/examples/declarative/imageelements/imageelements.qmlproject -share/examples/qt4/examples/declarative/imageprovider/ImageProviderCore/libqmlimageproviderplugin.so -%%DEBUG%%share/examples/qt4/examples/declarative/imageprovider/ImageProviderCore/libqmlimageproviderplugin.so.debug -share/examples/qt4/examples/declarative/imageprovider/ImageProviderCore/qmldir -share/examples/qt4/examples/declarative/imageprovider/imageprovider.cpp -share/examples/qt4/examples/declarative/imageprovider/imageprovider.pro -share/examples/qt4/examples/declarative/keyinteraction/focus/Core/ContextMenu.qml -share/examples/qt4/examples/declarative/keyinteraction/focus/Core/GridMenu.qml -share/examples/qt4/examples/declarative/keyinteraction/focus/Core/ListMenu.qml -share/examples/qt4/examples/declarative/keyinteraction/focus/Core/ListViewDelegate.qml -share/examples/qt4/examples/declarative/keyinteraction/focus/Core/images/arrow.png -share/examples/qt4/examples/declarative/keyinteraction/focus/Core/images/qt-logo.png -share/examples/qt4/examples/declarative/keyinteraction/focus/focus.qml +share/examples/qt4/examples/declarative/imageelements/image/image.svg +share/examples/qt4/examples/declarative/imageelements/image/main.cpp +share/examples/qt4/examples/declarative/imageelements/image/qml/image/ImageCell.qml +share/examples/qt4/examples/declarative/imageelements/image/qml/image/image.qml +share/examples/qt4/examples/declarative/imageelements/image/qml/image/qt-logo.png +share/examples/qt4/examples/declarative/imageelements/shadows/main.cpp +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/borderimage.qml +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content/MyBorderImage.qml +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content/ShadowRectangle.qml +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content/bw.png +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content/colors-round.sci +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content/colors-stretch.sci +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content/colors.png +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content/shadow.png +share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/shadows.qml +share/examples/qt4/examples/declarative/imageelements/shadows/shadows +%%DEBUG%%share/examples/qt4/examples/declarative/imageelements/shadows/shadows.debug +share/examples/qt4/examples/declarative/imageelements/shadows/shadows.png +share/examples/qt4/examples/declarative/imageelements/shadows/shadows.pro +share/examples/qt4/examples/declarative/imageelements/shadows/shadows.qmlproject +share/examples/qt4/examples/declarative/imageelements/shadows/shadows.svg +share/examples/qt4/examples/declarative/keyinteraction/focus/focus +%%DEBUG%%share/examples/qt4/examples/declarative/keyinteraction/focus/focus.debug +share/examples/qt4/examples/declarative/keyinteraction/focus/focus.png +share/examples/qt4/examples/declarative/keyinteraction/focus/focus.pro share/examples/qt4/examples/declarative/keyinteraction/focus/focus.qmlproject -share/examples/qt4/examples/declarative/keyinteraction/keyinteraction.qmlproject -share/examples/qt4/examples/declarative/objectlistmodel/dataobject.cpp -share/examples/qt4/examples/declarative/objectlistmodel/dataobject.h -share/examples/qt4/examples/declarative/objectlistmodel/main.cpp -share/examples/qt4/examples/declarative/objectlistmodel/objectlistmodel -%%DEBUG%%share/examples/qt4/examples/declarative/objectlistmodel/objectlistmodel.debug -share/examples/qt4/examples/declarative/objectlistmodel/objectlistmodel.pro -share/examples/qt4/examples/declarative/objectlistmodel/objectlistmodel.qrc -share/examples/qt4/examples/declarative/objectlistmodel/view.qml -share/examples/qt4/examples/declarative/plugins/README -share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/Clock.qml -share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/center.png -share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/clock.png -share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/hour.png -share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/libqmlqtimeexampleplugin.so -%%DEBUG%%share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/libqmlqtimeexampleplugin.so.debug -share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/minute.png -share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample/qmldir -share/examples/qt4/examples/declarative/plugins/libqmlqwidgetsplugin.so -%%DEBUG%%share/examples/qt4/examples/declarative/plugins/libqmlqwidgetsplugin.so.debug -share/examples/qt4/examples/declarative/plugins/plugin.cpp -share/examples/qt4/examples/declarative/plugins/plugins.pro -share/examples/qt4/examples/declarative/plugins/plugins.qml -share/examples/qt4/examples/declarative/plugins/qwidgets.cpp -share/examples/qt4/examples/declarative/plugins/qwidgets.pro -share/examples/qt4/examples/declarative/plugins/qwidgets.qml -share/examples/qt4/examples/declarative/positioners/Button.qml -share/examples/qt4/examples/declarative/positioners/add.png -share/examples/qt4/examples/declarative/positioners/del.png -share/examples/qt4/examples/declarative/positioners/positioners.qml +share/examples/qt4/examples/declarative/keyinteraction/focus/focus.svg +share/examples/qt4/examples/declarative/keyinteraction/focus/main.cpp +share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore/ContextMenu.qml +share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore/GridMenu.qml +share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore/ListMenu.qml +share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore/ListViewDelegate.qml +share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore/images/arrow.png +share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore/images/qt-logo.png +share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/focus.qml +share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/abstractitemmodel +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/abstractitemmodel.debug +share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/abstractitemmodel.pro +share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/main.cpp +share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/model.cpp +share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/model.h +share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/qml/abstractitemmodel/view.qml +share/examples/qt4/examples/declarative/modelviews/gridview-example/gridview +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/gridview-example/gridview.debug +share/examples/qt4/examples/declarative/modelviews/gridview-example/gridview.pro +share/examples/qt4/examples/declarative/modelviews/gridview-example/gridview.qmlproject +share/examples/qt4/examples/declarative/modelviews/gridview-example/gridview.svg +share/examples/qt4/examples/declarative/modelviews/gridview-example/gridviewexample.png +share/examples/qt4/examples/declarative/modelviews/gridview-example/main.cpp +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/gridview-example.qml +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics/AddressBook_48.png +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics/AudioPlayer_48.png +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics/Camera_48.png +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics/DateBook_48.png +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics/EMail_48.png +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics/TodoList_48.png +share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics/VideoPlayer_48.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/dynamiclist +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/dynamiclist.debug +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/dynamiclist.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/dynamiclist.pro +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/dynamiclist.qmlproject +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/dynamiclist.svg +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/main.cpp +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/PetsModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/PressAndHoldButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/RecipesModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/TextButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/arrow-down.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/arrow-up.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/fruit-salad.jpg +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/hamburger.jpg +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/lemonade.jpg +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/list-delete.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/minus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/moreDown.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/moreUp.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/pancakes.jpg +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/plus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics/vegetable-soup.jpg +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/dynamiclist.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/expandingdelegates.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/highlight.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/highlightranges.qml +share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/sections.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/expandingdelegates +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/expandingdelegates.debug +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/expandingdelegates.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/expandingdelegates.pro +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/expandingdelegates.qmlproject +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/expandingdelegates.svg +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/main.cpp +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/PetsModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/PressAndHoldButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/RecipesModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/TextButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/arrow-down.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/arrow-up.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/fruit-salad.jpg +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/hamburger.jpg +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/lemonade.jpg +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/list-delete.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/minus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/moreDown.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/moreUp.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/pancakes.jpg +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/plus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics/vegetable-soup.jpg +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/dynamiclist.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/expandingdelegates.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/highlight.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/highlightranges.qml +share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/sections.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/highlight +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/listview/highlight/highlight.debug +share/examples/qt4/examples/declarative/modelviews/listview/highlight/highlight.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/highlight.pro +share/examples/qt4/examples/declarative/modelviews/listview/highlight/highlight.qmlproject +share/examples/qt4/examples/declarative/modelviews/listview/highlight/highlight.svg +share/examples/qt4/examples/declarative/modelviews/listview/highlight/main.cpp +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/PetsModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/PressAndHoldButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/RecipesModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/TextButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/arrow-down.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/arrow-up.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/fruit-salad.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/hamburger.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/lemonade.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/list-delete.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/minus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/moreDown.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/moreUp.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/pancakes.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/plus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics/vegetable-soup.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/dynamiclist.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/expandingdelegates.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/highlight.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/highlightranges.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/sections.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/highlightranges +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/highlightranges.debug +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/highlightranges.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/highlightranges.pro +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/highlightranges.qmlproject +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/highlightranges.svg +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/main.cpp +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/PetsModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/PressAndHoldButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/RecipesModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/TextButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/arrow-down.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/arrow-up.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/fruit-salad.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/hamburger.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/lemonade.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/list-delete.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/minus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/moreDown.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/moreUp.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/pancakes.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/plus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics/vegetable-soup.jpg +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/dynamiclist.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/expandingdelegates.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/highlight.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/highlightranges.qml +share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/sections.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/main.cpp +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/PetsModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/PressAndHoldButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/RecipesModel.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/TextButton.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/arrow-down.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/arrow-up.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/fruit-salad.jpg +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/hamburger.jpg +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/lemonade.jpg +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/list-delete.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/minus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/moreDown.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/moreUp.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/pancakes.jpg +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/plus-sign.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics/vegetable-soup.jpg +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/dynamiclist.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/expandingdelegates.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/highlight.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/highlightranges.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/sections.qml +share/examples/qt4/examples/declarative/modelviews/listview/sections/sections +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/listview/sections/sections.debug +share/examples/qt4/examples/declarative/modelviews/listview/sections/sections.png +share/examples/qt4/examples/declarative/modelviews/listview/sections/sections.pro +share/examples/qt4/examples/declarative/modelviews/listview/sections/sections.qmlproject +share/examples/qt4/examples/declarative/modelviews/listview/sections/sections.svg +share/examples/qt4/examples/declarative/modelviews/objectlistmodel/dataobject.cpp +share/examples/qt4/examples/declarative/modelviews/objectlistmodel/dataobject.h +share/examples/qt4/examples/declarative/modelviews/objectlistmodel/main.cpp +share/examples/qt4/examples/declarative/modelviews/objectlistmodel/objectlistmodel +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/objectlistmodel/objectlistmodel.debug +share/examples/qt4/examples/declarative/modelviews/objectlistmodel/objectlistmodel.pro +share/examples/qt4/examples/declarative/modelviews/objectlistmodel/objectlistmodel.qmlproject +share/examples/qt4/examples/declarative/modelviews/objectlistmodel/qml/objectlistmodel/view.qml +share/examples/qt4/examples/declarative/modelviews/package/main.cpp +share/examples/qt4/examples/declarative/modelviews/package/package +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/package/package.debug +share/examples/qt4/examples/declarative/modelviews/package/package.pro +share/examples/qt4/examples/declarative/modelviews/package/package.qmlproject +share/examples/qt4/examples/declarative/modelviews/package/qml/package/Delegate.qml +share/examples/qt4/examples/declarative/modelviews/package/qml/package/view.qml +share/examples/qt4/examples/declarative/modelviews/parallax/main.cpp +share/examples/qt4/examples/declarative/modelviews/parallax/parallax +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/parallax/parallax.debug +share/examples/qt4/examples/declarative/modelviews/parallax/parallax.pro +share/examples/qt4/examples/declarative/modelviews/parallax/parallax.qmlproject +share/examples/qt4/examples/declarative/modelviews/parallax/parallax.svg +share/examples/qt4/examples/declarative/modelviews/parallax/parallax64.png +share/examples/qt4/examples/declarative/modelviews/parallax/parallax80.png +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/Clock.qml +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/ParallaxView.qml +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/Smiley.qml +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/parallax.qml +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/pics/background.jpg +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/pics/face-smile.png +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/pics/home-page.svg +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/pics/shadow.png +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/pics/yast-joystick.png +share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/pics/yast-wol.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/main.cpp +share/examples/qt4/examples/declarative/modelviews/pathview-example/pathview +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/pathview-example/pathview.debug +share/examples/qt4/examples/declarative/modelviews/pathview-example/pathview.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/pathview.pro +share/examples/qt4/examples/declarative/modelviews/pathview-example/pathview.qmlproject +share/examples/qt4/examples/declarative/modelviews/pathview-example/pathview.svg +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pathview-example.qml +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics/AddressBook_48.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics/AudioPlayer_48.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics/Camera_48.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics/DateBook_48.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics/EMail_48.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics/TodoList_48.png +share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics/VideoPlayer_48.png +share/examples/qt4/examples/declarative/modelviews/stringlistmodel/main.cpp +share/examples/qt4/examples/declarative/modelviews/stringlistmodel/qml/stringlistmodel/view.qml +share/examples/qt4/examples/declarative/modelviews/stringlistmodel/stringlistmodel +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/stringlistmodel/stringlistmodel.debug +share/examples/qt4/examples/declarative/modelviews/stringlistmodel/stringlistmodel.pro +share/examples/qt4/examples/declarative/modelviews/visualitemmodel/main.cpp +share/examples/qt4/examples/declarative/modelviews/visualitemmodel/qml/visualitemmodel/visualitemmodel.qml +share/examples/qt4/examples/declarative/modelviews/visualitemmodel/visualitemmodel +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/visualitemmodel/visualitemmodel.debug +share/examples/qt4/examples/declarative/modelviews/visualitemmodel/visualitemmodel.png +share/examples/qt4/examples/declarative/modelviews/visualitemmodel/visualitemmodel.pro +share/examples/qt4/examples/declarative/modelviews/visualitemmodel/visualitemmodel.qmlproject +share/examples/qt4/examples/declarative/modelviews/visualitemmodel/visualitemmodel.svg +share/examples/qt4/examples/declarative/modelviews/webview/alerts/alerts +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/webview/alerts/alerts.debug +share/examples/qt4/examples/declarative/modelviews/webview/alerts/alerts.png +share/examples/qt4/examples/declarative/modelviews/webview/alerts/alerts.pro +share/examples/qt4/examples/declarative/modelviews/webview/alerts/alerts.qmlproject +share/examples/qt4/examples/declarative/modelviews/webview/alerts/alerts.svg +share/examples/qt4/examples/declarative/modelviews/webview/alerts/main.cpp +share/examples/qt4/examples/declarative/modelviews/webview/alerts/qml/alerts/alerts.html +share/examples/qt4/examples/declarative/modelviews/webview/alerts/qml/alerts/alerts.qml +share/examples/qt4/examples/declarative/modelviews/webview/autosize/autosize +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/webview/autosize/autosize.debug +share/examples/qt4/examples/declarative/modelviews/webview/autosize/autosize.png +share/examples/qt4/examples/declarative/modelviews/webview/autosize/autosize.pro +share/examples/qt4/examples/declarative/modelviews/webview/autosize/autosize.qmlproject +share/examples/qt4/examples/declarative/modelviews/webview/autosize/autosize.svg +share/examples/qt4/examples/declarative/modelviews/webview/autosize/main.cpp +share/examples/qt4/examples/declarative/modelviews/webview/autosize/qml/autosize/autosize.qml +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/googlemaps +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/googlemaps.debug +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/googlemaps.png +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/googlemaps.pro +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/googlemaps.qmlproject +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/googlemaps.svg +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/main.cpp +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/content/Mapping/Map.qml +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/content/Mapping/map.html +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/content/pics/cancel.png +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/content/pics/ok.png +share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/googlemaps.qml +share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/inlinehtml +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/inlinehtml.debug +share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/inlinehtml.png +share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/inlinehtml.pro +share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/inlinehtml.qmlproject +share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/inlinehtml.svg +share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/main.cpp +share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/qml/inlinehtml/inlinehtml.qml +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/main.cpp +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/newwindows +%%DEBUG%%share/examples/qt4/examples/declarative/modelviews/webview/newwindows/newwindows.debug +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/newwindows.png +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/newwindows.pro +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/newwindows.qmlproject +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/newwindows.svg +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/qml/newwindows/newwindows.html +share/examples/qt4/examples/declarative/modelviews/webview/newwindows/qml/newwindows/newwindows.qml +share/examples/qt4/examples/declarative/positioners/main.cpp +share/examples/qt4/examples/declarative/positioners/positioners +%%DEBUG%%share/examples/qt4/examples/declarative/positioners/positioners.debug +share/examples/qt4/examples/declarative/positioners/positioners.png +share/examples/qt4/examples/declarative/positioners/positioners.pro share/examples/qt4/examples/declarative/positioners/positioners.qmlproject +share/examples/qt4/examples/declarative/positioners/positioners.svg +share/examples/qt4/examples/declarative/positioners/qml/positioners/Button.qml +share/examples/qt4/examples/declarative/positioners/qml/positioners/add.png +share/examples/qt4/examples/declarative/positioners/qml/positioners/del.png +share/examples/qt4/examples/declarative/positioners/qml/positioners/positioners.qml share/examples/qt4/examples/declarative/shadereffects/main.cpp -share/examples/qt4/examples/declarative/shadereffects/qml/Curtain.qml -share/examples/qt4/examples/declarative/shadereffects/qml/CurtainEffect.qml -share/examples/qt4/examples/declarative/shadereffects/qml/DropShadow.qml -share/examples/qt4/examples/declarative/shadereffects/qml/DropShadowEffect.qml -share/examples/qt4/examples/declarative/shadereffects/qml/Grayscale.qml -share/examples/qt4/examples/declarative/shadereffects/qml/GrayscaleEffect.qml -share/examples/qt4/examples/declarative/shadereffects/qml/ImageMask.qml -share/examples/qt4/examples/declarative/shadereffects/qml/ImageMaskEffect.qml -share/examples/qt4/examples/declarative/shadereffects/qml/RadialWave.qml -share/examples/qt4/examples/declarative/shadereffects/qml/RadialWaveEffect.qml -share/examples/qt4/examples/declarative/shadereffects/qml/Water.qml -share/examples/qt4/examples/declarative/shadereffects/qml/WaterEffect.qml -share/examples/qt4/examples/declarative/shadereffects/qml/images/Curtain.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/DropShadow.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/Grayscale.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/ImageMask.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/RadialWave.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/Water.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/back.png -share/examples/qt4/examples/declarative/shadereffects/qml/images/bg.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/desaturate.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/drop_shadow.png -share/examples/qt4/examples/declarative/shadereffects/qml/images/fabric.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/flower.png -share/examples/qt4/examples/declarative/shadereffects/qml/images/image1.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/image2.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/qt-logo.png -share/examples/qt4/examples/declarative/shadereffects/qml/images/shader_effects.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/sky.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/images/toolbar.png -share/examples/qt4/examples/declarative/shadereffects/qml/images/wave.jpg -share/examples/qt4/examples/declarative/shadereffects/qml/main.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/Curtain.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/CurtainEffect.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/DropShadow.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/DropShadowEffect.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/Grayscale.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/GrayscaleEffect.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/ImageMask.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/ImageMaskEffect.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/RadialWave.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/RadialWaveEffect.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/Water.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/WaterEffect.qml +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/Curtain.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/DropShadow.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/Grayscale.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/ImageMask.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/RadialWave.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/Water.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/back.png +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/bg.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/desaturate.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/drop_shadow.png +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/fabric.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/flower.png +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/image1.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/image2.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/qt-logo.png +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/shader_effects.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/sky.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/toolbar.png +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images/wave.jpg +share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/main.qml share/examples/qt4/examples/declarative/shadereffects/shadereffects +%%DEBUG%%share/examples/qt4/examples/declarative/shadereffects/shadereffects.debug share/examples/qt4/examples/declarative/shadereffects/shadereffects.pro -share/examples/qt4/examples/declarative/sqllocalstorage/hello.qml +share/examples/qt4/examples/declarative/shadereffects/shadereffects.qmlproject +share/examples/qt4/examples/declarative/sqllocalstorage/main.cpp +share/examples/qt4/examples/declarative/sqllocalstorage/qml/sqllocalstorage/hello.qml +share/examples/qt4/examples/declarative/sqllocalstorage/sqllocalstorage +%%DEBUG%%share/examples/qt4/examples/declarative/sqllocalstorage/sqllocalstorage.debug +share/examples/qt4/examples/declarative/sqllocalstorage/sqllocalstorage.pro share/examples/qt4/examples/declarative/sqllocalstorage/sqllocalstorage.qmlproject -share/examples/qt4/examples/declarative/text/fonts/availableFonts.qml -share/examples/qt4/examples/declarative/text/fonts/banner.qml -share/examples/qt4/examples/declarative/text/fonts/fonts.qml -share/examples/qt4/examples/declarative/text/fonts/fonts.qmlproject -share/examples/qt4/examples/declarative/text/fonts/fonts/tarzeau_ocr_a.ttf -share/examples/qt4/examples/declarative/text/fonts/hello.qml -share/examples/qt4/examples/declarative/text/text.qmlproject -share/examples/qt4/examples/declarative/text/textselection/pics/endHandle.png -share/examples/qt4/examples/declarative/text/textselection/pics/endHandle.sci -share/examples/qt4/examples/declarative/text/textselection/pics/startHandle.png -share/examples/qt4/examples/declarative/text/textselection/pics/startHandle.sci -share/examples/qt4/examples/declarative/text/textselection/textselection.qml +share/examples/qt4/examples/declarative/sqllocalstorage/sqllocalstorage.svg +share/examples/qt4/examples/declarative/sqllocalstorage/sqllocalstorage64.png +share/examples/qt4/examples/declarative/sqllocalstorage/sqllocalstorage80.png +share/examples/qt4/examples/declarative/text/fonts/availableFonts/availableFonts +%%DEBUG%%share/examples/qt4/examples/declarative/text/fonts/availableFonts/availableFonts.debug +share/examples/qt4/examples/declarative/text/fonts/availableFonts/availableFonts.png +share/examples/qt4/examples/declarative/text/fonts/availableFonts/availableFonts.pro +share/examples/qt4/examples/declarative/text/fonts/availableFonts/availableFonts.qmlproject +share/examples/qt4/examples/declarative/text/fonts/availableFonts/availableFonts.svg +share/examples/qt4/examples/declarative/text/fonts/availableFonts/main.cpp +share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml/availableFonts/availableFonts.qml +share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml/availableFonts/banner.qml +share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml/availableFonts/fonts.qml +share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml/availableFonts/fonts/tarzeau_ocr_a.ttf +share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml/availableFonts/hello.qml +share/examples/qt4/examples/declarative/text/fonts/banner/banner +%%DEBUG%%share/examples/qt4/examples/declarative/text/fonts/banner/banner.debug +share/examples/qt4/examples/declarative/text/fonts/banner/banner.png +share/examples/qt4/examples/declarative/text/fonts/banner/banner.pro +share/examples/qt4/examples/declarative/text/fonts/banner/banner.qmlproject +share/examples/qt4/examples/declarative/text/fonts/banner/banner.svg +share/examples/qt4/examples/declarative/text/fonts/banner/main.cpp +share/examples/qt4/examples/declarative/text/fonts/banner/qml/banner/availableFonts.qml +share/examples/qt4/examples/declarative/text/fonts/banner/qml/banner/banner.qml +share/examples/qt4/examples/declarative/text/fonts/banner/qml/banner/fonts.qml +share/examples/qt4/examples/declarative/text/fonts/banner/qml/banner/fonts/tarzeau_ocr_a.ttf +share/examples/qt4/examples/declarative/text/fonts/banner/qml/banner/hello.qml +share/examples/qt4/examples/declarative/text/fonts/fonts/fonts +%%DEBUG%%share/examples/qt4/examples/declarative/text/fonts/fonts/fonts.debug +share/examples/qt4/examples/declarative/text/fonts/fonts/fonts.png +share/examples/qt4/examples/declarative/text/fonts/fonts/fonts.pro +share/examples/qt4/examples/declarative/text/fonts/fonts/fonts.qmlproject +share/examples/qt4/examples/declarative/text/fonts/fonts/fonts.svg +share/examples/qt4/examples/declarative/text/fonts/fonts/main.cpp +share/examples/qt4/examples/declarative/text/fonts/fonts/qml/fonts-qml/availableFonts.qml +share/examples/qt4/examples/declarative/text/fonts/fonts/qml/fonts-qml/banner.qml +share/examples/qt4/examples/declarative/text/fonts/fonts/qml/fonts-qml/fonts.qml +share/examples/qt4/examples/declarative/text/fonts/fonts/qml/fonts-qml/fonts/tarzeau_ocr_a.ttf +share/examples/qt4/examples/declarative/text/fonts/fonts/qml/fonts-qml/hello.qml +share/examples/qt4/examples/declarative/text/fonts/hello/hello +%%DEBUG%%share/examples/qt4/examples/declarative/text/fonts/hello/hello.debug +share/examples/qt4/examples/declarative/text/fonts/hello/hello.png +share/examples/qt4/examples/declarative/text/fonts/hello/hello.pro +share/examples/qt4/examples/declarative/text/fonts/hello/hello.qmlproject +share/examples/qt4/examples/declarative/text/fonts/hello/hello.svg +share/examples/qt4/examples/declarative/text/fonts/hello/main.cpp +share/examples/qt4/examples/declarative/text/fonts/hello/qml/hello/availableFonts.qml +share/examples/qt4/examples/declarative/text/fonts/hello/qml/hello/banner.qml +share/examples/qt4/examples/declarative/text/fonts/hello/qml/hello/fonts.qml +share/examples/qt4/examples/declarative/text/fonts/hello/qml/hello/fonts/tarzeau_ocr_a.ttf +share/examples/qt4/examples/declarative/text/fonts/hello/qml/hello/hello.qml +share/examples/qt4/examples/declarative/text/textselection/main.cpp +share/examples/qt4/examples/declarative/text/textselection/qml/textselection/pics/endHandle.png +share/examples/qt4/examples/declarative/text/textselection/qml/textselection/pics/endHandle.sci +share/examples/qt4/examples/declarative/text/textselection/qml/textselection/pics/startHandle.png +share/examples/qt4/examples/declarative/text/textselection/qml/textselection/pics/startHandle.sci +share/examples/qt4/examples/declarative/text/textselection/qml/textselection/textselection.qml +share/examples/qt4/examples/declarative/text/textselection/textselection +%%DEBUG%%share/examples/qt4/examples/declarative/text/textselection/textselection.debug +share/examples/qt4/examples/declarative/text/textselection/textselection.png +share/examples/qt4/examples/declarative/text/textselection/textselection.pro share/examples/qt4/examples/declarative/text/textselection/textselection.qmlproject -share/examples/qt4/examples/declarative/threading/threadedlistmodel/dataloader.js +share/examples/qt4/examples/declarative/text/textselection/textselection.svg +share/examples/qt4/examples/declarative/threading/threadedlistmodel/main.cpp +share/examples/qt4/examples/declarative/threading/threadedlistmodel/qml/threadedlistmodel/dataloader.js +share/examples/qt4/examples/declarative/threading/threadedlistmodel/qml/threadedlistmodel/timedisplay.qml +share/examples/qt4/examples/declarative/threading/threadedlistmodel/threadedlistmodel +%%DEBUG%%share/examples/qt4/examples/declarative/threading/threadedlistmodel/threadedlistmodel.debug +share/examples/qt4/examples/declarative/threading/threadedlistmodel/threadedlistmodel.pro share/examples/qt4/examples/declarative/threading/threadedlistmodel/threadedlistmodel.qmlproject -share/examples/qt4/examples/declarative/threading/threadedlistmodel/timedisplay.qml -share/examples/qt4/examples/declarative/threading/threading.qmlproject -share/examples/qt4/examples/declarative/threading/workerscript/workerscript.js -share/examples/qt4/examples/declarative/threading/workerscript/workerscript.qml +share/examples/qt4/examples/declarative/threading/threadedlistmodel/threadedlistmodel.svg +share/examples/qt4/examples/declarative/threading/threadedlistmodel/threadedlistmodel64.png +share/examples/qt4/examples/declarative/threading/threadedlistmodel/threadedlistmodel80.png +share/examples/qt4/examples/declarative/threading/workerscript/main.cpp +share/examples/qt4/examples/declarative/threading/workerscript/qml/workerscript/workerscript.js +share/examples/qt4/examples/declarative/threading/workerscript/qml/workerscript/workerscript.qml +share/examples/qt4/examples/declarative/threading/workerscript/workerscript +%%DEBUG%%share/examples/qt4/examples/declarative/threading/workerscript/workerscript.debug +share/examples/qt4/examples/declarative/threading/workerscript/workerscript.pro share/examples/qt4/examples/declarative/threading/workerscript/workerscript.qmlproject -share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures.qml -share/examples/qt4/examples/declarative/touchinteraction/gestures/gestures.qmlproject -share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example.qml -share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea.qmlproject -share/examples/qt4/examples/declarative/touchinteraction/pincharea/flickresize.qml +share/examples/qt4/examples/declarative/threading/workerscript/workerscript.svg +share/examples/qt4/examples/declarative/threading/workerscript/workerscript64.png +share/examples/qt4/examples/declarative/threading/workerscript/workerscript80.png +share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/experimentalgestures +%%DEBUG%%share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/experimentalgestures.debug +share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/experimentalgestures.png +share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/experimentalgestures.pro +share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/experimentalgestures.svg +share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/gestures.qmlproject +share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/main.cpp +share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/qml/experimental-gestures/experimental-gestures.qml +share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/main.cpp +share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/mousearea.qmlproject +share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/mouseareaexample +%%DEBUG%%share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/mouseareaexample.debug +share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/mouseareaexample.png +share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/mouseareaexample.pro +share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/mouseareaexample.svg +share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/qml/mousearea-example/mousearea-example.qml +share/examples/qt4/examples/declarative/touchinteraction/pincharea/main.cpp +share/examples/qt4/examples/declarative/touchinteraction/pincharea/pincharea +%%DEBUG%%share/examples/qt4/examples/declarative/touchinteraction/pincharea/pincharea.debug +share/examples/qt4/examples/declarative/touchinteraction/pincharea/pincharea.pro share/examples/qt4/examples/declarative/touchinteraction/pincharea/pincharea.qmlproject -share/examples/qt4/examples/declarative/touchinteraction/pincharea/qt-logo.jpg -share/examples/qt4/examples/declarative/touchinteraction/touchinteraction.qmlproject -share/examples/qt4/examples/declarative/toys/README -share/examples/qt4/examples/declarative/toys/clocks/clocks.qml +share/examples/qt4/examples/declarative/touchinteraction/pincharea/pincharea.svg +share/examples/qt4/examples/declarative/touchinteraction/pincharea/pincharea64.png +share/examples/qt4/examples/declarative/touchinteraction/pincharea/pincharea80.png +share/examples/qt4/examples/declarative/touchinteraction/pincharea/qml/pincharea/flickresize.qml +share/examples/qt4/examples/declarative/touchinteraction/pincharea/qml/pincharea/qt-logo.jpg +share/examples/qt4/examples/declarative/toys/clocks/clocks +%%DEBUG%%share/examples/qt4/examples/declarative/toys/clocks/clocks.debug +share/examples/qt4/examples/declarative/toys/clocks/clocks.png +share/examples/qt4/examples/declarative/toys/clocks/clocks.pro share/examples/qt4/examples/declarative/toys/clocks/clocks.qmlproject -share/examples/qt4/examples/declarative/toys/clocks/content/Clock.qml -share/examples/qt4/examples/declarative/toys/clocks/content/QuitButton.qml -share/examples/qt4/examples/declarative/toys/clocks/content/background.png -share/examples/qt4/examples/declarative/toys/clocks/content/center.png -share/examples/qt4/examples/declarative/toys/clocks/content/clock-night.png -share/examples/qt4/examples/declarative/toys/clocks/content/clock.png -share/examples/qt4/examples/declarative/toys/clocks/content/hour.png -share/examples/qt4/examples/declarative/toys/clocks/content/minute.png -share/examples/qt4/examples/declarative/toys/clocks/content/quit.png -share/examples/qt4/examples/declarative/toys/clocks/content/second.png -share/examples/qt4/examples/declarative/toys/corkboards/Day.qml -share/examples/qt4/examples/declarative/toys/corkboards/cork.jpg -share/examples/qt4/examples/declarative/toys/corkboards/corkboards.qml +share/examples/qt4/examples/declarative/toys/clocks/clocks.svg +share/examples/qt4/examples/declarative/toys/clocks/main.cpp +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/clocks.qml +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/Clock.qml +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/QuitButton.qml +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/background.png +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/center.png +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/clock-night.png +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/clock.png +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/hour.png +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/minute.png +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/quit.png +share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content/second.png +share/examples/qt4/examples/declarative/toys/corkboards/corkboards +%%DEBUG%%share/examples/qt4/examples/declarative/toys/corkboards/corkboards.debug +share/examples/qt4/examples/declarative/toys/corkboards/corkboards.png +share/examples/qt4/examples/declarative/toys/corkboards/corkboards.pro share/examples/qt4/examples/declarative/toys/corkboards/corkboards.qmlproject -share/examples/qt4/examples/declarative/toys/corkboards/note-yellow.png -share/examples/qt4/examples/declarative/toys/corkboards/tack.png -share/examples/qt4/examples/declarative/toys/dynamicscene/dynamicscene.qml +share/examples/qt4/examples/declarative/toys/corkboards/corkboards.svg +share/examples/qt4/examples/declarative/toys/corkboards/main.cpp +share/examples/qt4/examples/declarative/toys/corkboards/qml/corkboards/Day.qml +share/examples/qt4/examples/declarative/toys/corkboards/qml/corkboards/cork.jpg +share/examples/qt4/examples/declarative/toys/corkboards/qml/corkboards/corkboards.qml +share/examples/qt4/examples/declarative/toys/corkboards/qml/corkboards/note-yellow.png +share/examples/qt4/examples/declarative/toys/corkboards/qml/corkboards/tack.png +share/examples/qt4/examples/declarative/toys/dynamicscene/dynamicscene +%%DEBUG%%share/examples/qt4/examples/declarative/toys/dynamicscene/dynamicscene.debug +share/examples/qt4/examples/declarative/toys/dynamicscene/dynamicscene.png +share/examples/qt4/examples/declarative/toys/dynamicscene/dynamicscene.pro share/examples/qt4/examples/declarative/toys/dynamicscene/dynamicscene.qmlproject -share/examples/qt4/examples/declarative/toys/dynamicscene/images/NOTE -share/examples/qt4/examples/declarative/toys/dynamicscene/images/face-smile.png -share/examples/qt4/examples/declarative/toys/dynamicscene/images/moon.png -share/examples/qt4/examples/declarative/toys/dynamicscene/images/rabbit_brown.png -share/examples/qt4/examples/declarative/toys/dynamicscene/images/rabbit_bw.png -share/examples/qt4/examples/declarative/toys/dynamicscene/images/star.png -share/examples/qt4/examples/declarative/toys/dynamicscene/images/sun.png -share/examples/qt4/examples/declarative/toys/dynamicscene/images/tree_s.png -share/examples/qt4/examples/declarative/toys/dynamicscene/qml/Button.qml -share/examples/qt4/examples/declarative/toys/dynamicscene/qml/GenericSceneItem.qml -share/examples/qt4/examples/declarative/toys/dynamicscene/qml/PaletteItem.qml -share/examples/qt4/examples/declarative/toys/dynamicscene/qml/PerspectiveItem.qml -share/examples/qt4/examples/declarative/toys/dynamicscene/qml/Sun.qml -share/examples/qt4/examples/declarative/toys/dynamicscene/qml/itemCreation.js -share/examples/qt4/examples/declarative/toys/tic-tac-toe/content/Button.qml -share/examples/qt4/examples/declarative/toys/tic-tac-toe/content/TicTac.qml -share/examples/qt4/examples/declarative/toys/tic-tac-toe/content/pics/board.png -share/examples/qt4/examples/declarative/toys/tic-tac-toe/content/pics/o.png -share/examples/qt4/examples/declarative/toys/tic-tac-toe/content/pics/x.png -share/examples/qt4/examples/declarative/toys/tic-tac-toe/content/tic-tac-toe.js -share/examples/qt4/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qml +share/examples/qt4/examples/declarative/toys/dynamicscene/dynamicscene.svg +share/examples/qt4/examples/declarative/toys/dynamicscene/main.cpp +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/Button.qml +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/GenericSceneItem.qml +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/PaletteItem.qml +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/PerspectiveItem.qml +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/Sun.qml +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/dynamicscene.qml +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/NOTE +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/face-smile.png +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/moon.png +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/rabbit_brown.png +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/rabbit_bw.png +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/star.png +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/sun.png +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images/tree_s.png +share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/itemCreation.js +share/examples/qt4/examples/declarative/toys/tic-tac-toe/main.cpp +share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml +share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/TicTac.qml +share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/pics/board.png +share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/pics/o.png +share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/pics/x.png +share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/tic-tac-toe.js +share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/tic-tac-toe.qml +share/examples/qt4/examples/declarative/toys/tic-tac-toe/tic-tac-toe +%%DEBUG%%share/examples/qt4/examples/declarative/toys/tic-tac-toe/tic-tac-toe.debug share/examples/qt4/examples/declarative/toys/tic-tac-toe/tic-tac-toe.qmlproject -share/examples/qt4/examples/declarative/toys/toys.qmlproject -share/examples/qt4/examples/declarative/toys/tvtennis/tvtennis.qml +share/examples/qt4/examples/declarative/toys/tic-tac-toe/tictactoe.png +share/examples/qt4/examples/declarative/toys/tic-tac-toe/tictactoe.pro +share/examples/qt4/examples/declarative/toys/tic-tac-toe/tictactoe.svg +share/examples/qt4/examples/declarative/toys/tvtennis/main.cpp +share/examples/qt4/examples/declarative/toys/tvtennis/qml/tvtennis/tvtennis.qml +share/examples/qt4/examples/declarative/toys/tvtennis/tvtennis +%%DEBUG%%share/examples/qt4/examples/declarative/toys/tvtennis/tvtennis.debug +share/examples/qt4/examples/declarative/toys/tvtennis/tvtennis.png +share/examples/qt4/examples/declarative/toys/tvtennis/tvtennis.pro share/examples/qt4/examples/declarative/toys/tvtennis/tvtennis.qmlproject -share/examples/qt4/examples/declarative/ui-components/README -share/examples/qt4/examples/declarative/ui-components/dialcontrol/content/Dial.qml -share/examples/qt4/examples/declarative/ui-components/dialcontrol/content/QuitButton.qml -share/examples/qt4/examples/declarative/ui-components/dialcontrol/content/background.png -share/examples/qt4/examples/declarative/ui-components/dialcontrol/content/needle.png -share/examples/qt4/examples/declarative/ui-components/dialcontrol/content/needle_shadow.png -share/examples/qt4/examples/declarative/ui-components/dialcontrol/content/overlay.png -share/examples/qt4/examples/declarative/ui-components/dialcontrol/content/quit.png -share/examples/qt4/examples/declarative/ui-components/dialcontrol/dialcontrol.qml +share/examples/qt4/examples/declarative/toys/tvtennis/tvtennis.svg +share/examples/qt4/examples/declarative/ui-components/dialcontrol/dialcontrol +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/dialcontrol/dialcontrol.debug +share/examples/qt4/examples/declarative/ui-components/dialcontrol/dialcontrol.png +share/examples/qt4/examples/declarative/ui-components/dialcontrol/dialcontrol.pro share/examples/qt4/examples/declarative/ui-components/dialcontrol/dialcontrol.qmlproject -share/examples/qt4/examples/declarative/ui-components/flipable/content/5_heart.png -share/examples/qt4/examples/declarative/ui-components/flipable/content/9_club.png -share/examples/qt4/examples/declarative/ui-components/flipable/content/Card.qml -share/examples/qt4/examples/declarative/ui-components/flipable/content/back.png -share/examples/qt4/examples/declarative/ui-components/flipable/flipable.qml +share/examples/qt4/examples/declarative/ui-components/dialcontrol/dialcontrol.svg +share/examples/qt4/examples/declarative/ui-components/dialcontrol/main.cpp +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content/Dial.qml +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content/QuitButton.qml +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content/background.png +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content/needle.png +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content/needle_shadow.png +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content/overlay.png +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content/quit.png +share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/dialcontrol.qml +share/examples/qt4/examples/declarative/ui-components/flipable/flipable +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/flipable/flipable.debug +share/examples/qt4/examples/declarative/ui-components/flipable/flipable.png +share/examples/qt4/examples/declarative/ui-components/flipable/flipable.pro share/examples/qt4/examples/declarative/ui-components/flipable/flipable.qmlproject -share/examples/qt4/examples/declarative/ui-components/progressbar/content/ProgressBar.qml -share/examples/qt4/examples/declarative/ui-components/progressbar/content/background.png -share/examples/qt4/examples/declarative/ui-components/progressbar/main.qml +share/examples/qt4/examples/declarative/ui-components/flipable/flipable.svg +share/examples/qt4/examples/declarative/ui-components/flipable/main.cpp +share/examples/qt4/examples/declarative/ui-components/flipable/qml/flipable/content/5_heart.png +share/examples/qt4/examples/declarative/ui-components/flipable/qml/flipable/content/9_club.png +share/examples/qt4/examples/declarative/ui-components/flipable/qml/flipable/content/Card.qml +share/examples/qt4/examples/declarative/ui-components/flipable/qml/flipable/content/back.png +share/examples/qt4/examples/declarative/ui-components/flipable/qml/flipable/flipable.qml +share/examples/qt4/examples/declarative/ui-components/main/main +share/examples/qt4/examples/declarative/ui-components/main/main.cpp +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/main/main.debug +share/examples/qt4/examples/declarative/ui-components/main/main.png +share/examples/qt4/examples/declarative/ui-components/main/main.pro +share/examples/qt4/examples/declarative/ui-components/main/main.qmlproject +share/examples/qt4/examples/declarative/ui-components/main/main.svg +share/examples/qt4/examples/declarative/ui-components/main/qml/main/ScrollBar.qml +share/examples/qt4/examples/declarative/ui-components/main/qml/main/SearchBox.qml +share/examples/qt4/examples/declarative/ui-components/main/qml/main/TabWidget.qml +share/examples/qt4/examples/declarative/ui-components/main/qml/main/content/ProgressBar.qml +share/examples/qt4/examples/declarative/ui-components/main/qml/main/content/Spinner.qml +share/examples/qt4/examples/declarative/ui-components/main/qml/main/content/background.png +share/examples/qt4/examples/declarative/ui-components/main/qml/main/content/spinner-bg.png +share/examples/qt4/examples/declarative/ui-components/main/qml/main/content/spinner-select.png +share/examples/qt4/examples/declarative/ui-components/main/qml/main/images/clear.png +share/examples/qt4/examples/declarative/ui-components/main/qml/main/images/lineedit-bg-focus.png +share/examples/qt4/examples/declarative/ui-components/main/qml/main/images/lineedit-bg.png +share/examples/qt4/examples/declarative/ui-components/main/qml/main/main.qml +share/examples/qt4/examples/declarative/ui-components/main/qml/main/pics/niagara_falls.jpg +share/examples/qt4/examples/declarative/ui-components/main/qml/main/tab.png +share/examples/qt4/examples/declarative/ui-components/progressbar/main.cpp +share/examples/qt4/examples/declarative/ui-components/progressbar/progressbar +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/progressbar/progressbar.debug +share/examples/qt4/examples/declarative/ui-components/progressbar/progressbar.png +share/examples/qt4/examples/declarative/ui-components/progressbar/progressbar.pro share/examples/qt4/examples/declarative/ui-components/progressbar/progressbar.qmlproject -share/examples/qt4/examples/declarative/ui-components/scrollbar/ScrollBar.qml -share/examples/qt4/examples/declarative/ui-components/scrollbar/main.qml -share/examples/qt4/examples/declarative/ui-components/scrollbar/pics/niagara_falls.jpg +share/examples/qt4/examples/declarative/ui-components/progressbar/progressbar.svg +share/examples/qt4/examples/declarative/ui-components/progressbar/qml/progressbar/content/ProgressBar.qml +share/examples/qt4/examples/declarative/ui-components/progressbar/qml/progressbar/content/background.png +share/examples/qt4/examples/declarative/ui-components/progressbar/qml/progressbar/main.qml +share/examples/qt4/examples/declarative/ui-components/scrollbar/main.cpp +share/examples/qt4/examples/declarative/ui-components/scrollbar/qml/scrollbar/ScrollBar.qml +share/examples/qt4/examples/declarative/ui-components/scrollbar/qml/scrollbar/main.qml +share/examples/qt4/examples/declarative/ui-components/scrollbar/qml/scrollbar/niagara_falls.jpg +share/examples/qt4/examples/declarative/ui-components/scrollbar/scrollbar +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/scrollbar/scrollbar.debug +share/examples/qt4/examples/declarative/ui-components/scrollbar/scrollbar.pro share/examples/qt4/examples/declarative/ui-components/scrollbar/scrollbar.qmlproject -share/examples/qt4/examples/declarative/ui-components/searchbox/SearchBox.qml -share/examples/qt4/examples/declarative/ui-components/searchbox/images/clear.png -share/examples/qt4/examples/declarative/ui-components/searchbox/images/lineedit-bg-focus.png -share/examples/qt4/examples/declarative/ui-components/searchbox/images/lineedit-bg.png -share/examples/qt4/examples/declarative/ui-components/searchbox/main.qml +share/examples/qt4/examples/declarative/ui-components/scrollbar/scrollbar.svg +share/examples/qt4/examples/declarative/ui-components/scrollbar/scrollbar64.png +share/examples/qt4/examples/declarative/ui-components/scrollbar/scrollbar80.png +share/examples/qt4/examples/declarative/ui-components/searchbox/main.cpp +share/examples/qt4/examples/declarative/ui-components/searchbox/qml/searchbox/SearchBox.qml +share/examples/qt4/examples/declarative/ui-components/searchbox/qml/searchbox/images/clear.png +share/examples/qt4/examples/declarative/ui-components/searchbox/qml/searchbox/images/lineedit-bg-focus.png +share/examples/qt4/examples/declarative/ui-components/searchbox/qml/searchbox/images/lineedit-bg.png +share/examples/qt4/examples/declarative/ui-components/searchbox/qml/searchbox/main.qml +share/examples/qt4/examples/declarative/ui-components/searchbox/searchbox +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/searchbox/searchbox.debug +share/examples/qt4/examples/declarative/ui-components/searchbox/searchbox.pro share/examples/qt4/examples/declarative/ui-components/searchbox/searchbox.qmlproject -share/examples/qt4/examples/declarative/ui-components/slideswitch/content/Switch.qml -share/examples/qt4/examples/declarative/ui-components/slideswitch/content/background.svg -share/examples/qt4/examples/declarative/ui-components/slideswitch/content/knob.svg -share/examples/qt4/examples/declarative/ui-components/slideswitch/slideswitch.qml +share/examples/qt4/examples/declarative/ui-components/searchbox/searchbox.svg +share/examples/qt4/examples/declarative/ui-components/searchbox/searchbox64.png +share/examples/qt4/examples/declarative/ui-components/searchbox/searchbox80.png +share/examples/qt4/examples/declarative/ui-components/slideswitch/main.cpp +share/examples/qt4/examples/declarative/ui-components/slideswitch/qml/slideswitch/content/Switch.qml +share/examples/qt4/examples/declarative/ui-components/slideswitch/qml/slideswitch/content/background.svg +share/examples/qt4/examples/declarative/ui-components/slideswitch/qml/slideswitch/content/knob.svg +share/examples/qt4/examples/declarative/ui-components/slideswitch/qml/slideswitch/slideswitch.qml +share/examples/qt4/examples/declarative/ui-components/slideswitch/slideswitch +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/slideswitch/slideswitch.debug +share/examples/qt4/examples/declarative/ui-components/slideswitch/slideswitch.png +share/examples/qt4/examples/declarative/ui-components/slideswitch/slideswitch.pro share/examples/qt4/examples/declarative/ui-components/slideswitch/slideswitch.qmlproject -share/examples/qt4/examples/declarative/ui-components/spinner/content/Spinner.qml -share/examples/qt4/examples/declarative/ui-components/spinner/content/spinner-bg.png -share/examples/qt4/examples/declarative/ui-components/spinner/content/spinner-select.png -share/examples/qt4/examples/declarative/ui-components/spinner/main.qml +share/examples/qt4/examples/declarative/ui-components/slideswitch/slideswitch.svg +share/examples/qt4/examples/declarative/ui-components/spinner/main.cpp +share/examples/qt4/examples/declarative/ui-components/spinner/qml/spinner/main.qml +share/examples/qt4/examples/declarative/ui-components/spinner/spinner +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/spinner/spinner.debug +share/examples/qt4/examples/declarative/ui-components/spinner/spinner.pro share/examples/qt4/examples/declarative/ui-components/spinner/spinner.qmlproject -share/examples/qt4/examples/declarative/ui-components/tabwidget/TabWidget.qml -share/examples/qt4/examples/declarative/ui-components/tabwidget/main.qml -share/examples/qt4/examples/declarative/ui-components/tabwidget/tab.png +share/examples/qt4/examples/declarative/ui-components/spinner/spinner.svg +share/examples/qt4/examples/declarative/ui-components/spinner/spinner64.png +share/examples/qt4/examples/declarative/ui-components/spinner/spinner80.png +share/examples/qt4/examples/declarative/ui-components/tabwidget/main.cpp +share/examples/qt4/examples/declarative/ui-components/tabwidget/qml/tabwidget/TabWidget.qml +share/examples/qt4/examples/declarative/ui-components/tabwidget/qml/tabwidget/main.qml +share/examples/qt4/examples/declarative/ui-components/tabwidget/qml/tabwidget/tab.png +share/examples/qt4/examples/declarative/ui-components/tabwidget/tabwidget +%%DEBUG%%share/examples/qt4/examples/declarative/ui-components/tabwidget/tabwidget.debug +share/examples/qt4/examples/declarative/ui-components/tabwidget/tabwidget.pro share/examples/qt4/examples/declarative/ui-components/tabwidget/tabwidget.qmlproject -share/examples/qt4/examples/declarative/ui-components/ui-components.qmlproject -share/examples/qt4/examples/declarative/xml/xml.qmlproject -share/examples/qt4/examples/declarative/xml/xmlhttprequest/data.xml +share/examples/qt4/examples/declarative/ui-components/tabwidget/tabwidget.svg +share/examples/qt4/examples/declarative/ui-components/tabwidget/tabwidget64.png +share/examples/qt4/examples/declarative/ui-components/tabwidget/tabwidget80.png +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/Makefile +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/main.cpp +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/qml/xmlhttprequest-example/data.xml +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/qml/xmlhttprequest-example/xmlhttprequest-example.qml +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/xmlhttprequest.qmlproject +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/xmlhttprequestexample.png +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/xmlhttprequestexample.pro +share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/xmlhttprequestexample.svg share/examples/qt4/examples/declarative/xml/xmlhttprequest/xmlhttprequest-example.qml share/examples/qt4/examples/declarative/xml/xmlhttprequest/xmlhttprequest.qmlproject 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/delayedencoding/delayedencoding %%DEBUG%%share/examples/qt4/examples/draganddrop/delayedencoding/delayedencoding.debug 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/effects/blurpicker/blureffect.cpp share/examples/qt4/examples/effects/blurpicker/blureffect.h share/examples/qt4/examples/effects/blurpicker/blurpicker share/examples/qt4/examples/effects/blurpicker/blurpicker.cpp %%DEBUG%%share/examples/qt4/examples/effects/blurpicker/blurpicker.debug share/examples/qt4/examples/effects/blurpicker/blurpicker.h share/examples/qt4/examples/effects/blurpicker/blurpicker.pro share/examples/qt4/examples/effects/blurpicker/blurpicker.qrc share/examples/qt4/examples/effects/blurpicker/main.cpp share/examples/qt4/examples/effects/effects.pro share/examples/qt4/examples/effects/fademessage/fademessage share/examples/qt4/examples/effects/fademessage/fademessage.cpp %%DEBUG%%share/examples/qt4/examples/effects/fademessage/fademessage.debug share/examples/qt4/examples/effects/fademessage/fademessage.h share/examples/qt4/examples/effects/fademessage/fademessage.pro share/examples/qt4/examples/effects/fademessage/fademessage.qrc share/examples/qt4/examples/effects/fademessage/main.cpp share/examples/qt4/examples/effects/lighting/lighting share/examples/qt4/examples/effects/lighting/lighting.cpp %%DEBUG%%share/examples/qt4/examples/effects/lighting/lighting.debug share/examples/qt4/examples/effects/lighting/lighting.h share/examples/qt4/examples/effects/lighting/lighting.pro share/examples/qt4/examples/effects/lighting/main.cpp share/examples/qt4/examples/examples.pro share/examples/qt4/examples/gestures/gestures.pro share/examples/qt4/examples/gestures/imagegestures/imagegestures %%DEBUG%%share/examples/qt4/examples/gestures/imagegestures/imagegestures.debug share/examples/qt4/examples/gestures/imagegestures/imagegestures.pro share/examples/qt4/examples/gestures/imagegestures/imagewidget.cpp share/examples/qt4/examples/gestures/imagegestures/imagewidget.h share/examples/qt4/examples/gestures/imagegestures/main.cpp share/examples/qt4/examples/gestures/imagegestures/mainwidget.cpp share/examples/qt4/examples/gestures/imagegestures/mainwidget.h share/examples/qt4/examples/graphicsview/README share/examples/qt4/examples/graphicsview/anchorlayout/anchorlayout %%DEBUG%%share/examples/qt4/examples/graphicsview/anchorlayout/anchorlayout.debug share/examples/qt4/examples/graphicsview/anchorlayout/anchorlayout.pro share/examples/qt4/examples/graphicsview/anchorlayout/main.cpp share/examples/qt4/examples/graphicsview/basicgraphicslayouts/basicgraphicslayouts %%DEBUG%%share/examples/qt4/examples/graphicsview/basicgraphicslayouts/basicgraphicslayouts.debug share/examples/qt4/examples/graphicsview/basicgraphicslayouts/basicgraphicslayouts.pro share/examples/qt4/examples/graphicsview/basicgraphicslayouts/basicgraphicslayouts.qrc share/examples/qt4/examples/graphicsview/basicgraphicslayouts/layoutitem.cpp share/examples/qt4/examples/graphicsview/basicgraphicslayouts/layoutitem.h share/examples/qt4/examples/graphicsview/basicgraphicslayouts/main.cpp share/examples/qt4/examples/graphicsview/basicgraphicslayouts/window.cpp share/examples/qt4/examples/graphicsview/basicgraphicslayouts/window.h 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/flippablepad.cpp share/examples/qt4/examples/graphicsview/padnavigator/flippablepad.h share/examples/qt4/examples/graphicsview/padnavigator/form.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 share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.cpp %%DEBUG%%share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.debug share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.h share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.pro share/examples/qt4/examples/graphicsview/padnavigator/padnavigator.qrc 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/graphicsview/simpleanchorlayout/main.cpp share/examples/qt4/examples/graphicsview/simpleanchorlayout/simpleanchorlayout %%DEBUG%%share/examples/qt4/examples/graphicsview/simpleanchorlayout/simpleanchorlayout.debug share/examples/qt4/examples/graphicsview/simpleanchorlayout/simpleanchorlayout.pro share/examples/qt4/examples/graphicsview/weatheranchorlayout/images/5days.jpg share/examples/qt4/examples/graphicsview/weatheranchorlayout/images/details.jpg share/examples/qt4/examples/graphicsview/weatheranchorlayout/images/place.jpg share/examples/qt4/examples/graphicsview/weatheranchorlayout/images/tabbar.jpg share/examples/qt4/examples/graphicsview/weatheranchorlayout/images/title.jpg share/examples/qt4/examples/graphicsview/weatheranchorlayout/images/weather-few-clouds.png share/examples/qt4/examples/graphicsview/weatheranchorlayout/main.cpp share/examples/qt4/examples/graphicsview/weatheranchorlayout/weatheranchorlayout %%DEBUG%%share/examples/qt4/examples/graphicsview/weatheranchorlayout/weatheranchorlayout.debug share/examples/qt4/examples/graphicsview/weatheranchorlayout/weatheranchorlayout.pro share/examples/qt4/examples/graphicsview/weatheranchorlayout/weatheranchorlayout.qrc 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/helper/qmlapplicationviewer/qmlapplicationviewer.cpp +share/examples/qt4/examples/helper/qmlapplicationviewer/qmlapplicationviewer.h +share/examples/qt4/examples/helper/qmlapplicationviewer/qmlapplicationviewer.pri 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/image.png 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/combowidgetmapper/combowidgetmapper %%DEBUG%%share/examples/qt4/examples/itemviews/combowidgetmapper/combowidgetmapper.debug share/examples/qt4/examples/itemviews/combowidgetmapper/combowidgetmapper.pro share/examples/qt4/examples/itemviews/combowidgetmapper/main.cpp share/examples/qt4/examples/itemviews/combowidgetmapper/window.cpp share/examples/qt4/examples/itemviews/combowidgetmapper/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/delayedencoding/delayedencoding.pro share/examples/qt4/examples/itemviews/delayedencoding/main.cpp share/examples/qt4/examples/itemviews/delayedencoding/mimedata.cpp share/examples/qt4/examples/itemviews/delayedencoding/mimedata.h share/examples/qt4/examples/itemviews/delayedencoding/sourcewidget.cpp share/examples/qt4/examples/itemviews/delayedencoding/sourcewidget.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/fetchmore/fetchmore %%DEBUG%%share/examples/qt4/examples/itemviews/fetchmore/fetchmore.debug share/examples/qt4/examples/itemviews/fetchmore/fetchmore.pro share/examples/qt4/examples/itemviews/fetchmore/filelistmodel.cpp share/examples/qt4/examples/itemviews/fetchmore/filelistmodel.h share/examples/qt4/examples/itemviews/fetchmore/main.cpp share/examples/qt4/examples/itemviews/fetchmore/window.cpp share/examples/qt4/examples/itemviews/fetchmore/window.h share/examples/qt4/examples/itemviews/frozencolumn/freezetablewidget.cpp share/examples/qt4/examples/itemviews/frozencolumn/freezetablewidget.h share/examples/qt4/examples/itemviews/frozencolumn/frozencolumn %%DEBUG%%share/examples/qt4/examples/itemviews/frozencolumn/frozencolumn.debug share/examples/qt4/examples/itemviews/frozencolumn/frozencolumn.pro share/examples/qt4/examples/itemviews/frozencolumn/grades.qrc share/examples/qt4/examples/itemviews/frozencolumn/main.cpp 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/multimedia/README share/examples/qt4/examples/multimedia/audiodevices/audiodevices share/examples/qt4/examples/multimedia/audiodevices/audiodevices.cpp %%DEBUG%%share/examples/qt4/examples/multimedia/audiodevices/audiodevices.debug share/examples/qt4/examples/multimedia/audiodevices/audiodevices.h share/examples/qt4/examples/multimedia/audiodevices/audiodevices.pro share/examples/qt4/examples/multimedia/audiodevices/audiodevicesbase.ui share/examples/qt4/examples/multimedia/audiodevices/main.cpp share/examples/qt4/examples/multimedia/audioinput/audioinput share/examples/qt4/examples/multimedia/audioinput/audioinput.cpp %%DEBUG%%share/examples/qt4/examples/multimedia/audioinput/audioinput.debug share/examples/qt4/examples/multimedia/audioinput/audioinput.h share/examples/qt4/examples/multimedia/audioinput/audioinput.pro share/examples/qt4/examples/multimedia/audioinput/main.cpp share/examples/qt4/examples/multimedia/audiooutput/audiooutput share/examples/qt4/examples/multimedia/audiooutput/audiooutput.cpp %%DEBUG%%share/examples/qt4/examples/multimedia/audiooutput/audiooutput.debug share/examples/qt4/examples/multimedia/audiooutput/audiooutput.h share/examples/qt4/examples/multimedia/audiooutput/audiooutput.pro share/examples/qt4/examples/multimedia/audiooutput/main.cpp share/examples/qt4/examples/multimedia/multimedia.pro share/examples/qt4/examples/multimedia/videographicsitem/main.cpp share/examples/qt4/examples/multimedia/videographicsitem/videographicsitem %%DEBUG%%share/examples/qt4/examples/multimedia/videographicsitem/videographicsitem.debug share/examples/qt4/examples/multimedia/videographicsitem/videographicsitem.pro share/examples/qt4/examples/multimedia/videographicsitem/videoitem.cpp share/examples/qt4/examples/multimedia/videographicsitem/videoitem.h share/examples/qt4/examples/multimedia/videographicsitem/videoplayer.cpp share/examples/qt4/examples/multimedia/videographicsitem/videoplayer.h share/examples/qt4/examples/multimedia/videowidget/main.cpp share/examples/qt4/examples/multimedia/videowidget/videoplayer.cpp share/examples/qt4/examples/multimedia/videowidget/videoplayer.h share/examples/qt4/examples/multimedia/videowidget/videowidget share/examples/qt4/examples/multimedia/videowidget/videowidget.cpp %%DEBUG%%share/examples/qt4/examples/multimedia/videowidget/videowidget.debug share/examples/qt4/examples/multimedia/videowidget/videowidget.h share/examples/qt4/examples/multimedia/videowidget/videowidget.pro share/examples/qt4/examples/multimedia/videowidget/videowidgetsurface.cpp share/examples/qt4/examples/multimedia/videowidget/videowidgetsurface.h 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/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/googlesuggest/googlesuggest share/examples/qt4/examples/network/googlesuggest/googlesuggest.cpp %%DEBUG%%share/examples/qt4/examples/network/googlesuggest/googlesuggest.debug share/examples/qt4/examples/network/googlesuggest/googlesuggest.h share/examples/qt4/examples/network/googlesuggest/googlesuggest.pro share/examples/qt4/examples/network/googlesuggest/main.cpp share/examples/qt4/examples/network/googlesuggest/searchbox.cpp share/examples/qt4/examples/network/googlesuggest/searchbox.h 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/multicastreceiver/main.cpp +share/examples/qt4/examples/network/multicastreceiver/multicastreceiver +%%DEBUG%%share/examples/qt4/examples/network/multicastreceiver/multicastreceiver.debug +share/examples/qt4/examples/network/multicastreceiver/multicastreceiver.pro +share/examples/qt4/examples/network/multicastreceiver/receiver.cpp +share/examples/qt4/examples/network/multicastreceiver/receiver.h +share/examples/qt4/examples/network/multicastsender/main.cpp +share/examples/qt4/examples/network/multicastsender/multicastsender +%%DEBUG%%share/examples/qt4/examples/network/multicastsender/multicastsender.debug +share/examples/qt4/examples/network/multicastsender/multicastsender.pro +share/examples/qt4/examples/network/multicastsender/sender.cpp +share/examples/qt4/examples/network/multicastsender/sender.h share/examples/qt4/examples/network/network-chat/chatdialog.cpp share/examples/qt4/examples/network/network-chat/chatdialog.h share/examples/qt4/examples/network/network-chat/chatdialog.ui share/examples/qt4/examples/network/network-chat/client.cpp share/examples/qt4/examples/network/network-chat/client.h share/examples/qt4/examples/network/network-chat/connection.cpp share/examples/qt4/examples/network/network-chat/connection.h share/examples/qt4/examples/network/network-chat/main.cpp share/examples/qt4/examples/network/network-chat/network-chat %%DEBUG%%share/examples/qt4/examples/network/network-chat/network-chat.debug share/examples/qt4/examples/network/network-chat/network-chat.pro share/examples/qt4/examples/network/network-chat/peermanager.cpp share/examples/qt4/examples/network/network-chat/peermanager.h share/examples/qt4/examples/network/network-chat/server.cpp share/examples/qt4/examples/network/network-chat/server.h share/examples/qt4/examples/network/network.pro share/examples/qt4/examples/network/qftp/ftp.qrc share/examples/qt4/examples/network/qftp/ftpwindow.cpp share/examples/qt4/examples/network/qftp/ftpwindow.h share/examples/qt4/examples/network/qftp/images/cdtoparent.png share/examples/qt4/examples/network/qftp/images/dir.png share/examples/qt4/examples/network/qftp/images/file.png share/examples/qt4/examples/network/qftp/main.cpp share/examples/qt4/examples/network/qftp/qftp %%DEBUG%%share/examples/qt4/examples/network/qftp/qftp.debug share/examples/qt4/examples/network/qftp/qftp.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/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/designer.png 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/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/qtlogo.cpp share/examples/qt4/examples/opengl/hellogl/qtlogo.h 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/overpainting/qtlogo.cpp share/examples/qt4/examples/opengl/overpainting/qtlogo.h share/examples/qt4/examples/opengl/pbuffers/cube.cpp share/examples/qt4/examples/opengl/pbuffers/cube.h 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/designer.png 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/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/svggenerator/displaywidget.cpp share/examples/qt4/examples/painting/svggenerator/displaywidget.h share/examples/qt4/examples/painting/svggenerator/main.cpp share/examples/qt4/examples/painting/svggenerator/svggenerator %%DEBUG%%share/examples/qt4/examples/painting/svggenerator/svggenerator.debug share/examples/qt4/examples/painting/svggenerator/svggenerator.pro share/examples/qt4/examples/painting/svggenerator/svggenerator.qrc share/examples/qt4/examples/painting/svggenerator/window.cpp share/examples/qt4/examples/painting/svggenerator/window.h share/examples/qt4/examples/painting/svggenerator/window.ui 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/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/phonon.pro share/examples/qt4/examples/phonon/qmusicplayer/main.cpp share/examples/qt4/examples/phonon/qmusicplayer/mainwindow.cpp share/examples/qt4/examples/phonon/qmusicplayer/mainwindow.h share/examples/qt4/examples/phonon/qmusicplayer/qmusicplayer %%DEBUG%%share/examples/qt4/examples/phonon/qmusicplayer/qmusicplayer.debug share/examples/qt4/examples/phonon/qmusicplayer/qmusicplayer.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/qtestlib/tutorial5/benchmarking.cpp share/examples/qt4/examples/qtestlib/tutorial5/tutorial5 %%DEBUG%%share/examples/qt4/examples/qtestlib/tutorial5/tutorial5.debug share/examples/qt4/examples/qtestlib/tutorial5/tutorial5.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/richtext/textobject/main.cpp share/examples/qt4/examples/richtext/textobject/svgtextobject.cpp share/examples/qt4/examples/richtext/textobject/svgtextobject.h share/examples/qt4/examples/richtext/textobject/textobject %%DEBUG%%share/examples/qt4/examples/richtext/textobject/textobject.debug share/examples/qt4/examples/richtext/textobject/textobject.pro share/examples/qt4/examples/richtext/textobject/window.cpp share/examples/qt4/examples/richtext/textobject/window.h 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/environment.cpp share/examples/qt4/examples/script/context2d/environment.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/helloscript.qrc 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/qstetrix/main.cpp share/examples/qt4/examples/script/qstetrix/qstetrix %%DEBUG%%share/examples/qt4/examples/script/qstetrix/qstetrix.debug share/examples/qt4/examples/script/qstetrix/qstetrix.pro share/examples/qt4/examples/script/qstetrix/tetrix.qrc share/examples/qt4/examples/script/qstetrix/tetrixboard.cpp share/examples/qt4/examples/script/qstetrix/tetrixboard.h share/examples/qt4/examples/script/qstetrix/tetrixboard.js share/examples/qt4/examples/script/qstetrix/tetrixpiece.js share/examples/qt4/examples/script/qstetrix/tetrixwindow.js share/examples/qt4/examples/script/script.pro 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/sqlwidgetmapper/main.cpp share/examples/qt4/examples/sql/sqlwidgetmapper/sqlwidgetmapper %%DEBUG%%share/examples/qt4/examples/sql/sqlwidgetmapper/sqlwidgetmapper.debug share/examples/qt4/examples/sql/sqlwidgetmapper/sqlwidgetmapper.pro share/examples/qt4/examples/sql/sqlwidgetmapper/window.cpp share/examples/qt4/examples/sql/sqlwidgetmapper/window.h 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/statemachine/README share/examples/qt4/examples/statemachine/eventtransitions/eventtransitions %%DEBUG%%share/examples/qt4/examples/statemachine/eventtransitions/eventtransitions.debug share/examples/qt4/examples/statemachine/eventtransitions/eventtransitions.pro share/examples/qt4/examples/statemachine/eventtransitions/main.cpp share/examples/qt4/examples/statemachine/factorial/factorial %%DEBUG%%share/examples/qt4/examples/statemachine/factorial/factorial.debug share/examples/qt4/examples/statemachine/factorial/factorial.pro share/examples/qt4/examples/statemachine/factorial/main.cpp share/examples/qt4/examples/statemachine/pingpong/main.cpp share/examples/qt4/examples/statemachine/pingpong/pingpong %%DEBUG%%share/examples/qt4/examples/statemachine/pingpong/pingpong.debug share/examples/qt4/examples/statemachine/pingpong/pingpong.pro share/examples/qt4/examples/statemachine/rogue/main.cpp share/examples/qt4/examples/statemachine/rogue/movementtransition.h share/examples/qt4/examples/statemachine/rogue/rogue %%DEBUG%%share/examples/qt4/examples/statemachine/rogue/rogue.debug share/examples/qt4/examples/statemachine/rogue/rogue.pro share/examples/qt4/examples/statemachine/rogue/window.cpp share/examples/qt4/examples/statemachine/rogue/window.h share/examples/qt4/examples/statemachine/statemachine.pro share/examples/qt4/examples/statemachine/trafficlight/main.cpp share/examples/qt4/examples/statemachine/trafficlight/trafficlight %%DEBUG%%share/examples/qt4/examples/statemachine/trafficlight/trafficlight.debug share/examples/qt4/examples/statemachine/trafficlight/trafficlight.pro share/examples/qt4/examples/statemachine/twowaybutton/main.cpp share/examples/qt4/examples/statemachine/twowaybutton/twowaybutton %%DEBUG%%share/examples/qt4/examples/statemachine/twowaybutton/twowaybutton.debug share/examples/qt4/examples/statemachine/twowaybutton/twowaybutton.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/fsmodel.cpp share/examples/qt4/examples/tools/completer/fsmodel.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/contiguouscache/contiguouscache %%DEBUG%%share/examples/qt4/examples/tools/contiguouscache/contiguouscache.debug share/examples/qt4/examples/tools/contiguouscache/contiguouscache.pro share/examples/qt4/examples/tools/contiguouscache/main.cpp share/examples/qt4/examples/tools/contiguouscache/randomlistmodel.cpp share/examples/qt4/examples/tools/contiguouscache/randomlistmodel.h 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/inputpanel/inputpanel %%DEBUG%%share/examples/qt4/examples/tools/inputpanel/inputpanel.debug share/examples/qt4/examples/tools/inputpanel/inputpanel.pro share/examples/qt4/examples/tools/inputpanel/main.cpp share/examples/qt4/examples/tools/inputpanel/mainform.ui share/examples/qt4/examples/tools/inputpanel/myinputpanel.cpp share/examples/qt4/examples/tools/inputpanel/myinputpanel.h share/examples/qt4/examples/tools/inputpanel/myinputpanelcontext.cpp share/examples/qt4/examples/tools/inputpanel/myinputpanelcontext.h share/examples/qt4/examples/tools/inputpanel/myinputpanelform.ui 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_basictools.prl 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/touch/dials/dials %%DEBUG%%share/examples/qt4/examples/touch/dials/dials.debug share/examples/qt4/examples/touch/dials/dials.pro share/examples/qt4/examples/touch/dials/dials.ui share/examples/qt4/examples/touch/dials/main.cpp share/examples/qt4/examples/touch/fingerpaint/fingerpaint %%DEBUG%%share/examples/qt4/examples/touch/fingerpaint/fingerpaint.debug share/examples/qt4/examples/touch/fingerpaint/fingerpaint.pro share/examples/qt4/examples/touch/fingerpaint/main.cpp share/examples/qt4/examples/touch/fingerpaint/mainwindow.cpp share/examples/qt4/examples/touch/fingerpaint/mainwindow.h share/examples/qt4/examples/touch/fingerpaint/scribblearea.cpp share/examples/qt4/examples/touch/fingerpaint/scribblearea.h share/examples/qt4/examples/touch/knobs/knob.cpp share/examples/qt4/examples/touch/knobs/knob.h share/examples/qt4/examples/touch/knobs/knobs %%DEBUG%%share/examples/qt4/examples/touch/knobs/knobs.debug share/examples/qt4/examples/touch/knobs/knobs.pro share/examples/qt4/examples/touch/knobs/main.cpp share/examples/qt4/examples/touch/pinchzoom/graphicsview.cpp share/examples/qt4/examples/touch/pinchzoom/graphicsview.h share/examples/qt4/examples/touch/pinchzoom/images/cheese.jpg share/examples/qt4/examples/touch/pinchzoom/main.cpp share/examples/qt4/examples/touch/pinchzoom/mice.qrc share/examples/qt4/examples/touch/pinchzoom/mouse.cpp share/examples/qt4/examples/touch/pinchzoom/mouse.h share/examples/qt4/examples/touch/pinchzoom/pinchzoom %%DEBUG%%share/examples/qt4/examples/touch/pinchzoom/pinchzoom.debug share/examples/qt4/examples/touch/pinchzoom/pinchzoom.pro share/examples/qt4/examples/tutorials/README share/examples/qt4/examples/tutorials/addressbook/README share/examples/qt4/examples/tutorials/addressbook/addressbook.pro 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/modelview/1_readonly/1_readonly.pro share/examples/qt4/examples/tutorials/modelview/1_readonly/main.cpp share/examples/qt4/examples/tutorials/modelview/1_readonly/mv_readonly %%DEBUG%%share/examples/qt4/examples/tutorials/modelview/1_readonly/mv_readonly.debug share/examples/qt4/examples/tutorials/modelview/1_readonly/mymodel.cpp share/examples/qt4/examples/tutorials/modelview/1_readonly/mymodel.h share/examples/qt4/examples/tutorials/modelview/2_formatting/2_formatting.pro share/examples/qt4/examples/tutorials/modelview/2_formatting/main.cpp share/examples/qt4/examples/tutorials/modelview/2_formatting/mv_formatting %%DEBUG%%share/examples/qt4/examples/tutorials/modelview/2_formatting/mv_formatting.debug share/examples/qt4/examples/tutorials/modelview/2_formatting/mymodel.cpp share/examples/qt4/examples/tutorials/modelview/2_formatting/mymodel.h share/examples/qt4/examples/tutorials/modelview/3_changingmodel/3_changingmodel.pro share/examples/qt4/examples/tutorials/modelview/3_changingmodel/main.cpp share/examples/qt4/examples/tutorials/modelview/3_changingmodel/mv_changingmodel %%DEBUG%%share/examples/qt4/examples/tutorials/modelview/3_changingmodel/mv_changingmodel.debug share/examples/qt4/examples/tutorials/modelview/3_changingmodel/mymodel.cpp share/examples/qt4/examples/tutorials/modelview/3_changingmodel/mymodel.h share/examples/qt4/examples/tutorials/modelview/4_headers/4_headers.pro share/examples/qt4/examples/tutorials/modelview/4_headers/main.cpp share/examples/qt4/examples/tutorials/modelview/4_headers/mv_headers %%DEBUG%%share/examples/qt4/examples/tutorials/modelview/4_headers/mv_headers.debug share/examples/qt4/examples/tutorials/modelview/4_headers/mymodel.cpp share/examples/qt4/examples/tutorials/modelview/4_headers/mymodel.h share/examples/qt4/examples/tutorials/modelview/5_edit/5_edit.pro share/examples/qt4/examples/tutorials/modelview/5_edit/main.cpp share/examples/qt4/examples/tutorials/modelview/5_edit/mainwindow.cpp share/examples/qt4/examples/tutorials/modelview/5_edit/mainwindow.h share/examples/qt4/examples/tutorials/modelview/5_edit/mv_edit %%DEBUG%%share/examples/qt4/examples/tutorials/modelview/5_edit/mv_edit.debug share/examples/qt4/examples/tutorials/modelview/5_edit/mymodel.cpp share/examples/qt4/examples/tutorials/modelview/5_edit/mymodel.h share/examples/qt4/examples/tutorials/modelview/6_treeview/6_treeview.pro share/examples/qt4/examples/tutorials/modelview/6_treeview/main.cpp share/examples/qt4/examples/tutorials/modelview/6_treeview/mainwindow.cpp share/examples/qt4/examples/tutorials/modelview/6_treeview/mainwindow.h share/examples/qt4/examples/tutorials/modelview/6_treeview/mv_tree %%DEBUG%%share/examples/qt4/examples/tutorials/modelview/6_treeview/mv_tree.debug share/examples/qt4/examples/tutorials/modelview/7_selections/7_selections.pro share/examples/qt4/examples/tutorials/modelview/7_selections/main.cpp share/examples/qt4/examples/tutorials/modelview/7_selections/mainwindow.cpp share/examples/qt4/examples/tutorials/modelview/7_selections/mainwindow.h share/examples/qt4/examples/tutorials/modelview/7_selections/mv_selections %%DEBUG%%share/examples/qt4/examples/tutorials/modelview/7_selections/mv_selections.debug share/examples/qt4/examples/tutorials/modelview/modelview.pro share/examples/qt4/examples/tutorials/threads/clock/clock +%%DEBUG%%share/examples/qt4/examples/tutorials/threads/clock/clock.debug share/examples/qt4/examples/tutorials/threads/clock/clock.pro share/examples/qt4/examples/tutorials/threads/clock/clockthread.cpp share/examples/qt4/examples/tutorials/threads/clock/clockthread.h share/examples/qt4/examples/tutorials/threads/clock/main.cpp share/examples/qt4/examples/tutorials/threads/helloconcurrent/helloconcurrent share/examples/qt4/examples/tutorials/threads/helloconcurrent/helloconcurrent.cpp +%%DEBUG%%share/examples/qt4/examples/tutorials/threads/helloconcurrent/helloconcurrent.debug share/examples/qt4/examples/tutorials/threads/helloconcurrent/helloconcurrent.pro share/examples/qt4/examples/tutorials/threads/hellothread/hellothread share/examples/qt4/examples/tutorials/threads/hellothread/hellothread.cpp +%%DEBUG%%share/examples/qt4/examples/tutorials/threads/hellothread/hellothread.debug share/examples/qt4/examples/tutorials/threads/hellothread/hellothread.h share/examples/qt4/examples/tutorials/threads/hellothread/hellothread.pro share/examples/qt4/examples/tutorials/threads/hellothread/main.cpp share/examples/qt4/examples/tutorials/threads/hellothreadpool/hellothreadpool share/examples/qt4/examples/tutorials/threads/hellothreadpool/hellothreadpool.cpp +%%DEBUG%%share/examples/qt4/examples/tutorials/threads/hellothreadpool/hellothreadpool.debug share/examples/qt4/examples/tutorials/threads/hellothreadpool/hellothreadpool.pro share/examples/qt4/examples/tutorials/threads/movedobject/main.cpp share/examples/qt4/examples/tutorials/threads/movedobject/movedobject +%%DEBUG%%share/examples/qt4/examples/tutorials/threads/movedobject/movedobject.debug share/examples/qt4/examples/tutorials/threads/movedobject/movedobject.pro share/examples/qt4/examples/tutorials/threads/movedobject/thread.cpp share/examples/qt4/examples/tutorials/threads/movedobject/thread.h share/examples/qt4/examples/tutorials/threads/movedobject/workerobject.cpp share/examples/qt4/examples/tutorials/threads/movedobject/workerobject.h 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/domtraversal/domtraversal %%DEBUG%%share/examples/qt4/examples/webkit/domtraversal/domtraversal.debug share/examples/qt4/examples/webkit/domtraversal/domtraversal.pro share/examples/qt4/examples/webkit/domtraversal/main.cpp share/examples/qt4/examples/webkit/domtraversal/window.cpp share/examples/qt4/examples/webkit/domtraversal/window.h share/examples/qt4/examples/webkit/domtraversal/window.ui +share/examples/qt4/examples/webkit/domtraversal/window_mobiles.ui share/examples/qt4/examples/webkit/fancybrowser/fancybrowser %%DEBUG%%share/examples/qt4/examples/webkit/fancybrowser/fancybrowser.debug share/examples/qt4/examples/webkit/fancybrowser/fancybrowser.pro share/examples/qt4/examples/webkit/fancybrowser/jquery.qrc share/examples/qt4/examples/webkit/fancybrowser/main.cpp share/examples/qt4/examples/webkit/fancybrowser/mainwindow.cpp share/examples/qt4/examples/webkit/fancybrowser/mainwindow.h share/examples/qt4/examples/webkit/formextractor/form.html share/examples/qt4/examples/webkit/formextractor/formextractor share/examples/qt4/examples/webkit/formextractor/formextractor.cpp %%DEBUG%%share/examples/qt4/examples/webkit/formextractor/formextractor.debug share/examples/qt4/examples/webkit/formextractor/formextractor.h share/examples/qt4/examples/webkit/formextractor/formextractor.pro share/examples/qt4/examples/webkit/formextractor/formextractor.qrc share/examples/qt4/examples/webkit/formextractor/formextractor.ui +share/examples/qt4/examples/webkit/formextractor/formextractor_mobiles.ui share/examples/qt4/examples/webkit/formextractor/main.cpp share/examples/qt4/examples/webkit/formextractor/mainwindow.cpp share/examples/qt4/examples/webkit/formextractor/mainwindow.h share/examples/qt4/examples/webkit/framecapture/framecapture share/examples/qt4/examples/webkit/framecapture/framecapture.cpp %%DEBUG%%share/examples/qt4/examples/webkit/framecapture/framecapture.debug share/examples/qt4/examples/webkit/framecapture/framecapture.h share/examples/qt4/examples/webkit/framecapture/main.cpp share/examples/qt4/examples/webkit/googlechat/form.ui share/examples/qt4/examples/webkit/googlechat/googlechat share/examples/qt4/examples/webkit/googlechat/googlechat.cpp %%DEBUG%%share/examples/qt4/examples/webkit/googlechat/googlechat.debug share/examples/qt4/examples/webkit/googlechat/googlechat.h share/examples/qt4/examples/webkit/googlechat/googlechat.pro share/examples/qt4/examples/webkit/googlechat/main.cpp 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/webkit/previewer/previewer_mobiles.ui share/examples/qt4/examples/webkit/simpleselector/main.cpp share/examples/qt4/examples/webkit/simpleselector/simpleselector %%DEBUG%%share/examples/qt4/examples/webkit/simpleselector/simpleselector.debug share/examples/qt4/examples/webkit/simpleselector/simpleselector.pro share/examples/qt4/examples/webkit/simpleselector/window.cpp share/examples/qt4/examples/webkit/simpleselector/window.h share/examples/qt4/examples/webkit/simpleselector/window.ui +share/examples/qt4/examples/webkit/simplewebplugin/csvfactory.cpp +share/examples/qt4/examples/webkit/simplewebplugin/csvfactory.h +share/examples/qt4/examples/webkit/simplewebplugin/csvview.cpp +share/examples/qt4/examples/webkit/simplewebplugin/csvview.h +share/examples/qt4/examples/webkit/simplewebplugin/main.cpp +share/examples/qt4/examples/webkit/simplewebplugin/mainwindow.cpp +share/examples/qt4/examples/webkit/simplewebplugin/mainwindow.h +share/examples/qt4/examples/webkit/simplewebplugin/simplewebplugin +%%DEBUG%%share/examples/qt4/examples/webkit/simplewebplugin/simplewebplugin.debug +share/examples/qt4/examples/webkit/simplewebplugin/simplewebplugin.pro +share/examples/qt4/examples/webkit/simplewebplugin/simplewebplugin.qrc +share/examples/qt4/examples/webkit/webftpclient/downloader.cpp +share/examples/qt4/examples/webkit/webftpclient/downloader.h +share/examples/qt4/examples/webkit/webftpclient/ftpreply.cpp +share/examples/qt4/examples/webkit/webftpclient/ftpreply.h +share/examples/qt4/examples/webkit/webftpclient/ftpview.cpp +share/examples/qt4/examples/webkit/webftpclient/ftpview.h +share/examples/qt4/examples/webkit/webftpclient/main.cpp +share/examples/qt4/examples/webkit/webftpclient/networkaccessmanager.cpp +share/examples/qt4/examples/webkit/webftpclient/networkaccessmanager.h +share/examples/qt4/examples/webkit/webftpclient/webftpclient +%%DEBUG%%share/examples/qt4/examples/webkit/webftpclient/webftpclient.debug +share/examples/qt4/examples/webkit/webftpclient/webftpclient.pro share/examples/qt4/examples/webkit/webkit.pro +share/examples/qt4/examples/webkit/webplugin/csvfactory.cpp +share/examples/qt4/examples/webkit/webplugin/csvfactory.h +share/examples/qt4/examples/webkit/webplugin/csvview.cpp +share/examples/qt4/examples/webkit/webplugin/csvview.h +share/examples/qt4/examples/webkit/webplugin/main.cpp +share/examples/qt4/examples/webkit/webplugin/mainwindow.cpp +share/examples/qt4/examples/webkit/webplugin/mainwindow.h +share/examples/qt4/examples/webkit/webplugin/webplugin +%%DEBUG%%share/examples/qt4/examples/webkit/webplugin/webplugin.debug +share/examples/qt4/examples/webkit/webplugin/webplugin.pro +share/examples/qt4/examples/webkit/webplugin/webplugin.qrc 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/codeeditor/codeeditor share/examples/qt4/examples/widgets/codeeditor/codeeditor.cpp %%DEBUG%%share/examples/qt4/examples/widgets/codeeditor/codeeditor.debug share/examples/qt4/examples/widgets/codeeditor/codeeditor.h share/examples/qt4/examples/widgets/codeeditor/codeeditor.pro share/examples/qt4/examples/widgets/codeeditor/main.cpp 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/qt_extended_16x16.png share/examples/qt4/examples/widgets/icons/images/qt_extended_32x32.png share/examples/qt4/examples/widgets/icons/images/qt_extended_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/animation.mng 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/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/htmlinfo/apache_org.html share/examples/qt4/examples/xml/htmlinfo/htmlinfo %%DEBUG%%share/examples/qt4/examples/xml/htmlinfo/htmlinfo.debug -share/examples/qt4/examples/xml/htmlinfo/htmlinfo.pro -share/examples/qt4/examples/xml/htmlinfo/main.cpp -share/examples/qt4/examples/xml/htmlinfo/nokia_com.html -share/examples/qt4/examples/xml/htmlinfo/simpleexample.html -share/examples/qt4/examples/xml/htmlinfo/trolltech_com.html -share/examples/qt4/examples/xml/htmlinfo/w3c_org.html -share/examples/qt4/examples/xml/htmlinfo/youtube_com.html 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 share/examples/qt4/examples/xmlpatterns/README share/examples/qt4/examples/xmlpatterns/filetree/filetree share/examples/qt4/examples/xmlpatterns/filetree/filetree.cpp %%DEBUG%%share/examples/qt4/examples/xmlpatterns/filetree/filetree.debug share/examples/qt4/examples/xmlpatterns/filetree/filetree.h share/examples/qt4/examples/xmlpatterns/filetree/filetree.pro share/examples/qt4/examples/xmlpatterns/filetree/main.cpp share/examples/qt4/examples/xmlpatterns/filetree/mainwindow.cpp share/examples/qt4/examples/xmlpatterns/filetree/mainwindow.h share/examples/qt4/examples/xmlpatterns/filetree/mainwindow.ui share/examples/qt4/examples/xmlpatterns/filetree/queries.qrc share/examples/qt4/examples/xmlpatterns/filetree/xmlsyntaxhighlighter.cpp share/examples/qt4/examples/xmlpatterns/filetree/xmlsyntaxhighlighter.h share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/main.cpp share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/mainwindow.cpp share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/mainwindow.h share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/mainwindow.ui share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.cpp %%DEBUG%%share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.debug share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.h share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.pro share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/queries.qrc share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/xmlsyntaxhighlighter.cpp share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel/xmlsyntaxhighlighter.h share/examples/qt4/examples/xmlpatterns/recipes/files/allRecipes.xq share/examples/qt4/examples/xmlpatterns/recipes/files/cookbook.xml share/examples/qt4/examples/xmlpatterns/recipes/files/liquidIngredientsInSoup.xq share/examples/qt4/examples/xmlpatterns/recipes/files/mushroomSoup.xq share/examples/qt4/examples/xmlpatterns/recipes/files/preparationLessThan30.xq share/examples/qt4/examples/xmlpatterns/recipes/files/preparationTimes.xq share/examples/qt4/examples/xmlpatterns/recipes/forms/querywidget.ui +share/examples/qt4/examples/xmlpatterns/recipes/forms/querywidget_mobiles.ui share/examples/qt4/examples/xmlpatterns/recipes/main.cpp share/examples/qt4/examples/xmlpatterns/recipes/querymainwindow.cpp share/examples/qt4/examples/xmlpatterns/recipes/querymainwindow.h share/examples/qt4/examples/xmlpatterns/recipes/recipes %%DEBUG%%share/examples/qt4/examples/xmlpatterns/recipes/recipes.debug share/examples/qt4/examples/xmlpatterns/recipes/recipes.pro share/examples/qt4/examples/xmlpatterns/recipes/recipes.qrc share/examples/qt4/examples/xmlpatterns/recipes/xmlsyntaxhighlighter.cpp share/examples/qt4/examples/xmlpatterns/recipes/xmlsyntaxhighlighter.h share/examples/qt4/examples/xmlpatterns/schema/files/contact.xsd share/examples/qt4/examples/xmlpatterns/schema/files/invalid_contact.xml share/examples/qt4/examples/xmlpatterns/schema/files/invalid_order.xml share/examples/qt4/examples/xmlpatterns/schema/files/invalid_recipe.xml share/examples/qt4/examples/xmlpatterns/schema/files/order.xsd share/examples/qt4/examples/xmlpatterns/schema/files/recipe.xsd share/examples/qt4/examples/xmlpatterns/schema/files/valid_contact.xml share/examples/qt4/examples/xmlpatterns/schema/files/valid_order.xml share/examples/qt4/examples/xmlpatterns/schema/files/valid_recipe.xml share/examples/qt4/examples/xmlpatterns/schema/main.cpp share/examples/qt4/examples/xmlpatterns/schema/mainwindow.cpp share/examples/qt4/examples/xmlpatterns/schema/mainwindow.h share/examples/qt4/examples/xmlpatterns/schema/schema %%DEBUG%%share/examples/qt4/examples/xmlpatterns/schema/schema.debug share/examples/qt4/examples/xmlpatterns/schema/schema.pro share/examples/qt4/examples/xmlpatterns/schema/schema.qrc share/examples/qt4/examples/xmlpatterns/schema/xmlsyntaxhighlighter.cpp share/examples/qt4/examples/xmlpatterns/schema/xmlsyntaxhighlighter.h share/examples/qt4/examples/xmlpatterns/trafficinfo/main.cpp share/examples/qt4/examples/xmlpatterns/trafficinfo/mainwindow.cpp share/examples/qt4/examples/xmlpatterns/trafficinfo/mainwindow.h share/examples/qt4/examples/xmlpatterns/trafficinfo/stationdialog.cpp share/examples/qt4/examples/xmlpatterns/trafficinfo/stationdialog.h share/examples/qt4/examples/xmlpatterns/trafficinfo/stationquery.cpp share/examples/qt4/examples/xmlpatterns/trafficinfo/stationquery.h share/examples/qt4/examples/xmlpatterns/trafficinfo/timequery.cpp share/examples/qt4/examples/xmlpatterns/trafficinfo/timequery.h share/examples/qt4/examples/xmlpatterns/trafficinfo/trafficinfo %%DEBUG%%share/examples/qt4/examples/xmlpatterns/trafficinfo/trafficinfo.debug share/examples/qt4/examples/xmlpatterns/trafficinfo/trafficinfo.pro share/examples/qt4/examples/xmlpatterns/xmlpatterns.pro share/examples/qt4/examples/xmlpatterns/xquery/globalVariables/globalVariables.pro share/examples/qt4/examples/xmlpatterns/xquery/globalVariables/globals.cpp share/examples/qt4/examples/xmlpatterns/xquery/globalVariables/globals.gccxml share/examples/qt4/examples/xmlpatterns/xquery/globalVariables/globals.html share/examples/qt4/examples/xmlpatterns/xquery/globalVariables/reportGlobals.xq share/examples/qt4/examples/xmlpatterns/xquery/xquery.pro @dirrm share/examples/qt4/examples/xmlpatterns/xquery/globalVariables @dirrm share/examples/qt4/examples/xmlpatterns/xquery @dirrm share/examples/qt4/examples/xmlpatterns/trafficinfo @dirrm share/examples/qt4/examples/xmlpatterns/schema/files @dirrm share/examples/qt4/examples/xmlpatterns/schema @dirrm share/examples/qt4/examples/xmlpatterns/recipes/forms @dirrm share/examples/qt4/examples/xmlpatterns/recipes/files @dirrm share/examples/qt4/examples/xmlpatterns/recipes @dirrm share/examples/qt4/examples/xmlpatterns/qobjectxmlmodel @dirrm share/examples/qt4/examples/xmlpatterns/filetree @dirrm share/examples/qt4/examples/xmlpatterns @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/htmlinfo @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 @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/codeeditor @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/webplugin +@dirrm share/examples/qt4/examples/webkit/webftpclient +@dirrm share/examples/qt4/examples/webkit/simplewebplugin @dirrm share/examples/qt4/examples/webkit/simpleselector @dirrm share/examples/qt4/examples/webkit/previewer @dirrm share/examples/qt4/examples/webkit/googlechat @dirrm share/examples/qt4/examples/webkit/framecapture @dirrm share/examples/qt4/examples/webkit/formextractor @dirrm share/examples/qt4/examples/webkit/fancybrowser @dirrm share/examples/qt4/examples/webkit/domtraversal @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/threads/movedobject @dirrm share/examples/qt4/examples/tutorials/threads/hellothreadpool @dirrm share/examples/qt4/examples/tutorials/threads/hellothread @dirrm share/examples/qt4/examples/tutorials/threads/helloconcurrent @dirrm share/examples/qt4/examples/tutorials/threads/clock @dirrm share/examples/qt4/examples/tutorials/threads @dirrm share/examples/qt4/examples/tutorials/modelview/7_selections @dirrm share/examples/qt4/examples/tutorials/modelview/6_treeview @dirrm share/examples/qt4/examples/tutorials/modelview/5_edit @dirrm share/examples/qt4/examples/tutorials/modelview/4_headers @dirrm share/examples/qt4/examples/tutorials/modelview/3_changingmodel @dirrm share/examples/qt4/examples/tutorials/modelview/2_formatting @dirrm share/examples/qt4/examples/tutorials/modelview/1_readonly @dirrm share/examples/qt4/examples/tutorials/modelview @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/touch/pinchzoom/images @dirrm share/examples/qt4/examples/touch/pinchzoom @dirrm share/examples/qt4/examples/touch/knobs @dirrm share/examples/qt4/examples/touch/fingerpaint @dirrm share/examples/qt4/examples/touch/dials @dirrm share/examples/qt4/examples/touch @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/inputpanel @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/contiguouscache @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/statemachine/twowaybutton @dirrm share/examples/qt4/examples/statemachine/trafficlight @dirrm share/examples/qt4/examples/statemachine/rogue @dirrm share/examples/qt4/examples/statemachine/pingpong @dirrm share/examples/qt4/examples/statemachine/factorial @dirrm share/examples/qt4/examples/statemachine/eventtransitions @dirrm share/examples/qt4/examples/statemachine @dirrm share/examples/qt4/examples/sql/tablemodel @dirrm share/examples/qt4/examples/sql/sqlwidgetmapper @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/qstetrix @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/textobject @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/tutorial5 @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/qmusicplayer @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/svggenerator @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 @dirrm share/examples/qt4/examples/network/threadedfortuneserver @dirrm share/examples/qt4/examples/network/securesocketclient @dirrm share/examples/qt4/examples/network/qftp/images @dirrm share/examples/qt4/examples/network/qftp @dirrm share/examples/qt4/examples/network/network-chat +@dirrm share/examples/qt4/examples/network/multicastsender +@dirrm share/examples/qt4/examples/network/multicastreceiver @dirrm share/examples/qt4/examples/network/loopback @dirrm share/examples/qt4/examples/network/http @dirrm share/examples/qt4/examples/network/googlesuggest @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/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/multimedia/videowidget @dirrm share/examples/qt4/examples/multimedia/videographicsitem @dirrm share/examples/qt4/examples/multimedia/audiooutput @dirrm share/examples/qt4/examples/multimedia/audioinput @dirrm share/examples/qt4/examples/multimedia/audiodevices @dirrm share/examples/qt4/examples/multimedia @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/frozencolumn @dirrm share/examples/qt4/examples/itemviews/fetchmore @dirrm share/examples/qt4/examples/itemviews/editabletreemodel @dirrm share/examples/qt4/examples/itemviews/dirview @dirrm share/examples/qt4/examples/itemviews/delayedencoding @dirrm share/examples/qt4/examples/itemviews/customsortfiltermodel @dirrm share/examples/qt4/examples/itemviews/combowidgetmapper -@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/helper/qmlapplicationviewer +@dirrm share/examples/qt4/examples/helper @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/weatheranchorlayout/images @dirrm share/examples/qt4/examples/graphicsview/weatheranchorlayout @dirrm share/examples/qt4/examples/graphicsview/simpleanchorlayout @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/basicgraphicslayouts @dirrm share/examples/qt4/examples/graphicsview/anchorlayout @dirrm share/examples/qt4/examples/graphicsview @dirrm share/examples/qt4/examples/gestures/imagegestures @dirrm share/examples/qt4/examples/gestures @dirrm share/examples/qt4/examples/effects/lighting @dirrm share/examples/qt4/examples/effects/fademessage @dirrm share/examples/qt4/examples/effects/blurpicker @dirrm share/examples/qt4/examples/effects @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/delayedencoding @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/declarative/xml/xmlhttprequest-example/qml/xmlhttprequest-example +@dirrm share/examples/qt4/examples/declarative/xml/xmlhttprequest-example/qml +@dirrm share/examples/qt4/examples/declarative/xml/xmlhttprequest-example @dirrm share/examples/qt4/examples/declarative/xml/xmlhttprequest @dirrm share/examples/qt4/examples/declarative/xml +@dirrm share/examples/qt4/examples/declarative/ui-components/tabwidget/qml/tabwidget +@dirrm share/examples/qt4/examples/declarative/ui-components/tabwidget/qml @dirrm share/examples/qt4/examples/declarative/ui-components/tabwidget -@dirrm share/examples/qt4/examples/declarative/ui-components/spinner/content +@dirrm share/examples/qt4/examples/declarative/ui-components/spinner/qml/spinner +@dirrm share/examples/qt4/examples/declarative/ui-components/spinner/qml @dirrm share/examples/qt4/examples/declarative/ui-components/spinner -@dirrm share/examples/qt4/examples/declarative/ui-components/slideswitch/content +@dirrm share/examples/qt4/examples/declarative/ui-components/slideswitch/qml/slideswitch/content +@dirrm share/examples/qt4/examples/declarative/ui-components/slideswitch/qml/slideswitch +@dirrm share/examples/qt4/examples/declarative/ui-components/slideswitch/qml @dirrm share/examples/qt4/examples/declarative/ui-components/slideswitch -@dirrm share/examples/qt4/examples/declarative/ui-components/searchbox/images +@dirrm share/examples/qt4/examples/declarative/ui-components/searchbox/qml/searchbox/images +@dirrm share/examples/qt4/examples/declarative/ui-components/searchbox/qml/searchbox +@dirrm share/examples/qt4/examples/declarative/ui-components/searchbox/qml @dirrm share/examples/qt4/examples/declarative/ui-components/searchbox -@dirrm share/examples/qt4/examples/declarative/ui-components/scrollbar/pics +@dirrm share/examples/qt4/examples/declarative/ui-components/scrollbar/qml/scrollbar +@dirrm share/examples/qt4/examples/declarative/ui-components/scrollbar/qml @dirrm share/examples/qt4/examples/declarative/ui-components/scrollbar -@dirrm share/examples/qt4/examples/declarative/ui-components/progressbar/content +@dirrm share/examples/qt4/examples/declarative/ui-components/progressbar/qml/progressbar/content +@dirrm share/examples/qt4/examples/declarative/ui-components/progressbar/qml/progressbar +@dirrm share/examples/qt4/examples/declarative/ui-components/progressbar/qml @dirrm share/examples/qt4/examples/declarative/ui-components/progressbar -@dirrm share/examples/qt4/examples/declarative/ui-components/flipable/content +@dirrm share/examples/qt4/examples/declarative/ui-components/main/qml/main/pics +@dirrm share/examples/qt4/examples/declarative/ui-components/main/qml/main/images +@dirrm share/examples/qt4/examples/declarative/ui-components/main/qml/main/content +@dirrm share/examples/qt4/examples/declarative/ui-components/main/qml/main +@dirrm share/examples/qt4/examples/declarative/ui-components/main/qml +@dirrm share/examples/qt4/examples/declarative/ui-components/main +@dirrm share/examples/qt4/examples/declarative/ui-components/flipable/qml/flipable/content +@dirrm share/examples/qt4/examples/declarative/ui-components/flipable/qml/flipable +@dirrm share/examples/qt4/examples/declarative/ui-components/flipable/qml @dirrm share/examples/qt4/examples/declarative/ui-components/flipable -@dirrm share/examples/qt4/examples/declarative/ui-components/dialcontrol/content +@dirrm share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol/content +@dirrm share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml/dialcontrol +@dirrm share/examples/qt4/examples/declarative/ui-components/dialcontrol/qml @dirrm share/examples/qt4/examples/declarative/ui-components/dialcontrol @dirrm share/examples/qt4/examples/declarative/ui-components +@dirrm share/examples/qt4/examples/declarative/toys/tvtennis/qml/tvtennis +@dirrm share/examples/qt4/examples/declarative/toys/tvtennis/qml @dirrm share/examples/qt4/examples/declarative/toys/tvtennis -@dirrm share/examples/qt4/examples/declarative/toys/tic-tac-toe/content/pics -@dirrm share/examples/qt4/examples/declarative/toys/tic-tac-toe/content +@dirrm share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/pics +@dirrm share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content +@dirrm share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe +@dirrm share/examples/qt4/examples/declarative/toys/tic-tac-toe/qml @dirrm share/examples/qt4/examples/declarative/toys/tic-tac-toe +@dirrm share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene/images +@dirrm share/examples/qt4/examples/declarative/toys/dynamicscene/qml/dynamicscene @dirrm share/examples/qt4/examples/declarative/toys/dynamicscene/qml -@dirrm share/examples/qt4/examples/declarative/toys/dynamicscene/images @dirrm share/examples/qt4/examples/declarative/toys/dynamicscene +@dirrm share/examples/qt4/examples/declarative/toys/corkboards/qml/corkboards +@dirrm share/examples/qt4/examples/declarative/toys/corkboards/qml @dirrm share/examples/qt4/examples/declarative/toys/corkboards -@dirrm share/examples/qt4/examples/declarative/toys/clocks/content +@dirrm share/examples/qt4/examples/declarative/toys/clocks/qml/clocks/content +@dirrm share/examples/qt4/examples/declarative/toys/clocks/qml/clocks +@dirrm share/examples/qt4/examples/declarative/toys/clocks/qml @dirrm share/examples/qt4/examples/declarative/toys/clocks @dirrm share/examples/qt4/examples/declarative/toys +@dirrm share/examples/qt4/examples/declarative/touchinteraction/pincharea/qml/pincharea +@dirrm share/examples/qt4/examples/declarative/touchinteraction/pincharea/qml @dirrm share/examples/qt4/examples/declarative/touchinteraction/pincharea +@dirrm share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/qml/mousearea-example +@dirrm share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example/qml +@dirrm share/examples/qt4/examples/declarative/touchinteraction/mousearea/mousearea-example @dirrm share/examples/qt4/examples/declarative/touchinteraction/mousearea +@dirrm share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/qml/experimental-gestures +@dirrm share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures/qml +@dirrm share/examples/qt4/examples/declarative/touchinteraction/gestures/experimental-gestures @dirrm share/examples/qt4/examples/declarative/touchinteraction/gestures @dirrm share/examples/qt4/examples/declarative/touchinteraction +@dirrm share/examples/qt4/examples/declarative/threading/workerscript/qml/workerscript +@dirrm share/examples/qt4/examples/declarative/threading/workerscript/qml @dirrm share/examples/qt4/examples/declarative/threading/workerscript +@dirrm share/examples/qt4/examples/declarative/threading/threadedlistmodel/qml/threadedlistmodel +@dirrm share/examples/qt4/examples/declarative/threading/threadedlistmodel/qml @dirrm share/examples/qt4/examples/declarative/threading/threadedlistmodel @dirrm share/examples/qt4/examples/declarative/threading -@dirrm share/examples/qt4/examples/declarative/text/textselection/pics +@dirrm share/examples/qt4/examples/declarative/text/textselection/qml/textselection/pics +@dirrm share/examples/qt4/examples/declarative/text/textselection/qml/textselection +@dirrm share/examples/qt4/examples/declarative/text/textselection/qml @dirrm share/examples/qt4/examples/declarative/text/textselection +@dirrm share/examples/qt4/examples/declarative/text/fonts/hello/qml/hello/fonts +@dirrm share/examples/qt4/examples/declarative/text/fonts/hello/qml/hello +@dirrm share/examples/qt4/examples/declarative/text/fonts/hello/qml +@dirrm share/examples/qt4/examples/declarative/text/fonts/hello +@dirrm share/examples/qt4/examples/declarative/text/fonts/fonts/qml/fonts-qml/fonts +@dirrm share/examples/qt4/examples/declarative/text/fonts/fonts/qml/fonts-qml +@dirrm share/examples/qt4/examples/declarative/text/fonts/fonts/qml @dirrm share/examples/qt4/examples/declarative/text/fonts/fonts +@dirrm share/examples/qt4/examples/declarative/text/fonts/banner/qml/banner/fonts +@dirrm share/examples/qt4/examples/declarative/text/fonts/banner/qml/banner +@dirrm share/examples/qt4/examples/declarative/text/fonts/banner/qml +@dirrm share/examples/qt4/examples/declarative/text/fonts/banner +@dirrm share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml/availableFonts/fonts +@dirrm share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml/availableFonts +@dirrm share/examples/qt4/examples/declarative/text/fonts/availableFonts/qml +@dirrm share/examples/qt4/examples/declarative/text/fonts/availableFonts @dirrm share/examples/qt4/examples/declarative/text/fonts @dirrm share/examples/qt4/examples/declarative/text +@dirrm share/examples/qt4/examples/declarative/sqllocalstorage/qml/sqllocalstorage +@dirrm share/examples/qt4/examples/declarative/sqllocalstorage/qml @dirrm share/examples/qt4/examples/declarative/sqllocalstorage -@dirrm share/examples/qt4/examples/declarative/shadereffects/qml/images +@dirrm share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects/images +@dirrm share/examples/qt4/examples/declarative/shadereffects/qml/shadereffects @dirrm share/examples/qt4/examples/declarative/shadereffects/qml @dirrm share/examples/qt4/examples/declarative/shadereffects +@dirrm share/examples/qt4/examples/declarative/positioners/qml/positioners +@dirrm share/examples/qt4/examples/declarative/positioners/qml @dirrm share/examples/qt4/examples/declarative/positioners -@dirrm share/examples/qt4/examples/declarative/plugins/com/nokia/TimeExample -@dirrm share/examples/qt4/examples/declarative/plugins/com/nokia -@dirrm share/examples/qt4/examples/declarative/plugins/com -@dirrm share/examples/qt4/examples/declarative/plugins -@dirrm share/examples/qt4/examples/declarative/objectlistmodel -@dirrm share/examples/qt4/examples/declarative/keyinteraction/focus/Core/images -@dirrm share/examples/qt4/examples/declarative/keyinteraction/focus/Core +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/newwindows/qml/newwindows +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/newwindows/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/newwindows +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/qml/inlinehtml +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/inlinehtml +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/content/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/content/Mapping +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps/content +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml/googlemaps +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/googlemaps/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/googlemaps +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/autosize/qml/autosize +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/autosize/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/autosize +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/alerts/qml/alerts +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/alerts/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/webview/alerts +@dirrm share/examples/qt4/examples/declarative/modelviews/webview +@dirrm share/examples/qt4/examples/declarative/modelviews/visualitemmodel/qml/visualitemmodel +@dirrm share/examples/qt4/examples/declarative/modelviews/visualitemmodel/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/visualitemmodel +@dirrm share/examples/qt4/examples/declarative/modelviews/stringlistmodel/qml/stringlistmodel +@dirrm share/examples/qt4/examples/declarative/modelviews/stringlistmodel/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/stringlistmodel +@dirrm share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/pathview-example/qml/pathview-example +@dirrm share/examples/qt4/examples/declarative/modelviews/pathview-example/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/pathview-example +@dirrm share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/parallax/qml/parallax +@dirrm share/examples/qt4/examples/declarative/modelviews/parallax/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/parallax +@dirrm share/examples/qt4/examples/declarative/modelviews/package/qml/package +@dirrm share/examples/qt4/examples/declarative/modelviews/package/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/package +@dirrm share/examples/qt4/examples/declarative/modelviews/objectlistmodel/qml/objectlistmodel +@dirrm share/examples/qt4/examples/declarative/modelviews/objectlistmodel/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/objectlistmodel +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections/content +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/sections/qml/sections +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/sections/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/sections +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges/content +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml/highlightranges +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlightranges/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlightranges +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight/content +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml/highlight +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlight/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/highlight +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates/content +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml/expandingdelegates +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/expandingdelegates +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic/content +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml/dynamic +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/listview/dynamiclist +@dirrm share/examples/qt4/examples/declarative/modelviews/listview +@dirrm share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example/pics +@dirrm share/examples/qt4/examples/declarative/modelviews/gridview-example/qml/gridview-example +@dirrm share/examples/qt4/examples/declarative/modelviews/gridview-example/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/gridview-example +@dirrm share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/qml/abstractitemmodel +@dirrm share/examples/qt4/examples/declarative/modelviews/abstractitemmodel/qml +@dirrm share/examples/qt4/examples/declarative/modelviews/abstractitemmodel +@dirrm share/examples/qt4/examples/declarative/modelviews +@dirrm share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore/images +@dirrm share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus/FocusCore +@dirrm share/examples/qt4/examples/declarative/keyinteraction/focus/qml/focus +@dirrm share/examples/qt4/examples/declarative/keyinteraction/focus/qml @dirrm share/examples/qt4/examples/declarative/keyinteraction/focus @dirrm share/examples/qt4/examples/declarative/keyinteraction -@dirrm share/examples/qt4/examples/declarative/imageprovider/ImageProviderCore -@dirrm share/examples/qt4/examples/declarative/imageprovider +@dirrm share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows/content +@dirrm share/examples/qt4/examples/declarative/imageelements/shadows/qml/shadows +@dirrm share/examples/qt4/examples/declarative/imageelements/shadows/qml +@dirrm share/examples/qt4/examples/declarative/imageelements/shadows +@dirrm share/examples/qt4/examples/declarative/imageelements/image/qml/image +@dirrm share/examples/qt4/examples/declarative/imageelements/image/qml @dirrm share/examples/qt4/examples/declarative/imageelements/image -@dirrm share/examples/qt4/examples/declarative/imageelements/borderimage/content +@dirrm share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage/content +@dirrm share/examples/qt4/examples/declarative/imageelements/borderimage/qml/borderimage +@dirrm share/examples/qt4/examples/declarative/imageelements/borderimage/qml @dirrm share/examples/qt4/examples/declarative/imageelements/borderimage @dirrm share/examples/qt4/examples/declarative/imageelements -@dirrm share/examples/qt4/examples/declarative/i18n/i18n +@dirrm share/examples/qt4/examples/declarative/i18n/qml/i18n +@dirrm share/examples/qt4/examples/declarative/i18n/qml @dirrm share/examples/qt4/examples/declarative/i18n -@dirrm share/examples/qt4/examples/declarative/extending/valuesource -@dirrm share/examples/qt4/examples/declarative/extending/signal -@dirrm share/examples/qt4/examples/declarative/extending/properties -@dirrm share/examples/qt4/examples/declarative/extending/methods -@dirrm share/examples/qt4/examples/declarative/extending/grouped -@dirrm share/examples/qt4/examples/declarative/extending/extended -@dirrm share/examples/qt4/examples/declarative/extending/default -@dirrm share/examples/qt4/examples/declarative/extending/coercion -@dirrm share/examples/qt4/examples/declarative/extending/binding -@dirrm share/examples/qt4/examples/declarative/extending/attached -@dirrm share/examples/qt4/examples/declarative/extending/adding -@dirrm share/examples/qt4/examples/declarative/extending @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/valuesource @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/signal @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/properties @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/methods @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/grouped @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/extended @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/default @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/coercion @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/binding @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/attached @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples/adding @dirrm share/examples/qt4/examples/declarative/cppextensions/referenceexamples @dirrm share/examples/qt4/examples/declarative/cppextensions/qwidgets/QWidgets @dirrm share/examples/qt4/examples/declarative/cppextensions/qwidgets +@dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qml/qgraphicslinearlayout +@dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout/qml @dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicslinearlayout +@dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qml/qgraphicsgridlayout +@dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout/qml @dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/qgraphicsgridlayout @dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts/layoutitem @dirrm share/examples/qt4/examples/declarative/cppextensions/qgraphicslayouts @dirrm share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia/TimeExample @dirrm share/examples/qt4/examples/declarative/cppextensions/plugins/com/nokia @dirrm share/examples/qt4/examples/declarative/cppextensions/plugins/com @dirrm share/examples/qt4/examples/declarative/cppextensions/plugins +@dirrm share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/qml/networkaccessmanagerfactory +@dirrm share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory/qml @dirrm share/examples/qt4/examples/declarative/cppextensions/networkaccessmanagerfactory @dirrm share/examples/qt4/examples/declarative/cppextensions/imageprovider/ImageProviderCore @dirrm share/examples/qt4/examples/declarative/cppextensions/imageprovider @dirrm share/examples/qt4/examples/declarative/cppextensions +@dirrm share/examples/qt4/examples/declarative/animation/states/qml/states +@dirrm share/examples/qt4/examples/declarative/animation/states/qml @dirrm share/examples/qt4/examples/declarative/animation/states -@dirrm share/examples/qt4/examples/declarative/animation/easing/content +@dirrm share/examples/qt4/examples/declarative/animation/easing/qml/easing/content +@dirrm share/examples/qt4/examples/declarative/animation/easing/qml/easing +@dirrm share/examples/qt4/examples/declarative/animation/easing/qml @dirrm share/examples/qt4/examples/declarative/animation/easing +@dirrm share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/qml/behaviours +@dirrm share/examples/qt4/examples/declarative/animation/behaviors/behavior-example/qml +@dirrm share/examples/qt4/examples/declarative/animation/behaviors/behavior-example @dirrm share/examples/qt4/examples/declarative/animation/behaviors -@dirrm share/examples/qt4/examples/declarative/animation/basics/images +@dirrm share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation/images +@dirrm share/examples/qt4/examples/declarative/animation/basics/property-animation/qml/property-animation +@dirrm share/examples/qt4/examples/declarative/animation/basics/property-animation/qml +@dirrm share/examples/qt4/examples/declarative/animation/basics/property-animation +@dirrm share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation/images +@dirrm share/examples/qt4/examples/declarative/animation/basics/color-animation/qml/color-animation +@dirrm share/examples/qt4/examples/declarative/animation/basics/color-animation/qml +@dirrm share/examples/qt4/examples/declarative/animation/basics/color-animation @dirrm share/examples/qt4/examples/declarative/animation/basics @dirrm share/examples/qt4/examples/declarative/animation @dirrm share/examples/qt4/examples/declarative @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/animation/stickman @dirrm share/examples/qt4/examples/animation/states @dirrm share/examples/qt4/examples/animation/moveblocks @dirrm share/examples/qt4/examples/animation/easing/images @dirrm share/examples/qt4/examples/animation/easing @dirrm share/examples/qt4/examples/animation/appchooser @dirrm share/examples/qt4/examples/animation/animatedtiles/images @dirrm share/examples/qt4/examples/animation/animatedtiles @dirrm share/examples/qt4/examples/animation @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/sub-attaq/pics/welcome @dirrm share/examples/qt4/demos/sub-attaq/pics/small @dirrm share/examples/qt4/demos/sub-attaq/pics/scalable @dirrm share/examples/qt4/demos/sub-attaq/pics/big/explosion/submarine @dirrm share/examples/qt4/demos/sub-attaq/pics/big/explosion/boat @dirrm share/examples/qt4/demos/sub-attaq/pics/big/explosion @dirrm share/examples/qt4/demos/sub-attaq/pics/big @dirrm share/examples/qt4/demos/sub-attaq/pics @dirrm share/examples/qt4/demos/sub-attaq @dirrm share/examples/qt4/demos/sqlbrowser @dirrm share/examples/qt4/demos/spreadsheet/images @dirrm share/examples/qt4/demos/spreadsheet @dirrm share/examples/qt4/demos/spectrum/app/images @dirrm share/examples/qt4/demos/spectrum/app @dirrm share/examples/qt4/demos/spectrum/3rdparty/fftreal @dirrm share/examples/qt4/demos/spectrum/3rdparty @dirrm share/examples/qt4/demos/spectrum @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/qmediaplayer/images @dirrm share/examples/qt4/demos/qmediaplayer @dirrm share/examples/qt4/demos/pathstroke @dirrm share/examples/qt4/demos/mainwindow @dirrm share/examples/qt4/demos/interview/images @dirrm share/examples/qt4/demos/interview +@dirrm share/examples/qt4/demos/helper/qmlapplicationviewer +@dirrm share/examples/qt4/demos/helper @dirrm share/examples/qt4/demos/gradients +@dirrm share/examples/qt4/demos/glhypnotizer @dirrm share/examples/qt4/demos/embeddeddialogs @dirrm share/examples/qt4/demos/deform -@dirrm share/examples/qt4/demos/declarative/webbrowser/content/pics -@dirrm share/examples/qt4/demos/declarative/webbrowser/content +@dirrm share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content/pics +@dirrm share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser/content +@dirrm share/examples/qt4/demos/declarative/webbrowser/qml/webbrowser +@dirrm share/examples/qt4/demos/declarative/webbrowser/qml @dirrm share/examples/qt4/demos/declarative/webbrowser -@dirrm share/examples/qt4/demos/declarative/twitter/TwitterCore/images -@dirrm share/examples/qt4/demos/declarative/twitter/TwitterCore +@dirrm share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore/images +@dirrm share/examples/qt4/demos/declarative/twitter/qml/twitter/TwitterCore +@dirrm share/examples/qt4/demos/declarative/twitter/qml/twitter +@dirrm share/examples/qt4/demos/declarative/twitter/qml @dirrm share/examples/qt4/demos/declarative/twitter -@dirrm share/examples/qt4/demos/declarative/snake/content/pics -@dirrm share/examples/qt4/demos/declarative/snake/content +@dirrm share/examples/qt4/demos/declarative/snake/qml/snake/content/pics +@dirrm share/examples/qt4/demos/declarative/snake/qml/snake/content +@dirrm share/examples/qt4/demos/declarative/snake/qml/snake +@dirrm share/examples/qt4/demos/declarative/snake/qml @dirrm share/examples/qt4/demos/declarative/snake -@dirrm share/examples/qt4/demos/declarative/samegame/highscores -@dirrm share/examples/qt4/demos/declarative/samegame/SamegameCore/pics -@dirrm share/examples/qt4/demos/declarative/samegame/SamegameCore +@dirrm share/examples/qt4/demos/declarative/samegame/qml/samegame/highscores +@dirrm share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore/pics +@dirrm share/examples/qt4/demos/declarative/samegame/qml/samegame/SamegameCore +@dirrm share/examples/qt4/demos/declarative/samegame/qml/samegame +@dirrm share/examples/qt4/demos/declarative/samegame/qml @dirrm share/examples/qt4/demos/declarative/samegame -@dirrm share/examples/qt4/demos/declarative/rssnews/content/images -@dirrm share/examples/qt4/demos/declarative/rssnews/content +@dirrm share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content/images +@dirrm share/examples/qt4/demos/declarative/rssnews/qml/rssnews/content +@dirrm share/examples/qt4/demos/declarative/rssnews/qml/rssnews +@dirrm share/examples/qt4/demos/declarative/rssnews/qml @dirrm share/examples/qt4/demos/declarative/rssnews -@dirrm share/examples/qt4/demos/declarative/photoviewer/i18n -@dirrm share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/script -@dirrm share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore/images -@dirrm share/examples/qt4/demos/declarative/photoviewer/PhotoViewerCore +@dirrm share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/i18n +@dirrm share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/script +@dirrm share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore/images +@dirrm share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer/PhotoViewerCore +@dirrm share/examples/qt4/demos/declarative/photoviewer/qml/photoviewer +@dirrm share/examples/qt4/demos/declarative/photoviewer/qml @dirrm share/examples/qt4/demos/declarative/photoviewer -@dirrm share/examples/qt4/demos/declarative/minehunt/MinehuntCore/pics -@dirrm share/examples/qt4/demos/declarative/minehunt/MinehuntCore +@dirrm share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore/pics +@dirrm share/examples/qt4/demos/declarative/minehunt/qml/minehunt/MinehuntCore +@dirrm share/examples/qt4/demos/declarative/minehunt/qml/minehunt +@dirrm share/examples/qt4/demos/declarative/minehunt/qml @dirrm share/examples/qt4/demos/declarative/minehunt -@dirrm share/examples/qt4/demos/declarative/flickr/mobile/images -@dirrm share/examples/qt4/demos/declarative/flickr/mobile -@dirrm share/examples/qt4/demos/declarative/flickr/common +@dirrm share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile/images +@dirrm share/examples/qt4/demos/declarative/flickr/qml/flickr/mobile +@dirrm share/examples/qt4/demos/declarative/flickr/qml/flickr/common +@dirrm share/examples/qt4/demos/declarative/flickr/qml/flickr +@dirrm share/examples/qt4/demos/declarative/flickr/qml @dirrm share/examples/qt4/demos/declarative/flickr -@dirrm share/examples/qt4/demos/declarative/calculator/Core/images -@dirrm share/examples/qt4/demos/declarative/calculator/Core +@dirrm share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore/images +@dirrm share/examples/qt4/demos/declarative/calculator/qml/calculator/CalculatorCore +@dirrm share/examples/qt4/demos/declarative/calculator/qml/calculator +@dirrm share/examples/qt4/demos/declarative/calculator/qml @dirrm share/examples/qt4/demos/declarative/calculator @dirrm share/examples/qt4/demos/declarative @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/data @dirrm share/examples/qt4/demos/browser @dirrm share/examples/qt4/demos/boxes/3rdparty @dirrm share/examples/qt4/demos/boxes @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 @dirrmtry %%QT_PLUGINDIR_REL%%/designer @dirrmtry %%QT_PLUGINDIR_REL%% Property changes on: head/misc/qt4-qtdemo/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/multimedia/qt4-phonon/Makefile =================================================================== --- head/multimedia/qt4-phonon/Makefile (revision 297366) +++ head/multimedia/qt4-phonon/Makefile (revision 297367) @@ -1,73 +1,72 @@ # New ports collection makefile for: qt4-phonon # Date created: Mon May 12 15:33:12 CEST 2008 # Whom: danny@ricin.com # # $FreeBSD$ # PORTNAME= phonon DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES?= multimedia PKGNAMEPREFIX= qt4- 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:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ src/activeqt src/multimedia src/network src/opengl src/openvg \ src/qt3support src/s60installs src/s60main src/script \ src/scripttools src/sql src/svg src/testlib src/tools \ src/winmain src/xmlpatterns src/3rdparty/clucene \ src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \ src/3rdparty/libpng src/3rdparty/libtiff src/3rdparty/webkit EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure .if defined(PACKAGE_BUILDING) WITH_QT_PHONON= yes .endif .if !defined(WITH_QT_PHONON) IGNORE= conflicts with multimedia/phonon. Define WITH_QT_PHONON to install Qt 4 phonon .endif pre-configure: ${MKDIR} ${WRKSRC}/mkspecs ${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/bin/qmake ${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/bin/moc pre-install: ${REINPLACE_CMD} \ -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ ${BUILD_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: ${LN} -sf ${PREFIX}/include/qt4/phonon ${PREFIX}/include/qt4/Phonon .include Property changes on: head/multimedia/qt4-phonon/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/net/qt4-network/pkg-plist =================================================================== --- head/net/qt4-network/pkg-plist (revision 297366) +++ head/net/qt4-network/pkg-plist (revision 297367) @@ -1,116 +1,120 @@ include/qt4/Qt/QtNetwork include/qt4/Qt/qabstractnetworkcache.h 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/qhttpmultipart.h include/qt4/Qt/qlocalserver.h include/qt4/Qt/qlocalsocket.h include/qt4/Qt/qnetworkaccessmanager.h include/qt4/Qt/qnetworkconfigmanager.h include/qt4/Qt/qnetworkconfiguration.h include/qt4/Qt/qnetworkcookie.h include/qt4/Qt/qnetworkcookiejar.h include/qt4/Qt/qnetworkdiskcache.h include/qt4/Qt/qnetworkinterface.h include/qt4/Qt/qnetworkproxy.h include/qt4/Qt/qnetworkreply.h include/qt4/Qt/qnetworkrequest.h include/qt4/Qt/qnetworksession.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/QAbstractNetworkCache 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/QHttpMultiPart +include/qt4/QtNetwork/QHttpPart 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/QNetworkCacheMetaData include/qt4/QtNetwork/QNetworkConfiguration include/qt4/QtNetwork/QNetworkConfigurationManager include/qt4/QtNetwork/QNetworkCookie include/qt4/QtNetwork/QNetworkCookieJar include/qt4/QtNetwork/QNetworkDiskCache include/qt4/QtNetwork/QNetworkInterface include/qt4/QtNetwork/QNetworkProxy include/qt4/QtNetwork/QNetworkProxyFactory include/qt4/QtNetwork/QNetworkProxyQuery include/qt4/QtNetwork/QNetworkReply include/qt4/QtNetwork/QNetworkRequest include/qt4/QtNetwork/QNetworkSession 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/qabstractnetworkcache.h 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/qhttpmultipart.h include/qt4/QtNetwork/qlocalserver.h include/qt4/QtNetwork/qlocalsocket.h include/qt4/QtNetwork/qnetworkaccessmanager.h include/qt4/QtNetwork/qnetworkconfigmanager.h include/qt4/QtNetwork/qnetworkconfiguration.h include/qt4/QtNetwork/qnetworkcookie.h include/qt4/QtNetwork/qnetworkcookiejar.h include/qt4/QtNetwork/qnetworkdiskcache.h include/qt4/QtNetwork/qnetworkinterface.h include/qt4/QtNetwork/qnetworkproxy.h include/qt4/QtNetwork/qnetworkreply.h include/qt4/QtNetwork/qnetworkrequest.h include/qt4/QtNetwork/qnetworksession.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 lib/qt4/libQtNetwork.so.4 lib/qt4/libQtNetwork.so.%%SHLIB_SHVER%% lib/qt4/libQtNetwork.so.%%SHLIB_VER%% %%DEBUG%%lib/qt4/libQtNetwork.so.%%SHLIB_VER%%.debug libdata/pkgconfig/QtNetwork.pc @dirrmtry lib/qt4 @dirrm include/qt4/QtNetwork @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/net/qt4-network/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/www/qt4-webkit/Makefile =================================================================== --- head/www/qt4-webkit/Makefile (revision 297366) +++ head/www/qt4-webkit/Makefile (revision 297367) @@ -1,73 +1,81 @@ # New ports collection makefile for: qt4-webkit # Date created: Mon May 12 17:18:19 CEST 2008 # Whom: danny@ricin.com # # $FreeBSD$ # PORTNAME= webkit DISTVERSION= ${QT4_VERSION} CATEGORIES?= www PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt4 WebKit engine +USE_GNOME= glib20 +USE_GSTREAMER= yes USE_QT_VER= 4 -QT_COMPONENTS= corelib declarative gui network phonon \ +QT_COMPONENTS= corelib declarative gui network \ qmake_build moc_build rcc_build QT_NONSTANDARD= yes QT_DIST= yes USE_XORG= xrender MAKE_JOBS_SAFE= 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:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH MAKEOBJDIR=. DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ src/activeqt src/dbus src/opengl src/openvg src/qt3support \ src/s60installs src/s60main src/scripttools src/sql src/svg \ src/testlib src/tools src/winmain src/3rdparty/clucene \ src/3rdparty/freetype src/3rdparty/libjpeg src/3rdparty/libmng \ src/3rdparty/libpng src/3rdparty/libtiff EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor -BUILD_WRKSRC= ${WRKSRC}/src/3rdparty/${PORTNAME} +BUILD_WRKSRC= ${WRKSRC}/src/3rdparty/${PORTNAME}/Source INSTALL_WRKSRC= ${BUILD_WRKSRC} CONFIGURE_ARGS+= -I../../../../include/Qt -I../../../../include EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure 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/rcc ${WRKSRC}/bin/rcc + # Avoid building and installing several tests. Should this be + # made an option? ${REINPLACE_CMD} -e '/WebKit\/qt\/tests/ d' \ ${BUILD_WRKSRC}/WebKit.pro post-configure: ${REINPLACE_CMD} \ -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' \ -e '/^CFLAGS/ s|-I${LOCALBASE}/include ||g' \ -e '/^CXXFLAGS/ s|-I${LOCALBASE}/include ||g' \ - ${BUILD_WRKSRC}/WebCore/Makefile + ${BUILD_WRKSRC}/Makefile \ + ${BUILD_WRKSRC}/WebCore/Makefile \ + ${BUILD_WRKSRC}/WebKit/qt/Makefile + ${CP} ${BUILD_WRKSRC}/WebKit/qt/Makefile \ + ${BUILD_WRKSRC}/WebKit/qt/Makefile.QtWebKit ${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 -# QtWebKit is statically linked with jscore, remove the latest. - ${REINPLACE_CMD} -e 's|-L../JavaScriptCore/release||;s|-ljscore||' \ + # QtWebKit is statically linked with jscore, remove the latest. + ${REINPLACE_CMD} -e 's|-L../JavaScriptCore/release||; s|-ljscore||' \ ${WRKSRC}/lib/pkgconfig/QtWebKit.pc \ ${WRKSRC}/lib/libQtWebKit.la .include Property changes on: head/www/qt4-webkit/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-jit-JITStubs.cpp =================================================================== --- head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-jit-JITStubs.cpp (revision 297366) +++ head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-jit-JITStubs.cpp (nonexistent) @@ -1,11 +0,0 @@ ---- src/3rdparty/webkit/JavaScriptCore/jit/JITStubs.cpp.orig 2010-11-06 02:55:20.000000000 +0100 -+++ src/3rdparty/webkit/JavaScriptCore/jit/JITStubs.cpp 2011-01-17 14:32:18.000000000 +0100 -@@ -77,7 +77,7 @@ - #define THUMB_FUNC_PARAM(name) - #endif - --#if OS(LINUX) && CPU(X86_64) -+#if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64) - #define SYMBOL_STRING_RELOCATION(name) #name "@plt" - #else - #define SYMBOL_STRING_RELOCATION(name) SYMBOL_STRING(name) Property changes on: head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-jit-JITStubs.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-runtime_JSValue.h =================================================================== --- head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-runtime_JSValue.h (revision 297366) +++ head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-runtime_JSValue.h (nonexistent) @@ -1,26 +0,0 @@ ---- src/3rdparty/webkit/JavaScriptCore/runtime/JSValue.h.orig 2010-05-22 11:09:21.423802590 +0200 -+++ src/3rdparty/webkit/JavaScriptCore/runtime/JSValue.h 2010-05-22 11:31:33.896924042 +0200 -@@ -491,7 +491,11 @@ - u.asBits.tag = CellTag; - else - u.asBits.tag = EmptyValueTag; -+#if defined(__sparc64__) -+ u.asBits.payload = reinterpret_cast(ptr); -+#else - u.asBits.payload = reinterpret_cast(ptr); -+#endif - #if ENABLE(JSC_ZOMBIES) - ASSERT(!isZombie()); - #endif -@@ -503,7 +507,11 @@ - u.asBits.tag = CellTag; - else - u.asBits.tag = EmptyValueTag; -+#if defined(__sparc64__) -+ u.asBits.payload = reinterpret_cast(const_cast(ptr)); -+#else - u.asBits.payload = reinterpret_cast(const_cast(ptr)); -+#endif - #if ENABLE(JSC_ZOMBIES) - ASSERT(!isZombie()); - #endif Property changes on: head/www/qt4-webkit/files/patch-src-3rdparty-webkit-JavaScriptCore-runtime_JSValue.h ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__WebCore.pro =================================================================== --- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__WebCore.pro (revision 297366) +++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__WebCore.pro (nonexistent) @@ -1,11 +0,0 @@ ---- ./src/3rdparty/webkit/WebCore/WebCore.pro.orig 2010-11-06 04:55:21.000000000 +0300 -+++ ./src/3rdparty/webkit/WebCore/WebCore.pro 2010-11-11 12:50:15.632322975 +0300 -@@ -82,7 +82,7 @@ - symbian: TARGET =$$TARGET$${QT_LIBINFIX} - } - moduleFile=$$PWD/../WebKit/qt/qt_webkit_version.pri --isEmpty(QT_BUILD_TREE):include($$moduleFile) -+include($$moduleFile) - VERSION = $${QT_WEBKIT_MAJOR_VERSION}.$${QT_WEBKIT_MINOR_VERSION}.$${QT_WEBKIT_PATCH_VERSION} - - unix { Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__WebCore.pro ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__bindings__js__JSDOMBinding.h =================================================================== --- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__bindings__js__JSDOMBinding.h (revision 297366) +++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__bindings__js__JSDOMBinding.h (nonexistent) @@ -1,11 +0,0 @@ ---- ./src/3rdparty/webkit/WebCore/bindings/js/JSDOMBinding.h.orig 2011-06-30 11:23:39.846687664 +0200 -+++ ./src/3rdparty/webkit/WebCore/bindings/js/JSDOMBinding.h 2011-06-30 11:24:11.486683861 +0200 -@@ -225,7 +225,7 @@ - { - if (!node) - return JSC::jsNull(); -- if (JSNode* wrapper = getCachedDOMNodeWrapper(exec, node->document(), node)) -+ if (JSC::JSCell* wrapper = getCachedDOMNodeWrapper(exec, node->document(), node)) - return wrapper; - return createDOMNodeWrapper(exec, globalObject, node); - } Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__WebCore__bindings__js__JSDOMBinding.h ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src-3rdparty-javascriptcore-JavaScriptCore-jit-JITStubs.cpp =================================================================== --- head/www/qt4-webkit/files/patch-src-3rdparty-javascriptcore-JavaScriptCore-jit-JITStubs.cpp (revision 297366) +++ head/www/qt4-webkit/files/patch-src-3rdparty-javascriptcore-JavaScriptCore-jit-JITStubs.cpp (nonexistent) @@ -1,11 +0,0 @@ ---- src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp.orig 2010-11-06 02:55:22.000000000 +0100 -+++ src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp 2011-01-17 14:32:18.000000000 +0100 -@@ -80,7 +80,7 @@ - #define THUMB_FUNC_PARAM(name) - #endif - --#if OS(LINUX) && CPU(X86_64) -+#if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64) - #define SYMBOL_STRING_RELOCATION(name) #name "@plt" - #else - #define SYMBOL_STRING_RELOCATION(name) SYMBOL_STRING(name) Property changes on: head/www/qt4-webkit/files/patch-src-3rdparty-javascriptcore-JavaScriptCore-jit-JITStubs.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__JavaScriptCore__wtf__Platform.h =================================================================== --- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__JavaScriptCore__wtf__Platform.h (revision 297366) +++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__JavaScriptCore__wtf__Platform.h (nonexistent) @@ -1,23 +0,0 @@ ---- ./src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h.orig 2010-09-10 09:05:22.000000000 +0000 -+++ ./src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h 2010-11-04 11:29:10.000000000 +0000 -@@ -937,6 +937,11 @@ - #define ENABLE_JIT 1 - #elif CPU(ARM_TRADITIONAL) && OS(LINUX) - #define ENABLE_JIT 1 -+#elif CPU(X86) && OS(FREEBSD) && GCC_VERSION >= 40100 -+ #define ENABLE_JIT 1 -+ #define WTF_USE_JIT_STUB_ARGUMENT_VA_LIST 1 -+#elif CPU(X86_64) && OS(FREEBSD) && GCC_VERSION >= 40100 -+ #define ENABLE_JIT 1 - #endif - #endif /* PLATFORM(QT) */ - -@@ -1007,6 +1012,8 @@ - || (CPU(X86_64) && OS(LINUX) && GCC_VERSION >= 40100) \ - || (CPU(ARM_TRADITIONAL) && OS(LINUX)) \ - || (CPU(MIPS) && OS(LINUX)) \ -+ || (CPU(X86) && OS(FREEBSD) && GCC_VERSION >= 40100) \ -+ || (CPU(X86_64) && OS(FREEBSD) && GCC_VERSION >= 40100) \ - || (CPU(X86) && OS(DARWIN)) \ - || (CPU(X86_64) && OS(DARWIN)) - #define ENABLE_YARR 1 Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__JavaScriptCore__wtf__Platform.h ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp =================================================================== --- head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp (nonexistent) +++ head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp (revision 297367) @@ -0,0 +1,11 @@ +--- ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp.orig 2011-12-08 06:06:02.000000000 +0100 ++++ ./src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp 2012-01-08 17:18:52.511348683 +0100 +@@ -80,7 +80,7 @@ + #define THUMB_FUNC_PARAM(name) + #endif + +-#if OS(LINUX) && CPU(X86_64) ++#if (OS(LINUX) || OS(FREEBSD)) && CPU(X86_64) + #define SYMBOL_STRING_RELOCATION(name) #name "@plt" + #else + #define SYMBOL_STRING_RELOCATION(name) SYMBOL_STRING(name) Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h =================================================================== --- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h (nonexistent) +++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h (revision 297367) @@ -0,0 +1,26 @@ +--- ./src/3rdparty/webkit/Source/JavaScriptCore/runtime/JSValueInlineMethods.h.orig 2011-12-08 06:06:02.000000000 +0100 ++++ ./src/3rdparty/webkit/Source/JavaScriptCore/runtime/JSValueInlineMethods.h 2012-01-08 17:18:52.511348683 +0100 +@@ -227,7 +227,11 @@ + u.asBits.tag = CellTag; + else + u.asBits.tag = EmptyValueTag; ++#if defined(__sparc64__) ++ u.asBits.payload = reinterpret_cast(ptr); ++#else + u.asBits.payload = reinterpret_cast(ptr); ++#endif + #if ENABLE(JSC_ZOMBIES) + ASSERT(!isZombie()); + #endif +@@ -239,7 +243,11 @@ + u.asBits.tag = CellTag; + else + u.asBits.tag = EmptyValueTag; ++#if defined(__sparc64__) ++ u.asBits.payload = reinterpret_cast(const_cast(ptr)); ++#else + u.asBits.payload = reinterpret_cast(const_cast(ptr)); ++#endif + #if ENABLE(JSC_ZOMBIES) + ASSERT(!isZombie()); + #endif Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro =================================================================== --- head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro (nonexistent) +++ head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro (revision 297367) @@ -0,0 +1,11 @@ +--- ./src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro.orig 2011-12-08 06:06:03.000000000 +0100 ++++ ./src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro 2012-01-08 17:18:52.521346053 +0100 +@@ -84,7 +84,7 @@ + } + + moduleFile=$$PWD/qt_webkit_version.pri +-isEmpty(QT_BUILD_TREE):include($$moduleFile) ++include($$moduleFile) + VERSION = $${QT_WEBKIT_MAJOR_VERSION}.$${QT_WEBKIT_MINOR_VERSION}.$${QT_WEBKIT_PATCH_VERSION} + + symbian { Property changes on: head/www/qt4-webkit/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/www/qt4-webkit/pkg-plist =================================================================== --- head/www/qt4-webkit/pkg-plist (revision 297366) +++ head/www/qt4-webkit/pkg-plist (revision 297367) @@ -1,65 +1,78 @@ include/qt4/Qt/QtWebKit include/qt4/Qt/qgraphicswebview.h include/qt4/Qt/qwebdatabase.h include/qt4/Qt/qwebelement.h include/qt4/Qt/qwebframe.h include/qt4/Qt/qwebhistory.h include/qt4/Qt/qwebhistoryinterface.h include/qt4/Qt/qwebinspector.h include/qt4/Qt/qwebkitglobal.h +include/qt4/Qt/qwebkitplatformplugin.h include/qt4/Qt/qwebkitversion.h include/qt4/Qt/qwebpage.h include/qt4/Qt/qwebpluginfactory.h +include/qt4/Qt/qwebscriptworld.h include/qt4/Qt/qwebsecurityorigin.h include/qt4/Qt/qwebsettings.h include/qt4/Qt/qwebview.h include/qt4/QtWebKit/QGraphicsWebView include/qt4/QtWebKit/QWebDatabase include/qt4/QtWebKit/QWebElement include/qt4/QtWebKit/QWebElementCollection include/qt4/QtWebKit/QWebFrame +include/qt4/QtWebKit/QWebFullScreenVideoHandler +include/qt4/QtWebKit/QWebHapticFeedbackPlayer include/qt4/QtWebKit/QWebHistory include/qt4/QtWebKit/QWebHistoryInterface include/qt4/QtWebKit/QWebHistoryItem include/qt4/QtWebKit/QWebHitTestResult include/qt4/QtWebKit/QWebInspector +include/qt4/QtWebKit/QWebKitPlatformPlugin +include/qt4/QtWebKit/QWebNotificationData +include/qt4/QtWebKit/QWebNotificationPresenter include/qt4/QtWebKit/QWebPage include/qt4/QtWebKit/QWebPluginFactory +include/qt4/QtWebKit/QWebScriptWorld include/qt4/QtWebKit/QWebSecurityOrigin +include/qt4/QtWebKit/QWebSelectData +include/qt4/QtWebKit/QWebSelectMethod include/qt4/QtWebKit/QWebSettings +include/qt4/QtWebKit/QWebTouchModifier include/qt4/QtWebKit/QWebView include/qt4/QtWebKit/QtWebKit include/qt4/QtWebKit/qgraphicswebview.h include/qt4/QtWebKit/qwebdatabase.h include/qt4/QtWebKit/qwebelement.h include/qt4/QtWebKit/qwebframe.h include/qt4/QtWebKit/qwebhistory.h include/qt4/QtWebKit/qwebhistoryinterface.h include/qt4/QtWebKit/qwebinspector.h include/qt4/QtWebKit/qwebkitglobal.h +include/qt4/QtWebKit/qwebkitplatformplugin.h include/qt4/QtWebKit/qwebkitversion.h include/qt4/QtWebKit/qwebpage.h include/qt4/QtWebKit/qwebpluginfactory.h +include/qt4/QtWebKit/qwebscriptworld.h include/qt4/QtWebKit/qwebsecurityorigin.h include/qt4/QtWebKit/qwebsettings.h include/qt4/QtWebKit/qwebview.h lib/qt4/imports/QtWebKit/libqmlwebkitplugin.so %%DEBUG%%lib/qt4/imports/QtWebKit/libqmlwebkitplugin.so.debug lib/qt4/imports/QtWebKit/qmldir lib/qt4/libQtWebKit.la lib/qt4/libQtWebKit.prl lib/qt4/libQtWebKit.so lib/qt4/libQtWebKit.so.4 -lib/qt4/libQtWebKit.so.%%SHLIB_SHVER%% -lib/qt4/libQtWebKit.so.%%SHLIB_VER%% +lib/qt4/libQtWebKit.so.4.9 +lib/qt4/libQtWebKit.so.4.9.0 libdata/pkgconfig/QtWebKit.pc share/qt4/mkspecs/modules/qt_webkit_version.pri @dirrmtry share/qt4/mkspecs/modules @dirrmtry share/qt4/mkspecs @dirrmtry share/qt4 @dirrm lib/qt4/imports/QtWebKit @dirrmtry lib/qt4/imports @dirrmtry lib/qt4 @dirrm include/qt4/QtWebKit @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/www/qt4-webkit/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/x11/qt4-opengl/Makefile =================================================================== --- head/x11/qt4-opengl/Makefile (revision 297366) +++ head/x11/qt4-opengl/Makefile (revision 297367) @@ -1,66 +1,66 @@ # -*-mode: makefile-*- # New ports collection makefile for: qt40 # Date created: Wed Jun 29 11:49:42 CEST 2005 # Whom: lofi@freebsd.org # # $FreeBSD$ # PORTNAME= opengl DISTVERSION= ${QT4_VERSION} CATEGORIES?= x11 PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt OpenGL library USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build corelib gui QT_NONSTANDARD= yes QT_DIST= yes MAKE_JOBS_SAFE= yes HAS_CONFIGURE= yes USE_LDCONFIG= ${PREFIX}/lib/qt4 -USE_GL= glu +USE_GL= gl USE_XORG= x11 ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ src/activeqt src/dbus src/multimedia src/network src/openvg \ src/phonon src/qt3support src/s60installs src/s60main \ src/script src/scripttools src/sql src/svg src/testlib \ src/tools src/winmain src/xml src/xmlpatterns \ src/3rdparty/clucene src/3rdparty/freetype \ src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \ src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} CONFIGURE_ARGS+= -I../../include/QtCore -I../../include/QtGui \ -I../../include/Qt -I../../include EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure pre-configure: ${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' ${BUILD_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/QtOpenGL.pc .include Property changes on: head/x11/qt4-opengl/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/x11/qt4-opengl/pkg-plist =================================================================== --- head/x11/qt4-opengl/pkg-plist (revision 297366) +++ head/x11/qt4-opengl/pkg-plist (revision 297367) @@ -1,44 +1,48 @@ include/qt4/Qt/QtOpenGL include/qt4/Qt/qgl.h include/qt4/Qt/qglbuffer.h include/qt4/Qt/qglcolormap.h include/qt4/Qt/qglframebufferobject.h +include/qt4/Qt/qglfunctions.h include/qt4/Qt/qglpixelbuffer.h include/qt4/Qt/qglscreen_qws.h include/qt4/Qt/qglshaderprogram.h include/qt4/QtOpenGL/QGLBuffer include/qt4/QtOpenGL/QGLColormap include/qt4/QtOpenGL/QGLContext include/qt4/QtOpenGL/QGLFormat include/qt4/QtOpenGL/QGLFramebufferObject include/qt4/QtOpenGL/QGLFramebufferObjectFormat +include/qt4/QtOpenGL/QGLFunctions +include/qt4/QtOpenGL/QGLFunctionsPrivate include/qt4/QtOpenGL/QGLPixelBuffer include/qt4/QtOpenGL/QGLScreen include/qt4/QtOpenGL/QGLScreenSurfaceFunctions include/qt4/QtOpenGL/QGLShader include/qt4/QtOpenGL/QGLShaderProgram 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/qglbuffer.h include/qt4/QtOpenGL/qglcolormap.h include/qt4/QtOpenGL/qglframebufferobject.h +include/qt4/QtOpenGL/qglfunctions.h include/qt4/QtOpenGL/qglpixelbuffer.h include/qt4/QtOpenGL/qglscreen_qws.h include/qt4/QtOpenGL/qglshaderprogram.h lib/qt4/libQtOpenGL.la lib/qt4/libQtOpenGL.prl lib/qt4/libQtOpenGL.so lib/qt4/libQtOpenGL.so.4 lib/qt4/libQtOpenGL.so.%%SHLIB_SHVER%% lib/qt4/libQtOpenGL.so.%%SHLIB_VER%% %%DEBUG%%lib/qt4/libQtOpenGL.so.%%SHLIB_VER%%.debug libdata/pkgconfig/QtOpenGL.pc @dirrmtry lib/qt4 @dirrm include/qt4/QtOpenGL @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/x11/qt4-opengl/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/x11-toolkits/qt4-gui/Makefile =================================================================== --- head/x11-toolkits/qt4-gui/Makefile (revision 297366) +++ head/x11-toolkits/qt4-gui/Makefile (revision 297367) @@ -1,109 +1,111 @@ # -*-mode: makefile-*- # New ports collection makefile for: qt40 # Date created: Wed Jun 29 11:49:42 CEST 2005 # Whom: lofi@freebsd.org # # $FreeBSD$ # PORTNAME= gui DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 CATEGORIES?= x11-toolkits PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt graphical user interface library LIB_DEPENDS= png:${PORTSDIR}/graphics/png \ fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils USE_QT_VER= 4 QT_COMPONENTS= qmake_build moc_build rcc_build uic_build corelib QT_NONSTANDARD= yes QT_DIST= yes MAKE_JOBS_SAFE= yes HAS_CONFIGURE= yes USE_LDCONFIG= ${PREFIX}/lib/qt4 USE_XORG= xrender xrandr xinerama inputproto xfixes \ sm xcursor xext x11 ice xi xt ALL_TARGET= first CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \ PATH=${WRKSRC}/bin:$$PATH DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \ src/activeqt src/dbus src/multimedia src/network src/opengl \ src/openvg src/phonon src/qt3support src/s60installs \ src/s60main src/script src/scripttools src/sql src/svg \ src/testlib src/tools src/winmain src/xml src/xmlpatterns \ src/3rdparty/clucene src/3rdparty/freetype \ src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \ src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit EXTRACT_AFTER_ARGS= | ${TAR} -xf - .for dne in ${DO_NOT_EXTRACT} EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}' .endfor BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} CONFIGURE_ARGS+= -I../../include/QtCore -I../../include/QtGui \ -I../../include/Qt -I../../include EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure FONTSCALE= ${LOCALBASE}/lib/X11/fonts/TTF/luximb.ttf FONTENCOD= ${LOCALBASE}/lib/X11/fonts/encodings/encodings.dir .include "${.CURDIR}/../../devel/qt4/files/Makefile.options" .if ${QT4_OPTIONS:MCUPS} BUILD_DEPENDS+= ${LOCALBASE}/lib/libcups.a:${PORTSDIR}/print/cups-client CONFIGURE_ARGS+=-cups -L${LOCALBASE}/lib -I. -I${LOCALBASE}/include .endif .if ${QT4_OPTIONS:MNAS} LIB_DEPENDS+= audio:${PORTSDIR}/audio/nas CONFIGURE_ARGS+=-system-nas-sound .else CONFIGURE_ARGS+=-no-nas-sound .endif .if ${QT4_OPTIONS:MQGTKSTYLE} USE_GNOME= gtk20 CONFIGURE_ARGS+=-gtkstyle .else CONFIGURE_ARGS+=-no-gtkstyle .endif .if defined(PACKAGE_BUILDING) RUN_DEPENDS+= ${FONTSCALE}:${X_FONTS_TTF_PORT} \ ${FONTENCOD}:${X_FONTS_ENCODINGS_PORT} .endif .include .if ${ARCH} == powerpc64 CFLAGS+= -mminimal-toc .endif 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/rcc ${WRKSRC}/bin/rcc ${LN} -sf ${LOCALBASE}/bin/uic-qt4 ${WRKSRC}/bin/uic post-configure: ${REINPLACE_CMD} -e 's|${PREFIX}/lib/qt4/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \ -e 's|.*$$(QMAKE).*||g' ${BUILD_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/QtGui.pc + +post-install: + @${CAT} ${PKGMESSAGE} .include Property changes on: head/x11-toolkits/qt4-gui/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.39 \ No newline at end of property +1.40 \ No newline at end of property Index: head/x11-toolkits/qt4-gui/files/patch-src__gui__image__qnativeimage.cpp =================================================================== --- head/x11-toolkits/qt4-gui/files/patch-src__gui__image__qnativeimage.cpp (revision 297366) +++ head/x11-toolkits/qt4-gui/files/patch-src__gui__image__qnativeimage.cpp (nonexistent) @@ -1,23 +0,0 @@ ---- ./src/gui/image/qnativeimage.cpp.orig 2012-03-12 13:30:21.000000000 +0100 -+++ ./src/gui/image/qnativeimage.cpp 2012-03-12 13:32:39.000000000 +0100 -@@ -178,15 +178,17 @@ - if (ok) { - xshmimg->data = (char*)shmat(xshminfo.shmid, 0, 0); - xshminfo.shmaddr = xshmimg->data; -- if (shmctl(xshminfo.shmid, IPC_RMID, 0) == -1) -- qWarning() << "Error while marking the shared memory segment to be destroyed"; - ok = (xshminfo.shmaddr != (char*)-1); - if (ok) - image = QImage((uchar *)xshmimg->data, width, height, format); - } - xshminfo.readOnly = false; -- if (ok) -+ if (ok) { - ok = XShmAttach(X11->display, &xshminfo); -+ XSync(X11->display, False); -+ if (shmctl(xshminfo.shmid, IPC_RMID, 0) == -1) -+ qWarning() << "Error while marking the shared memory segment to be destroyed"; -+ } - if (!ok) { - qWarning() << "QNativeImage: Unable to attach to shared memory segment."; - if (xshmimg->data) { Property changes on: head/x11-toolkits/qt4-gui/files/patch-src__gui__image__qnativeimage.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp =================================================================== --- head/x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp (nonexistent) +++ head/x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp (revision 297367) @@ -0,0 +1,13 @@ +--- ./src/gui/text/qtextlayout.cpp.orig 2012-03-14 15:01:14.000000000 +0100 ++++ ./src/gui/text/qtextlayout.cpp 2012-04-03 09:40:53.779974016 +0200 +@@ -2508,6 +2508,10 @@ + int pos = *cursorPos; + int itm; + const HB_CharAttributes *attributes = eng->attributes(); ++ if (!attributes) { ++ *cursorPos = 0; ++ return x.toReal(); ++ } + while (pos < line.from + line.length && !attributes[pos].charStop) + pos++; + if (pos == line.from + (int)line.length) { Property changes on: head/x11-toolkits/qt4-gui/files/patch-src__gui__text__qtextlayout.cpp ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/x11-toolkits/qt4-gui/pkg-message =================================================================== --- head/x11-toolkits/qt4-gui/pkg-message (nonexistent) +++ head/x11-toolkits/qt4-gui/pkg-message (revision 297367) @@ -0,0 +1,11 @@ +====================================================================== + +Qt paint engine makes common use of shared memory. To avoid MIT-SHM +errors (i.e., blank windows), you probably need to tune shared memory +limits in loader.conf(5). The following should be safe values for the +KDE Plasma Desktop: + +kern.ipc.shmmni=1024 +kern.ipc.shmseg=1024 + +====================================================================== Property changes on: head/x11-toolkits/qt4-gui/pkg-message ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/x11-toolkits/qt4-gui/pkg-plist =================================================================== --- head/x11-toolkits/qt4-gui/pkg-plist (revision 297366) +++ head/x11-toolkits/qt4-gui/pkg-plist (revision 297367) @@ -1,1089 +1,1159 @@ include/qt4/Qt/QtGui include/qt4/Qt/qabstractbutton.h include/qt4/Qt/qabstractfontengine_qws.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/qcopchannel_qws.h include/qt4/Qt/qcursor.h include/qt4/Qt/qdatawidgetmapper.h include/qt4/Qt/qdatetimeedit.h include/qt4/Qt/qdecoration_qws.h include/qt4/Qt/qdecorationdefault_qws.h include/qt4/Qt/qdecorationfactory_qws.h include/qt4/Qt/qdecorationplugin_qws.h include/qt4/Qt/qdecorationstyled_qws.h include/qt4/Qt/qdecorationwindows_qws.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/qdirectpainter_qws.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/qgenericmatrix.h +include/qt4/Qt/qgenericplugin_qpa.h +include/qt4/Qt/qgenericpluginfactory_qpa.h include/qt4/Qt/qgesture.h include/qt4/Qt/qgesturerecognizer.h +include/qt4/Qt/qglyphrun.h include/qt4/Qt/qgraphicsanchorlayout.h include/qt4/Qt/qgraphicseffect.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/qgraphicssystemhelper_symbian.h include/qt4/Qt/qgraphicstransform.h include/qt4/Qt/qgraphicsview.h include/qt4/Qt/qgraphicswidget.h include/qt4/Qt/qgridlayout.h include/qt4/Qt/qgroupbox.h include/qt4/Qt/qgtkstyle.h include/qt4/Qt/qguifunctions_wince.h include/qt4/Qt/qheaderview.h include/qt4/Qt/qicon.h include/qt4/Qt/qiconengine.h include/qt4/Qt/qiconengineplugin.h +include/qt4/Qt/qidentityproxymodel.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/qkbd_qws.h include/qt4/Qt/qkbddriverfactory_qws.h include/qt4/Qt/qkbddriverplugin_qws.h +include/qt4/Qt/qkbdintegrity_qws.h include/qt4/Qt/qkbdlinuxinput_qws.h include/qt4/Qt/qkbdqnx_qws.h include/qt4/Qt/qkbdtty_qws.h include/qt4/Qt/qkbdum_qws.h include/qt4/Qt/qkbdvfb_qws.h include/qt4/Qt/qkeyeventtransition.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/qmaccocoaviewcontainer_mac.h include/qt4/Qt/qmacdefines_mac.h include/qt4/Qt/qmacnativewidget_mac.h include/qt4/Qt/qmacstyle_mac.h include/qt4/Qt/qmainwindow.h include/qt4/Qt/qmatrix.h include/qt4/Qt/qmatrix4x4.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/qmouse_qws.h include/qt4/Qt/qmousedriverfactory_qws.h include/qt4/Qt/qmousedriverplugin_qws.h include/qt4/Qt/qmouseeventtransition.h +include/qt4/Qt/qmouseintegrity_qws.h include/qt4/Qt/qmouselinuxinput_qws.h include/qt4/Qt/qmouselinuxtp_qws.h include/qt4/Qt/qmousepc_qws.h include/qt4/Qt/qmouseqnx_qws.h include/qt4/Qt/qmousetslib_qws.h include/qt4/Qt/qmousevfb_qws.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/qplatformclipboard_qpa.h +include/qt4/Qt/qplatformcursor_qpa.h +include/qt4/Qt/qplatformeventloopintegration_qpa.h +include/qt4/Qt/qplatformfontdatabase_qpa.h +include/qt4/Qt/qplatformglcontext_qpa.h +include/qt4/Qt/qplatformintegration_qpa.h +include/qt4/Qt/qplatformintegrationplugin_qpa.h +include/qt4/Qt/qplatformnativeinterface_qpa.h +include/qt4/Qt/qplatformscreen_qpa.h +include/qt4/Qt/qplatformwindow_qpa.h +include/qt4/Qt/qplatformwindowformat_qpa.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/qproxystyle.h include/qt4/Qt/qpushbutton.h include/qt4/Qt/qquaternion.h include/qt4/Qt/qradiobutton.h +include/qt4/Qt/qrawfont.h include/qt4/Qt/qregion.h include/qt4/Qt/qrgb.h include/qt4/Qt/qrubberband.h include/qt4/Qt/qs60mainapplication.h include/qt4/Qt/qs60mainappui.h include/qt4/Qt/qs60maindocument.h include/qt4/Qt/qs60style.h include/qt4/Qt/qscreen_qws.h include/qt4/Qt/qscreendriverfactory_qws.h include/qt4/Qt/qscreendriverplugin_qws.h +include/qt4/Qt/qscreenintegrityfb_qws.h include/qt4/Qt/qscreenlinuxfb_qws.h include/qt4/Qt/qscreenproxy_qws.h include/qt4/Qt/qscreenqnx_qws.h include/qt4/Qt/qscreentransformed_qws.h include/qt4/Qt/qscreenvfb_qws.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/qsoundqss_qws.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/qstatictext.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/qsymbianevent.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/qtextdocumentwriter.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/qtransportauth_qws.h include/qt4/Qt/qtransportauthdefs_qws.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/qvector2d.h include/qt4/Qt/qvector3d.h include/qt4/Qt/qvector4d.h include/qt4/Qt/qvfbhdr.h include/qt4/Qt/qwhatsthis.h include/qt4/Qt/qwidget.h include/qt4/Qt/qwidgetaction.h include/qt4/Qt/qwindowdefs.h include/qt4/Qt/qwindowdefs_win.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/qwindowsystem_qws.h +include/qt4/Qt/qwindowsysteminterface_qpa.h include/qt4/Qt/qwizard.h include/qt4/Qt/qwmatrix.h include/qt4/Qt/qworkspace.h include/qt4/Qt/qwscursor_qws.h include/qt4/Qt/qwsdisplay_qws.h include/qt4/Qt/qwsembedwidget.h include/qt4/Qt/qwsevent_qws.h include/qt4/Qt/qwsmanager_qws.h include/qt4/Qt/qwsproperty_qws.h include/qt4/Qt/qwsprotocolitem_qws.h include/qt4/Qt/qwssocket_qws.h include/qt4/Qt/qwsutils_qws.h include/qt4/Qt/qx11embed_x11.h include/qt4/Qt/qx11info_x11.h include/qt4/QtGui/QAbstractButton include/qt4/QtGui/QAbstractFontEngine 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/QAccessibleActionInterface 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/QAccessibleImageInterface 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/QAccessibleTable2CellInterface +include/qt4/QtGui/QAccessibleTable2Interface 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/QAuthDevice 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/QCopChannel include/qt4/QtGui/QCursor include/qt4/QtGui/QCursorShape include/qt4/QtGui/QDataWidgetMapper include/qt4/QtGui/QDateEdit include/qt4/QtGui/QDateTimeEdit include/qt4/QtGui/QDecoration include/qt4/QtGui/QDecorationAction include/qt4/QtGui/QDecorationDefault include/qt4/QtGui/QDecorationFactory include/qt4/QtGui/QDecorationFactoryInterface include/qt4/QtGui/QDecorationPlugin include/qt4/QtGui/QDecorationStyled include/qt4/QtGui/QDecorationWindows 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/QDirectPainter 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/QFontEngineFactoryInterface include/qt4/QtGui/QFontEngineInfo include/qt4/QtGui/QFontEnginePlugin include/qt4/QtGui/QFontInfo include/qt4/QtGui/QFontMetrics include/qt4/QtGui/QFontMetricsF include/qt4/QtGui/QFormLayout include/qt4/QtGui/QFrame include/qt4/QtGui/QGenericMatrix +include/qt4/QtGui/QGenericPlugin +include/qt4/QtGui/QGenericPluginFactory +include/qt4/QtGui/QGenericPluginFactoryInterface include/qt4/QtGui/QGesture include/qt4/QtGui/QGestureEvent include/qt4/QtGui/QGestureRecognizer +include/qt4/QtGui/QGlyphRun include/qt4/QtGui/QGradient include/qt4/QtGui/QGradientStop include/qt4/QtGui/QGradientStops include/qt4/QtGui/QGraphicsAnchor include/qt4/QtGui/QGraphicsAnchorLayout include/qt4/QtGui/QGraphicsBlurEffect include/qt4/QtGui/QGraphicsColorizeEffect include/qt4/QtGui/QGraphicsDropShadowEffect include/qt4/QtGui/QGraphicsEffect 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/QGraphicsObject include/qt4/QtGui/QGraphicsOpacityEffect include/qt4/QtGui/QGraphicsPathItem include/qt4/QtGui/QGraphicsPixmapItem include/qt4/QtGui/QGraphicsPolygonItem include/qt4/QtGui/QGraphicsProxyWidget include/qt4/QtGui/QGraphicsRectItem include/qt4/QtGui/QGraphicsRotation include/qt4/QtGui/QGraphicsScale 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/QGraphicsTransform include/qt4/QtGui/QGraphicsView include/qt4/QtGui/QGraphicsWidget include/qt4/QtGui/QGridLayout include/qt4/QtGui/QGroupBox include/qt4/QtGui/QGtkStyle 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/QIdentityProxyModel 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/QIntMouseHandler include/qt4/QtGui/QIntValidator +include/qt4/QtGui/QIntfbScreen 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/QKbdDriverFactory include/qt4/QtGui/QKbdDriverPlugin include/qt4/QtGui/QKeyEvent include/qt4/QtGui/QKeyEventTransition 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/QLinuxFbScreen include/qt4/QtGui/QLinuxFb_Shared include/qt4/QtGui/QListView include/qt4/QtGui/QListWidget include/qt4/QtGui/QListWidgetItem include/qt4/QtGui/QMacCocoaViewContainer include/qt4/QtGui/QMacMime include/qt4/QtGui/QMacNativeWidget include/qt4/QtGui/QMacPasteboardMime include/qt4/QtGui/QMacStyle include/qt4/QtGui/QMainWindow include/qt4/QtGui/QMatrix include/qt4/QtGui/QMatrix2x2 include/qt4/QtGui/QMatrix2x3 include/qt4/QtGui/QMatrix2x4 include/qt4/QtGui/QMatrix3x2 include/qt4/QtGui/QMatrix3x3 include/qt4/QtGui/QMatrix3x4 include/qt4/QtGui/QMatrix4x2 include/qt4/QtGui/QMatrix4x3 include/qt4/QtGui/QMatrix4x4 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/QMouseDriverFactory include/qt4/QtGui/QMouseDriverPlugin include/qt4/QtGui/QMouseEvent include/qt4/QtGui/QMouseEventTransition 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/QPanGesture include/qt4/QtGui/QPen include/qt4/QtGui/QPicture include/qt4/QtGui/QPictureFormatInterface include/qt4/QtGui/QPictureFormatPlugin include/qt4/QtGui/QPictureIO include/qt4/QtGui/QPinchGesture include/qt4/QtGui/QPixmap include/qt4/QtGui/QPixmapCache include/qt4/QtGui/QPlainTextDocumentLayout include/qt4/QtGui/QPlainTextEdit include/qt4/QtGui/QPlastiqueStyle +include/qt4/QtGui/QPlatformClipboard +include/qt4/QtGui/QPlatformCursor +include/qt4/QtGui/QPlatformCursorImage +include/qt4/QtGui/QPlatformCursorPrivate +include/qt4/QtGui/QPlatformEventLoopIntegration +include/qt4/QtGui/QPlatformFontDatabase +include/qt4/QtGui/QPlatformGLContext +include/qt4/QtGui/QPlatformIntegration +include/qt4/QtGui/QPlatformIntegrationFactoryInterface +include/qt4/QtGui/QPlatformIntegrationPlugin +include/qt4/QtGui/QPlatformNativeInterface +include/qt4/QtGui/QPlatformScreen +include/qt4/QtGui/QPlatformWindow +include/qt4/QtGui/QPlatformWindowFormat include/qt4/QtGui/QPolygon include/qt4/QtGui/QPolygonF include/qt4/QtGui/QPoolEntry 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/QProxyScreen include/qt4/QtGui/QProxyScreenCursor include/qt4/QtGui/QProxyStyle include/qt4/QtGui/QPushButton include/qt4/QtGui/QQnxMouseHandler include/qt4/QtGui/QQnxScreen include/qt4/QtGui/QQuaternion include/qt4/QtGui/QRadialGradient include/qt4/QtGui/QRadioButton +include/qt4/QtGui/QRawFont include/qt4/QtGui/QRegExpValidator include/qt4/QtGui/QRegion include/qt4/QtGui/QResizeEvent include/qt4/QtGui/QRgb include/qt4/QtGui/QRubberBand include/qt4/QtGui/QS60MainAppUi include/qt4/QtGui/QS60MainAppUiBase include/qt4/QtGui/QS60MainApplication include/qt4/QtGui/QS60MainApplicationBase include/qt4/QtGui/QS60MainDocument include/qt4/QtGui/QS60MainDocumentBase include/qt4/QtGui/QS60StubAknAppUi include/qt4/QtGui/QS60StubAknAppUiBase include/qt4/QtGui/QS60StubMAknTouchPaneObserver include/qt4/QtGui/QS60StubMEikStatusPaneObserver include/qt4/QtGui/QS60Style include/qt4/QtGui/QScreen include/qt4/QtGui/QScreenCursor include/qt4/QtGui/QScreenDriverFactory include/qt4/QtGui/QScreenDriverFactoryInterface include/qt4/QtGui/QScreenDriverPlugin 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/QStaticText 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/QStyleOptionFrameV3 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/QStyleOptionTabBarBaseV2 include/qt4/QtGui/QStyleOptionTabV2 include/qt4/QtGui/QStyleOptionTabV3 include/qt4/QtGui/QStyleOptionTabWidgetFrame include/qt4/QtGui/QStyleOptionTabWidgetFrameV2 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/QSupportedWritingSystems include/qt4/QtGui/QSwipeGesture include/qt4/QtGui/QSymbianEvent +include/qt4/QtGui/QSymbianGraphicsSystemHelper 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/QTapAndHoldGesture include/qt4/QtGui/QTapGesture 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/QTextDocumentWriter 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/QTileRules 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/QTouchEvent include/qt4/QtGui/QTransform include/qt4/QtGui/QTransformedScreen include/qt4/QtGui/QTransportAuth 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/QVFbHeader include/qt4/QtGui/QVFbKeyData include/qt4/QtGui/QVFbKeyboardHandler include/qt4/QtGui/QVFbMouseHandler include/qt4/QtGui/QVFbScreen include/qt4/QtGui/QValidator include/qt4/QtGui/QVector2D include/qt4/QtGui/QVector3D include/qt4/QtGui/QVector4D include/qt4/QtGui/QWMatrix include/qt4/QtGui/QWSCalibratedMouseHandler include/qt4/QtGui/QWSClient include/qt4/QtGui/QWSCursor include/qt4/QtGui/QWSCursorMap include/qt4/QtGui/QWSDisplay include/qt4/QtGui/QWSEmbedWidget include/qt4/QtGui/QWSEvent include/qt4/QtGui/QWSInputMethod +include/qt4/QtGui/QWSIntKeyboardHandler include/qt4/QtGui/QWSInternalWindowInfo include/qt4/QtGui/QWSKeyboardHandler include/qt4/QtGui/QWSKeyboardHandlerFactoryInterface include/qt4/QtGui/QWSLinuxInputKeyboardHandler include/qt4/QtGui/QWSLinuxInputMouseHandler include/qt4/QtGui/QWSLinuxTPMouseHandler include/qt4/QtGui/QWSManager include/qt4/QtGui/QWSMouseHandler include/qt4/QtGui/QWSMouseHandlerFactoryInterface include/qt4/QtGui/QWSPcMouseHandler include/qt4/QtGui/QWSPointerCalibrationData include/qt4/QtGui/QWSPropertyManager include/qt4/QtGui/QWSProtocolItem include/qt4/QtGui/QWSQnxKeyboardHandler include/qt4/QtGui/QWSScreenSaver include/qt4/QtGui/QWSServer include/qt4/QtGui/QWSServerSocket include/qt4/QtGui/QWSSocket include/qt4/QtGui/QWSSoundClient include/qt4/QtGui/QWSSoundServer include/qt4/QtGui/QWSSoundServerSocket include/qt4/QtGui/QWSTslibMouseHandler include/qt4/QtGui/QWSTtyKeyboardHandler include/qt4/QtGui/QWSUmKeyboardHandler include/qt4/QtGui/QWSWindow include/qt4/QtGui/QWSWindowInfo 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/QWindowSystemInterface 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/qabstractfontengine_qws.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/qcopchannel_qws.h include/qt4/QtGui/qcursor.h include/qt4/QtGui/qdatawidgetmapper.h include/qt4/QtGui/qdatetimeedit.h include/qt4/QtGui/qdecoration_qws.h include/qt4/QtGui/qdecorationdefault_qws.h include/qt4/QtGui/qdecorationfactory_qws.h include/qt4/QtGui/qdecorationplugin_qws.h include/qt4/QtGui/qdecorationstyled_qws.h include/qt4/QtGui/qdecorationwindows_qws.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/qdirectpainter_qws.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/qgenericmatrix.h +include/qt4/QtGui/qgenericplugin_qpa.h +include/qt4/QtGui/qgenericpluginfactory_qpa.h include/qt4/QtGui/qgesture.h include/qt4/QtGui/qgesturerecognizer.h +include/qt4/QtGui/qglyphrun.h include/qt4/QtGui/qgraphicsanchorlayout.h include/qt4/QtGui/qgraphicseffect.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/qgraphicssystemhelper_symbian.h include/qt4/QtGui/qgraphicstransform.h include/qt4/QtGui/qgraphicsview.h include/qt4/QtGui/qgraphicswidget.h include/qt4/QtGui/qgridlayout.h include/qt4/QtGui/qgroupbox.h include/qt4/QtGui/qgtkstyle.h include/qt4/QtGui/qguifunctions_wince.h include/qt4/QtGui/qheaderview.h include/qt4/QtGui/qicon.h include/qt4/QtGui/qiconengine.h include/qt4/QtGui/qiconengineplugin.h +include/qt4/QtGui/qidentityproxymodel.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/qkbd_qws.h include/qt4/QtGui/qkbddriverfactory_qws.h include/qt4/QtGui/qkbddriverplugin_qws.h +include/qt4/QtGui/qkbdintegrity_qws.h include/qt4/QtGui/qkbdlinuxinput_qws.h include/qt4/QtGui/qkbdqnx_qws.h include/qt4/QtGui/qkbdtty_qws.h include/qt4/QtGui/qkbdum_qws.h include/qt4/QtGui/qkbdvfb_qws.h include/qt4/QtGui/qkeyeventtransition.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/qmaccocoaviewcontainer_mac.h include/qt4/QtGui/qmacdefines_mac.h include/qt4/QtGui/qmacnativewidget_mac.h include/qt4/QtGui/qmacstyle_mac.h include/qt4/QtGui/qmainwindow.h include/qt4/QtGui/qmatrix.h include/qt4/QtGui/qmatrix4x4.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/qmouse_qws.h include/qt4/QtGui/qmousedriverfactory_qws.h include/qt4/QtGui/qmousedriverplugin_qws.h include/qt4/QtGui/qmouseeventtransition.h +include/qt4/QtGui/qmouseintegrity_qws.h include/qt4/QtGui/qmouselinuxinput_qws.h include/qt4/QtGui/qmouselinuxtp_qws.h include/qt4/QtGui/qmousepc_qws.h include/qt4/QtGui/qmouseqnx_qws.h include/qt4/QtGui/qmousetslib_qws.h include/qt4/QtGui/qmousevfb_qws.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/qplatformclipboard_qpa.h +include/qt4/QtGui/qplatformcursor_qpa.h +include/qt4/QtGui/qplatformeventloopintegration_qpa.h +include/qt4/QtGui/qplatformfontdatabase_qpa.h +include/qt4/QtGui/qplatformglcontext_qpa.h +include/qt4/QtGui/qplatformintegration_qpa.h +include/qt4/QtGui/qplatformintegrationplugin_qpa.h +include/qt4/QtGui/qplatformnativeinterface_qpa.h +include/qt4/QtGui/qplatformscreen_qpa.h +include/qt4/QtGui/qplatformwindow_qpa.h +include/qt4/QtGui/qplatformwindowformat_qpa.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/qproxystyle.h include/qt4/QtGui/qpushbutton.h include/qt4/QtGui/qquaternion.h include/qt4/QtGui/qradiobutton.h +include/qt4/QtGui/qrawfont.h include/qt4/QtGui/qregion.h include/qt4/QtGui/qrgb.h include/qt4/QtGui/qrubberband.h include/qt4/QtGui/qs60mainapplication.h include/qt4/QtGui/qs60mainappui.h include/qt4/QtGui/qs60maindocument.h include/qt4/QtGui/qs60style.h include/qt4/QtGui/qscreen_qws.h include/qt4/QtGui/qscreendriverfactory_qws.h include/qt4/QtGui/qscreendriverplugin_qws.h +include/qt4/QtGui/qscreenintegrityfb_qws.h include/qt4/QtGui/qscreenlinuxfb_qws.h include/qt4/QtGui/qscreenproxy_qws.h include/qt4/QtGui/qscreenqnx_qws.h include/qt4/QtGui/qscreentransformed_qws.h include/qt4/QtGui/qscreenvfb_qws.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/qsoundqss_qws.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/qstatictext.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/qsymbianevent.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/qtextdocumentwriter.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/qtransportauth_qws.h include/qt4/QtGui/qtransportauthdefs_qws.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/qvector2d.h include/qt4/QtGui/qvector3d.h include/qt4/QtGui/qvector4d.h include/qt4/QtGui/qvfbhdr.h include/qt4/QtGui/qwhatsthis.h include/qt4/QtGui/qwidget.h include/qt4/QtGui/qwidgetaction.h include/qt4/QtGui/qwindowdefs.h include/qt4/QtGui/qwindowdefs_win.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/qwindowsystem_qws.h +include/qt4/QtGui/qwindowsysteminterface_qpa.h include/qt4/QtGui/qwizard.h include/qt4/QtGui/qwmatrix.h include/qt4/QtGui/qworkspace.h include/qt4/QtGui/qwscursor_qws.h include/qt4/QtGui/qwsdisplay_qws.h include/qt4/QtGui/qwsembedwidget.h include/qt4/QtGui/qwsevent_qws.h include/qt4/QtGui/qwsmanager_qws.h include/qt4/QtGui/qwsproperty_qws.h include/qt4/QtGui/qwsprotocolitem_qws.h include/qt4/QtGui/qwssocket_qws.h include/qt4/QtGui/qwsutils_qws.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.%%SHLIB_SHVER%% lib/qt4/libQtGui.so.%%SHLIB_VER%% %%DEBUG%%lib/qt4/libQtGui.so.%%SHLIB_VER%%.debug libdata/pkgconfig/QtGui.pc @dirrmtry lib/qt4 @dirrm include/qt4/QtGui @dirrmtry include/qt4/Qt @dirrmtry include/qt4 Property changes on: head/x11-toolkits/qt4-gui/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property