aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/doc/src/qtquickcontrols-styles.qdoc
blob: 037ca15081e8a27e336250cbc1f29325634a43c3 (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

/*!
    \page qtquickcontrols-styles.html
    \title Styling Qt Quick Controls

    \section1 Available Styles

    Qt Quick Controls comes with a selection of styles.

    \section2 Basic Style

    \image qtquickcontrols-basic.png

    The \l {Basic Style} is a simple and light-weight all-round style that offers
    the maximum performance for Qt Quick Controls.

    \section2 Fusion Style

    \include style-screenshots.qdocinc {file} {Fusion} {fusion}

    The \l {Fusion Style} is a platform-agnostic style that offers a desktop-oriented
    look and feel for Qt Quick Controls.

    \section2 Imagine Style

    \image qtquickcontrols-imagine.png

    The \l {Imagine Style} is based on image assets. The style comes with a default
    set of images which can easily be changed by providing a directory
    with images using a predefined naming convention.

    \section2 macOS Style

    \include style-screenshots.qdocinc {file} {macOS} {macos}

    The \l {macOS Style} is a native-looking style for macOS.
    \note this style is only available for applications running on macOS.

    \section2 iOS Style

    \include style-screenshots.qdocinc {file} {iOS} {ios}

    The \l {iOS Style} is a native-looking style for iOS based on image assets.
    \note this style is only available for applications running on iOS.

    \section2 Material Style

    \include style-screenshots.qdocinc {file} {Material} {material}

    The \l {Material Style} offers an appealing design based on the
    \l {https://www.google.com/design/spec/material-design/introduction.html}
    {Google Material Design Guidelines}, but requires more system resources than
    the Basic style.

    \section2 Universal Style

    \include style-screenshots.qdocinc {file} {Universal} {universal}

    The \l {Universal Style} offers an appealing design based on the
    \l {https://dev.windows.com/design}{Microsoft Universal Design Guidelines},
    but requires more system resources than the Basic style.

    \section2 Windows Style

    \image qtquickcontrols-windows.png

    The \l {Windows Style} is a native-looking style for Windows.
    \note this style is only available for applications running on Windows.

    \section1 Using Styles in Qt Quick Controls

    \section2 Default Styles

    If no style is explicitly set, a default style will be used. The style that
    is used depends on the operating system:

    \list
    \li Android: \l {Material Style}
    \li iOS: \l {iOS Style}
    \li Linux: \l {Fusion Style}
    \li macOS: \l {macOS Style}
    \li Windows: \l {Windows Style}
    \endlist

    For all other operating systems, the \l {Basic Style} is used.

    \section2 Compile-Time Style Selection

    Compile-time style selection is a way of specifying a style to use by
    importing it in QML. For example, to import the Material style:

    \qml
    import QtQuick.Controls.Material

    ApplicationWindow {
        // ...
    }
    \endqml

    Notice that QtQuick.Controls (which is responsible for run-time style
    selection) is not imported. The fallback style is specified by the qmldir
    of the style:

    \badcode
    module QtQuick.Controls.Material
    # ...
    import QtQuick.Controls.Basic auto
    \endcode

    The benefit of compile-time style selection is that the
    \l {The QML script compiler}{QML compiler} knows which specific style
    is in use and can generate C++ code for bindings.

    Another benefit is that the QtQuick.Controls plugin is not used and
    therefore does not need to be deployed with the application.

    Explicit imports are also necessary if your application is built
    \l {Static Builds}{statically}.

    A disadvantage of compile-time style selection is that one executable
    cannot support multiple styles, as each style requires its own.

    \section2 Run-Time Style Selection

    Run-time style selection is a way of specifying a style to use by importing
    \c QtQuick.Controls:

    \qml
    import QtQuick.Controls
    \endqml

    The QtQuick.Controls plugin will import the style and fallback
    style that were set at runtime via one of the following approaches:

    \list
    \li \l[CPP]{QQuickStyle::setStyle()}
    \li The \c -style command line argument
    \li The \c QT_QUICK_CONTROLS_STYLE environment variable
    \li The \c qtquickcontrols2.conf configuration file
    \endlist

    The priority of these approaches follows the order they are listed,
    from highest to lowest. That is, using \c QQuickStyle to set the style will
    always take priority over using the command line argument, for example.

    The benefit of run-time style selection is that a single application binary
    can support multiple styles, meaning that the end user can choose which
    style to run the application with.

    A disadvantage of this approach is that \l {The QML script compiler}
    {QML compiler} can't know which specific style is in use and therefore
    cannot generate C++ code for bindings on properties of Qt Quick Controls
    types. This does not affect the QML compiler's abilities to generate C++
    for bindings on types from other modules.

    \section3 Using QQuickStyle in C++

    \l[CPP]{QQuickStyle} provides C++ API for configuring a specific
    style. The following example runs a Qt Quick Controls application
    with the Material style:

    \code
    QQuickStyle::setStyle("Material");
    \endcode

    See the detailed description of \l[CPP]{QQuickStyle} for more
    details.

    \section3 Command line argument

    Passing a \c -style command line argument is the convenient way to test different
    styles. It takes precedence over the other methods listed below. The following
    example runs a Qt Quick Controls application with the Material style:

    \code
    ./app -style material
    \endcode

    \section3 Environment variable

    Setting the \c QT_QUICK_CONTROLS_STYLE environment variable can be used to set
    a system-wide style preference. It takes precedence over the configuration file
    mentioned below. The following example runs a Qt Quick Controls application with
    the Universal style:

    \code
    QT_QUICK_CONTROLS_STYLE=universal ./app
    \endcode

    See \l {Supported Environment Variables in Qt Quick Controls} for the full list
    of supported environment variables.

    \section3 Configuration file

    Qt Quick Controls support a special configuration file, \c :/qtquickcontrols2.conf,
    that is built into an application's resources.

    The configuration file can specify the preferred style (may be overridden by either
    of the methods described earlier) and certain style-specific attributes. The following
    example specifies that the preferred style is the Material style.

    \code
    [Controls]
    Style=Material
    \endcode

    See \l {Qt Quick Controls Configuration File} for more details about the
    configuration file.

    \section1 Related Information
    \list
    \li \l {Basic Style}
    \li \l {Fusion Style}
    \li \l {Imagine Style}
    \li \l {Material Style}
    \li \l {Universal Style}
    \li \l {Customizing Qt Quick Controls}
    \li \l {Using File Selectors with Qt Quick Controls}
    \li \l {Deploying Qt Quick Controls Applications}
    \li \l {Qt Quick Controls Configuration File}
    \li \l {Supported Environment Variables in Qt Quick Controls}
    \endlist
*/