// Copyright (C) 2022 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.15 import QtQuick.Layouts 1.15 import HelperWidgets 2.0 import StudioTheme 1.0 as StudioTheme Column { width: parent.width Section { caption: qsTr("Progress Bar") width: parent.width SectionLayout { PropertyLabel { text: qsTr("Value") tooltip: qsTr("Sets the value of the progress bar.") } SecondColumnLayout { SpinBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth width: implicitWidth minimumValue: Math.min(backendValues.from.value, backendValues.to.value) maximumValue: Math.max(backendValues.from.value, backendValues.to.value) decimals: 2 stepSize: 0.1 backendValue: backendValues.value } ExpandingSpacer {} } PropertyLabel { text: qsTr("From") tooltip: qsTr("Sets the minimum value of the progress bar.") } SecondColumnLayout { SpinBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth width: implicitWidth maximumValue: 9999999 minimumValue: -9999999 decimals: 2 stepSize: 0.1 backendValue: backendValues.from } ExpandingSpacer {} } PropertyLabel { text: qsTr("To") tooltip: qsTr("Sets the maximum value of the progress bar.") } SecondColumnLayout { SpinBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth width: implicitWidth maximumValue: 9999999 minimumValue: -9999999 decimals: 2 stepSize: 0.1 backendValue: backendValues.to } ExpandingSpacer {} } PropertyLabel { text: qsTr("Indeterminate") tooltip: qsTr("Toggles if the progress bar is in indeterminate mode.\n" +"A progress bar in indeterminate mode displays that an\n" + "operation is in progress.") blockedByTemplate: !backendValues.indeterminate.isAvailable } SecondColumnLayout { CheckBox { text: backendValues.indeterminate.valueToString implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth backendValue: backendValues.indeterminate enabled: backendValue.isAvailable } ExpandingSpacer {} } } } ControlSection {} PaddingSection {} InsetSection {} }