Update the documentation after moving examples.

Change-Id: I7aa52785979df9eddd7b91e62abd0ef10adc74b7
Reviewed-on: http://codereview.qt.nokia.com/1031
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: David Boddie
This commit is contained in:
Casper van Donderen 2011-07-01 14:59:19 +02:00 committed by Qt by Nokia
parent 1734cb55c5
commit 1631be8176
14 changed files with 33 additions and 33 deletions

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/interview \example itemviews/interview
\title Interview \title Interview
The Interview demonstration explores the flexibility and scalability of the The Interview example explores the flexibility and scalability of the
model/view framework by presenting an infinitely deep data structure using a model model/view framework by presenting an infinitely deep data structure using a model
and three different types of view. and three different types of view.

View File

@ -26,17 +26,17 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/macmainwindow \example mainwindows/macmainwindow
\title Mac Main Window Demo \title Mac Main Window Example
This demo shows how to create a main window that has the This example shows how to create a main window that has the
same appearance as other Mac OS X applications such as Mail or iTunes. same appearance as other Mac OS X applications such as Mail or iTunes.
This includes customizing the item views and QSplitter and wrapping native This includes customizing the item views and QSplitter and wrapping native
widgets such as the search field. widgets such as the search field.
\image macmainwindow.png \image macmainwindow.png
See \c{$QTDIR/demos/macmainwindow} for the source code. See \c{$QTDIR/examples/mainwindows/macmainwindow} for the source code.
*/ */

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/mainwindow \example mainwindows/mainwindow
\title Main Window \title Main Window
The Main Window demonstration shows Qt's extensive support for tool bars, The Main Window example shows Qt's extensive support for tool bars,
dock windows, menus, and other standard application features. dock windows, menus, and other standard application features.
\image mainwindow-demo.png \image mainwindow-demo.png

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/pathstroke \example painting/pathstroke
\title Path Stroking \title Path Stroking
In this demo we show some of the various types of pens that can be In this example we show some of the various types of pens that can be
used in Qt. used in Qt.
\image pathstroke-demo.png \image pathstroke-demo.png

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/spreadsheet \example itemviews/spreadsheet
\title Spreadsheet \title Spreadsheet
The Spreadsheet demonstration shows how a table view can be used to create a The Spreadsheet example shows how a table view can be used to create a
simple spreadsheet application. Custom delegates are used to render different simple spreadsheet application. Custom delegates are used to render different
types of data in distinctive colors. types of data in distinctive colors.

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/sqlbrowser \example sql/sqlbrowser
\title SQL Browser \title SQL Browser
The SQL Browser demonstration shows how a data browser can be used to visualize The SQL Browser example shows how a data browser can be used to visualize
the results of SQL statements on a live database. the results of SQL statements on a live database.
\image sqlbrowser-demo.png \image sqlbrowser-demo.png

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/sub-attaq \example animation/sub-attaq
\title Sub-Attaq \title Sub-Attaq
This demo shows Qt's ability to combine \l{The Animation Framework}{the animation framework} This example shows Qt's ability to combine \l{The Animation Framework}{the animation framework}
and \l{The State Machine Framework}{the state machine framework} to create a game. and \l{The State Machine Framework}{the state machine framework} to create a game.
\image sub-attaq-demo.png \image sub-attaq-demo.png

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/textedit \example richtext/textedit
\title Text Edit \title Text Edit
The Text Edit demonstration shows Qt's rich text editing facilities in action, The Text Edit example shows Qt's rich text editing facilities in action,
providing an example document for you to experiment with. providing an example document for you to experiment with.
\image textedit-demo.png \image textedit-demo.png

View File

@ -26,10 +26,10 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example demos/undo \example tools/undo
\title Undo Framework \title Undo Framework
This demo shows Qt's undo framework in action. This example shows Qt's undo framework in action.
\image undodemo.png \image undodemo.png

View File

@ -1123,7 +1123,7 @@ void QPainterPrivate::updateState(QPainterState *newState)
shows how to use advanced vector techniques to draw text using a shows how to use advanced vector techniques to draw text using a
QPainterPath, the \l {painting/gradients}{Gradients} example which shows QPainterPath, the \l {painting/gradients}{Gradients} example which shows
the different types of gradients that are available in Qt, and the \l the different types of gradients that are available in Qt, and the \l
{demos/pathstroke}{Path Stroking} demo which shows Qt's built-in {painting/pathstroke}{Path Stroking} example which shows Qt's built-in
dash patterns and shows how custom patterns can be used to extend dash patterns and shows how custom patterns can be used to extend
the range of available patterns. the range of available patterns.
@ -1131,7 +1131,7 @@ void QPainterPrivate::updateState(QPainterState *newState)
\header \header
\o \l {painting/deform}{Vector Deformation} \o \l {painting/deform}{Vector Deformation}
\o \l {painting/gradients}{Gradients} \o \l {painting/gradients}{Gradients}
\o \l {demos/pathstroke}{Path Stroking} \o \l {painting/pathstroke}{Path Stroking}
\row \row
\o \inlineimage qpainter-vectordeformation.png \o \inlineimage qpainter-vectordeformation.png
\o \inlineimage qpainter-gradients.png \o \inlineimage qpainter-gradients.png

View File

@ -214,14 +214,14 @@ typedef QPenPrivate QPenData;
\table 100% \table 100%
\row \row
\o \inlineimage qpen-demo.png \o \inlineimage qpen-demo.png
\o \bold {\l {demos/pathstroke}{The Path Stroking Demo}} \o \bold {\l {painting/pathstroke}{The Path Stroking Example}}
The Path Stroking demo shows Qt's built-in dash patterns and shows The Path Stroking example shows Qt's built-in dash patterns and shows
how custom patterns can be used to extend the range of available how custom patterns can be used to extend the range of available
patterns. patterns.
\endtable \endtable
\sa QPainter, QBrush, {demos/pathstroke}{Path Stroking Demo}, \sa QPainter, QBrush, {painting/pathstroke}{Path Stroking Example},
{Scribble Example} {Scribble Example}
*/ */

View File

@ -84,7 +84,7 @@
developer to provide the autorelease pool. developer to provide the autorelease pool.
The following is a snippet of subclassing QMacCocoaViewContainer to wrap a NSSearchField. The following is a snippet of subclassing QMacCocoaViewContainer to wrap a NSSearchField.
\snippet demos/macmainwindow/macmainwindow.mm 0 \snippet examples/mainwindows/macmainwindow/macmainwindow.mm 0
*/ */

View File

@ -1,7 +0,0 @@
"Interview Demo", "demos/interview", "interview", 0, -1
"Mainwindow Demo", "demos/mainwindow", "mainwindow", 0, -1
"PathStroke Demo", "demos/pathstroke", "pathstroke", 0, -1
"Spreadsheet Demo", "demos/spreadsheet", "spreadsheet", 0, -1
"Sub-Attac Demo", "demos/sub-attaq", "sub-attaq", 0, -1
"TextEdit Demo", "demos/textedit", "textedit", 0, -1
"Undo Demo", "demos/undo", "undo", 0, -1

View File

@ -4,6 +4,7 @@
"animation/moveblocks Example", "examples/animation/moveblocks", "moveblocks", 10, -1 "animation/moveblocks Example", "examples/animation/moveblocks", "moveblocks", 10, -1
"animation/states Example", "examples/animation/states", "states", 10, -1 "animation/states Example", "examples/animation/states", "states", 10, -1
"animation/stickman Example", "examples/animation/stickman", "stickman", 10, -1 "animation/stickman Example", "examples/animation/stickman", "stickman", 10, -1
"animation/sub-attaq Example", "examples/animation/sub-attaq", "sub-attaq", 0, -1
"designer/calculatorbuilder Example", "examples/designer/calculatorbuilder", "calculatorbuilder", 10, -1 "designer/calculatorbuilder Example", "examples/designer/calculatorbuilder", "calculatorbuilder", 10, -1
"dialogs/standarddialogs Example", "examples/dialogs/standarddialogs", "standarddialogs", 10, -1 "dialogs/standarddialogs Example", "examples/dialogs/standarddialogs", "standarddialogs", 10, -1
"draganddrop/dropsite Example", "examples/draganddrop/dropsite", "dropsite", 10, -1 "draganddrop/dropsite Example", "examples/draganddrop/dropsite", "dropsite", 10, -1
@ -36,12 +37,14 @@
"itemviews/editabletreemodel Example", "examples/itemviews/editabletreemodel", "editabletreemodel", 0, -1 "itemviews/editabletreemodel Example", "examples/itemviews/editabletreemodel", "editabletreemodel", 0, -1
"itemviews/fetchmore Example", "examples/itemviews/fetchmore", "fetchmore", 10, -1 "itemviews/fetchmore Example", "examples/itemviews/fetchmore", "fetchmore", 10, -1
"itemviews/frozencolumn Example", "examples/itemviews/frozencolumn", "frozencolumn", 10, -1 "itemviews/frozencolumn Example", "examples/itemviews/frozencolumn", "frozencolumn", 10, -1
"itemviews/interview Example", "examples/itemviews/interview", "interview", 0, -1
"itemviews/pixelator Example", "examples/itemviews/pixelator", "pixelator", 10, -1 "itemviews/pixelator Example", "examples/itemviews/pixelator", "pixelator", 10, -1
"itemviews/puzzle Example", "examples/itemviews/puzzle", "puzzle", 10, -1 "itemviews/puzzle Example", "examples/itemviews/puzzle", "puzzle", 10, -1
"itemviews/simpledommodel Example", "examples/itemviews/simpledommodel", "simpledommodel", 10, -1 "itemviews/simpledommodel Example", "examples/itemviews/simpledommodel", "simpledommodel", 10, -1
"itemviews/simpletreemodel Example", "examples/itemviews/simpletreemodel", "simpletreemodel", 10, -1 "itemviews/simpletreemodel Example", "examples/itemviews/simpletreemodel", "simpletreemodel", 10, -1
"itemviews/simplewidgetmapper Example", "examples/itemviews/simplewidgetmapper", "simplewidgetmapper", 10, -1 "itemviews/simplewidgetmapper Example", "examples/itemviews/simplewidgetmapper", "simplewidgetmapper", 10, -1
"itemviews/spinboxdelegate Example", "examples/itemviews/spinboxdelegate", "spinboxdelegate", 0, -1 "itemviews/spinboxdelegate Example", "examples/itemviews/spinboxdelegate", "spinboxdelegate", 0, -1
"itemviews/spreadsheet Example", "examples/itemviews/spreadsheet", "spreadsheet", 0, -1
"itemviews/stardelegate Example", "examples/itemviews/stardelegate", "stardelegate", 10, -1 "itemviews/stardelegate Example", "examples/itemviews/stardelegate", "stardelegate", 10, -1
"layouts/basiclayouts Example", "examples/layouts/basiclayouts", "basiclayouts", 0, -1 "layouts/basiclayouts Example", "examples/layouts/basiclayouts", "basiclayouts", 0, -1
"layouts/borderlayout Example", "examples/layouts/borderlayout", "borderlayout", 10, -1 "layouts/borderlayout Example", "examples/layouts/borderlayout", "borderlayout", 10, -1
@ -49,6 +52,7 @@
"layouts/flowlayout Example", "examples/layouts/flowlayout", "flowlayout", 10, -1 "layouts/flowlayout Example", "examples/layouts/flowlayout", "flowlayout", 10, -1
"mainwindows/application Example", "examples/mainwindows/application", "application", 6, -1 "mainwindows/application Example", "examples/mainwindows/application", "application", 6, -1
"mainwindows/dockwidgets Example", "examples/mainwindows/dockwidgets", "dockwidgets", 0, -1 "mainwindows/dockwidgets Example", "examples/mainwindows/dockwidgets", "dockwidgets", 0, -1
"mainwindows/mainwindow Example", "examples/mainwindows/mainwindow", "mainwindow", 0, -1
"mainwindows/mdi Example", "examples/mainwindows/mdi", "mdi", 0, -1 "mainwindows/mdi Example", "examples/mainwindows/mdi", "mdi", 0, -1
"mainwindows/menus Example", "examples/mainwindows/menus", "menus", 10, -1 "mainwindows/menus Example", "examples/mainwindows/menus", "menus", 10, -1
"mainwindows/recentfiles Example", "examples/mainwindows/recentfiles", "recentfiles", 10, -1 "mainwindows/recentfiles Example", "examples/mainwindows/recentfiles", "recentfiles", 10, -1
@ -72,17 +76,20 @@
"painting/gradients Example", "examples/painting/gradients", "gradients", 0, -1 "painting/gradients Example", "examples/painting/gradients", "gradients", 0, -1
"painting/imagecomposition Example", "examples/painting/imagecomposition", "imagecomposition", 10, -1 "painting/imagecomposition Example", "examples/painting/imagecomposition", "imagecomposition", 10, -1
"painting/painterpaths Example", "examples/painting/painterpaths", "painterpaths", 10, -1 "painting/painterpaths Example", "examples/painting/painterpaths", "painterpaths", 10, -1
"painting/pathstroke Example", "examples/painting/pathstroke", "pathstroke", 0, -1
"painting/transformations Example", "examples/painting/transformations", "transformations", 0, -1 "painting/transformations Example", "examples/painting/transformations", "transformations", 0, -1
"qtconcurrent/imagescaling Example", "examples/qtconcurrent/imagescaling", "imagescaling", 10, -1 "qtconcurrent/imagescaling Example", "examples/qtconcurrent/imagescaling", "imagescaling", 10, -1
"richtext/calendar Example", "examples/richtext/calendar", "calendar", 0, -1 "richtext/calendar Example", "examples/richtext/calendar", "calendar", 0, -1
"richtext/orderform Example", "examples/richtext/orderform", "orderform", 10, -1 "richtext/orderform Example", "examples/richtext/orderform", "orderform", 10, -1
"richtext/syntaxhighlighter Example", "examples/richtext/syntaxhighlighter", "syntaxhighlighter", 0, -1 "richtext/syntaxhighlighter Example", "examples/richtext/syntaxhighlighter", "syntaxhighlighter", 0, -1
"richtext/textedit Example", "examples/richtext/textedit", "textedit", 0, -1
"richtext/textobject Example", "examples/richtext/textobject", "textobject", 10, -1 "richtext/textobject Example", "examples/richtext/textobject", "textobject", 10, -1
"sql/books Example", "examples/sql/books", "books", 0, -1 "sql/books Example", "examples/sql/books", "books", 0, -1
"statemachine/eventtransitions Example", "examples/statemachine/eventtransitions", "eventtransitions", 10, -1 "statemachine/eventtransitions Example", "examples/statemachine/eventtransitions", "eventtransitions", 10, -1
"statemachine/rogue Example", "examples/statemachine/rogue", "rogue", 10, -1 "statemachine/rogue Example", "examples/statemachine/rogue", "rogue", 10, -1
"statemachine/trafficlight Example", "examples/statemachine/trafficlight", "trafficlight", 0, -1 "statemachine/trafficlight Example", "examples/statemachine/trafficlight", "trafficlight", 0, -1
"statemachine/twowaybutton Example", "examples/statemachine/twowaybutton", "twowaybutton", 10, -1 "statemachine/twowaybutton Example", "examples/statemachine/twowaybutton", "twowaybutton", 10, -1
"tools/undo Example", "examples/tools/undo", "undo", 0, -1
"tutorials/addressbook/part7 Example", "examples/tutorials/addressbook/part7", "part7", 0, -1 "tutorials/addressbook/part7 Example", "examples/tutorials/addressbook/part7", "part7", 0, -1
"widgets/analogclock Example", "examples/widgets/analogclock", "analogclock", 6, -1 "widgets/analogclock Example", "examples/widgets/analogclock", "analogclock", 6, -1
"widgets/calculator Example", "examples/widgets/calculator", "calculator", 6, -1 "widgets/calculator Example", "examples/widgets/calculator", "calculator", 6, -1