aboutsummaryrefslogtreecommitdiffhomepage
path: root/qml/pages/FirstPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/FirstPage.qml')
-rw-r--r--qml/pages/FirstPage.qml37
1 files changed, 32 insertions, 5 deletions
diff --git a/qml/pages/FirstPage.qml b/qml/pages/FirstPage.qml
index d19d1dd..bfc1ba0 100644
--- a/qml/pages/FirstPage.qml
+++ b/qml/pages/FirstPage.qml
@@ -19,8 +19,7 @@ ApplicationWindow {
PullDownMenu {
MenuItem {
text: qsTr("Leaderboard")
- onClicked: pageStack.push(Qt.resolvedUrl(
- "LeaderBoard.qml"))
+ onClicked: pageStack.push(Qt.resolvedUrl("LeaderBoard.qml"))
}
}
@@ -35,7 +34,7 @@ ApplicationWindow {
spacing: Theme.paddingLarge
PageHeader {
- title: "Binary Fun"
+ title: qsTr("Binary Fun")
}
function nearest(number) {
@@ -52,18 +51,22 @@ ApplicationWindow {
if (Number(root.matrix.slice(near, near + bits).join("")).toString() === (root.matrix[near + bits] >>> 0).toString(2)) {
correct[near / (bits + 1) - 1] = 1;
+ info_label.text = parseInt(info_label.text.substr(0, info_label.text.indexOf('/'))) + 1 + " / " + root.bits;
} else {
correct[near / (bits + 1) - 1] = 0;
}
if (correct.filter(function(i) { return i === 1 }).length === bits) {
- console.log("WON!!");
+ info_label.text = "Yeeehaa!";
+ timer.running = false;
}
}
Grid {
+ property int row: 0
+
id: grid
- anchors.verticalCenter: parent.verticalCenter
+ anchors.bottom: page.bottom
columns: root.bits + 1
rows: root.bits + 1
Repeater {
@@ -76,6 +79,30 @@ ApplicationWindow {
}
}
}
+
+ Label {
+ id: info_label
+ text: "0 / " + root.bits
+ anchors.horizontalCenter: parent.horizontalCenter
+ // anchors.top: grid.bottom
+ anchors.bottom: page.bottom
+ }
+
+ Label {
+ id: timer_label
+ text: "0.0"
+ anchors.horizontalCenter: parent.horizontalCenter
+ // anchors.top: won.bottom
+ anchors.bottom: page.bottom
+ }
+
+ Timer {
+ id: timer
+ interval: 1
+ running: true
+ repeat: true
+ onTriggered: timer_label.text = (parseFloat(timer_label.text) + 0.01).toFixed(2).toString()
+ }
}
}
}