diff options
Diffstat (limited to 'qml/pages')
-rw-r--r-- | qml/pages/Game.qml | 7 | ||||
-rw-r--r-- | qml/pages/Menu.qml | 21 |
2 files changed, 20 insertions, 8 deletions
diff --git a/qml/pages/Game.qml b/qml/pages/Game.qml index 3ab037d..fb0f01d 100644 --- a/qml/pages/Game.qml +++ b/qml/pages/Game.qml @@ -3,7 +3,9 @@ import Sailfish.Silica 1.0 import ".." Page { - property int bits: 0 // gets passed by previous page + // Get passed by previous page + property int bits: 0 + property bool help: false id: page allowedOrientations: Orientation.Portrait @@ -21,6 +23,7 @@ Page { Column { property int bits: page.bits + property bool help: page.help property var correct: new Array(bits) property var matrix: new Array(Math.pow(bits + 1, 2)) property var start_time: 0 @@ -90,7 +93,6 @@ Page { id: info_label text: "0 / " + root.bits anchors.horizontalCenter: parent.horizontalCenter - // anchors.top: grid.bottom anchors.bottom: page.bottom } @@ -98,7 +100,6 @@ Page { id: timer_label text: "0s" anchors.horizontalCenter: parent.horizontalCenter - // anchors.top: won.bottom anchors.bottom: page.bottom } diff --git a/qml/pages/Menu.qml b/qml/pages/Menu.qml index 1d93a0f..caf2e00 100644 --- a/qml/pages/Menu.qml +++ b/qml/pages/Menu.qml @@ -10,6 +10,8 @@ Page { contentHeight: column.height Column { + property bool bar: false + id: column width: page.width height: page.height @@ -25,37 +27,46 @@ Page { rowSpacing: Theme.paddingLarge * 2 Button { + text: qsTr("Help bar") + ": 0" + onClicked: { + column.bar = this.text.slice(-1) === "0"; + this.text = column.bar ? qsTr("Help bar") + ": 1" : qsTr("Help bar") + ": 0" + } + } + + Button { text: qsTr("Very easy (2 Bit)") + ButtonLayout.newLine: true onClicked: { - pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 2}); + pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 2, help: column.bar}); } } Button { text: qsTr("Easy (4 Bit)") onClicked: { - pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 4}); + pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 4, help: column.bar}); } } Button { text: qsTr("Medium (6 Bit)") onClicked: { - pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 6}); + pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 6, help: column.bar}); } } Button { text: qsTr("Hard (8 Bit)") onClicked: { - pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 8}); + pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 8, help: column.bar}); } } Button { text: qsTr("God-like (10 Bit)") onClicked: { - pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 10}); + pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 10, help: column.bar}); } } } |