1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | /*!
|
---|
43 | \page examples.html
|
---|
44 | \title Qt Examples
|
---|
45 | \brief Information about the example programs provided with Qt.
|
---|
46 | \ingroup howto
|
---|
47 |
|
---|
48 | This is the list of examples in Qt's \c examples directory. The
|
---|
49 | examples demonstrate Qt features in small, self-contained
|
---|
50 | programs. They are not all designed to be impressive when you run
|
---|
51 | them, but their source code is carefully written to show good Qt
|
---|
52 | programming practices. You can launch any of these programs from the
|
---|
53 | \l{Examples and Demos Launcher} application.
|
---|
54 |
|
---|
55 | If you are new to Qt, you should probably start by going through
|
---|
56 | the \l{Tutorials} before you have a look at the
|
---|
57 | \l{mainwindows/application}{Application} example.
|
---|
58 |
|
---|
59 | In addition to the examples and the tutorial, Qt includes a
|
---|
60 | \l{Qt Demonstrations}{selection of demos} that deliberately show off
|
---|
61 | Qt's features. You might want to look at these as well.
|
---|
62 |
|
---|
63 | One more valuable source for examples and explanations of Qt
|
---|
64 | features is the archive of the \l {Qt Quarterly}.
|
---|
65 |
|
---|
66 | In the list below, examples marked with an asterisk (*) are fully
|
---|
67 | documented. Eventually, all the examples will be fully documented,
|
---|
68 | but sometimes we include an example before we have time to write
|
---|
69 | about it, because someone might need it right now.
|
---|
70 |
|
---|
71 | Categories:
|
---|
72 |
|
---|
73 | \tableofcontents
|
---|
74 |
|
---|
75 | \section1 ActiveQt
|
---|
76 |
|
---|
77 | \list
|
---|
78 | \o \l{activeqt/comapp}{COM App}\raisedaster
|
---|
79 | \o \l{Dot Net Example (ActiveQt)}{Dot Net}\raisedaster
|
---|
80 | \o \l{activeqt/hierarchy}{Hierarchy}\raisedaster
|
---|
81 | \o \l{activeqt/menus}{Menus}\raisedaster
|
---|
82 | \o \l{activeqt/multiple}{Multiple}\raisedaster
|
---|
83 | \o \l{activeqt/opengl}{OpenGL}\raisedaster
|
---|
84 | \o \l{activeqt/qutlook}{Qutlook}\raisedaster
|
---|
85 | \o \l{activeqt/simple}{Simple}\raisedaster
|
---|
86 | \o \l{activeqt/webbrowser}{Web Browser}\raisedaster
|
---|
87 | \o \l{activeqt/wrapper}{Wrapper}\raisedaster
|
---|
88 | \endlist
|
---|
89 |
|
---|
90 | \section1 Concurrent Programming
|
---|
91 |
|
---|
92 | \list
|
---|
93 | \o \l{qtconcurrent/imagescaling}{QtConcurrent Asynchronous Image Scaling}
|
---|
94 | \o \l{qtconcurrent/map}{QtConcurrent Map}
|
---|
95 | \o \l{qtconcurrent/progressdialog}{QtConcurrent Progress Dialog}
|
---|
96 | \o \l{qtconcurrent/runfunction}{QtConcurrent Run Function}
|
---|
97 | \o \l{qtconcurrent/wordcount}{QtConcurrent Word Count}
|
---|
98 | \endlist
|
---|
99 |
|
---|
100 | \section1 D-Bus
|
---|
101 | \list
|
---|
102 | \o \l{dbus/dbus-chat}{Chat}
|
---|
103 | \o \l{dbus/complexpingpong}{Complex Ping Pong}
|
---|
104 | \o \l{dbus/listnames}{List Names}
|
---|
105 | \o \l{dbus/pingpong}{Ping Pong}
|
---|
106 | \o \l{dbus/remotecontrolledcar}{Remote Controlled Car}
|
---|
107 | \endlist
|
---|
108 |
|
---|
|
---|