initial commit

This commit is contained in:
Jeena 2014-11-11 23:59:26 +01:00
parent 3ff4969946
commit da9216ce09
12 changed files with 551 additions and 0 deletions

86
TheMenuBar.qml Normal file
View file

@ -0,0 +1,86 @@
import QtQuick.Controls 1.2
MenuBar {
Menu {
title: "File"
MenuItem {
text: "Close"
shortcut: "Ctrl+W"
}
MenuItem {
text: "Log Out"
}
MenuSeparator { }
MenuItem {
text: "Exit"
shortcut: "Ctrl+Q"
onTriggered: Qt.quit()
}
}
Menu {
title: "Action"
MenuItem {
text: "Reload"
shortcut: "R"
}
MenuItem {
text: "Show &Starred"
shortcut: "Ctrl+S"
}
MenuItem {
text: "Set &Starred"
shortcut: "S"
}
MenuItem {
text: "Set &Unread"
shortcut: "U"
}
MenuItem {
text: "Next"
shortcut: "J"
}
MenuItem {
text: "Previous"
shortcut: "K"
}
MenuItem {
text: "Open in Browser"
shortcut: "N"
}
}
Menu {
title: "View"
MenuItem {
text: "Zoom In"
shortcut: "Ctrl++"
}
MenuItem {
text: "Zoom Out"
shortcut: "Ctrl+-"
}
MenuItem {
text: "Reset"
shortcut: "Ctrl+0"
}
}
Menu {
title: "Window"
MenuItem {
text: "Reset to default"
shortcut: "Ctrl+D"
}
}
Menu {
title: "Help"
MenuItem {
text: "About"
onTriggered: Qt.openUrlExternally("http://jabs.nu/feedthemonkey");
}
}
}