// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import HelperWidgets 2.0 import QtQuick 2.15 import QtQuick.Layouts 1.15 import StudioTheme 1.0 as StudioTheme Column { anchors.left: parent.left anchors.right: parent.right Section { caption: qsTr("Number Animation") anchors.left: parent.left anchors.right: parent.right SectionLayout { PropertyLabel { text: qsTr("From") tooltip: qsTr("Start value for the animation.") } SecondColumnLayout { SpinBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth maximumValue: 9999999 minimumValue: -1 backendValue: backendValues.from } ExpandingSpacer {} } PropertyLabel { text: qsTr("To") tooltip: qsTr("End value for the animation.") } SecondColumnLayout { SpinBox { implicitWidth: StudioTheme.Values.twoControlColumnWidth + StudioTheme.Values.actionIndicatorWidth maximumValue: 9999999 minimumValue: -1 backendValue: backendValues.to } ExpandingSpacer {} } } } AnimationTargetSection {} AnimationSection { showEasingCurve: true } }