summaryrefslogtreecommitdiff
path: root/doc/src/qtquick/creator-only/qtquick-creating.qdoc
blob: d37992ed2ee227a43e0014bdc297fdd2478a438c (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/****************************************************************************
**
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Creator documentation.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
**
****************************************************************************/

// **********************************************************************
// NOTE: the sections are not ordered by their logical order to avoid
// reshuffling the file each time the index order changes (i.e., often).
// Run the fixnavi.pl script to adjust the links to the index order.
// **********************************************************************

/*!

    \contentspage index.html
    \previouspage creator-visual-editor.html
    \page quick-projects.html
    \nextpage creator-using-qt-quick-designer.html

    \title Creating Qt Quick Projects

    \image qmldesigner-new-project.png "New File or Project dialog"

    When you create a new Qt Quick project from scratch, you have the following
    options:

    \list

        \li \uicontrol {Qt Quick Application - Empty} creates a Qt Quick 2
            application project that can contain both QML and C++ code. You can
            build the application and deploy it to desktop, embedded, and mobile
            target platforms.

        \li \uicontrol {Qt Quick Application - Scroll} uses the
            \l{http://doc.qt.io/qt-5/qml-qtquick-controls2-scrollview.html}
            {ScrollView} type to implement a scrollable list view
            (requires Qt 5.9 or later).

        \li \uicontrol {Qt Quick Application - Stack} uses the
            \l{http://doc.qt.io/qt-5/qml-qtquick-controls2-stackview.html}
            {StackView} type to implement a set of pages with a stack-based
            navigation model (requires Qt 5.7 or later).

        \li \uicontrol {Qt Quick Application - Swipe} uses the
            \l{http://doc.qt.io/qt-5/qml-qtquick-controls2-swipeview.html}
            {SwipeWiew} type to implement a set of pages with a swipe-based
            navigation model (requires Qt 5.7 or later).

        \li \uicontrol {Qt Quick UI Prototype} (in the \uicontrol {Other Project}
            category) creates a \l{Creating Qt Quick UI Projects}
            {Qt Quick UI project} with a single QML file that
            contains the main view. You can review Qt Quick 2 UI projects in the
            \l{Previewing QML Files}{QML Scene preview tool}. You do not need to
            build them, because they do not contain any C++ code.
            Use this only if you are prototyping. You cannot create a full application
            with this.

            Qt Quick UI projects cannot be deployed to embedded or mobile
            target platforms. For those platforms, create a Qt Quick application
            instead.

        \li \uicontrol {Qt Quick 2 Extension Plugin} (in the \uicontrol Library category)
            create C++ plugins that make it possible to offer extensions that
            can be loaded dynamically into Qt Quick 2 applications.

    \endlist

    \note The SDK for a particular target platform might install additional
    templates for that platform. For example, the QNX templates are installed
    as part of the QNX SDK.

    \QC creates the necessary boilerplate files. Some of the files are
    specific to a particular target platform.

    \section1 Creating Empty Qt Quick Applications

    \list 1

        \li Select \uicontrol File > \uicontrol {New File or Project} >
            \uicontrol Application > \uicontrol {Qt Quick Application - Empty} >
            \uicontrol Choose.

        \li In the \uicontrol Name field, enter a name for the application.

        \li In the \uicontrol {Create in} field, enter the path for the project
            files, and then select \uicontrol Next (or \uicontrol Continue on
            \macos).

        \li In the \uicontrol {Build system} field, select the build system to
            use for building and running the project: \l qmake,
            \l {Setting Up CMake}{CMake}, or \l {Setting Up Qbs}{Qbs}.

        \li Select \uicontrol Next.

        \li Select the Qt version to
            develop with in the \uicontrol {Minimal required Qt version} field.
            The Qt version determines the Qt Quick imports that are used in the
            QML files.

        \li Select the \uicontrol {Use Qt Virtual Keyboard} check box to add
            support for \l{http://doc.qt.io/qt-5/qtvirtualkeyboard-index.html}
            {Qt Virtual Keyboard} to the application.

            \note If you have not installed the Qt Virtual Keyboard module when
            you installed Qt, an error message will appear when you try to open
            the \e main.qml in the \uicontrol {Form Editor} in the Design mode.
            You can use the \l {Installing Qt}{Qt Maintenance Tool} to install
            Qt Virtual Keyboard.

        \li Select \uicontrol Next.

        \li In the \uicontrol Language field, select a language that you plan
            to \l {Using Qt Linguist}{translate} the application to. You can
            add other languages later by editing the project file.

        \li In the \uicontrol {Translation file} field, you can edit the
            name for the translation source file that will be generated
            for the selected language.

        \li Select \uicontrol Next.

        \li Select \l{glossary-buildandrun-kit}{kits} for running and building
            your project, and then click \uicontrol Next.

            \note Kits are listed if they have been specified in
            \uicontrol Tools > \uicontrol Options > \uicontrol Kits.

        \li Review the project settings, and click \uicontrol Finish (on Windows
            and Linux) or \uicontrol Done (on \macos) to create the project.

    \endlist

    \QC generates a QML file, \e main.qml, that you can modify in the Design
    mode.

    \section1 Creating Qt Quick Controls Applications

    \list 1

        \li Select \uicontrol File > \uicontrol {New File or Project} >
            \uicontrol Application > \uicontrol {Qt Quick Application - Scroll},
            \uicontrol {Qt Quick Application - Stack}, or
            \uicontrol {Qt Quick Application - Swipe} > \uicontrol Choose.

        \li In the \uicontrol Name field, enter a name for the application.

        \li In the \uicontrol {Create in} field, enter the path for the project
            files, and then select \uicontrol Next (or \uicontrol Continue on
            \macos).

        \li In the \uicontrol {Build system} field, select the build system to
            use for building and running the project: \l qmake,
            \l {Setting Up CMake}{CMake}, or \l {Setting Up Qbs}{Qbs}.

        \li In the \uicontrol {Qt Quick Controls Style} field, select one of
            the predefined \l{Styling Qt Quick Controls 2}{UI styles} to use,
            and then select \uicontrol Next.

        \li Select the \uicontrol {Use Qt Virtual Keyboard} check box to add
            support for \l{http://doc.qt.io/qt-5/qtvirtualkeyboard-index.html}
            {Qt Virtual Keyboard} to the application.

        \li Select \l{glossary-buildandrun-kit}{kits} for the platforms that
            you want to build the application for. To build applications for
            mobile devices, select kits for Android ARM and iPhone OS, and
            click \uicontrol{Next}.

            \note Kits are listed if they have been specified in \uicontrol
            Tools > \uicontrol Options > \uicontrol Kits (on Windows and Linux)
            or in \uicontrol {\QC} > \uicontrol Preferences >
            \uicontrol Kits (on \macos).

        \li Select \uicontrol Next.

        \li Review the project settings, and click \uicontrol{Finish} (or
            \uicontrol Done on \macos).

    \endlist

    For the Scroll application, \QC creates a QML file, \e main.qml, that you
    can modify in the Design mode.

    For the Stack and Swipe applications, \QC generates two UI files,
    \e Page1Form.ui.qml and \e Page2Form.ui.qml, that you can modify in the
    \uicontrol {Form Editor} and a QML file, \e main.qml, that you can
    modify in the \uicontrol {Text Editor} to add the application logic.

    \section1 Creating Qt Quick UI Projects

    Qt Quick UI projects are useful for testing or prototyping user interfaces,
    or for setting up a separate project just for QML editing, for example. You
    cannot use them for application development, because they do not contain:

    \list
        \li C++ code
        \li Resource files (.qrc)
        \li Code needed for deploying applications to \l{glossary-device}
            {devices}
    \endlist

    To create a Qt Quick UI project:

    \list 1

        \li Select \uicontrol File > \uicontrol {New File or Project} >
            \uicontrol {Other Project} > \uicontrol {Qt Quick UI Prototype} >
            \uicontrol Choose.

        \li In the \uicontrol {Minimal required Qt version} field, select the Qt
            version to develop with. The Qt version determines the Qt Quick
            imports that are used in the QML files.

            You can add imports later to combine Qt Quick basic types with
            Qt Quick Controls, Qt Quick Dialogs, and Qt Quick Layouts (available
            since Qt 5.1).

        \li Select the \uicontrol {Use Qt Virtual Keyboard} check box to add
            support for \l{http://doc.qt.io/qt-5/qtvirtualkeyboard-index.html}
            {Qt Virtual Keyboard} to the application.

        \li Select \uicontrol Next (or \uicontrol Continue on \macos).

        \li Review the project settings, and click \uicontrol Finish (on Windows
            and Linux) or \uicontrol Done (on \macos) to create the project.

    \endlist

    \QC creates the following files:

    \list

        \li .qmlproject project file defines that all QML, JavaScript, and image
            files in the project folder belong to the project. Therefore, you do
            not need to individually list all the files in the project.

        \li .qml file defines an UI item, such as a component or the
            whole application UI.

        \li ui.qml file defines a form for the application UI. This file is
            created if you selected the \uicontrol {With .ui.qml file} check
            box.

    \endlist

    To use JavaScript and image files in the application, copy them to the
    project folder.

*/