Fix linking in painting, richtext and desktop examples

Change-Id: If08b2c3366610f74201ab6736f216f1a7d29b3c7
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
This commit is contained in:
Gunnar Sletta 2012-11-30 13:21:35 +01:00 committed by The Qt Project
parent d8fcfbc3c3
commit 9ea48de5f0
21 changed files with 101 additions and 3 deletions

View File

@ -28,6 +28,8 @@
/*!
\example painting/affine
\title Affine Transformations
\ingroup examples-painting
\brief Demonstrates how affine transformations in QPainter works.
\brief In this example we show Qt's ability to perform affine transformations
on painting operations.

View File

@ -28,6 +28,10 @@
/*!
\example painting/basicdrawing
\title Basic Drawing Example
\ingroup examples-painting
\brief The Basic Drawing example shows how to display basic
graphics primitives in a variety of styles using the QPainter
class.
\brief The Basic Drawing example shows how to display basic graphics
primitives in a variety of styles using the QPainter class.

View File

@ -28,6 +28,9 @@
/*!
\example richtext/calendar
\title Calendar Example
\ingroup examples-richtext
\brief The Calendar example shows how to create rich text content
and display it using a rich text editor.
\brief The Calendar example shows how to create rich text content and display it using
a rich text editor.

View File

@ -29,7 +29,7 @@
\title Calendar Widget Example
\example widgets/calendarwidget
\ingroup examples-widgets
\brief The Calendar Widget example shows use of \c QCalendarWidget.
\brief The Calendar Widget example shows use of QCalendarWidget.
\image calendarwidgetexample.png

View File

@ -28,6 +28,8 @@
/*!
\example painting/composition
\title Composition Modes
\ingroup examples-painting
\brief Demonstrates how Composition Modes work in QPainter.
\brief This demo shows some of the more advanced composition modes supported by Qt.

View File

@ -28,6 +28,8 @@
/*!
\example painting/concentriccircles
\title Concentric Circles Example
\ingroup examples-painting
\brief Demonstrates the improved quality that antialiasing and floating point precision gives.
\brief The Concentric Circles example shows the improved rendering
quality that can be obtained using floating point precision and

View File

@ -28,6 +28,8 @@
/*!
\example painting/deform
\title Vector Deformation
\ingroup examples-painting
\brief Demonstrates how to manipulate the elements of a QPainterPath.
\brief This example shows how to use advanced vector techniques to draw text
using a \c QPainterPath.

View File

@ -28,8 +28,10 @@
/*!
\example painting/fontsampler
\title Font Sampler Example
\ingroup examples-painting
\brief The Font Sampler example shows how to preview and print multi-page documents.
The Font Sampler example shows how to preview and print multi-page documents.
\image fontsampler-example.png
*/

View File

@ -28,6 +28,8 @@
/*!
\example painting/gradients
\title Gradients
\ingroup examples-painting
\brief Shows how gradients can be used with QPainter.
\brief In this example we show the various types of gradients that can
be used in Qt.

View File

@ -28,6 +28,8 @@
/*!
\example painting/imagecomposition
\title Image Composition Example
\ingroup examples-painting
\brief Shows how composition modes work in QPainter.
\brief The Image Composition example lets the user combine images
together using any composition mode supported by QPainter, described

View File

@ -28,6 +28,10 @@
/*!
\example richtext/orderform
\title Order Form Example
\ingroup examples-richtext
\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.
\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

View File

@ -28,6 +28,9 @@
/*!
\example painting/painterpaths
\title Painter Paths Example
\ingroup examples-painting
\brief The Painter Paths example shows how painter paths can be
used to beuild complex shapes for rendering.
\brief The Painter Paths example shows how painter paths can be used to
build complex shapes for rendering.

View File

@ -28,6 +28,9 @@
/*!
\example painting/pathstroke
\title Path Stroking
\ingroup examples-painting
\brief The Path Stroking example shows various types of pens that
can be used with QPainter.
\brief In this example we show some of the various types of pens that can be
used in Qt.

View File

@ -28,6 +28,9 @@
/*!
\example desktop/screenshot
\title Screenshot Example
\ingroup examples-desktop
\brief The Screenshot example shows how to take a screenshot of the
desktop.
\brief The Screenshot example shows how to take a screenshot of the
desktop using QApplication and QDesktopWidget. It also shows how

View File

@ -28,6 +28,9 @@
/*!
\example richtext/syntaxhighlighter
\title Syntax Highlighter Example
\group examples-richtext
\brief The Syntax Highligher example shows how to perform
simple syntax highlighing.
\brief The Syntax Highlighter example shows how to perform simple syntax
highlighting by subclassing the QSyntaxHighlighter class.

View File

@ -28,6 +28,9 @@
/*!
\example richtext/textedit
\title Text Edit
\ingroup examples-richtext
\brief The Text Edit example shows Qt's rich text editing facilities
in action.
\brief The Text Edit example shows Qt's rich text editing facilities in action,
providing an example document for you to experiment with.

View File

@ -28,6 +28,9 @@
/*!
\example painting/transformations
\title Transformations Example
\ingroup examples-painting
\brief The Transformations example shows how transformations
influence the way that QPainter renders graphics primitives.
\brief The Transformations example shows how transformations influence
the way that QPainter renders graphics primitives. In particular

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -46,3 +46,58 @@
\annotatedlist examples-widgets
*/
/*!
\page examples-painting.html
\ingroup all-examples
\title Painting Examples
\brief How to use the Qt painting system.
\group examples-painting
\image painting-examples.png
Qt's painting system is able to render vector graphics, images, and outline
font-based text with sub-pixel accuracy accuracy using anti-aliasing to
improve rendering quality.
These examples show the most common techniques that are used when painting
with Qt, from basic concepts such as drawing simple primitives to the use of
transformations.
\annotatedlist{painting-examples}
*/
/*!
\page examples-richtext.html
\ingroup all-examples
\title Rich Text Examples
\brief Using the document-oriented rich text engine.
\group examples-richtext
\image richtext-examples.png
Qt provides powerful document-oriented rich text engine that supports Unicode
and right-to-left scripts. Documents can be manipulated using a cursor-based
API, and their contents can be imported and exported as both HTML and in a
custom XML format.
*/
/*!
\page examples-desktop.html
\ingroup all-examples
\title Desktop Examples
\brief Integrating your Qt application with your favorite desktop.
\group examples-desktop
\image desktop-examples.png
Qt provides features to enable applications to integrate with the user's
preferred desktop environment.
Features such as system tray icons, access to the desktop widget, and
support for desktop services can be used to improve the appearance of
applications and take advantage of underlying desktop facilities.
*/