Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qtquickcontrols-indicators.qdoc
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
3
4/*!
5 \page qtquickcontrols-indicators.html
6 \title Indicator Controls
7 \ingroup qtquickcontrols-guidelines
8 \brief Guidelines for indicator controls
9
10 Qt Quick Controls offers a selection of indicator-like controls.
11
12 \annotatedlist qtquickcontrols-indicators
13
14 Each type of indicator has its own specific target use case. The following
15 sections offer guidelines for choosing the appropriate type of indicator,
16 depending on the use case.
17
18 \section1 BusyIndicator Control
19
20 \image qtquickcontrols-busyindicator.png
21
22 BusyIndicator can be used to show that an operation is in progress,
23 and that the UI has to wait for the operation to complete.
24
25 \section1 PageIndicator Control
26
27 \image qtquickcontrols-pageindicator.png
28
29 \l PageIndicator is used to indicate the currently active page in
30 a container of multiple pages.
31
32 \section1 ProgressBar Control
33
34 \image qtquickcontrols-progressbar.gif
35
36 \l ProgressBar indicates the progress of an operation. The value should be
37 updated regularly.
38
39 \section1 ScrollBar Control
40
41 \image qtquickcontrols-scrollbar.gif
42
43 \l ScrollBar is an interactive bar that indicates the current scroll
44 position, and can be used to scroll to a specific position in a
45 \l Flickable.
46
47 \section1 ScrollIndicator Control
48
49 \image qtquickcontrols-scrollindicator.gif
50
51 \l ScrollIndicator is a non-interactive indicator that indicates the
52 current scroll position, and can be used to scroll to a specific position in a
53 \l {Flickable}.
54
55 \section1 Related Information
56 \list
57 \li \l {Qt Quick Controls Guidelines}
58 \endlist
59*/