Add \brief to the examples.

That is used by qdoc to generate brief descriptions for the example
manifests.

Change-Id: I142a6d3259f90d0c9990033b3c36e139062ac343
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Eike Ziller 2012-11-28 17:04:12 +01:00 committed by The Qt Project
parent a4c7340b73
commit 4727bb5991
135 changed files with 138 additions and 138 deletions

View File

@ -29,7 +29,7 @@
\example gui/analogclock
\title Analog Clock Window Example
The Analog Clock Window example shows how to draw the contents of
\brief The Analog Clock Window example shows how to draw the contents of
a custom window.
\image analogclock-window-example.png Screenshot of the Analog

View File

@ -29,7 +29,7 @@
\example gui/openglwindow
\title OpenGL Window Example
This example shows how to create a minimal QWindow based application
\brief This example shows how to create a minimal QWindow based application
for the purpose of using OpenGL.
\image openglwindow-example.png Screenshot of the OpenGLWindow example

View File

@ -29,7 +29,7 @@
\example gui/rasterwindow
\title Raster Window Example
This example shows how to create a minimal QWindow based
\brief This example shows how to create a minimal QWindow based
application using QPainter for rendering.

View File

@ -29,7 +29,7 @@
\example blockingfortuneclient
\title Blocking Fortune Client Example
The Blocking Fortune Client example shows how to create a client for a
\brief The Blocking Fortune Client example shows how to create a client for a
network service using QTcpSocket's synchronous API in a non-GUI thread.
\image blockingfortuneclient-example.png

View File

@ -29,7 +29,7 @@
\example broadcastreceiver
\title Broadcast Receiver Example
The Broadcast Receiver example shows how to receive information that is broadcasted
\brief The Broadcast Receiver example shows how to receive information that is broadcasted
over a local network.
\image broadcastreceiver-example.png

View File

@ -29,7 +29,7 @@
\example broadcastsender
\title Broadcast Sender Example
The Broadcast Sender example shows how to broadcast information to multiple clients
\brief The Broadcast Sender example shows how to broadcast information to multiple clients
on a local network.
\image broadcastsender-example.png

View File

@ -29,7 +29,7 @@
\example fortuneclient
\title Fortune Client Example
The Fortune Client example shows how to create a client for a simple
\brief The Fortune Client example shows how to create a client for a simple
network service using QTcpSocket. It is intended to be run alongside the
\l{fortuneserver}{Fortune Server} example or
the \l{threadedfortuneserver}{Threaded Fortune Server} example.

View File

@ -29,7 +29,7 @@
\example fortuneserver
\title Fortune Server Example
The Fortune Server example shows how to create a server for a simple
\brief The Fortune Server example shows how to create a server for a simple
network service. It is intended to be run alongside the
\l{fortuneclient}{Fortune Client} example or the
\l{blockingfortuneclient}{Blocking Fortune Client} example.

View File

@ -29,7 +29,7 @@
\example googlesuggest
\title Google Suggest Example
The Google Suggest example demonstrates how to use the QNetworkAccessManager
\brief The Google Suggest example demonstrates how to use the QNetworkAccessManager
class to obtain a list of suggestions from the Google search engine as the
user types into a QLineEdit.

View File

@ -29,7 +29,7 @@
\example http
\title HTTP Example
The HTTP example demonstrates a simple HTTP client that shows how to fetch files
\brief The HTTP example demonstrates a simple HTTP client that shows how to fetch files
specified by URLs from remote hosts.
\image http-example.png

View File

@ -29,7 +29,7 @@
\example loopback
\title Loopback Example
The Loopback example shows how to communicate between simple clients and servers on a local
\brief The Loopback example shows how to communicate between simple clients and servers on a local
host.
\image loopback-example.png

View File

@ -29,7 +29,7 @@
\example multicastreceiver
\title Multicast Receiver Example
The Multicast Receiever example shows how to receive information that is
\brief The Multicast Receiever example shows how to receive information that is
sent to a multicast group.
\image multicastreceiver-example.png

View File

@ -29,7 +29,7 @@
\example multicastsender
\title Multicast Sender Example
The Multicast Sender example shows how to send information to multiple
\brief The Multicast Sender example shows how to send information to multiple
clients in a multicast group.
\image multicastsender-example.png

View File

@ -29,7 +29,7 @@
\example network-chat
\title Network Chat Example
The Network Chat example demonstrates a stateful peer-to-peer Chat client
\brief The Network Chat example demonstrates a stateful peer-to-peer Chat client
that uses broadcasting with QUdpSocket and QNetworkInterface to discover
its peers.

View File

@ -29,7 +29,7 @@
\example securesocketclient
\title Secure Socket Client Example
The Secure Socket Client example shows how to use QSslSocket to
\brief The Secure Socket Client example shows how to use QSslSocket to
communicate over an encrypted (SSL) connection. It also demonstrates how
to deal with authenticity problems, and how to display security and
certificate information.

View File

@ -29,7 +29,7 @@
\example threadedfortuneserver
\title Threaded Fortune Server Example
The Threaded Fortune Server example shows how to create a server for a
\brief The Threaded Fortune Server example shows how to create a server for a
simple network service that uses threads to handle requests from different
clients. It is intended to be run alongside the Fortune Client example.

View File

@ -29,7 +29,7 @@
\example torrent
\title Torrent Example
The Torrent example is a functional BitTorrent client that
\brief The Torrent example is a functional BitTorrent client that
illustrates how to write a complex TCP/IP application using Qt.
\image torrent-example.png

View File

@ -29,7 +29,7 @@
\example 2dpainting
\title 2D Painting Example
The 2D Painting example shows how QPainter and QGLWidget can be used
\brief The 2D Painting example shows how QPainter and QGLWidget can be used
together to display accelerated 2D graphics on supported hardware.
\image 2dpainting-example.png

View File

@ -30,7 +30,7 @@
\group all-examples
\title Cube OpenGL ES 2.0 example
The Cube OpenGL ES 2.0 example shows how to write mouse rotateable
\brief The Cube OpenGL ES 2.0 example shows how to write mouse rotateable
textured 3D cube using OpenGL ES 2.0 with Qt. It shows how to handle
polygon geometries efficiently and how to write simple vertex and
fragment shader for programmable graphics pipeline. In addition it

View File

@ -29,7 +29,7 @@
\example framebufferobject2
\title Framebuffer Object 2 Example
The Framebuffer Object 2 example demonstrates how to use the
\brief The Framebuffer Object 2 example demonstrates how to use the
QGLFramebufferObject class to render into an off-screen buffer and
use the contents as a texture in a QGLWidget.

View File

@ -29,7 +29,7 @@
\example grabber
\title Grabber Example
The Grabber examples shows how to retrieve the contents of an OpenGL framebuffer.
\brief The Grabber examples shows how to retrieve the contents of an OpenGL framebuffer.
\image grabber-example.png
*/

View File

@ -29,7 +29,7 @@
\example hellogl
\title Hello GL Example
The Hello GL example demonstrates the basic use of the OpenGL-related classes
\brief The Hello GL example demonstrates the basic use of the OpenGL-related classes
provided with Qt.
\image hellogl-example.png

View File

@ -29,7 +29,7 @@
\example hellogl_es
\title Hello GL ES Example
The Hello GL ES example is the \l{Hello GL Example} ported to OpenGL ES.
\brief The Hello GL ES example is the \l{Hello GL Example} ported to OpenGL ES.
It also included some effects from the OpenGL \l{Overpainting Example}.
\image hellogl-es-example.png

View File

@ -29,7 +29,7 @@
\example overpainting
\title Overpainting Example
The Overpainting example shows how QPainter can be used
\brief The Overpainting example shows how QPainter can be used
to overpaint a scene rendered using OpenGL in a QGLWidget.
\image overpainting-example.png

View File

@ -29,7 +29,7 @@
\example pbuffers
\title Pixel Buffers Example
The Pixel Buffers example demonstrates how to use the
\brief The Pixel Buffers example demonstrates how to use the
QGLPixelBuffer class to render into an off-screen buffer and use
the contents as a dynamic texture in a QGLWidget.

View File

@ -29,7 +29,7 @@
\example pbuffers2
\title Pixel Buffers 2 Example
The Pixel Buffers 2 example demonstrates how to use the
\brief The Pixel Buffers 2 example demonstrates how to use the
QGLPixelBuffer class to render into an off-screen buffer and use
the contents as a dynamic texture in a QGLWidget.

View File

@ -29,7 +29,7 @@
\example samplebuffers
\title Sample Buffers Example
The Sample Buffers example demonstrates how to use and enable
\brief The Sample Buffers example demonstrates how to use and enable
sample buffers in a QGLWidget.
\image samplebuffers-example.png

View File

@ -29,7 +29,7 @@
\example textures
\title Textures Example
The Textures example demonstrates the use of Qt's image classes as textures in
\brief The Textures example demonstrates the use of Qt's image classes as textures in
applications that use both OpenGL and Qt to display graphics.
\image textures-example.png

View File

@ -29,7 +29,7 @@
\example cachedtable
\title Cached Table Example
The Cached Table example shows how a table view can be used to access a database,
\brief The Cached Table example shows how a table view can be used to access a database,
caching any changes to the data until the user explicitly submits them using a
push button.

View File

@ -29,7 +29,7 @@
\example drilldown
\title Drill Down Example
The Drill Down example shows how to read data from a database as
\brief The Drill Down example shows how to read data from a database as
well as submit changes, using the QSqlRelationalTableModel and
QDataWidgetMapper classes.

View File

@ -29,7 +29,7 @@
\example masterdetail
\title Master Detail Example
The Master Detail Example shows how to present data from different
\brief The Master Detail Example shows how to present data from different
data sources in the same application. The album titles, and the
corresponding artists and release dates, are kept in a
database, while each album's tracks are stored in an XML

View File

@ -29,7 +29,7 @@
\example querymodel
\title Query Model Example
The Query Model example shows how to make customized versions of
\brief The Query Model example shows how to make customized versions of
data obtained from a SQL query, using a model that encapsulates
the query and table views to display the results.

View File

@ -29,7 +29,7 @@
\example relationaltablemodel
\title Relational Table Model Example
The Relational Table Model example shows how to use table views with a relational
\brief The Relational Table Model example shows how to use table views with a relational
model to visualize the relations between items in a database.
\image relationaltablemodel-example.png

View File

@ -29,7 +29,7 @@
\example sqlbrowser
\title SQL Browser
The SQL Browser example shows how a data browser can be used to visualize
\brief The SQL Browser example shows how a data browser can be used to visualize
the results of SQL statements on a live database.
\image sqlbrowser-demo.png

View File

@ -29,7 +29,7 @@
\example sqlwidgetmapper
\title SQL Widget Mapper Example
The SQL Widget Mapper example shows how to use a map information from a
\brief The SQL Widget Mapper example shows how to use a map information from a
database to widgets on a form.
\image sql-widget-mapper.png

View File

@ -29,7 +29,7 @@
\example tablemodel
\title Table Model Example
The Table Model example shows how to use a specialized SQL table model with table
\brief The Table Model example shows how to use a specialized SQL table model with table
views to edit information in a database.
\image tablemodel-example.png

View File

@ -29,7 +29,7 @@
\example contiguouscache
\title Contiguous Cache Example
The Contiguous Cache example shows how to use QContiguousCache to manage memory usage for
\brief The Contiguous Cache example shows how to use QContiguousCache to manage memory usage for
very large models. In some environments memory is limited and, even when it
isn't, users still dislike an application using excessive memory.
Using QContiguousCache to manage a list, rather than loading

View File

@ -29,7 +29,7 @@
\example customcompleter
\title Custom Completer Example
The Custom Completer example shows how to provide string-completion
\brief The Custom Completer example shows how to provide string-completion
facilities for an input widget based on data provided by a model. The
completer pops up suggestions for possible words based on the first three
characters input by the user and the user's choice of word is inserted

View File

@ -29,7 +29,7 @@
\example tools/customtype
\title Custom Type Example
The Custom Type example shows how to integrate a custom type into Qt's
\brief The Custom Type example shows how to integrate a custom type into Qt's
meta-object system.
Contents:

View File

@ -29,7 +29,7 @@
\example uitools/textfinder
\title Text Finder Example
The Text Finder example demonstrates how to dynamically process forms
\brief The Text Finder example demonstrates how to dynamically process forms
using the QtUiTools module. Dynamic form processing enables a form to
be processed at run-time only by changing the UI file for the project.
The program allows the user to look up a particular word within the

View File

@ -29,7 +29,7 @@
\example draganddrop/dropsite
\title Drop Site Example
The example shows how to distinguish the various MIME formats available
\brief The example shows how to distinguish the various MIME formats available
in a drag and drop operation.
\image dropsite-example.png Screenshot of the Drop Site example

View File

@ -29,7 +29,7 @@
\group all-examples
\title Orientation Example
The example shows a simple way to use different UIs depending on the screen
\brief The example shows a simple way to use different UIs depending on the screen
orientation of a mobile device.
\image orientation-landscape.png The UI in landscape mode

View File

@ -29,7 +29,7 @@
\example itemviews/addressbook
\title Address Book Example
The address book example shows how to use proxy models to display
\brief The address book example shows how to use proxy models to display
different views onto data from a single model.
\image addressbook-example.png Screenshot of the Address Book example

View File

@ -29,7 +29,7 @@
\example painting/affine
\title Affine Transformations
In this example we show Qt's ability to perform affine transformations
\brief In this example we show Qt's ability to perform affine transformations
on painting operations.
\image affine-demo.png

View File

@ -29,7 +29,7 @@
\example animation/animatedtiles
\title Animated Tiles Example
The Animated Tiles example animates items in a graphics scene.
\brief The Animated Tiles example animates items in a graphics scene.
\image animatedtiles-example.png
*/

View File

@ -29,7 +29,7 @@
\example animation/appchooser
\title Application Chooser Example
The Application Chooser example shows how to use the Qt state
\brief The Application Chooser example shows how to use the Qt state
machine and the animation framework to select between
applications.

View File

@ -29,7 +29,7 @@
\example mainwindows/application
\title Application Example
The Application example shows how to implement a standard GUI
\brief The Application example shows how to implement a standard GUI
application with menus, toolbars, and a status bar. The example
itself is a simple text editor program built around QPlainTextEdit.

View File

@ -29,7 +29,7 @@
\group all-examples
\title Application Icon Example
The example shows how to add an application icon to a mobile application.
\brief The example shows how to add an application icon to a mobile application.
\image appicon_screenshot.png The icon on a Nokia XPressMusic 5800

View File

@ -29,7 +29,7 @@
\example painting/basicdrawing
\title Basic Drawing Example
The Basic Drawing example shows how to display basic graphics
\brief The Basic Drawing example shows how to display basic graphics
primitives in a variety of styles using the QPainter class.
QPainter performs low-level painting on widgets and other paint

View File

@ -29,7 +29,7 @@
\example graphicsview/basicgraphicslayouts
\title Basic Graphics Layouts Example
The Basic Graphics Layouts example shows how to use the layout classes
\brief The Basic Graphics Layouts example shows how to use the layout classes
in QGraphicsView: QGraphicsLinearLayout and QGraphicsGridLayout.
In addition to that it shows how to write your own custom layout item.

View File

@ -29,7 +29,7 @@
\example layouts/basiclayouts
\title Basic Layouts Example
The Basic Layouts example shows how to use the standard layout
\brief The Basic Layouts example shows how to use the standard layout
managers that are available in Qt: QBoxLayout, QGridLayout and
QFormLayout.

View File

@ -29,7 +29,7 @@
\example itemviews/basicsortfiltermodel
\title Basic Sort/Filter Model Example
The Basic Sort/Filter Model example illustrates how to use
\brief The Basic Sort/Filter Model example illustrates how to use
QSortFilterProxyModel to perform basic sorting and filtering.
\image basicsortfiltermodel-example.png Screenshot of the Basic Sort/Filter Model Example

View File

@ -29,7 +29,7 @@
\example layouts/borderlayout
\title Border Layout Example
The Border Layout example shows how to create a custom layout that arranges
\brief The Border Layout example shows how to create a custom layout that arranges
child widgets according to a simple set of rules.
\image borderlayout-example.png

View File

@ -29,7 +29,7 @@
\example graphicsview/boxes
\title Boxes
This demo shows Qt's ability to combine advanced OpenGL rendering with the
\brief This demo shows Qt's ability to combine advanced OpenGL rendering with the
the \l{Graphics View Framework}.
\image boxes-demo.png

View File

@ -29,7 +29,7 @@
\example richtext/calendar
\title Calendar Example
The Calendar example shows how to create rich text content and display it using
\brief The Calendar example shows how to create rich text content and display it using
a rich text editor.
\image calendar-example.png

View File

@ -29,7 +29,7 @@
\example itemviews/chart
\title Chart Example
The Chart example shows how to create a custom view for the model/view framework.
\brief The Chart example shows how to create a custom view for the model/view framework.
\image chart-example.png

View File

@ -29,7 +29,7 @@
\example graphicsview/chip
\title 40000 Chips
This demo shows how to visualize a huge scene with 40000 chip items
\brief This demo shows how to visualize a huge scene with 40000 chip items
using Graphics View. It also shows Graphics View's powerful navigation
and interaction features, allowing you to zoom and rotate each of four
views independently, and you can select and move items around the scene.

View File

@ -29,7 +29,7 @@
\example dialogs/classwizard
\title Class Wizard Example
The License Wizard example shows how to implement linear
\brief The License Wizard example shows how to implement linear
wizards using QWizard.
\image classwizard.png Screenshot of the Class Wizard example

View File

@ -29,7 +29,7 @@
\example itemviews/coloreditorfactory
\title Color Editor Factory Example
This example shows how to create an editor that can be used by
\brief This example shows how to create an editor that can be used by
a QItemDelegate.
\image coloreditorfactoryimage.png

View File

@ -29,7 +29,7 @@
\example itemviews/combowidgetmapper
\title Combo Widget Mapper Example
The Combo Widget Mapper example shows how to use a custom delegate to
\brief The Combo Widget Mapper example shows how to use a custom delegate to
map information from a model to specific widgets on a form.
\image combowidgetmapper-example.png

View File

@ -29,7 +29,7 @@
\example tools/completer
\title Completer Example
The Completer example shows how to provide string-completion facilities
\brief The Completer example shows how to provide string-completion facilities
for an input widget based on data provided by a model.
\image completer-example.png

View File

@ -29,7 +29,7 @@
\example painting/composition
\title Composition Modes
This demo shows some of the more advanced composition modes supported by Qt.
\brief This demo shows some of the more advanced composition modes supported by Qt.
\image composition-demo.png

View File

@ -29,7 +29,7 @@
\example painting/concentriccircles
\title Concentric Circles Example
The Concentric Circles example shows the improved rendering
\brief The Concentric Circles example shows the improved rendering
quality that can be obtained using floating point precision and
anti-aliasing when drawing custom widgets. The example also shows
how to do simple animations.

View File

@ -29,7 +29,7 @@
\example dialogs/configdialog
\title Config Dialog Example
The Config Dialog examples shows how a configuration dialog can be created by
\brief The Config Dialog examples shows how a configuration dialog can be created by
using an icon view with a stacked widget.
\image configdialog-example.png

View File

@ -29,7 +29,7 @@
\example itemviews/customsortfiltermodel
\title Custom Sort/Filter Model Example
The Custom Sort/Filter Model example illustrates how to subclass
\brief The Custom Sort/Filter Model example illustrates how to subclass
QSortFilterProxyModel to perform advanced sorting and filtering.
\image customsortfiltermodel-example.png Screenshot of the Custom Sort/Filter Model Example

View File

@ -29,7 +29,7 @@
\example painting/deform
\title Vector Deformation
This example shows how to use advanced vector techniques to draw text
\brief This example shows how to use advanced vector techniques to draw text
using a \c QPainterPath.
\image deform-demo.png

View File

@ -28,8 +28,8 @@
/*!
\example graphicsview/diagramscene
\title Diagram Scene Example
This example shows use of Qt's graphics framework.
\brief This example shows use of Qt's graphics framework.
\image diagramscene.png

View File

@ -29,7 +29,7 @@
\example itemviews/dirview
\title Dir View Example
The Dir View example shows a tree view onto the local filing system. It uses the
\brief The Dir View example shows a tree view onto the local filing system. It uses the
QDirModel class to provide file and directory information.
\image dirview-example.png

View File

@ -29,7 +29,7 @@
\example mainwindows/dockwidgets
\title Dock Widgets Example
The Dock Widgets example shows how to add dock windows to an
\brief The Dock Widgets example shows how to add dock windows to an
application. It also shows how to use Qt's rich text engine.
\image dockwidgets-example.png Screenshot of the Dock Widgets example

View File

@ -29,7 +29,7 @@
\example draganddrop/puzzle
\title Drag and Drop Puzzle Example
The Drag and Drop Puzzle example demonstrates a way of using the drag and drop system with
\brief The Drag and Drop Puzzle example demonstrates a way of using the drag and drop system with
item view widgets.
\image draganddroppuzzle-example.png

View File

@ -29,7 +29,7 @@
\example graphicsview/dragdroprobot
\title Drag and Drop Robot Example
The Drag and Drop Robot example shows how to implement Drag and Drop in a
\brief The Drag and Drop Robot example shows how to implement Drag and Drop in a
QGraphicsItem subclass, as well as how to animate items using Qt's
\l{Animation Framework}.

View File

@ -29,7 +29,7 @@
\example draganddrop/draggableicons
\title Draggable Icons Example
The Draggable Icons example shows how to drag and drop image data between widgets
\brief The Draggable Icons example shows how to drag and drop image data between widgets
in the same application, and between different applications.
\image draggableicons-example.png

View File

@ -29,7 +29,7 @@
\example draganddrop/draggabletext
\title Draggable Text Example
The Draggable Text example shows how to drag and drop textual data between widgets
\brief The Draggable Text example shows how to drag and drop textual data between widgets
in the same application, and between different applications.
\image draggabletext-example.png

View File

@ -29,6 +29,6 @@
\example layouts/dynamiclayouts
\title Dynamic Layouts Example
The Dynamic Layouts example shows how to move widgets around in
\brief The Dynamic Layouts example shows how to move widgets around in
existing layouts.
*/

View File

@ -29,7 +29,7 @@
\example animation/easing
\title Easing Curves Example
The Easing Curves example shows how to use easing curves to
\brief The Easing Curves example shows how to use easing curves to
control the speed of an animation.
\image easing-example.png

View File

@ -29,7 +29,7 @@
\example tools/echoplugin
\title Echo Plugin Example
This example shows how to create a Qt plugin.
\brief This example shows how to create a Qt plugin.
\image echopluginexample.png

View File

@ -29,7 +29,7 @@
\example itemviews/editabletreemodel
\title Editable Tree Model Example
This example shows how to implement a simple item-based tree model that can
\brief This example shows how to implement a simple item-based tree model that can
be used with other classes the model/view framework.
\image itemviews-editabletreemodel.png

View File

@ -29,7 +29,7 @@
\example graphicsview/elasticnodes
\title Elastic Nodes Example
The Elastic Nodes example shows how to implement edges between nodes in a
\brief The Elastic Nodes example shows how to implement edges between nodes in a
graph, with basic interaction. You can click to drag a node around, and
zoom in and out using the mouse wheel or the keyboard. Hitting the space
bar will randomize the nodes. The example is also resolution independent;

View File

@ -30,7 +30,7 @@
\group all-examples
\title Elided Label Example
This example creates a widget similar to QLabel, that elides the last
\brief This example creates a widget similar to QLabel, that elides the last
visible line, if the text is too long to fit the widget's geometry.
\image elidedlabel-example.png Elided Label example on XPressMusic 5800

View File

@ -29,7 +29,7 @@
\example graphicsview/embeddeddialogs
\title Embedded Dialogs
This example shows how to embed standard dialogs into
\brief This example shows how to embed standard dialogs into
Graphics View. It also shows how you can customize the
proxy class and add window shadows.

View File

@ -29,7 +29,7 @@
\example statemachine/eventtransitions
\title Event Transitions Example
The Event Transitions example shows how to use event transitions, a
\brief The Event Transitions example shows how to use event transitions, a
feature of \l{The State Machine Framework}.
\snippet statemachine/eventtransitions/main.cpp 0

View File

@ -29,7 +29,7 @@
\example dialogs/extension
\title Extension Example
The Extension example shows how to add an extension to a QDialog
\brief The Extension example shows how to add an extension to a QDialog
using the QAbstractButton::toggled() signal and the
QWidget::setVisible() slot.

View File

@ -29,7 +29,7 @@
\example statemachine/factorial
\title Factorial States Example
The Factorial States example shows how to use \l{The State Machine
\brief The Factorial States example shows how to use \l{The State Machine
Framework} to calculate the factorial of an integer.
The statechart for calculating the factorial looks as follows:

View File

@ -29,7 +29,7 @@
\example itemviews/fetchmore
\title Fetch More Example
The Fetch More example shows how two add items to an item view
\brief The Fetch More example shows how two add items to an item view
model on demand.
\image fetchmore-example.png

View File

@ -29,7 +29,7 @@
\example dialogs/findfiles
\title Find Files Example
The Find Files example shows how to use QProgressDialog to provide
\brief The Find Files example shows how to use QProgressDialog to provide
feedback on the progress of a slow operation. The example also
shows how to use QFileDialog to facilitate browsing, how to use
QTextStream's streaming operators to read a file, and how to use

View File

@ -29,7 +29,7 @@
\example layouts/flowlayout
\title Flow Layout Example
The Flow Layout example demonstrates a custom layout that arranges child
\brief The Flow Layout example demonstrates a custom layout that arranges child
widgets from left to right and top to bottom in a top-level widget.
\image flowlayout-example.png Screenshot of the Flow Layout example

View File

@ -29,7 +29,7 @@
\example painting/fontsampler
\title Font Sampler Example
The Font Sampler example shows how to preview and print multi-page documents.
\brief The Font Sampler example shows how to preview and print multi-page documents.
\image fontsampler-example.png
*/

View File

@ -29,7 +29,7 @@
\example itemviews/frozencolumn
\title Frozen Column Example
This example demonstrates how to freeze a column within a QTableView.
\brief This example demonstrates how to freeze a column within a QTableView.
\image frozencolumn-example.png "Screenshot of the example"

View File

@ -29,7 +29,7 @@
\example painting/gradients
\title Gradients
In this example we show the various types of gradients that can
\brief In this example we show the various types of gradients that can
be used in Qt.
\image gradients-demo.png

View File

@ -29,7 +29,7 @@
\example tools/i18n
\title I18N Example
The Internationalization (I18N) example demonstrates Qt's support for translated
\brief The Internationalization (I18N) example demonstrates Qt's support for translated
text. Developers can write the initial application text in one language, and
translations can be provided later without any modifications to the code.

View File

@ -29,7 +29,7 @@
\example painting/imagecomposition
\title Image Composition Example
The Image Composition example lets the user combine images
\brief The Image Composition example lets the user combine images
together using any composition mode supported by QPainter, described
in detail in \l{QPainter#Composition Modes}{Composition Modes}.

View File

@ -29,7 +29,7 @@
\example itemviews/interview
\title Interview
The Interview example explores the flexibility and scalability of the
\brief The Interview example explores the flexibility and scalability of the
model/view framework by presenting an infinitely deep data structure using a model
and three different types of view.

View File

@ -29,7 +29,7 @@
\example itemviews/puzzle
\title Item Views Puzzle Example
The Puzzle example shows how to enable drag and drop with a custom model
\brief The Puzzle example shows how to enable drag and drop with a custom model
to allow items to be transferred between a view and another widget.
\image itemviewspuzzle-example.png

View File

@ -29,7 +29,7 @@
\example dialogs/licensewizard
\title License Wizard Example
The License Wizard example shows how to implement complex wizards in
\brief The License Wizard example shows how to implement complex wizards in
Qt.
\image licensewizard-example.png Screenshot of the License Wizard example

View File

@ -29,7 +29,7 @@
\example mainwindows/mainwindow
\title Main Window
The Main Window example shows Qt's extensive support for tool bars,
\brief The Main Window example shows Qt's extensive support for tool bars,
dock windows, menus, and other standard application features.
\image mainwindow-demo.png

View File

@ -29,7 +29,7 @@
\example mainwindows/mdi
\title MDI Example
The MDI example shows how to implement a Multiple Document Interface using Qt's
\brief The MDI example shows how to implement a Multiple Document Interface using Qt's
QMdiArea class.
\image mdi-example.png

View File

@ -29,7 +29,7 @@
\example mainwindows/menus
\title Menus Example
The Menus example demonstrates how menus can be used in a main
\brief The Menus example demonstrates how menus can be used in a main
window application.
A menu widget can be either a pull-down menu in a menu bar or a

View File

@ -29,7 +29,7 @@
\example animation/moveblocks
\title Move Blocks Example
The Move Blocks example shows how to animate items in a
\brief The Move Blocks example shows how to animate items in a
QGraphicsScene using a QStateMachine with a custom transition.
\image moveblocks-example.png

View File

@ -29,7 +29,7 @@
\example richtext/orderform
\title Order Form Example
The Order Form example shows how to generate rich text documents by
\brief The Order Form example shows how to generate rich text documents by
combining a simple template with data input by the user in a dialog. Data
is extracted from a \c DetailsDialog object and displayed on a QTextEdit
with a QTextCursor, using various formats. Each form generated is added

View File

@ -29,7 +29,7 @@
\example graphicsview/padnavigator
\title Pad Navigator Example
The Pad Navigator Example shows how you can use Graphics View together with
\brief The Pad Navigator Example shows how you can use Graphics View together with
embedded widgets and Qt's \l{State Machine Framework} to create a simple
but useful, dynamic, animated user interface.

Some files were not shown because too many files have changed in this diff Show More