-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommande.qml
56 lines (44 loc) · 1.07 KB
/
Commande.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
import QtQuick 2.0
// Espace de commande du jeu
Rectangle {
id: panneaucommande
height: 90
color: "transparent"
radius: 5
anchors {
right: parent.right; rightMargin: 5
left: parent.left; leftMargin: 5
top: parent.top; topMargin: 5
}
// Espace d'affichage du titre
Rectangle {
id: titre
width: 80
height: 70
color: "transparent" //"#F4ECE4"
radius: 5
anchors {
left: parent.left; leftMargin: 15
top: parent.top; topMargin: 5
}
// Zone de texte
Text {
anchors.fill: parent
color: "#eea15d"
text: "2048"
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
font.family: "Verdana"
font.bold: true
font.pixelSize: 32
}
}
// Espace d'affichage du score
ScoreCourant{
id : scorecourant
}
// Espace d'affichage du bouton NouvellePartie
NouvellePartie{
id: newgame
}
}