blob: e65808f42ca33989f0dbfcb04444a0569c455527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*!
\page qmlexamples.html
\target qmlexamples
\title QML Examples
A viewer application is included that allows you to quickly explore many of the
examples. It has some useful options, revealed by:
\code
bin/duiviewer -help
\endcode
There are several illustrative XML examples available. From your build
directory,
\code
bin/duiviewer $QT_SOURCE_DIR/examples/declarative/mediabrowser/mediabrowser.qml
\endcode
Many other simple examples can be found under the \c examples/declarative sub
directory. Some can be run directly using the viewer like those above, and
others require you to build and run an executable.
More sophisticated demos of large applications can be found under the \c demos/declarative
sub directory. These are intended to show more integrated functionality rather than
to be instructive on specific elements.
Finally, check out the \l {tutorial} to learn a little more about writing your
own QML-based applications.
\note When running applications that only use the Fluid UI atoms under the
software rasterizer, a simple canvas backend is used by default. To use
Graphics View instead, set \c QML_USE_GRAPHICSVIEW=1.
*/
|