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
|
2021-09-28 16:15:07 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
import HelperWidgets 2.0
|
|
|
|
|
import StudioTheme 1.0 as StudioTheme
|
|
|
|
|
|
|
|
|
|
Column {
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
|
|
|
|
|
Section {
|
|
|
|
|
caption: qsTr("Loader")
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
|
|
|
|
|
SectionLayout {
|
|
|
|
|
PropertyLabel {
|
|
|
|
|
text: qsTr("Active")
|
2022-02-16 17:09:37 +01:00
|
|
|
tooltip: qsTr("Whether the loader is currently active.")
|
2021-09-28 16:15:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SecondColumnLayout {
|
|
|
|
|
CheckBox {
|
|
|
|
|
text: backendValues.active.valueToString
|
|
|
|
|
backendValue: backendValues.active
|
|
|
|
|
implicitWidth: StudioTheme.Values.twoControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyLabel {
|
|
|
|
|
text: qsTr("Source")
|
2022-02-16 17:09:37 +01:00
|
|
|
tooltip: qsTr("URL of the component to instantiate.")
|
2021-09-28 16:15:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SecondColumnLayout {
|
|
|
|
|
UrlChooser {
|
|
|
|
|
filter: "*.qml"
|
|
|
|
|
backendValue: backendValues.source
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyLabel {
|
2022-02-16 17:09:37 +01:00
|
|
|
text: qsTr("Source component")
|
|
|
|
|
tooltip: qsTr("Component to instantiate.")
|
2021-09-28 16:15:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SecondColumnLayout {
|
|
|
|
|
ItemFilterComboBox {
|
|
|
|
|
typeFilter: "Component"
|
|
|
|
|
backendValue: backendValues.sourceComponent
|
|
|
|
|
implicitWidth: StudioTheme.Values.singleControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyLabel {
|
|
|
|
|
text: qsTr("Asynchronous")
|
2022-02-16 17:09:37 +01:00
|
|
|
tooltip: qsTr("Whether the component will be instantiated asynchronously.")
|
2021-09-28 16:15:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SecondColumnLayout {
|
|
|
|
|
CheckBox {
|
|
|
|
|
text: backendValues.asynchronous.valueToString
|
|
|
|
|
backendValue: backendValues.asynchronous
|
|
|
|
|
implicitWidth: StudioTheme.Values.twoControlColumnWidth
|
|
|
|
|
+ StudioTheme.Values.actionIndicatorWidth
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExpandingSpacer {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|