overte-thingvellir/scripts/system/create/qml/NewSoundWindow.qml
2024-04-07 13:40:42 -07:00

31 lines
673 B
QML

//
// NewSoundWindow.qml
// qml/hifi
//
// Created by HifiExperiments on 4/7/24
// Copyright 2024 Overte e.V.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
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);
NewSoundDialog {
id: dialog
anchors.fill: parent
Component.onCompleted:{
dialog.sendToScript.connect(stackView.sendToScript);
}
}
}