-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStart.qml
116 lines (69 loc) · 1.83 KB
/
Start.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import QtQuick 2.5
Item {
property color backgroundColor: "#050505"
// Player 1 Noughts
signal noughtClicked
// Player 1 Crosses
signal crossClicked
id: start
x: 0
y: 0
width: 400
height: 400
Rectangle {
id: background
anchors.fill: parent
color: backgroundColor
smooth: true
}
Text {
id: mainText
y: 50
anchors.horizontalCenter: parent.horizontalCenter
horizontalAlignment: Text.AlignHCenter
textFormat: Text.RichText
text: qsTr("Player #1<br>Choose your side:")
color: "#FF0"
style: Text.Raised
styleColor: "#FFF"
font {
family: "Arial"
bold: true
pixelSize: 42
}
antialiasing: true
smooth: true
}
Grid {
id: sideGrid
anchors.top: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: 20
columns: 2
spacing: 70
Cell {
id: noughtCell
cellSymbol: qsTr("O")
textColor: "#00FF00"
borderColor: "#00FF00"
backgroundColor: "#001500"
hoverColor: "#003500"
clickedColor: "#002500"
onClicked: {
noughtClicked()
}
}
Cell {
id: crossCell
cellSymbol: qsTr("✘")
textColor: "#FF0000"
borderColor: "#FF0000"
backgroundColor: "#150000"
hoverColor: "#350000"
clickedColor: "#250000"
onClicked: {
crossClicked()
}
}
}
}