// 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 { width: parent.width caption: qsTr("Page Indicator") SectionLayout { PropertyLabel { text: qsTr("Count") tooltip: qsTr("Sets the number of pages.") } SecondColumnLayout { SpinBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth width: implicitWidth minimumValue: -9999999 maximumValue: 9999999 decimals: 0 backendValue: backendValues.count } ExpandingSpacer {} } PropertyLabel { text: qsTr("Current") tooltip: qsTr("Sets the current page.") } SecondColumnLayout { SpinBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth width: implicitWidth minimumValue: -9999999 maximumValue: 9999999 decimals: 0 backendValue: backendValues.currentIndex } ExpandingSpacer {} } PropertyLabel { text: qsTr("Interactive") tooltip: qsTr("Toggles if the user can interact with the page indicator.") } SecondColumnLayout { CheckBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth text: backendValues.interactive.valueToString backendValue: backendValues.interactive } ExpandingSpacer {} } } } ControlSection {} PaddingSection {} InsetSection {} }