blob: 881b56308f8d4b0de7a5a5604868146974eb42f2 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
/*!
\page create-your-first-applications.html
\title Create Your First Applications
\brief Creating Qt applications.
Learn the basics of Qt and Qt Quick development by following the tutorials
that illustrate how to use \l{\QC Documentation}{\QC} or
\l{Qt Design Studio Manual}{Qt Design Studio} to create simple applications
and build and run them on target platforms:
\table
\header
\li To Develop With
\li Tutorials
\li Examples
\row
\li Qt Quick
\li \list
\li \l{\QC: Tutorial: Qt Quick application}{\QC: Transitions}
\li \l{Getting Started Programming with Qt Quick}
{\QC: Alarms}
\li \l{Qt Design Studio: Tutorials}{Qt Design Studio: Log In UI}
\endlist
\li \l{Qt Quick Examples and Tutorials}
\row
\li Qt Widgets
\li \list
\li \l{\QC: Tutorial: Qt Widgets application}{Text Finder}
\li \l{Getting Started Programming with Qt Widgets}{Notepad}
\endlist
\li \l{Qt Widgets Examples}
\row
\li Python
\li \list
\li \l{Qt for Python Tutorials}
\li \l{\QC: Tutorial: Qt Quick and Python}
\li \l{\QC: Tutorial: Qt Widgets and Python}
\li \l{\QC: Tutorial: Qt Widgets UI and Python}
\endlist
\li \l{Qt for Python Examples}
\endtable
For a more thorough walkthrough of the different aspects of developing
applications with Qt 6, see the \l {Qt 6 QML Book}. It focuses on Qt Quick,
but also provides the information needed to use QML together with C++.
The following tutorials illustrate how to use \QC or Qt Design Studio
to develop simple applications for a particular platform:
\table
\header
\li To Develop For
\li Tutorials
\li Examples
\row
\li Mobile Devices
\li \l{\QC: Tutorial: Mobile application}{\QC: Accelbubble}
\li \l[Qt Examples And Tutorials]{Mobile}{Mobile Examples}
\row
\li Embedded Devices
\li \list
\li \l{Tutorial: Deploying Your First Project with Boot to Qt}
\li \l{Qt for Android Automotive Quick Starter Guide}
\endlist
\li \list
\li Examples in \l{Qt for Android Automotive}
\endlist
\row
\li MCUs
\li \l{Qt Design Studio: Washing Machine UI}
\li \l{Qt Quick Ultralite Examples}
\endtable
To view a list of all Qt examples, see \l {All Qt Examples}.
You can follow the learning paths and tutorials on
\l {https://www.qt.io/courses} {qt.io/courses} to learn more about how to
create Qt applications:
\list
\li \l
{https://www.qt.io/courses/create-your-first-application-with-qt?hsLang=en}
{Create Your First Application with Qt}
\li \l
{https://www.qt.io/courses/how-to-create-a-simple-qt-quick-application?hsLang=en}
{How to Create a Simple Qt Quick Application}
\endlist
If you'd rather develop with Microsoft Visual Studio, you can install
\l{Qt VS Tools} directly from Visual Studio.
\note Add your project build directory to the list of excluded directories
of any anti-virus application that runs on your system.
Now, we'd like to send you off on your journey to \l{Explore Qt}.
*/
|