blob: 52cfd9838f47592c5a5faeb4cd73a2d401b269fc (
plain) (
tree)
|
|
import QtQuick 2.3
import QtQuick.Controls 1.2
import QtQuick.Window 2.2
ApplicationWindow {
title: qsTr("Subsurface")
width: 500;
height: 700
menuBar: MenuBar {
Menu {
title: qsTr("File")
MenuItem {
text: qsTr("Exit")
onTriggered: Qt.quit();
}
}
}
}
|