1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:FDL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in a
|
---|
14 | ** written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Free Documentation License
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Free
|
---|
18 | ** Documentation License version 1.3 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file included in the packaging of this
|
---|
20 | ** file.
|
---|
21 | **
|
---|
22 | ** If you have questions regarding the use of this file, please contact
|
---|
23 | ** Nokia at [email protected].
|
---|
24 | ** $QT_END_LICENSE$
|
---|
25 | **
|
---|
26 | ****************************************************************************/
|
---|
27 |
|
---|
28 | /*!
|
---|
29 | \page tutorials.html
|
---|
30 | \title Tutorials
|
---|
31 |
|
---|
32 | \contentspage How to Learn Qt
|
---|
33 | \nextpage Qt Examples
|
---|
34 |
|
---|
35 | \brief Tutorials, guides and overviews to help you learn Qt.
|
---|
36 |
|
---|
37 | \nextpage Qt Examples
|
---|
38 |
|
---|
39 | A collection of tutorials and "walkthrough" guides are provided with Qt to
|
---|
40 | help new users get started with Qt development. These documents cover a
|
---|
41 | range of topics, from basic use of widgets to step-by-step tutorials that
|
---|
42 | show how an application is put together.
|
---|
43 |
|
---|
44 | \table
|
---|
45 | \row
|
---|
46 | \o{2,1} \l{Widgets Tutorial}{\bold Widgets}
|
---|
47 | \o{2,1} \l{Address Book Tutorial}{\bold {Address Book}}
|
---|
48 | \row
|
---|
49 | \o \image widget-examples.png Widgets
|
---|
50 | \o
|
---|
51 | A beginner's guide to getting started with widgets and layouts to create
|
---|
52 | GUI applications.
|
---|
53 |
|
---|
54 | \o \image addressbook-tutorial.png AddressBook
|
---|
55 | \o
|
---|
56 | A seven part guide to creating a fully-functioning address book
|
---|
57 | application. This tutorial is also available with
|
---|
58 | \l{Tutoriel "Carnet d'adresses"}{French explanation}.
|
---|
59 |
|
---|
60 | \row
|
---|
61 | \o{2,1} \l{A Quick Start to Qt Designer}{\bold{Qt Designer}}
|
---|
62 | \o{2,1} \l{Qt Linguist Manual: Programmers#Tutorials}{\bold {Qt Linguist}}
|
---|
63 | \row
|
---|
64 | \o \image designer-examples.png QtDesigner
|
---|
65 | \o
|
---|
66 | A quick guide through \QD showing the basic steps to create a
|
---|
67 | form with this interactive tool.
|
---|
68 |
|
---|
69 | \o \image linguist-examples.png QtLinguist
|
---|
70 | \o
|
---|
71 | A guided tour through the translations process, explaining the
|
---|
72 | tools provided for developers, translators and release managers.
|
---|
73 |
|
---|
74 |
|
---|
75 | \row
|
---|
76 | \o{2,1} \l{modelview.html}{\bold{ModelView}}
|
---|
77 | \o{2,1}
|
---|
78 |
|
---|
79 | \row
|
---|
80 | \o \image treeview_sml.png ModelView
|
---|
81 | \o This tutorial gives an introduction to ModelView programming using the Qt cross-platform framework
|
---|
82 |
|
---|
83 | \o
|
---|
84 | \o
|
---|
85 |
|
---|
86 | \row
|
---|
87 | \o{2,1} \l{QML Tutorial}{\bold QML Tutorial}
|
---|
88 | \o{2,1} \l{QML Advanced Tutorial}{\bold SameGame}
|
---|
89 | \row
|
---|
90 | \o{2,1}
|
---|
91 | This tutorial provides a very basic introduction to QML.
|
---|
92 | \o \image qml-samegame-demo-small.png Samegame
|
---|
93 | \o
|
---|
94 | This tutorial walks through creating a complete application with QML,
|
---|
95 | in this case a simple game. It is recommended that you complete the basic QML
|
---|
96 | tutorial first.
|
---|
97 |
|
---|
98 | \row
|
---|
99 | \o{2,1} \l{QTestLib Tutorial}{\bold QTestLib}
|
---|
100 | \o{2,1} \l{qmake Tutorial}{\bold qmake}
|
---|
101 | \row
|
---|
102 | \o{2,1}
|
---|
103 | This tutorial gives a short introduction to how to use some of the
|
---|
104 | features of Qt's unit-testing framework, QTestLib. It is divided into
|
---|
105 | four chapters.
|
---|
106 |
|
---|
107 | \o{2,1}
|
---|
108 | This tutorial teaches you how to use \c qmake. We recommend that
|
---|
109 | you read the \l{qmake Manual}{qmake user guide} after completing
|
---|
110 | this tutorial.
|
---|
111 |
|
---|
112 | \endtable
|
---|
113 | */
|
---|