mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 21:50:26 +00:00
41 lines
942 B
QML
41 lines
942 B
QML
|
import QtQuick 2.6
|
||
|
import QtQuick.Controls 1.5
|
||
|
import QtQuick.Dialogs 1.2
|
||
|
|
||
|
ApplicationWindow {
|
||
|
visible: true
|
||
|
width: 640
|
||
|
height: 480
|
||
|
title: qsTr("Hello World")
|
||
|
|
||
|
menuBar: MenuBar {
|
||
|
Menu {
|
||
|
title: qsTr("File")
|
||
|
MenuItem {
|
||
|
text: qsTr("&Open")
|
||
|
onTriggered: console.log("Open action triggered");
|
||
|
}
|
||
|
MenuItem {
|
||
|
text: qsTr("Exit")
|
||
|
onTriggered: Qt.quit();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
MainForm {
|
||
|
anchors.fill: parent
|
||
|
button1.onClicked: messageDialog.show(qsTr("Button 1 pressed"))
|
||
|
button2.onClicked: messageDialog.show(qsTr("Button 2 pressed"))
|
||
|
}
|
||
|
|
||
|
MessageDialog {
|
||
|
id: messageDialog
|
||
|
title: qsTr("May I have your attention, please?")
|
||
|
|
||
|
function show(caption) {
|
||
|
messageDialog.text = caption;
|
||
|
messageDialog.open();
|
||
|
}
|
||
|
}
|
||
|
}
|