-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSideMenu.qml
97 lines (84 loc) · 2.06 KB
/
SideMenu.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
import QtQuick 2.0
import Thaum 1.0
Rectangle {
id: idSideMenu
width: idButtonColumn.width + 20
x: -width
property int pullState: 0
onPullStateChanged: {
if (pullState == 1) {
idAnimExpand.restart()
} else if (pullState == 3) {
idAnimHide.restart()
}
}
ClockWidget {
id: idClockWidget
}
SimulationControl {
id: idSimControl
}
Column {
id: idButtonColumn
anchors.horizontalCenter: parent.horizontalCenter
spacing: 10
SimpleLabel {
label: "Fps: " + idClockWidget.fps
anchors.horizontalCenter: parent.horizontalCenter
}
SimpleButton {
anchors.horizontalCenter: parent.horizontalCenter
label: "Auto"
color: "red"
onPressed: {
idSimControl.setAutomatic()
}
}
SimpleButton {
anchors.horizontalCenter: parent.horizontalCenter
label: "Player"
color: "blue"
onPressed: {
idSimControl.setWithPlayer()
}
}
SimpleButton {
anchors.horizontalCenter: parent.horizontalCenter
label: "Manual"
color: "green"
onPressed: {
idSimControl.setManual()
}
}
SimpleButton {
anchors.horizontalCenter: parent.horizontalCenter
label: "Update"
color: "yellow"
onPressed: {
idSimControl.requestUpdate()
}
}
}
NumberAnimation {
id: idAnimExpand
target: idSideMenu
property: "x"
to: 0
duration: 300
running: false
onStopped: {
idSideMenu.pullState = 2
}
}
NumberAnimation {
id: idAnimHide
target: idSideMenu
property: "x"
to: -idSideMenu.width
duration: 300
running: false
onStopped: {
idSideMenu.pullState = 0
}
}
}