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:05 +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:05 +02:00
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
Section {
|
2020-08-19 16:26:05 +02:00
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
2021-07-26 17:59:55 +02:00
|
|
|
caption: qsTr("Connections")
|
2020-08-19 16:26:05 +02:00
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
SectionLayout {
|
|
|
|
|
PropertyLabel {
|
|
|
|
|
text: qsTr("Enabled")
|
|
|
|
|
tooltip: qsTr("Sets whether the component accepts change events.")
|
|
|
|
|
}
|
2020-08-19 16:26:05 +02:00
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
SecondColumnLayout {
|
|
|
|
|
CheckBox {
|
|
|
|
|
text: backendValues.enabled.valueToString
|
|
|
|
|
backendValue: backendValues.enabled
|
|
|
|
|
implicitWidth: StudioTheme.Values.twoControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
2020-08-19 16:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
2020-08-19 16:26:05 +02:00
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
PropertyLabel {
|
|
|
|
|
text: qsTr("Ignore unknown signals")
|
|
|
|
|
tooltip: qsTr("Ignores runtime errors produced by connections to non-existent signals.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SecondColumnLayout {
|
|
|
|
|
CheckBox {
|
|
|
|
|
text: backendValues.ignoreUnknownSignals.valueToString
|
|
|
|
|
backendValue: backendValues.ignoreUnknownSignals
|
|
|
|
|
implicitWidth: StudioTheme.Values.twoControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
2020-08-19 16:26:05 +02:00
|
|
|
}
|
2021-07-26 17:59:55 +02:00
|
|
|
|
|
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyLabel {
|
|
|
|
|
text: qsTr("Target")
|
|
|
|
|
tooltip: qsTr("Sets the component that sends the signal.")
|
2020-08-19 16:26:05 +02:00
|
|
|
}
|
|
|
|
|
|
2021-07-26 17:59:55 +02:00
|
|
|
SecondColumnLayout {
|
|
|
|
|
ItemFilterComboBox {
|
|
|
|
|
typeFilter: "QtQuick.Item"
|
|
|
|
|
backendValue: backendValues.target
|
|
|
|
|
implicitWidth: StudioTheme.Values.singleControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
2020-08-19 16:26:05 +02:00
|
|
|
}
|
|
|
|
|
}
|