mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
20 lines
408 B
QML
20 lines
408 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
|
|
StackView {
|
|
id: stackView
|
|
anchors.fill: parent
|
|
anchors.leftMargin: 10
|
|
anchors.rightMargin: 10
|
|
anchors.topMargin: 40
|
|
|
|
signal sendToScript(var message);
|
|
|
|
NewModelDialog {
|
|
id: dialog
|
|
anchors.fill: parent
|
|
Component.onCompleted:{
|
|
dialog.sendToScript.connect(stackView.sendToScript);
|
|
}
|
|
}
|
|
}
|