aboutsummaryrefslogtreecommitdiffhomepage
path: root/qml/pages/Menu.qml
diff options
context:
space:
mode:
authorMarvin Borner2020-04-04 20:24:18 +0200
committerMarvin Borner2020-04-04 20:24:18 +0200
commit81cc34bfcc8d7ec695a4d70c4c1c82b9035bf272 (patch)
treefd885f80b2670c29924f79b6b54343ed50b65d9a /qml/pages/Menu.qml
parentd452393fdc957503b0387932f442851265175f08 (diff)
Different modes, fixed timer, zero doubletap, etc..
Diffstat (limited to 'qml/pages/Menu.qml')
-rw-r--r--qml/pages/Menu.qml64
1 files changed, 64 insertions, 0 deletions
diff --git a/qml/pages/Menu.qml b/qml/pages/Menu.qml
new file mode 100644
index 0000000..39de258
--- /dev/null
+++ b/qml/pages/Menu.qml
@@ -0,0 +1,64 @@
+import QtQuick 2.2
+import Sailfish.Silica 1.0
+
+Page {
+ id: page
+ allowedOrientations: Orientation.All
+
+ SilicaFlickable {
+ anchors.fill: parent
+ contentHeight: column.height
+
+ Column {
+ id: column
+ width: page.width
+ height: page.height
+ spacing: Theme.paddingLarge
+
+ PageHeader {
+ title: qsTr("Binary Fun")
+ }
+
+ ButtonLayout {
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.verticalCenter: parent.verticalCenter
+ rowSpacing: Theme.paddingLarge * 2
+
+ Button {
+ text: qsTr("Very easy (2 Bit)")
+ onClicked: {
+ pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 2});
+ }
+ }
+
+ Button {
+ text: qsTr("Easy (4 Bit)")
+ onClicked: {
+ pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 4});
+ }
+ }
+
+ Button {
+ text: qsTr("Medium (6 Bit)")
+ onClicked: {
+ pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 6});
+ }
+ }
+
+ Button {
+ text: qsTr("Hard (8 Bit)")
+ onClicked: {
+ pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 8});
+ }
+ }
+
+ Button {
+ text: qsTr("Godlike (10 Bit)")
+ onClicked: {
+ pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 10});
+ }
+ }
+ }
+ }
+ }
+}