2023-07-04 19:57:59 +02:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
import QtQuick
|
2023-10-24 12:10:29 +02:00
|
|
|
import StudioTheme as StudioTheme
|
|
|
|
|
import StudioControls as StudioControls
|
2023-09-08 15:49:58 +02:00
|
|
|
import HelperWidgets as HelperWidgets
|
2023-07-04 19:57:59 +02:00
|
|
|
|
2023-10-24 12:10:29 +02:00
|
|
|
StudioControls.PopupDialog {
|
2023-07-04 19:57:59 +02:00
|
|
|
property alias backend: form.backend
|
2023-10-24 12:10:29 +02:00
|
|
|
|
2023-09-01 17:29:07 +02:00
|
|
|
titleBar: Row {
|
|
|
|
|
spacing: 30 // TODO
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
color: StudioTheme.Values.themeTextColor
|
|
|
|
|
text: qsTr("Owner")
|
|
|
|
|
font.pixelSize: StudioTheme.Values.myFontSize
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2023-10-24 12:10:29 +02:00
|
|
|
|
2023-09-08 15:49:58 +02:00
|
|
|
HelperWidgets.ToolTipArea {
|
2023-09-01 17:29:07 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
|
tooltip: qsTr("The owner of the property")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
color: StudioTheme.Values.themeTextColor
|
|
|
|
|
font.pixelSize: StudioTheme.Values.myFontSize
|
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
text: form.backend.targetNode
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-04 19:57:59 +02:00
|
|
|
|
|
|
|
|
BindingsDialogForm {
|
|
|
|
|
id: form
|
|
|
|
|
}
|
|
|
|
|
}
|