mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 23:56:22 +02:00
35 lines
725 B
QML
35 lines
725 B
QML
import Hifi 1.0
|
|
import QtQuick 2.3
|
|
|
|
Root {
|
|
id: root
|
|
width: 1280
|
|
height: 720
|
|
|
|
CustomButton {
|
|
id: messageBox
|
|
anchors.right: createDialog.left
|
|
anchors.rightMargin: 24
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: 24
|
|
text: "Message"
|
|
onClicked: {
|
|
console.log("Foo")
|
|
root.information("a")
|
|
console.log("Bar")
|
|
}
|
|
}
|
|
|
|
CustomButton {
|
|
id: createDialog
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 24
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: 24
|
|
text: "Create"
|
|
onClicked: {
|
|
root.loadChild("TestDialog.qml");
|
|
}
|
|
}
|
|
}
|
|
|