MauiKit Controls

ProgressIndicator.qml
1import QtQuick
2import QtQuick.Controls
3import org.mauikit.controls 1.3 as Maui
4
5/**
6 * @inherit QtQuick.Controls.ProgressBar
7 * @brief A QQC2 ProgressBar bu styled to be used as a indetermined progress indicator.
8 * Usually used at the bottom of a view.
9 *
10 * <a href="https://doc.qt.io/qt-6/qml-qtquick-controls-progressbar.html">This control inherits from QQC2 ProgressBar, to checkout its inherited properties refer to the Qt Docs.</a>
11 */
12ProgressBar
13{
14 id: control
15
16 indeterminate: true
17 implicitHeight: 6
18
19 background: Rectangle
20 {
21 radius: 0
22 color: Maui.Theme.backgroundColor
23 Behavior on color
24 {
25 Maui.ColorTransition{}
26 }
27 }
28}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 17 2024 11:56:16 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.