-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMotionPopup.qml
233 lines (225 loc) · 8.39 KB
/
MotionPopup.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import QtQuick 2.3
import QtQuick.Controls 2.4
import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.11
import QtQuick 2.11
Popup {
property double selectedStepSize: 0.1
id:dialog
visible: false
contentItem: Rectangle{
id:rectangle
color: "black"
implicitWidth: 500
implicitHeight: 800
RowLayout{
ColumnLayout {
Layout.alignment: Qt.AlignTop
RadioButton {
id: step20Button
text: qsTr("20")
font.pixelSize: 10
onCheckedChanged: {
if (step20Button.checked)
{
selectedStepSize = 20
}
}
}
RadioButton {
id: step10Button
text: qsTr("10")
font.pixelSize: 10
onCheckedChanged: {
if (step10Button.checked)
{
selectedStepSize = 10
}
}
}
RadioButton {
id: step5Button
text: qsTr("5")
font.pixelSize: 10
onCheckedChanged: {
if (step5Button.checked)
{
selectedStepSize = 5
}
}
}
RadioButton {
id: step2Button
text: qsTr("2")
font.pixelSize: 10
onCheckedChanged: {
if (step2Button.checked)
{
selectedStepSize = 2
}
}
}
RadioButton {
id: step1Button
text: qsTr("1")
font.pixelSize: 10
onCheckedChanged: {
if (step1Button.checked)
{
selectedStepSize = 1
}
}
}
RadioButton {
id: step05Button
text: qsTr("0.5")
font.pixelSize: 10
onCheckedChanged: {
if (step05Button.checked)
{
selectedStepSize = 0.5
}
}
}
RadioButton {
id: step02Button
text: qsTr("0.2")
font.pixelSize: 10
onCheckedChanged: {
if (step02Button.checked)
{
selectedStepSize = 0.2
}
}
}
RadioButton {
id: step01Button
text: qsTr("0.1")
font.pixelSize: 10
checked: true
onCheckedChanged: {
if (step01Button.checked)
{
selectedStepSize = 0.1
}
}
}
RadioButton {
id: step005Button
text: qsTr("0.05")
font.pixelSize: 10
onCheckedChanged: {
if (step005Button.checked)
{
selectedStepSize = 0.05
}
}
}
RadioButton {
id: step002Button
text: qsTr("0.02")
font.pixelSize: 10
onCheckedChanged: {
if (step002Button.checked)
{
selectedStepSize = 0.02
}
}
}
RadioButton {
id: step001Button
text: qsTr("0.01")
font.pixelSize: 10
onCheckedChanged: {
if (step001Button.checked)
{
selectedStepSize = 0.01
}
}
}
RadioButton {
id: step0001Button
text: qsTr("0.001")
font.pixelSize: 10
onCheckedChanged: {
if (step0001Button.checked)
{
selectedStepSize = 0.001
}
}
}
}
ScrollView{
implicitWidth: 400
implicitHeight: 600
clip: true
ColumnLayout{
Timer{
id:timer
interval: 600;
running: true;
repeat: true;
}
ListView{
id:list
height: 50*count
model: motorsModel
delegate: RowLayout{
Rectangle{
width: 65
Text{
anchors.verticalCenter: parent.verticalCenter
text:modelData
wrapMode: width
color:"white"
}
}
RoundButton {
onClicked: {
//console.log("move "+modelData);
baseModuleManager.motorSeekOrigin(modelData)
}
transformOrigin: Item.Center
display: Button.IconOnly
icon.source: "icons/home.png"
icon.color: "cyan"
}
RoundButton{
text:"-"
onClicked: {
//console.log("move "+modelData);
var res = baseModuleManager.stepMove(modelData,selectedStepSize,false)
//console.log("result: "+res)
}
}
RoundButton{
text:"+"
onClicked: {
//console.log("move "+modelData);
var res = baseModuleManager.stepMove(modelData,selectedStepSize,true)
//console.log(motorsNames.length)
//console.log("result: "+res)
}
}
Label{
id:lbl
color:"lightskyblue"
Connections{
target: timer
onTriggered:{
if(lbl.visible)
lbl.text = baseModuleManager.getMotorFeedbackPos(modelData)
}
}
}
}
}
}
}
}
}
}
/*##^## Designer {
D{i:0;autoSize:true;height:480;width:640}
}
##^##*/