summaryrefslogtreecommitdiff
path: root/src/mobile/qml/MenuButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mobile/qml/MenuButton.qml')
-rw-r--r--src/mobile/qml/MenuButton.qml30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/mobile/qml/MenuButton.qml b/src/mobile/qml/MenuButton.qml
new file mode 100644
index 0000000..b3ba458
--- /dev/null
+++ b/src/mobile/qml/MenuButton.qml
@@ -0,0 +1,30 @@
+import QtQuick 2.1
+import BibleTime 1.0
+
+Rectangle {
+ id: menuButton
+
+ signal buttonClicked
+
+ color: "black"
+
+ BtStyle {
+ id: btStyle
+ }
+
+ Column {
+ spacing:3
+
+ Rectangle { color: "white"; width:2; height:2 }
+ Rectangle { color: "white"; width:2; height:2 }
+ Rectangle { color: "white"; width:2; height:2 }
+
+ anchors.centerIn: parent
+ }
+ MouseArea {
+ anchors.fill: parent
+ onClicked: {
+ menuButton.buttonClicked()
+ }
+ }
+}