From d15d0b125b11f279ff8a46f32939471fc80f6c38 Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Wed, 22 Jun 2011 12:34:15 +0200 Subject: Add the shared painting and affine example to the build. Change-Id: I85e66c9a33a1c908b7588beb219cc9540698ab68 Reviewed-on: http://codereview.qt.nokia.com/623 Reviewed-by: Qt Sanity Bot Reviewed-by: Casper van Donderen --- examples/painting/affine/affine.pro | 10 +++++++--- examples/painting/painting.pro | 14 ++++++++++++++ examples/painting/shared/shared.pro | 4 ++-- 3 files changed, 23 insertions(+), 5 deletions(-) (limited to 'examples') diff --git a/examples/painting/affine/affine.pro b/examples/painting/affine/affine.pro index a3d6e30ad1..817e5829c2 100644 --- a/examples/painting/affine/affine.pro +++ b/examples/painting/affine/affine.pro @@ -13,12 +13,16 @@ include($$SHARED_FOLDER/shared.pri) RESOURCES += affine.qrc # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/affine +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/affine sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.html *.jpg -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/affine +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/affine INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian { + CONFIG += qt_example +} + +maemo5: CONFIG += qt_example wince*: { DEPLOYMENT_PLUGIN += qjpeg diff --git a/examples/painting/painting.pro b/examples/painting/painting.pro index 41f91822c4..1a0bda780b 100644 --- a/examples/painting/painting.pro +++ b/examples/painting/painting.pro @@ -1,6 +1,8 @@ TEMPLATE = subdirs SUBDIRS = basicdrawing \ concentriccircles \ + examples_affine \ + painting_shared \ imagecomposition \ painterpaths \ transformations \ @@ -14,3 +16,15 @@ INSTALLS += target sources symbian: CONFIG += qt_example maemo5: CONFIG += qt_example + +examples_affine.subdir = affine +painting_shared.subdir = shared + +!ordered { + examples_affine.depends = painting_shared + examples_deform.depends = painting_shared + examples_gradients.depends = painting_shared + examples_composition.depends = painting_shared + examples_arthurplugin.depends = painting_shared + examples_pathstroke.depends = painting_shared +} diff --git a/examples/painting/shared/shared.pro b/examples/painting/shared/shared.pro index 88d7fbedab..e996956880 100644 --- a/examples/painting/shared/shared.pro +++ b/examples/painting/shared/shared.pro @@ -26,9 +26,9 @@ HEADERS += \ RESOURCES += shared.qrc # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/shared +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/shared sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.pri images -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/shared +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/shared INSTALLS += sources !cross_compile:INSTALLS += target -- cgit v1.2.3 From 89459bc7cf6326bd68f395f1c3e774c1a4b598b6 Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Thu, 23 Jun 2011 16:46:25 +0200 Subject: Add the painting demos-examples to build. Change-Id: Ia6f23719af0ec3091573909b5666ec795ee22410 Reviewed-on: http://codereview.qt.nokia.com/685 Reviewed-by: Qt Sanity Bot Reviewed-by: Casper van Donderen --- examples/painting/composition/composition.pro | 6 +++--- examples/painting/deform/deform.pro | 6 +++--- examples/painting/gradients/gradients.pro | 6 +++--- examples/painting/painting.pro | 9 ++++++++- examples/painting/pathstroke/pathstroke.pro | 6 +++--- 5 files changed, 20 insertions(+), 13 deletions(-) (limited to 'examples') diff --git a/examples/painting/composition/composition.pro b/examples/painting/composition/composition.pro index 59b91126b9..3a552955b4 100644 --- a/examples/painting/composition/composition.pro +++ b/examples/painting/composition/composition.pro @@ -12,12 +12,12 @@ contains(QT_CONFIG, opengl) { } # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/composition +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/composition sources.files = $$SOURCES $$HEADERS $$RESOURCES *.png *.jpg *.pro *.html -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/composition +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/composition INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian: CONFIG += qt_example win32-msvc* { QMAKE_CXXFLAGS += /Zm500 diff --git a/examples/painting/deform/deform.pro b/examples/painting/deform/deform.pro index 3393b8e83c..673b2e8288 100644 --- a/examples/painting/deform/deform.pro +++ b/examples/painting/deform/deform.pro @@ -13,12 +13,12 @@ contains(QT_CONFIG, opengl) { } # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/deform +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/deform sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.html -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/deform +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/deform INSTALLS += target sources symbian { TARGET.UID3 = 0xA000A63D - CONFIG += qt_demo + CONFIG += qt_example } diff --git a/examples/painting/gradients/gradients.pro b/examples/painting/gradients/gradients.pro index ed4120e01c..22a4baac9e 100644 --- a/examples/painting/gradients/gradients.pro +++ b/examples/painting/gradients/gradients.pro @@ -12,9 +12,9 @@ contains(QT_CONFIG, opengl) { } # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/gradients +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/gradients sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.html -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/gradients +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/gradients INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian: CONFIG += qt_example diff --git a/examples/painting/painting.pro b/examples/painting/painting.pro index 1a0bda780b..33d9e354ba 100644 --- a/examples/painting/painting.pro +++ b/examples/painting/painting.pro @@ -2,6 +2,10 @@ TEMPLATE = subdirs SUBDIRS = basicdrawing \ concentriccircles \ examples_affine \ + examples_composition \ + examples_deform \ + examples_gradients \ + examples_pathstroke \ painting_shared \ imagecomposition \ painterpaths \ @@ -18,6 +22,10 @@ symbian: CONFIG += qt_example maemo5: CONFIG += qt_example examples_affine.subdir = affine +examples_composition.subdir = composition +examples_deform.subdir = deform +examples_gradients.subdir = gradients +examples_pathstroke.subdir = pathstroke painting_shared.subdir = shared !ordered { @@ -25,6 +33,5 @@ painting_shared.subdir = shared examples_deform.depends = painting_shared examples_gradients.depends = painting_shared examples_composition.depends = painting_shared - examples_arthurplugin.depends = painting_shared examples_pathstroke.depends = painting_shared } diff --git a/examples/painting/pathstroke/pathstroke.pro b/examples/painting/pathstroke/pathstroke.pro index 9bbf8a6f77..1d1efdc342 100644 --- a/examples/painting/pathstroke/pathstroke.pro +++ b/examples/painting/pathstroke/pathstroke.pro @@ -13,12 +13,12 @@ contains(QT_CONFIG, opengl) { } # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/pathstroke +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/pathstroke sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.html -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/pathstroke +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/painting/pathstroke INSTALLS += target sources symbian { TARGET.UID3 = 0xA000A63E - CONFIG += qt_demo + CONFIG += qt_example } -- cgit v1.2.3 From b138e14c40c54bf12f9c6c35b7f054127430eb50 Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Fri, 24 Jun 2011 11:18:58 +0200 Subject: Add the itemviews demos-examples to the build. Change-Id: I032216c228193040568ef5d547685b587d2a43e6 Reviewed-on: http://codereview.qt.nokia.com/751 Reviewed-by: Qt Sanity Bot Reviewed-by: Kevin Wright --- examples/itemviews/interview/interview.pro | 6 +++--- examples/itemviews/itemviews.pro | 4 +++- examples/itemviews/spreadsheet/spreadsheet.pro | 6 +++--- 3 files changed, 9 insertions(+), 7 deletions(-) (limited to 'examples') diff --git a/examples/itemviews/interview/interview.pro b/examples/itemviews/interview/interview.pro index a497fbc407..f479dc4f09 100644 --- a/examples/itemviews/interview/interview.pro +++ b/examples/itemviews/interview/interview.pro @@ -11,9 +11,9 @@ build_all:!build_pass { } # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/interview +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/itemviews/interview sources.files = $$SOURCES $$HEADERS $$RESOURCES README *.pro images -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/interview +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/itemviews/interview INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian: CONFIG += qt_example diff --git a/examples/itemviews/itemviews.pro b/examples/itemviews/itemviews.pro index 4655b30b6b..1d5da705d4 100644 --- a/examples/itemviews/itemviews.pro +++ b/examples/itemviews/itemviews.pro @@ -8,12 +8,14 @@ SUBDIRS = addressbook \ editabletreemodel \ fetchmore \ frozencolumn \ + interview \ pixelator \ puzzle \ simpledommodel \ simpletreemodel \ simplewidgetmapper \ - spinboxdelegate + spinboxdelegate \ + spreadsheet # install sources.files = README *.pro diff --git a/examples/itemviews/spreadsheet/spreadsheet.pro b/examples/itemviews/spreadsheet/spreadsheet.pro index 7179d98eba..c06972b760 100644 --- a/examples/itemviews/spreadsheet/spreadsheet.pro +++ b/examples/itemviews/spreadsheet/spreadsheet.pro @@ -26,9 +26,9 @@ build_all:!build_pass { } # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/spreadsheet +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/itemviews/spreadsheet sources.files = $$SOURCES $$RESOURCES *.pro images $$HEADERS -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/spreadsheet +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/itemviews/spreadsheet INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian: CONFIG += qt_example -- cgit v1.2.3 From 59d1278c9e43738b6bf03464f22591c493663adc Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Fri, 24 Jun 2011 11:24:21 +0200 Subject: Add the mainwindows demos-examples to the build. Change-Id: I6ec0be8f058ad127c759fff3c4082a596db53405 Reviewed-on: http://codereview.qt.nokia.com/752 Reviewed-by: Qt Sanity Bot Reviewed-by: Kevin Wright --- examples/mainwindows/macmainwindow/macmainwindow.pro | 4 ++-- examples/mainwindows/mainwindow/mainwindow.pro | 6 +++--- examples/mainwindows/mainwindows.pro | 3 +++ 3 files changed, 8 insertions(+), 5 deletions(-) (limited to 'examples') diff --git a/examples/mainwindows/macmainwindow/macmainwindow.pro b/examples/mainwindows/macmainwindow/macmainwindow.pro index 435905612a..3ababcca15 100644 --- a/examples/mainwindows/macmainwindow/macmainwindow.pro +++ b/examples/mainwindows/macmainwindow/macmainwindow.pro @@ -16,8 +16,8 @@ LIBS += -framework Cocoa -framework Carbon # install mac { -target.path = $$[QT_INSTALL_DEMOS]/qtbase/macmainwindow +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/mainwindows/macmainwindow sources.files = $$SOURCES *.pro *.html -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/macmainwindow +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/mainwindows/macmainwindow INSTALLS += target sources } diff --git a/examples/mainwindows/mainwindow/mainwindow.pro b/examples/mainwindows/mainwindow/mainwindow.pro index 6da113d722..17902246ac 100644 --- a/examples/mainwindows/mainwindow/mainwindow.pro +++ b/examples/mainwindows/mainwindow/mainwindow.pro @@ -9,9 +9,9 @@ build_all:!build_pass { RESOURCES += mainwindow.qrc # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/mainwindow +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/mainwindows/mainwindow sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES *.png *.jpg *.pro -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/mainwindow +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/mainwindows/mainwindow INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian: CONFIG += qt_example diff --git a/examples/mainwindows/mainwindows.pro b/examples/mainwindows/mainwindows.pro index 7301c96a79..d570a24042 100644 --- a/examples/mainwindows/mainwindows.pro +++ b/examples/mainwindows/mainwindows.pro @@ -1,10 +1,13 @@ TEMPLATE = subdirs SUBDIRS = application \ + mainwindow \ mdi \ menus \ recentfiles \ sdi +mac* && !qpa: SUBDIRS += macmainwindow + # install target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/mainwindows sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS mainwindows.pro README -- cgit v1.2.3 From 9b46943686e1db475eb057c8955e931649cd2705 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Mon, 27 Jun 2011 15:55:42 +0200 Subject: SSL example: update secure socket client example to use new cert API issuerInfo and subjectInfo now return a QStringList instead of a QString Change-Id: I04174a7f6319ae156ac8de964d04c0525c9c5a9a Reviewed-on: http://codereview.qt.nokia.com/799 Reviewed-by: Qt Sanity Bot Reviewed-by: Sergio Ahumada --- .../network/securesocketclient/certificateinfo.cpp | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'examples') diff --git a/examples/network/securesocketclient/certificateinfo.cpp b/examples/network/securesocketclient/certificateinfo.cpp index b1a9acb0b2..9c9ffdeb4c 100644 --- a/examples/network/securesocketclient/certificateinfo.cpp +++ b/examples/network/securesocketclient/certificateinfo.cpp @@ -65,8 +65,8 @@ void CertificateInfo::setCertificateChain(const QList &chain) for (int i = 0; i < chain.size(); ++i) { const QSslCertificate &cert = chain.at(i); form->certificationPathView->addItem(tr("%1%2 (%3)").arg(!i ? QString() : tr("Issued by: ")) - .arg(cert.subjectInfo(QSslCertificate::Organization)) - .arg(cert.subjectInfo(QSslCertificate::CommonName))); + .arg(cert.subjectInfo(QSslCertificate::Organization).join(QLatin1String(" "))) + .arg(cert.subjectInfo(QSslCertificate::CommonName).join(QLatin1String(" ")))); } form->certificationPathView->setCurrentIndex(0); @@ -78,19 +78,19 @@ void CertificateInfo::updateCertificateInfo(int index) if (index >= 0 && index < chain.size()) { const QSslCertificate &cert = chain.at(index); QStringList lines; - lines << tr("Organization: %1").arg(cert.subjectInfo(QSslCertificate::Organization)) - << tr("Subunit: %1").arg(cert.subjectInfo(QSslCertificate::OrganizationalUnitName)) - << tr("Country: %1").arg(cert.subjectInfo(QSslCertificate::CountryName)) - << tr("Locality: %1").arg(cert.subjectInfo(QSslCertificate::LocalityName)) - << tr("State/Province: %1").arg(cert.subjectInfo(QSslCertificate::StateOrProvinceName)) - << tr("Common Name: %1").arg(cert.subjectInfo(QSslCertificate::CommonName)) + lines << tr("Organization: %1").arg(cert.subjectInfo(QSslCertificate::Organization).join(QLatin1String(" "))) + << tr("Subunit: %1").arg(cert.subjectInfo(QSslCertificate::OrganizationalUnitName).join(QLatin1String(" "))) + << tr("Country: %1").arg(cert.subjectInfo(QSslCertificate::CountryName).join(QLatin1String(" "))) + << tr("Locality: %1").arg(cert.subjectInfo(QSslCertificate::LocalityName).join(QLatin1String(" "))) + << tr("State/Province: %1").arg(cert.subjectInfo(QSslCertificate::StateOrProvinceName).join(QLatin1String(" "))) + << tr("Common Name: %1").arg(cert.subjectInfo(QSslCertificate::CommonName).join(QLatin1String(" "))) << QString() - << tr("Issuer Organization: %1").arg(cert.issuerInfo(QSslCertificate::Organization)) - << tr("Issuer Unit Name: %1").arg(cert.issuerInfo(QSslCertificate::OrganizationalUnitName)) - << tr("Issuer Country: %1").arg(cert.issuerInfo(QSslCertificate::CountryName)) - << tr("Issuer Locality: %1").arg(cert.issuerInfo(QSslCertificate::LocalityName)) - << tr("Issuer State/Province: %1").arg(cert.issuerInfo(QSslCertificate::StateOrProvinceName)) - << tr("Issuer Common Name: %1").arg(cert.issuerInfo(QSslCertificate::CommonName)); + << tr("Issuer Organization: %1").arg(cert.issuerInfo(QSslCertificate::Organization).join(QLatin1String(" "))) + << tr("Issuer Unit Name: %1").arg(cert.issuerInfo(QSslCertificate::OrganizationalUnitName).join(QLatin1String(" "))) + << tr("Issuer Country: %1").arg(cert.issuerInfo(QSslCertificate::CountryName).join(QLatin1String(" "))) + << tr("Issuer Locality: %1").arg(cert.issuerInfo(QSslCertificate::LocalityName).join(QLatin1String(" "))) + << tr("Issuer State/Province: %1").arg(cert.issuerInfo(QSslCertificate::StateOrProvinceName).join(QLatin1String(" "))) + << tr("Issuer Common Name: %1").arg(cert.issuerInfo(QSslCertificate::CommonName).join(QLatin1String(" "))); foreach (QString line, lines) form->certificateInfoView->addItem(line); } else { -- cgit v1.2.3 From 6f262a60d19a68ed8bfedf26839aec96d16c2550 Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Mon, 27 Jun 2011 10:31:24 +0200 Subject: Add the richtext and tools demo-examples to build. Change-Id: I3a64dc0fb11f9ebbcb0cb2f97598370ca5962a3c Reviewed-on: http://codereview.qt.nokia.com/773 Reviewed-by: Qt Sanity Bot Reviewed-by: David Boddie --- examples/richtext/richtext.pro | 3 ++- examples/richtext/textedit/textedit.pro | 6 +++--- examples/tools/tools.pro | 1 + examples/tools/undo/undo.pro | 6 +++--- 4 files changed, 9 insertions(+), 7 deletions(-) (limited to 'examples') diff --git a/examples/richtext/richtext.pro b/examples/richtext/richtext.pro index c9ed843a61..7e2720a2c6 100644 --- a/examples/richtext/richtext.pro +++ b/examples/richtext/richtext.pro @@ -1,7 +1,8 @@ TEMPLATE = subdirs SUBDIRS = calendar \ orderform \ - syntaxhighlighter + syntaxhighlighter \ + textedit # install target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/richtext diff --git a/examples/richtext/textedit/textedit.pro b/examples/richtext/textedit/textedit.pro index b37ac3036a..328de6e51e 100644 --- a/examples/richtext/textedit/textedit.pro +++ b/examples/richtext/textedit/textedit.pro @@ -14,9 +14,9 @@ build_all:!build_pass { } # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/textedit +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/richtext/textedit sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.html *.doc images -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/textedit +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/richtext/textedit INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian: CONFIG += qt_example diff --git a/examples/tools/tools.pro b/examples/tools/tools.pro index 5335b7fe6a..c6e0250934 100644 --- a/examples/tools/tools.pro +++ b/examples/tools/tools.pro @@ -13,6 +13,7 @@ SUBDIRS = codecs \ settingseditor \ styleplugin \ treemodelcompleter \ + undo \ undoframework plugandpaint.depends = plugandpaintplugins diff --git a/examples/tools/undo/undo.pro b/examples/tools/undo/undo.pro index 84f1d7b326..0c7c40dd5f 100644 --- a/examples/tools/undo/undo.pro +++ b/examples/tools/undo/undo.pro @@ -10,9 +10,9 @@ build_all:!build_pass { RESOURCES += undo.qrc # install -target.path = $$[QT_INSTALL_DEMOS]/qtbase/undo +target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/tools/undo sources.files = $$SOURCES $$HEADERS *.pro icons $$RESOURCES $$FORMS -sources.path = $$[QT_INSTALL_DEMOS]/qtbase/undo +sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/tools/undo INSTALLS += target sources -symbian: CONFIG += qt_demo +symbian: CONFIG += qt_example -- cgit v1.2.3 From 192eae5797fdd8b68eef8697fd75717fd537d15b Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Mon, 4 Jul 2011 10:16:53 +0200 Subject: Remove references to demos from docs. Change-Id: I1ae723af883c305ea64a4e46cc3ce889dd3c021b Reviewed-on: http://codereview.qt.nokia.com/1032 Reviewed-by: Qt Sanity Bot Reviewed-by: David Boddie --- examples/animation/README | 32 +---------------------------- examples/desktop/README | 33 +----------------------------- examples/dialogs/README | 33 +----------------------------- examples/draganddrop/README | 33 +----------------------------- examples/graphicsview/README | 33 +----------------------------- examples/ipc/README | 32 +---------------------------- examples/itemviews/README | 33 +----------------------------- examples/layouts/README | 33 +----------------------------- examples/linguist/README | 33 +----------------------------- examples/mainwindows/README | 33 +----------------------------- examples/network/README | 33 +----------------------------- examples/opengl/README | 33 +----------------------------- examples/openvg/README | 32 +---------------------------- examples/painting/README | 33 +----------------------------- examples/qtconcurrent/README | 33 +----------------------------- examples/qtestlib/README | 32 +---------------------------- examples/qws/README | 33 +----------------------------- examples/richtext/README | 33 +----------------------------- examples/sql/README | 33 +----------------------------- examples/statemachine/README | 32 +---------------------------- examples/threads/README | 33 +----------------------------- examples/tools/README | 33 +----------------------------- examples/tutorials/README | 35 ++------------------------------ examples/webkit/webkit-guide/_index.html | 2 -- examples/widgets/README | 33 +----------------------------- examples/xml/README | 33 +----------------------------- 26 files changed, 26 insertions(+), 798 deletions(-) (limited to 'examples') diff --git a/examples/animation/README b/examples/animation/README index 6a892f8655..e723a28722 100644 --- a/examples/animation/README +++ b/examples/animation/README @@ -3,36 +3,6 @@ smooth GUI's. By animating Qt properties, the framework provides great freedom for animating widgets and other QObjects. The framework can also be used with the Graphics View framework. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/desktop/README b/examples/desktop/README index efe569a604..4a949d1cf7 100644 --- a/examples/desktop/README +++ b/examples/desktop/README @@ -6,36 +6,5 @@ support for desktop services can be used to improve the appearance of applications and take advantage of underlying desktop facilities. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/dialogs/README b/examples/dialogs/README index ab0f884fcb..090b011061 100644 --- a/examples/dialogs/README +++ b/examples/dialogs/README @@ -5,36 +5,5 @@ Custom dialogs can also be created for specialized modal or modeless interactions with users. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/draganddrop/README b/examples/draganddrop/README index f4efd2e40b..90dc55bf2f 100644 --- a/examples/draganddrop/README +++ b/examples/draganddrop/README @@ -5,36 +5,5 @@ most appropriate formats. Drag and drop can also be implemented for internal use by applications. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/graphicsview/README b/examples/graphicsview/README index 6c38c18683..e710fc3c13 100644 --- a/examples/graphicsview/README +++ b/examples/graphicsview/README @@ -5,36 +5,5 @@ These examples demonstrate the fundamental aspects of canvas programming with Qt. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/ipc/README b/examples/ipc/README index 71e2f46c18..83a157a42e 100644 --- a/examples/ipc/README +++ b/examples/ipc/README @@ -1,35 +1,5 @@ These examples demonstrate IPC support in Qt. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/itemviews/README b/examples/itemviews/README index 0ac70f4904..bded96a849 100644 --- a/examples/itemviews/README +++ b/examples/itemviews/README @@ -4,36 +4,5 @@ from the way it is represented to the user, and provides support for customized rendering through the use of delegates. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/layouts/README b/examples/layouts/README index edaea78463..589400280d 100644 --- a/examples/layouts/README +++ b/examples/layouts/README @@ -6,36 +6,5 @@ Custom layouts can be used to provide more control over the positions and sizes of child widgets. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/linguist/README b/examples/linguist/README index d1ef0057e4..15817742da 100644 --- a/examples/linguist/README +++ b/examples/linguist/README @@ -2,36 +2,5 @@ Internationalization is a core feature of Qt. These examples show how to access translation and localization facilities at run-time. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/mainwindows/README b/examples/mainwindows/README index 15a6c23e4b..b63adee6e3 100644 --- a/examples/mainwindows/README +++ b/examples/mainwindows/README @@ -5,36 +5,5 @@ separate forms of user input are unified in an integrated action system that also supports keyboard shortcuts and accelerator keys in menu items. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/network/README b/examples/network/README index 23721df4c3..23682e4aef 100644 --- a/examples/network/README +++ b/examples/network/README @@ -5,36 +5,5 @@ These examples demonstrate the fundamental aspects of network programming with Qt. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/opengl/README b/examples/opengl/README index 69bd134246..b891fb4192 100644 --- a/examples/opengl/README +++ b/examples/opengl/README @@ -6,36 +6,5 @@ These examples demonstrate the basic techniques used to take advantage of OpenGL in Qt applications. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/openvg/README b/examples/openvg/README index 5e385ea0ce..3f2a60e9e7 100644 --- a/examples/openvg/README +++ b/examples/openvg/README @@ -5,36 +5,6 @@ These examples demonstrate the basic techniques used to take advantage of OpenVG in Qt applications. In particular, the "star" example shows how to mix QPainter and OpenVG calls in the same paint event. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/painting/README b/examples/painting/README index 4f9dca0181..541c553159 100644 --- a/examples/painting/README +++ b/examples/painting/README @@ -7,36 +7,5 @@ with Qt, from basic concepts such as drawing simple primitives to the use of transformations. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/qtconcurrent/README b/examples/qtconcurrent/README index af659af2cc..4a1a149789 100644 --- a/examples/qtconcurrent/README +++ b/examples/qtconcurrent/README @@ -3,36 +3,5 @@ concurrent programming which includes implementations of the well-known map-reduce and filter-reduce algorithms. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/qtestlib/README b/examples/qtestlib/README index e89bf5d726..7ca55b2eb3 100644 --- a/examples/qtestlib/README +++ b/examples/qtestlib/README @@ -4,35 +4,5 @@ in unit testing frameworks as well as extensions for testing graphical user interfaces. -The examples in this directory should be run from the command line so -that output printed to the console can be examined. - -Documentation for these examples can be found via the "Tutorial and Examples" +Documentation for these examples can be found via the Examples link in the main Qt documentation. - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/qws/README b/examples/qws/README index d7cf21a5c5..d24fa59a35 100644 --- a/examples/qws/README +++ b/examples/qws/README @@ -3,36 +3,5 @@ for use on systems with limited resources, specialized hardware, and small screens. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/richtext/README b/examples/richtext/README index 6697b237f5..647029b8a2 100644 --- a/examples/richtext/README +++ b/examples/richtext/README @@ -7,36 +7,5 @@ Text is rendered using anti-aliased outline fonts to provide the best possible on-screen representation. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/sql/README b/examples/sql/README index 56b4b3e11f..70f910114a 100644 --- a/examples/sql/README +++ b/examples/sql/README @@ -5,36 +5,5 @@ SQL support is integrated with Qt's model/view architecture, making it easier to provide GUI integration for your database applications. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/statemachine/README b/examples/statemachine/README index 2879e67d65..a0ac35a89b 100644 --- a/examples/statemachine/README +++ b/examples/statemachine/README @@ -1,36 +1,6 @@ Qt is provided with a powerful hierchical finite state machine through the Qt State Machine classes. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/threads/README b/examples/threads/README index e4b426f9c7..c5427ea9a9 100644 --- a/examples/threads/README +++ b/examples/threads/README @@ -5,36 +5,5 @@ mechanism can now be used to communicate between threads. Additionally, it is now possible to move objects between threads. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/tools/README b/examples/tools/README index b0926f2fb6..db5c107c82 100644 --- a/examples/tools/README +++ b/examples/tools/README @@ -5,36 +5,5 @@ Other classes provide application infrastructure support, handling plugin loading and managing configuration files. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/tutorials/README b/examples/tutorials/README index 0aab26348b..54c0b17706 100644 --- a/examples/tutorials/README +++ b/examples/tutorials/README @@ -1,37 +1,6 @@ Qt is supplied with tutorials that have been written to provide developers with an introduction to the Qt API. -The example and demo launcher can be used to explore these tutorials, lets -you view the documentation in Qt Assistant, and is able to launch each part -in a series of tutorial programs. -Documentation for tutorials can be found in the Tutorial and Examples section -of the Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. +Documentation for tutorials can be found in the Tutorials +link in the main documentation. diff --git a/examples/webkit/webkit-guide/_index.html b/examples/webkit/webkit-guide/_index.html index 709f951c8f..5d7dd11d63 100644 --- a/examples/webkit/webkit-guide/_index.html +++ b/examples/webkit/webkit-guide/_index.html @@ -94,7 +94,6 @@ a[href^='http://waplabdc.nokia-boston.com']:before { content: url(http://waplabd @@ -159,7 +158,6 @@ a[href^='http://waplabdc.nokia-boston.com']:before { content: url(http://waplabd diff --git a/examples/widgets/README b/examples/widgets/README index fd16c67acd..e862f07b71 100644 --- a/examples/widgets/README +++ b/examples/widgets/README @@ -9,36 +9,5 @@ be used to change the appearance of standard widgets and appropriately written custom widgets. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. diff --git a/examples/xml/README b/examples/xml/README index a6d81bb58a..a1a963006d 100644 --- a/examples/xml/README +++ b/examples/xml/README @@ -5,36 +5,5 @@ classes enable more complex document-level operations to be performed on XML files. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. -- cgit v1.2.3