summaryrefslogtreecommitdiff
path: root/qml/pages
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages')
-rw-r--r--qml/pages/Board.qml36
-rw-r--r--qml/pages/Login.qml2
-rw-r--r--qml/pages/UserDialog.qml25
3 files changed, 57 insertions, 6 deletions
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml
index 240fa11..0f2af45 100644
--- a/qml/pages/Board.qml
+++ b/qml/pages/Board.qml
@@ -1,6 +1,6 @@
import QtQuick 2.2
import Sailfish.Silica 1.0
-import org.nemomobile.configuration 1.0
+import Nemo.Configuration 1.0
import ".."
Page {
@@ -30,15 +30,31 @@ Page {
onClicked: functions.start_seek()
}
MenuItem {
- text: qsTr("Play against bot")
+ text: qsTr("Challenge user")
visible: functions.game_id === "" ? true : false
- onClicked: functions.challenge("awesomelvin")
+ onClicked: {
+ var dialog = pageStack.push("UserDialog.qml");
+ dialog.accepted.connect(function() {
+ functions.challenge(dialog.name);
+ });
+ }
}
MenuItem {
+ // I THINK it works like that
text: qsTr("Abort game")
- visible: functions.game_id === "" ? false : true
+ visible: functions.game_id !== "" && functions.moves.split(" ").length <= 2 ? true : false
onClicked: functions.abort()
}
+ MenuItem {
+ text: qsTr("Resign game")
+ visible: functions.game_id !== "" && functions.moves.split(" ").length > 2 ? true : false
+ onClicked: functions.resign()
+ }
+ MenuItem {
+ text: qsTr("Offer/accept draw")
+ visible: functions.game_id !== "" && functions.moves.split(" ").length > 2 ? true : false
+ onClicked: functions.offer_draw()
+ }
}
Column {
@@ -83,12 +99,22 @@ Page {
}
Label {
- // id: turn_label
+ id: turn_label
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: grid.bottom
topPadding: Theme.paddingMedium
text: functions.turn ? qsTr("Your turn") : qsTr("Opponents turn");
}
+
+ LinkedLabel {
+ id: chat
+ width: parent.width
+ color: "white"
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.top: turn_label.bottom
+ topPadding: Theme.paddingMedium
+ plainText: "";
+ }
}
}
diff --git a/qml/pages/Login.qml b/qml/pages/Login.qml
index e493f2f..8f621f4 100644
--- a/qml/pages/Login.qml
+++ b/qml/pages/Login.qml
@@ -1,7 +1,7 @@
import QtQuick 2.2
import Sailfish.Silica 1.0
import QtWebKit 3.0
-import org.nemomobile.configuration 1.0
+import Nemo.Configuration 1.0
Page {
SilicaWebView {
diff --git a/qml/pages/UserDialog.qml b/qml/pages/UserDialog.qml
new file mode 100644
index 0000000..3471819
--- /dev/null
+++ b/qml/pages/UserDialog.qml
@@ -0,0 +1,25 @@
+import QtQuick 2.2
+import Sailfish.Silica 1.0
+
+Dialog {
+ property var name
+
+ Column {
+ width: parent.width
+
+ DialogHeader { }
+
+ TextField {
+ id: username
+ width: parent.width
+ placeholderText: qsTr("e.g. LeelaChess")
+ label: qsTr("Username")
+ }
+ }
+
+ onDone: {
+ if (result == DialogResult.Accepted) {
+ name = username.text;
+ }
+ }
+}