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 \example gui/analogclock
\title Analog Clock Window Example \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. a custom window.
\image analogclock-window-example.png Screenshot of the Analog \image analogclock-window-example.png Screenshot of the Analog

View File

@ -29,7 +29,7 @@
\example gui/openglwindow \example gui/openglwindow
\title OpenGL Window Example \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. for the purpose of using OpenGL.
\image openglwindow-example.png Screenshot of the OpenGLWindow example \image openglwindow-example.png Screenshot of the OpenGLWindow example

View File

@ -29,7 +29,7 @@
\example gui/rasterwindow \example gui/rasterwindow
\title Raster Window Example \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. application using QPainter for rendering.

View File

@ -29,7 +29,7 @@
\example blockingfortuneclient \example blockingfortuneclient
\title Blocking Fortune Client Example \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. network service using QTcpSocket's synchronous API in a non-GUI thread.
\image blockingfortuneclient-example.png \image blockingfortuneclient-example.png

View File

@ -29,7 +29,7 @@
\example broadcastreceiver \example broadcastreceiver
\title Broadcast Receiver Example \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. over a local network.
\image broadcastreceiver-example.png \image broadcastreceiver-example.png

View File

@ -29,7 +29,7 @@
\example broadcastsender \example broadcastsender
\title Broadcast Sender Example \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. on a local network.
\image broadcastsender-example.png \image broadcastsender-example.png

View File

@ -29,7 +29,7 @@
\example fortuneclient \example fortuneclient
\title Fortune Client Example \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 network service using QTcpSocket. It is intended to be run alongside the
\l{fortuneserver}{Fortune Server} example or \l{fortuneserver}{Fortune Server} example or
the \l{threadedfortuneserver}{Threaded Fortune Server} example. the \l{threadedfortuneserver}{Threaded Fortune Server} example.

View File

@ -29,7 +29,7 @@
\example fortuneserver \example fortuneserver
\title Fortune Server Example \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 network service. It is intended to be run alongside the
\l{fortuneclient}{Fortune Client} example or the \l{fortuneclient}{Fortune Client} example or the
\l{blockingfortuneclient}{Blocking Fortune Client} example. \l{blockingfortuneclient}{Blocking Fortune Client} example.

View File

@ -29,7 +29,7 @@
\example googlesuggest \example googlesuggest
\title Google Suggest Example \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 class to obtain a list of suggestions from the Google search engine as the
user types into a QLineEdit. user types into a QLineEdit.

View File

@ -29,7 +29,7 @@
\example http \example http
\title HTTP Example \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. specified by URLs from remote hosts.
\image http-example.png \image http-example.png

View File

@ -29,7 +29,7 @@
\example loopback \example loopback
\title Loopback Example \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. host.
\image loopback-example.png \image loopback-example.png

View File

@ -29,7 +29,7 @@
\example multicastreceiver \example multicastreceiver
\title Multicast Receiver Example \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. sent to a multicast group.
\image multicastreceiver-example.png \image multicastreceiver-example.png

View File

@ -29,7 +29,7 @@
\example multicastsender \example multicastsender
\title Multicast Sender Example \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. clients in a multicast group.
\image multicastsender-example.png \image multicastsender-example.png

View File

@ -29,7 +29,7 @@
\example network-chat \example network-chat
\title Network Chat Example \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 that uses broadcasting with QUdpSocket and QNetworkInterface to discover
its peers. its peers.

View File

@ -29,7 +29,7 @@
\example securesocketclient \example securesocketclient
\title Secure Socket Client Example \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 communicate over an encrypted (SSL) connection. It also demonstrates how
to deal with authenticity problems, and how to display security and to deal with authenticity problems, and how to display security and
certificate information. certificate information.

View File

@ -29,7 +29,7 @@
\example threadedfortuneserver \example threadedfortuneserver
\title Threaded Fortune Server Example \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 simple network service that uses threads to handle requests from different
clients. It is intended to be run alongside the Fortune Client example. clients. It is intended to be run alongside the Fortune Client example.

View File

@ -29,7 +29,7 @@
\example torrent \example torrent
\title Torrent Example \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. illustrates how to write a complex TCP/IP application using Qt.
\image torrent-example.png \image torrent-example.png

View File

@ -29,7 +29,7 @@
\example 2dpainting \example 2dpainting
\title 2D Painting Example \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. together to display accelerated 2D graphics on supported hardware.
\image 2dpainting-example.png \image 2dpainting-example.png

View File

@ -30,7 +30,7 @@
\group all-examples \group all-examples
\title Cube OpenGL ES 2.0 example \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 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 polygon geometries efficiently and how to write simple vertex and
fragment shader for programmable graphics pipeline. In addition it fragment shader for programmable graphics pipeline. In addition it

View File

@ -29,7 +29,7 @@
\example framebufferobject2 \example framebufferobject2
\title Framebuffer Object 2 Example \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 QGLFramebufferObject class to render into an off-screen buffer and
use the contents as a texture in a QGLWidget. use the contents as a texture in a QGLWidget.

View File

@ -29,7 +29,7 @@
\example grabber \example grabber
\title Grabber Example \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 \image grabber-example.png
*/ */

View File

@ -29,7 +29,7 @@
\example hellogl \example hellogl
\title Hello GL Example \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. provided with Qt.
\image hellogl-example.png \image hellogl-example.png

View File

@ -29,7 +29,7 @@
\example hellogl_es \example hellogl_es
\title Hello GL ES Example \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}. It also included some effects from the OpenGL \l{Overpainting Example}.
\image hellogl-es-example.png \image hellogl-es-example.png

View File

@ -29,7 +29,7 @@
\example overpainting \example overpainting
\title Overpainting Example \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. to overpaint a scene rendered using OpenGL in a QGLWidget.
\image overpainting-example.png \image overpainting-example.png

View File

@ -29,7 +29,7 @@
\example pbuffers \example pbuffers
\title Pixel Buffers Example \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 QGLPixelBuffer class to render into an off-screen buffer and use
the contents as a dynamic texture in a QGLWidget. the contents as a dynamic texture in a QGLWidget.

View File

@ -29,7 +29,7 @@
\example pbuffers2 \example pbuffers2
\title Pixel Buffers 2 Example \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 QGLPixelBuffer class to render into an off-screen buffer and use
the contents as a dynamic texture in a QGLWidget. the contents as a dynamic texture in a QGLWidget.

View File

@ -29,7 +29,7 @@
\example samplebuffers \example samplebuffers
\title Sample Buffers Example \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. sample buffers in a QGLWidget.
\image samplebuffers-example.png \image samplebuffers-example.png

View File

@ -29,7 +29,7 @@
\example textures \example textures
\title Textures Example \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. applications that use both OpenGL and Qt to display graphics.
\image textures-example.png \image textures-example.png

View File

@ -29,7 +29,7 @@
\example cachedtable \example cachedtable
\title Cached Table Example \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 caching any changes to the data until the user explicitly submits them using a
push button. push button.

View File

@ -29,7 +29,7 @@
\example drilldown \example drilldown
\title Drill Down Example \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 well as submit changes, using the QSqlRelationalTableModel and
QDataWidgetMapper classes. QDataWidgetMapper classes.

View File

@ -29,7 +29,7 @@
\example masterdetail \example masterdetail
\title Master Detail Example \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 data sources in the same application. The album titles, and the
corresponding artists and release dates, are kept in a corresponding artists and release dates, are kept in a
database, while each album's tracks are stored in an XML database, while each album's tracks are stored in an XML

View File

@ -29,7 +29,7 @@
\example querymodel \example querymodel
\title Query Model Example \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 data obtained from a SQL query, using a model that encapsulates
the query and table views to display the results. the query and table views to display the results.

View File

@ -29,7 +29,7 @@
\example relationaltablemodel \example relationaltablemodel
\title Relational Table Model Example \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. model to visualize the relations between items in a database.
\image relationaltablemodel-example.png \image relationaltablemodel-example.png

View File

@ -29,7 +29,7 @@
\example sqlbrowser \example sqlbrowser
\title SQL Browser \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. the results of SQL statements on a live database.
\image sqlbrowser-demo.png \image sqlbrowser-demo.png

View File

@ -29,7 +29,7 @@
\example sqlwidgetmapper \example sqlwidgetmapper
\title SQL Widget Mapper Example \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. database to widgets on a form.
\image sql-widget-mapper.png \image sql-widget-mapper.png

View File

@ -29,7 +29,7 @@
\example tablemodel \example tablemodel
\title Table Model Example \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. views to edit information in a database.
\image tablemodel-example.png \image tablemodel-example.png

View File

@ -29,7 +29,7 @@
\example contiguouscache \example contiguouscache
\title Contiguous Cache Example \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 very large models. In some environments memory is limited and, even when it
isn't, users still dislike an application using excessive memory. isn't, users still dislike an application using excessive memory.
Using QContiguousCache to manage a list, rather than loading Using QContiguousCache to manage a list, rather than loading

View File

@ -29,7 +29,7 @@
\example customcompleter \example customcompleter
\title Custom Completer Example \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 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 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 characters input by the user and the user's choice of word is inserted

View File

@ -29,7 +29,7 @@
\example tools/customtype \example tools/customtype
\title Custom Type Example \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. meta-object system.
Contents: Contents:

View File

@ -29,7 +29,7 @@
\example uitools/textfinder \example uitools/textfinder
\title Text Finder Example \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 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. 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 The program allows the user to look up a particular word within the

View File

@ -29,7 +29,7 @@
\example draganddrop/dropsite \example draganddrop/dropsite
\title Drop Site Example \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. in a drag and drop operation.
\image dropsite-example.png Screenshot of the Drop Site example \image dropsite-example.png Screenshot of the Drop Site example

View File

@ -29,7 +29,7 @@
\group all-examples \group all-examples
\title Orientation Example \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. orientation of a mobile device.
\image orientation-landscape.png The UI in landscape mode \image orientation-landscape.png The UI in landscape mode

View File

@ -29,7 +29,7 @@
\example itemviews/addressbook \example itemviews/addressbook
\title Address Book Example \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. different views onto data from a single model.
\image addressbook-example.png Screenshot of the Address Book example \image addressbook-example.png Screenshot of the Address Book example

View File

@ -29,7 +29,7 @@
\example painting/affine \example painting/affine
\title Affine Transformations \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. on painting operations.
\image affine-demo.png \image affine-demo.png

View File

@ -29,7 +29,7 @@
\example animation/animatedtiles \example animation/animatedtiles
\title Animated Tiles Example \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 \image animatedtiles-example.png
*/ */

View File

@ -29,7 +29,7 @@
\example animation/appchooser \example animation/appchooser
\title Application Chooser Example \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 machine and the animation framework to select between
applications. applications.

View File

@ -29,7 +29,7 @@
\example mainwindows/application \example mainwindows/application
\title Application Example \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 application with menus, toolbars, and a status bar. The example
itself is a simple text editor program built around QPlainTextEdit. itself is a simple text editor program built around QPlainTextEdit.

View File

@ -29,7 +29,7 @@
\group all-examples \group all-examples
\title Application Icon Example \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 \image appicon_screenshot.png The icon on a Nokia XPressMusic 5800

View File

@ -29,7 +29,7 @@
\example painting/basicdrawing \example painting/basicdrawing
\title Basic Drawing Example \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. primitives in a variety of styles using the QPainter class.
QPainter performs low-level painting on widgets and other paint QPainter performs low-level painting on widgets and other paint

View File

@ -29,7 +29,7 @@
\example graphicsview/basicgraphicslayouts \example graphicsview/basicgraphicslayouts
\title Basic Graphics Layouts Example \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 QGraphicsView: QGraphicsLinearLayout and QGraphicsGridLayout.
In addition to that it shows how to write your own custom layout item. In addition to that it shows how to write your own custom layout item.

View File

@ -29,7 +29,7 @@
\example layouts/basiclayouts \example layouts/basiclayouts
\title Basic Layouts Example \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 managers that are available in Qt: QBoxLayout, QGridLayout and
QFormLayout. QFormLayout.

View File

@ -29,7 +29,7 @@
\example itemviews/basicsortfiltermodel \example itemviews/basicsortfiltermodel
\title Basic Sort/Filter Model Example \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. QSortFilterProxyModel to perform basic sorting and filtering.
\image basicsortfiltermodel-example.png Screenshot of the Basic Sort/Filter Model Example \image basicsortfiltermodel-example.png Screenshot of the Basic Sort/Filter Model Example

View File

@ -29,7 +29,7 @@
\example layouts/borderlayout \example layouts/borderlayout
\title Border Layout Example \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. child widgets according to a simple set of rules.
\image borderlayout-example.png \image borderlayout-example.png

View File

@ -29,7 +29,7 @@
\example graphicsview/boxes \example graphicsview/boxes
\title 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}. the \l{Graphics View Framework}.
\image boxes-demo.png \image boxes-demo.png

View File

@ -29,7 +29,7 @@
\example richtext/calendar \example richtext/calendar
\title Calendar Example \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. a rich text editor.
\image calendar-example.png \image calendar-example.png

View File

@ -29,7 +29,7 @@
\example itemviews/chart \example itemviews/chart
\title Chart Example \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 \image chart-example.png

View File

@ -29,7 +29,7 @@
\example graphicsview/chip \example graphicsview/chip
\title 40000 Chips \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 using Graphics View. It also shows Graphics View's powerful navigation
and interaction features, allowing you to zoom and rotate each of four and interaction features, allowing you to zoom and rotate each of four
views independently, and you can select and move items around the scene. views independently, and you can select and move items around the scene.

View File

@ -29,7 +29,7 @@
\example dialogs/classwizard \example dialogs/classwizard
\title Class Wizard Example \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. wizards using QWizard.
\image classwizard.png Screenshot of the Class Wizard example \image classwizard.png Screenshot of the Class Wizard example

View File

@ -29,7 +29,7 @@
\example itemviews/coloreditorfactory \example itemviews/coloreditorfactory
\title Color Editor Factory Example \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. a QItemDelegate.
\image coloreditorfactoryimage.png \image coloreditorfactoryimage.png

View File

@ -29,7 +29,7 @@
\example itemviews/combowidgetmapper \example itemviews/combowidgetmapper
\title Combo Widget Mapper Example \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. map information from a model to specific widgets on a form.
\image combowidgetmapper-example.png \image combowidgetmapper-example.png

View File

@ -29,7 +29,7 @@
\example tools/completer \example tools/completer
\title Completer Example \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. for an input widget based on data provided by a model.
\image completer-example.png \image completer-example.png

View File

@ -29,7 +29,7 @@
\example painting/composition \example painting/composition
\title Composition Modes \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 \image composition-demo.png

View File

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

View File

@ -29,7 +29,7 @@
\example dialogs/configdialog \example dialogs/configdialog
\title Config Dialog Example \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. using an icon view with a stacked widget.
\image configdialog-example.png \image configdialog-example.png

View File

@ -29,7 +29,7 @@
\example itemviews/customsortfiltermodel \example itemviews/customsortfiltermodel
\title Custom Sort/Filter Model Example \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. QSortFilterProxyModel to perform advanced sorting and filtering.
\image customsortfiltermodel-example.png Screenshot of the Custom Sort/Filter Model Example \image customsortfiltermodel-example.png Screenshot of the Custom Sort/Filter Model Example

View File

@ -29,7 +29,7 @@
\example painting/deform \example painting/deform
\title Vector Deformation \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. using a \c QPainterPath.
\image deform-demo.png \image deform-demo.png

View File

@ -28,8 +28,8 @@
/*! /*!
\example graphicsview/diagramscene \example graphicsview/diagramscene
\title Diagram Scene Example \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 \image diagramscene.png

View File

@ -29,7 +29,7 @@
\example itemviews/dirview \example itemviews/dirview
\title Dir View Example \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. QDirModel class to provide file and directory information.
\image dirview-example.png \image dirview-example.png

View File

@ -29,7 +29,7 @@
\example mainwindows/dockwidgets \example mainwindows/dockwidgets
\title Dock Widgets Example \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. application. It also shows how to use Qt's rich text engine.
\image dockwidgets-example.png Screenshot of the Dock Widgets example \image dockwidgets-example.png Screenshot of the Dock Widgets example

View File

@ -29,7 +29,7 @@
\example draganddrop/puzzle \example draganddrop/puzzle
\title Drag and Drop Puzzle Example \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. item view widgets.
\image draganddroppuzzle-example.png \image draganddroppuzzle-example.png

View File

@ -29,7 +29,7 @@
\example graphicsview/dragdroprobot \example graphicsview/dragdroprobot
\title Drag and Drop Robot Example \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 QGraphicsItem subclass, as well as how to animate items using Qt's
\l{Animation Framework}. \l{Animation Framework}.

View File

@ -29,7 +29,7 @@
\example draganddrop/draggableicons \example draganddrop/draggableicons
\title Draggable Icons Example \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. in the same application, and between different applications.
\image draggableicons-example.png \image draggableicons-example.png

View File

@ -29,7 +29,7 @@
\example draganddrop/draggabletext \example draganddrop/draggabletext
\title Draggable Text Example \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. in the same application, and between different applications.
\image draggabletext-example.png \image draggabletext-example.png

View File

@ -29,6 +29,6 @@
\example layouts/dynamiclayouts \example layouts/dynamiclayouts
\title Dynamic Layouts Example \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. existing layouts.
*/ */

View File

@ -29,7 +29,7 @@
\example animation/easing \example animation/easing
\title Easing Curves Example \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. control the speed of an animation.
\image easing-example.png \image easing-example.png

View File

@ -29,7 +29,7 @@
\example tools/echoplugin \example tools/echoplugin
\title Echo Plugin Example \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 \image echopluginexample.png

View File

@ -29,7 +29,7 @@
\example itemviews/editabletreemodel \example itemviews/editabletreemodel
\title Editable Tree Model Example \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. be used with other classes the model/view framework.
\image itemviews-editabletreemodel.png \image itemviews-editabletreemodel.png

View File

@ -29,7 +29,7 @@
\example graphicsview/elasticnodes \example graphicsview/elasticnodes
\title Elastic Nodes Example \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 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 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; bar will randomize the nodes. The example is also resolution independent;

View File

@ -30,7 +30,7 @@
\group all-examples \group all-examples
\title Elided Label Example \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. visible line, if the text is too long to fit the widget's geometry.
\image elidedlabel-example.png Elided Label example on XPressMusic 5800 \image elidedlabel-example.png Elided Label example on XPressMusic 5800

View File

@ -29,7 +29,7 @@
\example graphicsview/embeddeddialogs \example graphicsview/embeddeddialogs
\title Embedded Dialogs \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 Graphics View. It also shows how you can customize the
proxy class and add window shadows. proxy class and add window shadows.

View File

@ -29,7 +29,7 @@
\example statemachine/eventtransitions \example statemachine/eventtransitions
\title Event Transitions Example \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}. feature of \l{The State Machine Framework}.
\snippet statemachine/eventtransitions/main.cpp 0 \snippet statemachine/eventtransitions/main.cpp 0

View File

@ -29,7 +29,7 @@
\example dialogs/extension \example dialogs/extension
\title Extension Example \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 using the QAbstractButton::toggled() signal and the
QWidget::setVisible() slot. QWidget::setVisible() slot.

View File

@ -29,7 +29,7 @@
\example statemachine/factorial \example statemachine/factorial
\title Factorial States Example \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. Framework} to calculate the factorial of an integer.
The statechart for calculating the factorial looks as follows: The statechart for calculating the factorial looks as follows:

View File

@ -29,7 +29,7 @@
\example itemviews/fetchmore \example itemviews/fetchmore
\title Fetch More Example \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. model on demand.
\image fetchmore-example.png \image fetchmore-example.png

View File

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

View File

@ -29,7 +29,7 @@
\example layouts/flowlayout \example layouts/flowlayout
\title Flow Layout Example \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. widgets from left to right and top to bottom in a top-level widget.
\image flowlayout-example.png Screenshot of the Flow Layout example \image flowlayout-example.png Screenshot of the Flow Layout example

View File

@ -29,7 +29,7 @@
\example painting/fontsampler \example painting/fontsampler
\title Font Sampler Example \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 \image fontsampler-example.png
*/ */

View File

@ -29,7 +29,7 @@
\example itemviews/frozencolumn \example itemviews/frozencolumn
\title Frozen Column Example \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" \image frozencolumn-example.png "Screenshot of the example"

View File

@ -29,7 +29,7 @@
\example painting/gradients \example painting/gradients
\title 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. be used in Qt.
\image gradients-demo.png \image gradients-demo.png

View File

@ -29,7 +29,7 @@
\example tools/i18n \example tools/i18n
\title I18N Example \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 text. Developers can write the initial application text in one language, and
translations can be provided later without any modifications to the code. translations can be provided later without any modifications to the code.

View File

@ -29,7 +29,7 @@
\example painting/imagecomposition \example painting/imagecomposition
\title Image Composition Example \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 together using any composition mode supported by QPainter, described
in detail in \l{QPainter#Composition Modes}{Composition Modes}. in detail in \l{QPainter#Composition Modes}{Composition Modes}.

View File

@ -29,7 +29,7 @@
\example itemviews/interview \example itemviews/interview
\title 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 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

@ -29,7 +29,7 @@
\example itemviews/puzzle \example itemviews/puzzle
\title Item Views Puzzle Example \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. to allow items to be transferred between a view and another widget.
\image itemviewspuzzle-example.png \image itemviewspuzzle-example.png

View File

@ -29,7 +29,7 @@
\example dialogs/licensewizard \example dialogs/licensewizard
\title License Wizard Example \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. Qt.
\image licensewizard-example.png Screenshot of the License Wizard example \image licensewizard-example.png Screenshot of the License Wizard example

View File

@ -29,7 +29,7 @@
\example mainwindows/mainwindow \example mainwindows/mainwindow
\title Main Window \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. dock windows, menus, and other standard application features.
\image mainwindow-demo.png \image mainwindow-demo.png

View File

@ -29,7 +29,7 @@
\example mainwindows/mdi \example mainwindows/mdi
\title MDI Example \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. QMdiArea class.
\image mdi-example.png \image mdi-example.png

View File

@ -29,7 +29,7 @@
\example mainwindows/menus \example mainwindows/menus
\title Menus Example \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. window application.
A menu widget can be either a pull-down menu in a menu bar or a 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 \example animation/moveblocks
\title Move Blocks Example \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. QGraphicsScene using a QStateMachine with a custom transition.
\image moveblocks-example.png \image moveblocks-example.png

View File

@ -29,7 +29,7 @@
\example richtext/orderform \example richtext/orderform
\title Order Form Example \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 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 is extracted from a \c DetailsDialog object and displayed on a QTextEdit
with a QTextCursor, using various formats. Each form generated is added with a QTextCursor, using various formats. Each form generated is added

View File

@ -29,7 +29,7 @@
\example graphicsview/padnavigator \example graphicsview/padnavigator
\title Pad Navigator Example \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 embedded widgets and Qt's \l{State Machine Framework} to create a simple
but useful, dynamic, animated user interface. but useful, dynamic, animated user interface.

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