-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFoot.qml
More file actions
executable file
·40 lines (33 loc) · 784 Bytes
/
Foot.qml
File metadata and controls
executable file
·40 lines (33 loc) · 784 Bytes
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
import QtQuick 2.3
import QtQuick.Controls 1.2
Item {
property alias marcheArriere: undo.enabled
signal eStart()
signal eBack()
width: 360; height: 100
Button {
width: 129;
height: 40
x:110
text: qsTr("New Game")
onClicked: parent.eStart()
}
Button {
id: undo
enabled: false
x: 300
width: 129; height: 40
text: qsTr("Undo")
onClicked: parent.eBack()
}
Text {
anchors.bottom: parent.Center
anchors.centerIn : parent.Center
font.family: localFont.name
font.pixelSize: 18
font.bold: true
font.italic: true
font.underline: true
color: "#8f7a66"
}
}