bec-widgets 0.80.0__py3-none-any.whl → 0.82.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CHANGELOG.md +40 -46
- PKG-INFO +1 -1
- bec_widgets/cli/client.py +1 -0
- bec_widgets/examples/__init__.py +0 -9
- bec_widgets/utils/entry_validator.py +1 -1
- bec_widgets/widgets/{device_inputs → base_classes}/device_input_base.py +2 -0
- bec_widgets/widgets/color_button/color_button.py +36 -0
- bec_widgets/widgets/{buttons/color_button → color_button}/color_button_plugin.py +1 -1
- bec_widgets/widgets/{buttons/color_button → color_button}/register_color_button.py +1 -1
- bec_widgets/widgets/device_combobox/assets/device_combobox_icon.png +0 -0
- bec_widgets/widgets/{device_inputs/device_combobox → device_combobox}/device_combobox.py +2 -2
- bec_widgets/widgets/device_combobox/device_combobox.pyproject +3 -0
- bec_widgets/widgets/{device_inputs/device_combobox → device_combobox}/device_combobox_plugin.py +6 -3
- bec_widgets/widgets/{device_inputs/device_combobox → device_combobox}/register_device_combobox.py +1 -3
- bec_widgets/widgets/device_line_edit/assets/line_edit_icon.png +0 -0
- bec_widgets/widgets/{device_inputs/device_line_edit → device_line_edit}/device_line_edit.py +2 -2
- bec_widgets/widgets/device_line_edit/device_line_edit.pyproject +3 -0
- bec_widgets/widgets/{device_inputs/device_line_edit → device_line_edit}/device_line_edit_plugin.py +6 -3
- bec_widgets/widgets/{device_inputs/device_line_edit → device_line_edit}/register_device_line_edit.py +1 -3
- bec_widgets/widgets/figure/plots/waveform/waveform.py +8 -2
- bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_settings.py +1 -1
- bec_widgets/widgets/motor_map/motor_map_dialog/motor_map_toolbar.py +1 -1
- bec_widgets/widgets/motor_map/motor_map_widget.py +0 -12
- bec_widgets/widgets/scan_control/scan_control.py +1 -1
- bec_widgets/widgets/scan_control/scan_group_box.py +1 -1
- bec_widgets/widgets/stop_button/assets/stop.png +0 -0
- bec_widgets/widgets/stop_button/register_stop_button.py +15 -0
- bec_widgets/widgets/{buttons/stop_button → stop_button}/stop_button.py +5 -12
- bec_widgets/widgets/stop_button/stop_button.pyproject +1 -0
- bec_widgets/widgets/stop_button/stop_button_plugin.py +57 -0
- bec_widgets/widgets/toggle/register_toggle_switch.py +15 -0
- bec_widgets/widgets/toggle/toggle.py +149 -0
- bec_widgets/widgets/toggle/toggle_switch.pyproject +1 -0
- bec_widgets/widgets/toggle/toggle_switch_plugin.py +54 -0
- {bec_widgets-0.80.0.dist-info → bec_widgets-0.82.0.dist-info}/METADATA +1 -1
- {bec_widgets-0.80.0.dist-info → bec_widgets-0.82.0.dist-info}/RECORD +52 -61
- pyproject.toml +1 -1
- tests/unit_tests/test_device_input_base.py +1 -1
- tests/unit_tests/test_device_input_widgets.py +2 -2
- tests/unit_tests/test_stop_button.py +5 -2
- tests/unit_tests/test_toggle.py +38 -0
- bec_widgets/examples/motor_movement/__init__.py +0 -9
- bec_widgets/examples/motor_movement/motor_control_compilations.py +0 -250
- bec_widgets/examples/motor_movement/motor_controller.ui +0 -926
- bec_widgets/widgets/buttons/__init__.py +0 -1
- bec_widgets/widgets/buttons/color_button/color_button.py +0 -17
- bec_widgets/widgets/device_inputs/__init__.py +0 -2
- bec_widgets/widgets/device_inputs/device_combobox/device_combobox.pyproject +0 -4
- bec_widgets/widgets/device_inputs/device_combobox/launch_device_combobox.py +0 -11
- bec_widgets/widgets/device_inputs/device_line_edit/device_line_edit.pyproject +0 -4
- bec_widgets/widgets/device_inputs/device_line_edit/launch_device_line_edit.py +0 -11
- bec_widgets/widgets/motor_control/motor_control.py +0 -252
- bec_widgets/widgets/motor_control/motor_table/motor_table.py +0 -484
- bec_widgets/widgets/motor_control/motor_table/motor_table.ui +0 -113
- bec_widgets/widgets/motor_control/movement_absolute/__init__.py +0 -0
- bec_widgets/widgets/motor_control/movement_absolute/movement_absolute.py +0 -159
- bec_widgets/widgets/motor_control/movement_absolute/movement_absolute.ui +0 -149
- bec_widgets/widgets/motor_control/movement_relative/__init__.py +0 -0
- bec_widgets/widgets/motor_control/movement_relative/movement_relative.py +0 -230
- bec_widgets/widgets/motor_control/movement_relative/movement_relative.ui +0 -298
- bec_widgets/widgets/motor_control/selection/__init__.py +0 -0
- bec_widgets/widgets/motor_control/selection/selection.py +0 -110
- bec_widgets/widgets/motor_control/selection/selection.ui +0 -69
- tests/unit_tests/test_motor_control.py +0 -588
- /bec_widgets/widgets/{buttons/color_button → base_classes}/__init__.py +0 -0
- /bec_widgets/widgets/{buttons/stop_button → color_button}/__init__.py +0 -0
- /bec_widgets/widgets/{buttons/color_button → color_button}/assets/color_button.png +0 -0
- /bec_widgets/widgets/{buttons/color_button → color_button}/color_button.pyproject +0 -0
- /bec_widgets/widgets/{device_inputs/device_combobox → device_combobox}/__init__.py +0 -0
- /bec_widgets/widgets/{device_inputs/device_line_edit → device_line_edit}/__init__.py +0 -0
- /bec_widgets/widgets/{motor_control → stop_button}/__init__.py +0 -0
- /bec_widgets/widgets/{motor_control/motor_table → toggle}/__init__.py +0 -0
- {bec_widgets-0.80.0.dist-info → bec_widgets-0.82.0.dist-info}/WHEEL +0 -0
- {bec_widgets-0.80.0.dist-info → bec_widgets-0.82.0.dist-info}/entry_points.txt +0 -0
- {bec_widgets-0.80.0.dist-info → bec_widgets-0.82.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,926 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<ui version="4.0">
|
3
|
-
<class>Form</class>
|
4
|
-
<widget class="QWidget" name="Form">
|
5
|
-
<property name="geometry">
|
6
|
-
<rect>
|
7
|
-
<x>0</x>
|
8
|
-
<y>0</y>
|
9
|
-
<width>1561</width>
|
10
|
-
<height>748</height>
|
11
|
-
</rect>
|
12
|
-
</property>
|
13
|
-
<property name="minimumSize">
|
14
|
-
<size>
|
15
|
-
<width>1409</width>
|
16
|
-
<height>748</height>
|
17
|
-
</size>
|
18
|
-
</property>
|
19
|
-
<property name="windowTitle">
|
20
|
-
<string>Motor Controller</string>
|
21
|
-
</property>
|
22
|
-
<layout class="QHBoxLayout" name="horizontalLayout" stretch="8,5,8">
|
23
|
-
<item>
|
24
|
-
<widget class="GraphicsLayoutWidget" name="glw">
|
25
|
-
<property name="enabled">
|
26
|
-
<bool>true</bool>
|
27
|
-
</property>
|
28
|
-
</widget>
|
29
|
-
</item>
|
30
|
-
<item>
|
31
|
-
<widget class="QFrame" name="Controls">
|
32
|
-
<property name="minimumSize">
|
33
|
-
<size>
|
34
|
-
<width>221</width>
|
35
|
-
<height>471</height>
|
36
|
-
</size>
|
37
|
-
</property>
|
38
|
-
<layout class="QVBoxLayout" name="verticalLayout_6" stretch="1,1,1,0,1">
|
39
|
-
<property name="spacing">
|
40
|
-
<number>1</number>
|
41
|
-
</property>
|
42
|
-
<property name="sizeConstraint">
|
43
|
-
<enum>QLayout::SetMinimumSize</enum>
|
44
|
-
</property>
|
45
|
-
<item>
|
46
|
-
<widget class="QGroupBox" name="motorSelection">
|
47
|
-
<property name="minimumSize">
|
48
|
-
<size>
|
49
|
-
<width>261</width>
|
50
|
-
<height>145</height>
|
51
|
-
</size>
|
52
|
-
</property>
|
53
|
-
<property name="title">
|
54
|
-
<string>Motor Selection</string>
|
55
|
-
</property>
|
56
|
-
<layout class="QGridLayout" name="gridLayout_4">
|
57
|
-
<item row="2" column="0">
|
58
|
-
<widget class="QLabel" name="label_8">
|
59
|
-
<property name="text">
|
60
|
-
<string>Motor Y</string>
|
61
|
-
</property>
|
62
|
-
</widget>
|
63
|
-
</item>
|
64
|
-
<item row="1" column="1">
|
65
|
-
<widget class="QComboBox" name="comboBox_motor_x"/>
|
66
|
-
</item>
|
67
|
-
<item row="2" column="1">
|
68
|
-
<widget class="QComboBox" name="comboBox_motor_y"/>
|
69
|
-
</item>
|
70
|
-
<item row="1" column="0">
|
71
|
-
<widget class="QLabel" name="label_5">
|
72
|
-
<property name="text">
|
73
|
-
<string>Motor X</string>
|
74
|
-
</property>
|
75
|
-
</widget>
|
76
|
-
</item>
|
77
|
-
<item row="3" column="0" colspan="2">
|
78
|
-
<widget class="QPushButton" name="pushButton_connecMotors">
|
79
|
-
<property name="text">
|
80
|
-
<string>Connect Motors</string>
|
81
|
-
</property>
|
82
|
-
</widget>
|
83
|
-
</item>
|
84
|
-
</layout>
|
85
|
-
</widget>
|
86
|
-
</item>
|
87
|
-
<item>
|
88
|
-
<spacer name="verticalSpacer_3">
|
89
|
-
<property name="orientation">
|
90
|
-
<enum>Qt::Vertical</enum>
|
91
|
-
</property>
|
92
|
-
<property name="sizeType">
|
93
|
-
<enum>QSizePolicy::Minimum</enum>
|
94
|
-
</property>
|
95
|
-
<property name="sizeHint" stdset="0">
|
96
|
-
<size>
|
97
|
-
<width>20</width>
|
98
|
-
<height>18</height>
|
99
|
-
</size>
|
100
|
-
</property>
|
101
|
-
</spacer>
|
102
|
-
</item>
|
103
|
-
<item>
|
104
|
-
<widget class="QGroupBox" name="motorControl">
|
105
|
-
<property name="minimumSize">
|
106
|
-
<size>
|
107
|
-
<width>261</width>
|
108
|
-
<height>339</height>
|
109
|
-
</size>
|
110
|
-
</property>
|
111
|
-
<property name="title">
|
112
|
-
<string>Motor Relative</string>
|
113
|
-
</property>
|
114
|
-
<layout class="QVBoxLayout" name="verticalLayout_5">
|
115
|
-
<item>
|
116
|
-
<widget class="QCheckBox" name="checkBox_enableArrows">
|
117
|
-
<property name="text">
|
118
|
-
<string>Move with arrow keys</string>
|
119
|
-
</property>
|
120
|
-
</widget>
|
121
|
-
</item>
|
122
|
-
<item>
|
123
|
-
<widget class="QCheckBox" name="checkBox_same_xy">
|
124
|
-
<property name="text">
|
125
|
-
<string>Step [X] = Step [Y]</string>
|
126
|
-
</property>
|
127
|
-
</widget>
|
128
|
-
</item>
|
129
|
-
<item>
|
130
|
-
<layout class="QGridLayout" name="step_grid">
|
131
|
-
<item row="2" column="0">
|
132
|
-
<widget class="QLabel" name="label_step_y">
|
133
|
-
<property name="minimumSize">
|
134
|
-
<size>
|
135
|
-
<width>111</width>
|
136
|
-
<height>19</height>
|
137
|
-
</size>
|
138
|
-
</property>
|
139
|
-
<property name="text">
|
140
|
-
<string>Step [Y]</string>
|
141
|
-
</property>
|
142
|
-
</widget>
|
143
|
-
</item>
|
144
|
-
<item row="0" column="0">
|
145
|
-
<widget class="QLabel" name="label_2">
|
146
|
-
<property name="minimumSize">
|
147
|
-
<size>
|
148
|
-
<width>111</width>
|
149
|
-
<height>19</height>
|
150
|
-
</size>
|
151
|
-
</property>
|
152
|
-
<property name="text">
|
153
|
-
<string>Decimal</string>
|
154
|
-
</property>
|
155
|
-
</widget>
|
156
|
-
</item>
|
157
|
-
<item row="1" column="1">
|
158
|
-
<widget class="QDoubleSpinBox" name="spinBox_step_x">
|
159
|
-
<property name="minimumSize">
|
160
|
-
<size>
|
161
|
-
<width>110</width>
|
162
|
-
<height>19</height>
|
163
|
-
</size>
|
164
|
-
</property>
|
165
|
-
<property name="alignment">
|
166
|
-
<set>Qt::AlignCenter</set>
|
167
|
-
</property>
|
168
|
-
<property name="minimum">
|
169
|
-
<double>0.000000000000000</double>
|
170
|
-
</property>
|
171
|
-
<property name="maximum">
|
172
|
-
<double>99.000000000000000</double>
|
173
|
-
</property>
|
174
|
-
<property name="singleStep">
|
175
|
-
<double>0.100000000000000</double>
|
176
|
-
</property>
|
177
|
-
<property name="value">
|
178
|
-
<double>1.000000000000000</double>
|
179
|
-
</property>
|
180
|
-
</widget>
|
181
|
-
</item>
|
182
|
-
<item row="1" column="0">
|
183
|
-
<widget class="QLabel" name="label_step_x">
|
184
|
-
<property name="minimumSize">
|
185
|
-
<size>
|
186
|
-
<width>111</width>
|
187
|
-
<height>19</height>
|
188
|
-
</size>
|
189
|
-
</property>
|
190
|
-
<property name="text">
|
191
|
-
<string>Step [X]</string>
|
192
|
-
</property>
|
193
|
-
</widget>
|
194
|
-
</item>
|
195
|
-
<item row="2" column="1">
|
196
|
-
<widget class="QDoubleSpinBox" name="spinBox_step_y">
|
197
|
-
<property name="minimumSize">
|
198
|
-
<size>
|
199
|
-
<width>110</width>
|
200
|
-
<height>19</height>
|
201
|
-
</size>
|
202
|
-
</property>
|
203
|
-
<property name="alignment">
|
204
|
-
<set>Qt::AlignCenter</set>
|
205
|
-
</property>
|
206
|
-
<property name="minimum">
|
207
|
-
<double>0.000000000000000</double>
|
208
|
-
</property>
|
209
|
-
<property name="maximum">
|
210
|
-
<double>99.000000000000000</double>
|
211
|
-
</property>
|
212
|
-
<property name="singleStep">
|
213
|
-
<double>0.100000000000000</double>
|
214
|
-
</property>
|
215
|
-
<property name="value">
|
216
|
-
<double>1.000000000000000</double>
|
217
|
-
</property>
|
218
|
-
</widget>
|
219
|
-
</item>
|
220
|
-
<item row="0" column="1">
|
221
|
-
<widget class="QSpinBox" name="spinBox_precision">
|
222
|
-
<property name="minimumSize">
|
223
|
-
<size>
|
224
|
-
<width>110</width>
|
225
|
-
<height>19</height>
|
226
|
-
</size>
|
227
|
-
</property>
|
228
|
-
<property name="alignment">
|
229
|
-
<set>Qt::AlignCenter</set>
|
230
|
-
</property>
|
231
|
-
<property name="maximum">
|
232
|
-
<number>8</number>
|
233
|
-
</property>
|
234
|
-
<property name="value">
|
235
|
-
<number>2</number>
|
236
|
-
</property>
|
237
|
-
</widget>
|
238
|
-
</item>
|
239
|
-
</layout>
|
240
|
-
</item>
|
241
|
-
<item>
|
242
|
-
<layout class="QGridLayout" name="direction_grid">
|
243
|
-
<property name="sizeConstraint">
|
244
|
-
<enum>QLayout::SetDefaultConstraint</enum>
|
245
|
-
</property>
|
246
|
-
<item row="1" column="2" alignment="Qt::AlignHCenter|Qt::AlignVCenter">
|
247
|
-
<widget class="QToolButton" name="toolButton_up">
|
248
|
-
<property name="minimumSize">
|
249
|
-
<size>
|
250
|
-
<width>26</width>
|
251
|
-
<height>26</height>
|
252
|
-
</size>
|
253
|
-
</property>
|
254
|
-
<property name="text">
|
255
|
-
<string>...</string>
|
256
|
-
</property>
|
257
|
-
<property name="arrowType">
|
258
|
-
<enum>Qt::UpArrow</enum>
|
259
|
-
</property>
|
260
|
-
</widget>
|
261
|
-
</item>
|
262
|
-
<item row="2" column="4">
|
263
|
-
<spacer name="horizontalSpacer_2">
|
264
|
-
<property name="orientation">
|
265
|
-
<enum>Qt::Horizontal</enum>
|
266
|
-
</property>
|
267
|
-
<property name="sizeHint" stdset="0">
|
268
|
-
<size>
|
269
|
-
<width>40</width>
|
270
|
-
<height>20</height>
|
271
|
-
</size>
|
272
|
-
</property>
|
273
|
-
</spacer>
|
274
|
-
</item>
|
275
|
-
<item row="3" column="2" alignment="Qt::AlignHCenter|Qt::AlignVCenter">
|
276
|
-
<widget class="QToolButton" name="toolButton_down">
|
277
|
-
<property name="minimumSize">
|
278
|
-
<size>
|
279
|
-
<width>26</width>
|
280
|
-
<height>26</height>
|
281
|
-
</size>
|
282
|
-
</property>
|
283
|
-
<property name="text">
|
284
|
-
<string>...</string>
|
285
|
-
</property>
|
286
|
-
<property name="arrowType">
|
287
|
-
<enum>Qt::DownArrow</enum>
|
288
|
-
</property>
|
289
|
-
</widget>
|
290
|
-
</item>
|
291
|
-
<item row="2" column="1">
|
292
|
-
<widget class="QToolButton" name="toolButton_left">
|
293
|
-
<property name="minimumSize">
|
294
|
-
<size>
|
295
|
-
<width>26</width>
|
296
|
-
<height>26</height>
|
297
|
-
</size>
|
298
|
-
</property>
|
299
|
-
<property name="text">
|
300
|
-
<string>...</string>
|
301
|
-
</property>
|
302
|
-
<property name="arrowType">
|
303
|
-
<enum>Qt::LeftArrow</enum>
|
304
|
-
</property>
|
305
|
-
</widget>
|
306
|
-
</item>
|
307
|
-
<item row="0" column="2">
|
308
|
-
<spacer name="verticalSpacer">
|
309
|
-
<property name="orientation">
|
310
|
-
<enum>Qt::Vertical</enum>
|
311
|
-
</property>
|
312
|
-
<property name="sizeHint" stdset="0">
|
313
|
-
<size>
|
314
|
-
<width>20</width>
|
315
|
-
<height>40</height>
|
316
|
-
</size>
|
317
|
-
</property>
|
318
|
-
</spacer>
|
319
|
-
</item>
|
320
|
-
<item row="2" column="3">
|
321
|
-
<widget class="QToolButton" name="toolButton_right">
|
322
|
-
<property name="minimumSize">
|
323
|
-
<size>
|
324
|
-
<width>26</width>
|
325
|
-
<height>26</height>
|
326
|
-
</size>
|
327
|
-
</property>
|
328
|
-
<property name="text">
|
329
|
-
<string>...</string>
|
330
|
-
</property>
|
331
|
-
<property name="arrowType">
|
332
|
-
<enum>Qt::RightArrow</enum>
|
333
|
-
</property>
|
334
|
-
</widget>
|
335
|
-
</item>
|
336
|
-
<item row="2" column="0">
|
337
|
-
<spacer name="horizontalSpacer">
|
338
|
-
<property name="orientation">
|
339
|
-
<enum>Qt::Horizontal</enum>
|
340
|
-
</property>
|
341
|
-
<property name="sizeHint" stdset="0">
|
342
|
-
<size>
|
343
|
-
<width>40</width>
|
344
|
-
<height>20</height>
|
345
|
-
</size>
|
346
|
-
</property>
|
347
|
-
</spacer>
|
348
|
-
</item>
|
349
|
-
<item row="4" column="2">
|
350
|
-
<spacer name="verticalSpacer_2">
|
351
|
-
<property name="orientation">
|
352
|
-
<enum>Qt::Vertical</enum>
|
353
|
-
</property>
|
354
|
-
<property name="sizeHint" stdset="0">
|
355
|
-
<size>
|
356
|
-
<width>20</width>
|
357
|
-
<height>40</height>
|
358
|
-
</size>
|
359
|
-
</property>
|
360
|
-
</spacer>
|
361
|
-
</item>
|
362
|
-
</layout>
|
363
|
-
</item>
|
364
|
-
</layout>
|
365
|
-
</widget>
|
366
|
-
</item>
|
367
|
-
<item>
|
368
|
-
<spacer name="verticalSpacer_4">
|
369
|
-
<property name="orientation">
|
370
|
-
<enum>Qt::Vertical</enum>
|
371
|
-
</property>
|
372
|
-
<property name="sizeType">
|
373
|
-
<enum>QSizePolicy::Minimum</enum>
|
374
|
-
</property>
|
375
|
-
<property name="sizeHint" stdset="0">
|
376
|
-
<size>
|
377
|
-
<width>20</width>
|
378
|
-
<height>18</height>
|
379
|
-
</size>
|
380
|
-
</property>
|
381
|
-
</spacer>
|
382
|
-
</item>
|
383
|
-
<item>
|
384
|
-
<widget class="QGroupBox" name="motorControl_absolute">
|
385
|
-
<property name="minimumSize">
|
386
|
-
<size>
|
387
|
-
<width>261</width>
|
388
|
-
<height>195</height>
|
389
|
-
</size>
|
390
|
-
</property>
|
391
|
-
<property name="title">
|
392
|
-
<string>Move Absolute</string>
|
393
|
-
</property>
|
394
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
395
|
-
<item>
|
396
|
-
<widget class="QCheckBox" name="checkBox_save_with_go">
|
397
|
-
<property name="text">
|
398
|
-
<string>Save position with Go</string>
|
399
|
-
</property>
|
400
|
-
</widget>
|
401
|
-
</item>
|
402
|
-
<item>
|
403
|
-
<layout class="QGridLayout" name="gridLayout_3">
|
404
|
-
<item row="1" column="1">
|
405
|
-
<widget class="QDoubleSpinBox" name="spinBox_absolute_y">
|
406
|
-
<property name="alignment">
|
407
|
-
<set>Qt::AlignCenter</set>
|
408
|
-
</property>
|
409
|
-
<property name="minimum">
|
410
|
-
<double>-500.000000000000000</double>
|
411
|
-
</property>
|
412
|
-
<property name="maximum">
|
413
|
-
<double>500.000000000000000</double>
|
414
|
-
</property>
|
415
|
-
<property name="singleStep">
|
416
|
-
<double>0.100000000000000</double>
|
417
|
-
</property>
|
418
|
-
</widget>
|
419
|
-
</item>
|
420
|
-
<item row="1" column="0">
|
421
|
-
<widget class="QDoubleSpinBox" name="spinBox_absolute_x">
|
422
|
-
<property name="alignment">
|
423
|
-
<set>Qt::AlignCenter</set>
|
424
|
-
</property>
|
425
|
-
<property name="minimum">
|
426
|
-
<double>-500.000000000000000</double>
|
427
|
-
</property>
|
428
|
-
<property name="maximum">
|
429
|
-
<double>500.000000000000000</double>
|
430
|
-
</property>
|
431
|
-
<property name="singleStep">
|
432
|
-
<double>0.100000000000000</double>
|
433
|
-
</property>
|
434
|
-
</widget>
|
435
|
-
</item>
|
436
|
-
<item row="0" column="1">
|
437
|
-
<widget class="QLabel" name="label_7">
|
438
|
-
<property name="text">
|
439
|
-
<string>Y</string>
|
440
|
-
</property>
|
441
|
-
<property name="alignment">
|
442
|
-
<set>Qt::AlignCenter</set>
|
443
|
-
</property>
|
444
|
-
</widget>
|
445
|
-
</item>
|
446
|
-
<item row="0" column="0">
|
447
|
-
<widget class="QLabel" name="label_6">
|
448
|
-
<property name="text">
|
449
|
-
<string>X</string>
|
450
|
-
</property>
|
451
|
-
<property name="alignment">
|
452
|
-
<set>Qt::AlignCenter</set>
|
453
|
-
</property>
|
454
|
-
</widget>
|
455
|
-
</item>
|
456
|
-
</layout>
|
457
|
-
</item>
|
458
|
-
<item>
|
459
|
-
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
460
|
-
<item>
|
461
|
-
<widget class="QPushButton" name="pushButton_save">
|
462
|
-
<property name="text">
|
463
|
-
<string>Save</string>
|
464
|
-
</property>
|
465
|
-
</widget>
|
466
|
-
</item>
|
467
|
-
<item>
|
468
|
-
<widget class="QPushButton" name="pushButton_set">
|
469
|
-
<property name="text">
|
470
|
-
<string>Set</string>
|
471
|
-
</property>
|
472
|
-
</widget>
|
473
|
-
</item>
|
474
|
-
<item>
|
475
|
-
<widget class="QPushButton" name="pushButton_go_absolute">
|
476
|
-
<property name="text">
|
477
|
-
<string>Go</string>
|
478
|
-
</property>
|
479
|
-
</widget>
|
480
|
-
</item>
|
481
|
-
</layout>
|
482
|
-
</item>
|
483
|
-
<item>
|
484
|
-
<widget class="QPushButton" name="pushButton_stop">
|
485
|
-
<property name="text">
|
486
|
-
<string>Stop Movement</string>
|
487
|
-
</property>
|
488
|
-
</widget>
|
489
|
-
</item>
|
490
|
-
</layout>
|
491
|
-
</widget>
|
492
|
-
</item>
|
493
|
-
</layout>
|
494
|
-
</widget>
|
495
|
-
</item>
|
496
|
-
<item>
|
497
|
-
<widget class="QTabWidget" name="tabWidget_tables">
|
498
|
-
<property name="enabled">
|
499
|
-
<bool>true</bool>
|
500
|
-
</property>
|
501
|
-
<property name="currentIndex">
|
502
|
-
<number>0</number>
|
503
|
-
</property>
|
504
|
-
<widget class="QWidget" name="tab_coordinates">
|
505
|
-
<attribute name="title">
|
506
|
-
<string>Coordinates</string>
|
507
|
-
</attribute>
|
508
|
-
<layout class="QVBoxLayout" name="verticalLayout_3">
|
509
|
-
<item>
|
510
|
-
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
511
|
-
<item>
|
512
|
-
<spacer name="horizontalSpacer_3">
|
513
|
-
<property name="orientation">
|
514
|
-
<enum>Qt::Horizontal</enum>
|
515
|
-
</property>
|
516
|
-
<property name="sizeHint" stdset="0">
|
517
|
-
<size>
|
518
|
-
<width>40</width>
|
519
|
-
<height>20</height>
|
520
|
-
</size>
|
521
|
-
</property>
|
522
|
-
</spacer>
|
523
|
-
</item>
|
524
|
-
<item>
|
525
|
-
<widget class="QLabel" name="label">
|
526
|
-
<property name="text">
|
527
|
-
<string>Entries Mode:</string>
|
528
|
-
</property>
|
529
|
-
</widget>
|
530
|
-
</item>
|
531
|
-
<item>
|
532
|
-
<widget class="QComboBox" name="comboBox_mode">
|
533
|
-
<item>
|
534
|
-
<property name="text">
|
535
|
-
<string>Individual</string>
|
536
|
-
</property>
|
537
|
-
</item>
|
538
|
-
<item>
|
539
|
-
<property name="text">
|
540
|
-
<string>Start/Stop</string>
|
541
|
-
</property>
|
542
|
-
</item>
|
543
|
-
</widget>
|
544
|
-
</item>
|
545
|
-
</layout>
|
546
|
-
</item>
|
547
|
-
<item>
|
548
|
-
<widget class="QTableWidget" name="tableWidget_coordinates">
|
549
|
-
<property name="selectionMode">
|
550
|
-
<enum>QAbstractItemView::MultiSelection</enum>
|
551
|
-
</property>
|
552
|
-
<property name="selectionBehavior">
|
553
|
-
<enum>QAbstractItemView::SelectRows</enum>
|
554
|
-
</property>
|
555
|
-
<column>
|
556
|
-
<property name="text">
|
557
|
-
<string>Show</string>
|
558
|
-
</property>
|
559
|
-
</column>
|
560
|
-
<column>
|
561
|
-
<property name="text">
|
562
|
-
<string>Move</string>
|
563
|
-
</property>
|
564
|
-
</column>
|
565
|
-
<column>
|
566
|
-
<property name="text">
|
567
|
-
<string>Tag</string>
|
568
|
-
</property>
|
569
|
-
</column>
|
570
|
-
<column>
|
571
|
-
<property name="text">
|
572
|
-
<string>X</string>
|
573
|
-
</property>
|
574
|
-
</column>
|
575
|
-
<column>
|
576
|
-
<property name="text">
|
577
|
-
<string>Y</string>
|
578
|
-
</property>
|
579
|
-
</column>
|
580
|
-
</widget>
|
581
|
-
</item>
|
582
|
-
<item>
|
583
|
-
<layout class="QGridLayout" name="gridLayout">
|
584
|
-
<item row="1" column="1">
|
585
|
-
<widget class="QPushButton" name="pushButton_resize_table">
|
586
|
-
<property name="text">
|
587
|
-
<string>Resize Table</string>
|
588
|
-
</property>
|
589
|
-
</widget>
|
590
|
-
</item>
|
591
|
-
<item row="0" column="1">
|
592
|
-
<widget class="QCheckBox" name="checkBox_resize_auto">
|
593
|
-
<property name="text">
|
594
|
-
<string>Resize Auto</string>
|
595
|
-
</property>
|
596
|
-
<property name="checked">
|
597
|
-
<bool>true</bool>
|
598
|
-
</property>
|
599
|
-
</widget>
|
600
|
-
</item>
|
601
|
-
<item row="1" column="0">
|
602
|
-
<widget class="QPushButton" name="pushButton_importCSV">
|
603
|
-
<property name="text">
|
604
|
-
<string>Import CSV</string>
|
605
|
-
</property>
|
606
|
-
</widget>
|
607
|
-
</item>
|
608
|
-
<item row="0" column="0">
|
609
|
-
<widget class="QPushButton" name="pushButton_exportCSV">
|
610
|
-
<property name="text">
|
611
|
-
<string>Export CSV</string>
|
612
|
-
</property>
|
613
|
-
</widget>
|
614
|
-
</item>
|
615
|
-
<item row="2" column="0">
|
616
|
-
<widget class="QPushButton" name="pushButton_help">
|
617
|
-
<property name="text">
|
618
|
-
<string>Help</string>
|
619
|
-
</property>
|
620
|
-
</widget>
|
621
|
-
</item>
|
622
|
-
<item row="2" column="1">
|
623
|
-
<widget class="QPushButton" name="pushButton_duplicate">
|
624
|
-
<property name="text">
|
625
|
-
<string>Duplicate Last Entry</string>
|
626
|
-
</property>
|
627
|
-
</widget>
|
628
|
-
</item>
|
629
|
-
</layout>
|
630
|
-
</item>
|
631
|
-
</layout>
|
632
|
-
</widget>
|
633
|
-
<widget class="QWidget" name="tab_settings">
|
634
|
-
<attribute name="title">
|
635
|
-
<string>Settings</string>
|
636
|
-
</attribute>
|
637
|
-
<layout class="QVBoxLayout" name="verticalLayout_4">
|
638
|
-
<item>
|
639
|
-
<widget class="QGroupBox" name="motorLimits">
|
640
|
-
<property name="enabled">
|
641
|
-
<bool>false</bool>
|
642
|
-
</property>
|
643
|
-
<property name="title">
|
644
|
-
<string>Motor Limits</string>
|
645
|
-
</property>
|
646
|
-
<layout class="QGridLayout" name="gridLayout_2">
|
647
|
-
<item row="2" column="1">
|
648
|
-
<widget class="QPushButton" name="pushButton_updateLimits">
|
649
|
-
<property name="text">
|
650
|
-
<string>Update</string>
|
651
|
-
</property>
|
652
|
-
</widget>
|
653
|
-
</item>
|
654
|
-
<item row="0" column="1">
|
655
|
-
<widget class="QLabel" name="label_Y_max">
|
656
|
-
<property name="text">
|
657
|
-
<string>+ Y</string>
|
658
|
-
</property>
|
659
|
-
<property name="alignment">
|
660
|
-
<set>Qt::AlignCenter</set>
|
661
|
-
</property>
|
662
|
-
</widget>
|
663
|
-
</item>
|
664
|
-
<item row="4" column="1">
|
665
|
-
<widget class="QLabel" name="label_Y_min">
|
666
|
-
<property name="text">
|
667
|
-
<string>- Y</string>
|
668
|
-
</property>
|
669
|
-
<property name="alignment">
|
670
|
-
<set>Qt::AlignCenter</set>
|
671
|
-
</property>
|
672
|
-
</widget>
|
673
|
-
</item>
|
674
|
-
<item row="1" column="0">
|
675
|
-
<widget class="QLabel" name="label_X_min">
|
676
|
-
<property name="text">
|
677
|
-
<string>- X</string>
|
678
|
-
</property>
|
679
|
-
<property name="alignment">
|
680
|
-
<set>Qt::AlignCenter</set>
|
681
|
-
</property>
|
682
|
-
</widget>
|
683
|
-
</item>
|
684
|
-
<item row="1" column="2">
|
685
|
-
<widget class="QLabel" name="label_X_max">
|
686
|
-
<property name="text">
|
687
|
-
<string>+ X</string>
|
688
|
-
</property>
|
689
|
-
<property name="alignment">
|
690
|
-
<set>Qt::AlignCenter</set>
|
691
|
-
</property>
|
692
|
-
</widget>
|
693
|
-
</item>
|
694
|
-
<item row="1" column="1">
|
695
|
-
<widget class="QDoubleSpinBox" name="spinBox_y_max">
|
696
|
-
<property name="alignment">
|
697
|
-
<set>Qt::AlignCenter</set>
|
698
|
-
</property>
|
699
|
-
<property name="minimum">
|
700
|
-
<double>-1000.000000000000000</double>
|
701
|
-
</property>
|
702
|
-
<property name="maximum">
|
703
|
-
<double>1000.000000000000000</double>
|
704
|
-
</property>
|
705
|
-
</widget>
|
706
|
-
</item>
|
707
|
-
<item row="3" column="1">
|
708
|
-
<widget class="QDoubleSpinBox" name="spinBox_y_min">
|
709
|
-
<property name="alignment">
|
710
|
-
<set>Qt::AlignCenter</set>
|
711
|
-
</property>
|
712
|
-
<property name="minimum">
|
713
|
-
<double>-1000.000000000000000</double>
|
714
|
-
</property>
|
715
|
-
<property name="maximum">
|
716
|
-
<double>1000.000000000000000</double>
|
717
|
-
</property>
|
718
|
-
</widget>
|
719
|
-
</item>
|
720
|
-
<item row="2" column="0">
|
721
|
-
<widget class="QDoubleSpinBox" name="spinBox_x_min">
|
722
|
-
<property name="alignment">
|
723
|
-
<set>Qt::AlignCenter</set>
|
724
|
-
</property>
|
725
|
-
<property name="minimum">
|
726
|
-
<double>-1000.000000000000000</double>
|
727
|
-
</property>
|
728
|
-
<property name="maximum">
|
729
|
-
<double>1000.000000000000000</double>
|
730
|
-
</property>
|
731
|
-
</widget>
|
732
|
-
</item>
|
733
|
-
<item row="2" column="2">
|
734
|
-
<widget class="QDoubleSpinBox" name="spinBox_x_max">
|
735
|
-
<property name="alignment">
|
736
|
-
<set>Qt::AlignCenter</set>
|
737
|
-
</property>
|
738
|
-
<property name="minimum">
|
739
|
-
<double>-1000.000000000000000</double>
|
740
|
-
</property>
|
741
|
-
<property name="maximum">
|
742
|
-
<double>1000.000000000000000</double>
|
743
|
-
</property>
|
744
|
-
</widget>
|
745
|
-
</item>
|
746
|
-
</layout>
|
747
|
-
</widget>
|
748
|
-
</item>
|
749
|
-
<item>
|
750
|
-
<widget class="QGroupBox" name="groupBox_2">
|
751
|
-
<property name="title">
|
752
|
-
<string>Plotting Options</string>
|
753
|
-
</property>
|
754
|
-
<layout class="QGridLayout" name="gridLayout_5">
|
755
|
-
<item row="0" column="1" colspan="2">
|
756
|
-
<widget class="QSpinBox" name="spinBox_max_points">
|
757
|
-
<property name="alignment">
|
758
|
-
<set>Qt::AlignCenter</set>
|
759
|
-
</property>
|
760
|
-
<property name="minimum">
|
761
|
-
<number>100</number>
|
762
|
-
</property>
|
763
|
-
<property name="maximum">
|
764
|
-
<number>10000</number>
|
765
|
-
</property>
|
766
|
-
<property name="singleStep">
|
767
|
-
<number>100</number>
|
768
|
-
</property>
|
769
|
-
<property name="value">
|
770
|
-
<number>5000</number>
|
771
|
-
</property>
|
772
|
-
</widget>
|
773
|
-
</item>
|
774
|
-
<item row="0" column="0">
|
775
|
-
<widget class="QLabel" name="label_15">
|
776
|
-
<property name="text">
|
777
|
-
<string>Max Points</string>
|
778
|
-
</property>
|
779
|
-
</widget>
|
780
|
-
</item>
|
781
|
-
<item row="2" column="1" colspan="2">
|
782
|
-
<widget class="QSpinBox" name="spinBox_scatter_size">
|
783
|
-
<property name="alignment">
|
784
|
-
<set>Qt::AlignCenter</set>
|
785
|
-
</property>
|
786
|
-
<property name="minimum">
|
787
|
-
<number>1</number>
|
788
|
-
</property>
|
789
|
-
<property name="maximum">
|
790
|
-
<number>15</number>
|
791
|
-
</property>
|
792
|
-
<property name="value">
|
793
|
-
<number>5</number>
|
794
|
-
</property>
|
795
|
-
</widget>
|
796
|
-
</item>
|
797
|
-
<item row="2" column="0">
|
798
|
-
<widget class="QLabel" name="label_11">
|
799
|
-
<property name="text">
|
800
|
-
<string>Scatter Size</string>
|
801
|
-
</property>
|
802
|
-
</widget>
|
803
|
-
</item>
|
804
|
-
<item row="3" column="0" colspan="3">
|
805
|
-
<widget class="QPushButton" name="pushButton_update_config">
|
806
|
-
<property name="text">
|
807
|
-
<string>Update Settings</string>
|
808
|
-
</property>
|
809
|
-
</widget>
|
810
|
-
</item>
|
811
|
-
<item row="1" column="1" colspan="2">
|
812
|
-
<widget class="QSpinBox" name="spinBox_num_dim_points">
|
813
|
-
<property name="alignment">
|
814
|
-
<set>Qt::AlignCenter</set>
|
815
|
-
</property>
|
816
|
-
<property name="minimum">
|
817
|
-
<number>10</number>
|
818
|
-
</property>
|
819
|
-
<property name="maximum">
|
820
|
-
<number>1000</number>
|
821
|
-
</property>
|
822
|
-
<property name="singleStep">
|
823
|
-
<number>10</number>
|
824
|
-
</property>
|
825
|
-
<property name="value">
|
826
|
-
<number>100</number>
|
827
|
-
</property>
|
828
|
-
</widget>
|
829
|
-
</item>
|
830
|
-
<item row="1" column="0">
|
831
|
-
<widget class="QLabel" name="label_16">
|
832
|
-
<property name="text">
|
833
|
-
<string>N dim</string>
|
834
|
-
</property>
|
835
|
-
</widget>
|
836
|
-
</item>
|
837
|
-
<item row="4" column="0" colspan="3">
|
838
|
-
<widget class="QPushButton" name="pushButton_enableGUI">
|
839
|
-
<property name="text">
|
840
|
-
<string>Enable Control GUI</string>
|
841
|
-
</property>
|
842
|
-
</widget>
|
843
|
-
</item>
|
844
|
-
</layout>
|
845
|
-
</widget>
|
846
|
-
</item>
|
847
|
-
</layout>
|
848
|
-
</widget>
|
849
|
-
<widget class="QWidget" name="tab_queue">
|
850
|
-
<attribute name="title">
|
851
|
-
<string>Queue</string>
|
852
|
-
</attribute>
|
853
|
-
<layout class="QVBoxLayout" name="verticalLayout_2">
|
854
|
-
<item>
|
855
|
-
<widget class="QLabel" name="label_3">
|
856
|
-
<property name="text">
|
857
|
-
<string>Work in progress</string>
|
858
|
-
</property>
|
859
|
-
<property name="alignment">
|
860
|
-
<set>Qt::AlignCenter</set>
|
861
|
-
</property>
|
862
|
-
</widget>
|
863
|
-
</item>
|
864
|
-
<item>
|
865
|
-
<widget class="QPushButton" name="pushButton_5">
|
866
|
-
<property name="enabled">
|
867
|
-
<bool>false</bool>
|
868
|
-
</property>
|
869
|
-
<property name="text">
|
870
|
-
<string>Reset Queue</string>
|
871
|
-
</property>
|
872
|
-
</widget>
|
873
|
-
</item>
|
874
|
-
<item>
|
875
|
-
<widget class="QTableWidget" name="tableWidget_2">
|
876
|
-
<property name="enabled">
|
877
|
-
<bool>false</bool>
|
878
|
-
</property>
|
879
|
-
<column>
|
880
|
-
<property name="text">
|
881
|
-
<string>queueID</string>
|
882
|
-
</property>
|
883
|
-
</column>
|
884
|
-
<column>
|
885
|
-
<property name="text">
|
886
|
-
<string>scan_id</string>
|
887
|
-
</property>
|
888
|
-
</column>
|
889
|
-
<column>
|
890
|
-
<property name="text">
|
891
|
-
<string>is_scan</string>
|
892
|
-
</property>
|
893
|
-
</column>
|
894
|
-
<column>
|
895
|
-
<property name="text">
|
896
|
-
<string>type</string>
|
897
|
-
</property>
|
898
|
-
</column>
|
899
|
-
<column>
|
900
|
-
<property name="text">
|
901
|
-
<string>scan_number</string>
|
902
|
-
</property>
|
903
|
-
</column>
|
904
|
-
<column>
|
905
|
-
<property name="text">
|
906
|
-
<string>IQ status</string>
|
907
|
-
</property>
|
908
|
-
</column>
|
909
|
-
</widget>
|
910
|
-
</item>
|
911
|
-
</layout>
|
912
|
-
</widget>
|
913
|
-
</widget>
|
914
|
-
</item>
|
915
|
-
</layout>
|
916
|
-
</widget>
|
917
|
-
<customwidgets>
|
918
|
-
<customwidget>
|
919
|
-
<class>GraphicsLayoutWidget</class>
|
920
|
-
<extends>QGraphicsView</extends>
|
921
|
-
<header>pyqtgraph.h</header>
|
922
|
-
</customwidget>
|
923
|
-
</customwidgets>
|
924
|
-
<resources/>
|
925
|
-
<connections/>
|
926
|
-
</ui>
|