2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
2023-01-04 08:52:22 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2020-08-19 16:26:21 +02:00
|
|
|
|
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
2021-07-26 17:59:55 +02:00
|
|
|
import HelperWidgets 2.0
|
|
|
|
|
import StudioTheme 1.0 as StudioTheme
|
2020-08-19 16:26:21 +02:00
|
|
|
|
|
|
|
|
Column {
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
|
|
|
|
|
Section {
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
caption: qsTr("State")
|
|
|
|
|
|
|
|
|
|
SectionLayout {
|
2021-07-26 17:59:55 +02:00
|
|
|
PropertyLabel {
|
2020-08-19 16:26:21 +02:00
|
|
|
text: qsTr("When")
|
|
|
|
|
tooltip: qsTr("Sets when the state should be applied.")
|
|
|
|
|
}
|
2021-07-26 17:59:55 +02:00
|
|
|
|
2020-08-19 16:26:21 +02:00
|
|
|
SecondColumnLayout {
|
|
|
|
|
CheckBox {
|
|
|
|
|
text: backendValues.when.valueToString
|
|
|
|
|
backendValue: backendValues.when
|
2021-07-26 17:59:55 +02:00
|
|
|
implicitWidth: StudioTheme.Values.twoControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
2020-08-19 16:26:21 +02:00
|
|
|
}
|
2021-07-26 17:59:55 +02:00
|
|
|
|
2020-08-19 16:26:21 +02:00
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
PropertyLabel {
|
2020-08-19 16:26:21 +02:00
|
|
|
text: qsTr("Name")
|
2021-07-02 10:36:07 +02:00
|
|
|
tooltip: qsTr("The name of the state.")
|
2020-08-19 16:26:21 +02:00
|
|
|
}
|
2021-07-26 17:59:55 +02:00
|
|
|
|
2020-08-19 16:26:21 +02:00
|
|
|
SecondColumnLayout {
|
|
|
|
|
LineEdit {
|
|
|
|
|
backendValue: backendValues.name
|
|
|
|
|
showTranslateCheckBox: false
|
2021-07-26 17:59:55 +02:00
|
|
|
implicitWidth: StudioTheme.Values.singleControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
|
|
|
width: implicitWidth
|
2020-08-19 16:26:21 +02:00
|
|
|
}
|
2021-07-26 17:59:55 +02:00
|
|
|
|
2020-08-19 16:26:21 +02:00
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
PropertyLabel {
|
2020-08-19 16:26:21 +02:00
|
|
|
text: qsTr("Extend")
|
2021-07-02 10:36:07 +02:00
|
|
|
tooltip: qsTr("The state that this state extends.")
|
2020-08-19 16:26:21 +02:00
|
|
|
}
|
2021-07-26 17:59:55 +02:00
|
|
|
|
2020-08-19 16:26:21 +02:00
|
|
|
SecondColumnLayout {
|
|
|
|
|
LineEdit {
|
|
|
|
|
backendValue: backendValues.extend
|
|
|
|
|
showTranslateCheckBox: false
|
2021-07-26 17:59:55 +02:00
|
|
|
implicitWidth: StudioTheme.Values.singleControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
|
|
|
width: implicitWidth
|
2020-08-19 16:26:21 +02:00
|
|
|
}
|
2021-07-26 17:59:55 +02:00
|
|
|
|
2020-08-19 16:26:21 +02:00
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|